]> code.ossystems Code Review - openembedded-core.git/commitdiff
image-live.bbclass: optional depends when ROOTFS empty
authorGuillaume Champagne <champagne.guillaume.c@gmail.com>
Thu, 1 Apr 2021 20:48:49 +0000 (16:48 -0400)
committerAnuj Mittal <anuj.mittal@intel.com>
Fri, 9 Apr 2021 06:04:40 +0000 (14:04 +0800)
`ROOTFS` is optional. It can be empty if the live image doesn't require
a rootfs.  In such cases, the build doesn't depend on
`do_image_{LIVE_ROOTFS_TYPE}`.

Signed-off-by: Guillaume Champagne <champagne.guillaume.c@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 96f47c39f1d17f073243913d524bde84add41d8f)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
meta/classes/image-live.bbclass

index 9ea5ddc312011ba89a5022f2bcfa12544700af81..47c44b4aad426a5ecd26059d4073fb91d7a156d7 100644 (file)
@@ -30,7 +30,7 @@ do_bootimg[depends] += "dosfstools-native:do_populate_sysroot \
                         virtual/kernel:do_deploy \
                         ${MLPREFIX}syslinux:do_populate_sysroot \
                         syslinux-native:do_populate_sysroot \
-                        ${PN}:do_image_${@d.getVar('LIVE_ROOTFS_TYPE').replace('-', '_')} \
+                        ${@'%s:do_image_%s' % (d.getVar('PN'), d.getVar('LIVE_ROOTFS_TYPE').replace('-', '_')) if d.getVar('ROOTFS') else ''} \
                         "