Difference between revisions of "Yocto tests"
From ElphelWiki
m |
m |
||
Line 22: | Line 22: | ||
BB_NUMBER_THREADS = "8" (depends on the PC's CPU) | BB_NUMBER_THREADS = "8" (depends on the PC's CPU) | ||
PARALLEL_MAKE = "-j 8" (depends on the PC's CPU) | PARALLEL_MAKE = "-j 8" (depends on the PC's CPU) | ||
− | MACHINE ?= "zedboard" '' | + | MACHINE ?= "zedboard" |
+ | </font> | ||
+ | ===Notes=== | ||
+ | <font color="red"> | ||
+ | *MACHINE="zedboard" is used to build the kernel. Doesn't matter for ramdisk.image.gz because the recipes don't have any bbappends for core-images. | ||
</font> | </font> | ||
Line 34: | Line 38: | ||
bitbake elphel393 | bitbake elphel393 | ||
</font> | </font> | ||
+ | ===Notes=== | ||
+ | <font size='2'> | ||
+ | <font color="red"> | ||
+ | * Current packages: | ||
+ | ''elphel393.bb'': | ||
+ | IMAGE_INSTALL = "packagegroup-core-boot python-core ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}" | ||
+ | * Also works: | ||
+ | ''elphel393.bb'': | ||
+ | IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}" | ||
+ | IMAGE_INSTALL_append = "python-core" | ||
+ | * Why ''python-core'' and not just ''python''? | ||
+ | ** ''poky/meta/recipes-devtools/python/python-2.7-manifest.inc'' has a list in PACKAGES items from which should go into IMAGE_INSTALL | ||
+ | ** Among all there's no ''python'' in the PACKAGES list. | ||
+ | ** Does '''hob''' install all the PACKAGES if ''python'' is checked? Haven't tried, also the used '''hob''' version doesn't support saving recipes. | ||
+ | * '''(Is there a better solution?)''' Adding packages : '''apache2''', '''php''' and '''i2c-tools''', steps: | ||
+ | **Clone '''meta-oe''' from OpenEmbedded: | ||
+ | git clone -b dylan https://github.com/openembedded/meta-oe.git | ||
+ | **Lines to ''bblayers.conf'': | ||
+ | <absolute-path>/meta-oe/meta-oe \ | ||
+ | <absolute-path>/poky/meta-oe/meta-perl \ | ||
+ | <absolute-path>/poky/meta-oe/meta-webserver \ | ||
+ | ** ''elphel393.bb'' '''(some discussions mention the leading space is mandatory but somehow it works even without it)''': | ||
+ | IMAGE_INSTALL_append = "'''<mandatory space?>'''python-core \ | ||
+ | i2c-tools \ | ||
+ | modphp \ | ||
+ | apache2 \ | ||
+ | php-cli" | ||
+ | ** Why ''php-cli'' and not just ''php''? | ||
+ | meta-oe/meta-oe/recipes-devtools/php/php.inc: | ||
+ | PACKAGES = "${PN}-dbg ${PN}-cli ${PN}-cgi ${PN}-fpm ${PN}-fpm-apache2 ${PN}-pear ${PN}-dev ${PN}-staticdev ${PN}-doc ${PN}" | ||
+ | *** PACKAGES includes ''php''. What is installed? (No ''php-cli'': missing /usr/bin/php) Didn't investigate. | ||
+ | *** What does hob build if ''php'' is checked? Didn't test. | ||
+ | *** Using ''php-cli'' installs php in the /usr/bin/. Tested. | ||
+ | *** Using ''php-cli'' increases the unpacked image size from ~16MB to ~50MB. | ||
+ | **To fix the '''ERROR'''="'''Could not inherit file classes/vala.bbclass'''" in bitbake copy vala.bbclass from oe-core? or delete the conflicting recipes (2?)? | ||
+ | **To fix the '''ERROR'''="'''Failed to parse krb5_1.11.3.bb'''" in bitbake delete the directory ''meta-oe/meta-oe/recipes-connectivity/krb5'' | ||
+ | </font> | ||
+ | </font> | ||
+ | |||
+ | ===Notes=== | ||
==Build toolchain== | ==Build toolchain== |
Revision as of 11:24, 8 November 2013
Contents
GIT
git clone -b dylan git://git.yoctoproject.org/poky.git git clone -b dylan https://github.com/Xilinx/meta-xilinx.git meta-xilinx git clone git://git.code.sf.net/p/elphel/meta-elphel393 meta-elphel393
Configure
- Step 1: Init environment
cd poky . ./oe-init-build-env
- Step 2: Edit build/conf/bblayers.conf - add paths to BBLAYERS:
<absolute-path>/meta-xilinx \ <absolute-path>/meta-xilinx/meta-zedboard \ <absolute-path>/meta-elphel393 \
- Step 3: Edit build/conf/local.conf - set MACHINE and other things:
BB_NUMBER_THREADS = "8" (depends on the PC's CPU) PARALLEL_MAKE = "-j 8" (depends on the PC's CPU) MACHINE ?= "zedboard"
Notes
- MACHINE="zedboard" is used to build the kernel. Doesn't matter for ramdisk.image.gz because the recipes don't have any bbappends for core-images.
Build kernel
bitbake linux-xlnx
Build ramdisk.image.gz
bitbake elphel393
Notes
- Current packages:
elphel393.bb: IMAGE_INSTALL = "packagegroup-core-boot python-core ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}"
- Also works:
elphel393.bb: IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}" IMAGE_INSTALL_append = "python-core"
- Why python-core and not just python?
- poky/meta/recipes-devtools/python/python-2.7-manifest.inc has a list in PACKAGES items from which should go into IMAGE_INSTALL
- Among all there's no python in the PACKAGES list.
- Does hob install all the PACKAGES if python is checked? Haven't tried, also the used hob version doesn't support saving recipes.
- (Is there a better solution?) Adding packages : apache2, php and i2c-tools, steps:
- Clone meta-oe from OpenEmbedded:
git clone -b dylan https://github.com/openembedded/meta-oe.git
- Lines to bblayers.conf:
<absolute-path>/meta-oe/meta-oe \ <absolute-path>/poky/meta-oe/meta-perl \ <absolute-path>/poky/meta-oe/meta-webserver \
- elphel393.bb (some discussions mention the leading space is mandatory but somehow it works even without it):
IMAGE_INSTALL_append = "<mandatory space?>python-core \ i2c-tools \ modphp \ apache2 \ php-cli"
- Why php-cli and not just php?
meta-oe/meta-oe/recipes-devtools/php/php.inc: PACKAGES = "${PN}-dbg ${PN}-cli ${PN}-cgi ${PN}-fpm ${PN}-fpm-apache2 ${PN}-pear ${PN}-dev ${PN}-staticdev ${PN}-doc ${PN}"
- PACKAGES includes php. What is installed? (No php-cli: missing /usr/bin/php) Didn't investigate.
- What does hob build if php is checked? Didn't test.
- Using php-cli installs php in the /usr/bin/. Tested.
- Using php-cli increases the unpacked image size from ~16MB to ~50MB.
- To fix the ERROR="Could not inherit file classes/vala.bbclass" in bitbake copy vala.bbclass from oe-core? or delete the conflicting recipes (2?)?
- To fix the ERROR="Failed to parse krb5_1.11.3.bb" in bitbake delete the directory meta-oe/meta-oe/recipes-connectivity/krb5
Notes
Build toolchain
- Step 1: build
bitbake meta-toolchain
- Step 2: install - launch installer from <some-path>/poky/build/tmp/deploy/