diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-04-07 19:20:25 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-08 07:53:30 +0100 |
commit | dd1db8a578979a16d993a73b6f8a5720f2849932 (patch) | |
tree | 464688814b459d422cca57d4744a0e13b3a1a790 /meta/classes/image-live.bbclass | |
parent | c895676679b951836c909eb962190f5817662882 (diff) | |
download | openembedded-core-dd1db8a578979a16d993a73b6f8a5720f2849932.tar.gz openembedded-core-dd1db8a578979a16d993a73b6f8a5720f2849932.tar.bz2 openembedded-core-dd1db8a578979a16d993a73b6f8a5720f2849932.zip |
image-live.bbclass: fix iso + efi only
When the user only builds iso + efi only, the syslinux-native which
provides isohybrid is required to build iso, so add syslinux-native to
DEPENDS.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image-live.bbclass')
-rw-r--r-- | meta/classes/image-live.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass index c837fbfc92..c8a8610604 100644 --- a/meta/classes/image-live.bbclass +++ b/meta/classes/image-live.bbclass @@ -32,6 +32,7 @@ do_bootimg[depends] += "dosfstools-native:do_populate_sysroot \ cdrtools-native:do_populate_sysroot \ virtual/kernel:do_deploy \ ${MLPREFIX}syslinux:do_populate_sysroot \ + syslinux-native:do_populate_sysroot \ ${@oe.utils.ifelse(d.getVar('COMPRESSISO', False),'zisofs-tools-native:do_populate_sysroot','')} \ ${PN}:do_image_ext4 \ " |