]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
qemuarm.conf: set PREFERRED_VERSION_linux-yocto rbt/qemuarm
authorRobert Yang <liezhi.yang@windriver.com>
Tue, 6 Sep 2016 05:33:29 +0000 (22:33 -0700)
committerRobert Yang <liezhi.yang@windriver.com>
Tue, 6 Sep 2016 06:13:24 +0000 (23:13 -0700)
The base_version_less_or_equal() will raise errors if
PREFERRED_VERSION_linux-yocto is None. For example, when we build
DISTRO = "nodistro", PREFERRED_VERSION_linux-yocto is not be defined
since it is defined in poky.conf, and then bitbake will
choose the higher version which is 4.8 currently, so set
PREFERRED_VERSION_linux-yocto to 4.8, otherwise, runqemu can't boot it.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
meta/conf/machine/qemuarm.conf

index 3ca4d6e462e428833d69e1c1e6b0f5c658cf5ffa..4c5891ab7cdc343888db787248186ff42401162e 100644 (file)
@@ -15,4 +15,5 @@ QB_SYSTEM_NAME = "qemu-system-arm"
 QB_MACHINE = "-machine versatilepb"
 QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0,115200 console=tty"
 QB_OPT_APPEND = "-show-cursor -usb -usbdevice tablet"
+PREFERRED_VERSION_linux-yocto ??= "4.8%"
 QB_DTB = "${@base_version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}"