Hello everyone
Recently I used yocto, encountered many problems, there are two questions :
1. When compiling a file system,Use the following command :
$ MACHINE=imx6qsabresd source fsl-setup-release.sh -b build-x11 -e x11
$ bitbake -c menuconfig busybox
$ bitbake busybox
After compilation I do not know where the compiled file system,If I specify the storage path(such as /home/lxh/nfs) at compile time the compiler will return an error as
Task 8 (/home/lxh/work/fsl_yocto/fsl-release-bsp/sources/poky/meta/recipes-core/busybox/busybox_1.22.1.bb, do_compile) failed with exit code '1'
2.If I use meta-toolchain,in busybox-1.23.1 directory
$ source /opt/poky/1.7/environment-setup-cortexa9hf-vfp-neon-poky-linux-gnueabi
$ make defconfig
$ make menuconfig
$ make
will return an error as:
/opt/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi/usr/include/gnu/stubs.h:7:29: fatal error: gnu/stubs-soft.h: No such file or directory
# include <gnu/stubs-soft.h>
Does anyone know how to solve it, please help me!
thank you very much!!!