On Tue, Jan 20, 2015 at 08:47:39AM +0100, Koen Kooi wrote:
On 19 January 2015 at 12:29, Kevin Hao kexin.hao@windriver.com wrote:
These are needed when we want to boot from qeumu. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> --- meta-aarch64/conf/machine/genericarmv8.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta-aarch64/conf/machine/genericarmv8.conf b/meta-aarch64/ conf/machine/genericarmv8.conf index 1d05238d8c04..76b380eba769 100644 --- a/meta-aarch64/conf/machine/genericarmv8.conf +++ b/meta-aarch64/conf/machine/genericarmv8.conf @@ -35,3 +35,7 @@ FEATURE_PACKAGES_autoserial = "auto-serial-console" # we do not want to have getty running on tty1 as we run # auto-serial-console there USE_VT = "0" + +IMAGE_FSTYPES += "ext3"
That one might be acceptable, but it's still more suited for either DISTRO or local.conf.
I prefer to keep it since it is convenient and the overhead is trivial.
+ +EXTRA_IMAGEDEPENDS += "qemu-native"
No. That will for qemu to be built for everyimage, which is stupid. If you want to use qemu you can do 'bitbake qemu-native' or install qemu on your host. Polluting EXTRA_IMAGEDEPENDS is not an option.
OK, will drop it.
Thanks, Kevin