Most Commonly Performed Operations in Yocto - Part 2
1. Command to check the list of available images.
Run the following command in your source directory:
$ ls meta*/recipes*/images/*.bb
2. Command to run the generated image in QEMU
$runqemu <machine> <zImage> <filesystem>
e.g. runqemu qemux86 core-image-minimal
3. Command to list the machines available
$ ls meta*/conf/machine/*.conf
4. Command to generate SDK for a particular image
$ bitbake <imagename> -c populate_sdk
E.g. bitbake core-image-full-cmdline -c populate_sdk
5. Order in which all tasks executed are stored in
Run the following command in your source directory:
$ ls meta*/recipes*/images/*.bb
2. Command to run the generated image in QEMU
$runqemu <machine> <zImage> <filesystem>
e.g. runqemu qemux86 core-image-minimal
3. Command to list the machines available
$ ls meta*/conf/machine/*.conf
4. Command to generate SDK for a particular image
$ bitbake <imagename> -c populate_sdk
E.g. bitbake core-image-full-cmdline -c populate_sdk
5. Order in which all tasks executed are stored in
<build
directory>/tmp/work/<machine toolchain>/<package
name>/<package version>/temp/log.task_order
E.g.
:
build/tmp/work/corei7-64-poky-linux/grep/3.1-r0/temp/log.task_order
Comments
Post a Comment