Searched hist:d5afde3325b0622a2e9d19f41192a88321145014 (Results 1 – 2 of 2) sorted by relevance
/openbmc/docs/ |
H A D | cheatsheet.md | diff d5afde3325b0622a2e9d19f41192a88321145014 Fri Mar 22 13:41:44 CDT 2019 Adriana Kobylak <anoo@us.ibm.com> cheatsheet: Add instructions to build a machine configuration
The instructions include setting the MACHINE environment variable, and making this value available to BitBake via BB_ENV_EXTRAWHITE.
Reference: - https://www.yoctoproject.org/docs/1.6/bitbake-user-manual/bitbake-user-manual.html#var-BB_ENV_EXTRAWHITE - https://stackoverflow.com/questions/17366984/is-it-possible-to-pass-in-command-line-variables-to-a-bitbake-build
Change-Id: Iab16dfb7e6692e876efd6a23d4455d5aff3d6510 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
|
/openbmc/openbmc-build-scripts/ |
H A D | build-setup.sh | diff 62a1b10ad35adf38e6b3210535f1a683411da2d2 Tue May 07 12:14:45 CDT 2019 Adriana Kobylak <anoo@us.ibm.com> build-setup: Pass MACHINE variable to bitbake
There's no need to manually overwrite the local.conf file with a MACHINE value that is different to the default. This variable can be made available to bitbake using export commands. Reference: https://github.com/openbmc/docs/commit/d5afde3325b0622a2e9d19f41192a88321145014
Tested: Verified the MACHINE variable was exported for the qemux86-64 target:
- Before:
++ unset OEROOT ++ '[' -z /home/ubuntu/175744354/openbmc/build ']' ++ cd /home/ubuntu/175744354/openbmc/build + [[ -n qemux86-64 ]] + sed 's/^MACHINE\ ??=.*/MACHINE\ ??=\ "qemux86-64"/' -i conf/local.conf + cat + bitbake obmc-phosphor-image obmc-phosphor-debug-tarball
- After:
++ unset OEROOT ++ '[' -z /home/ubuntu/1669429605/openbmc/build ']' ++ cd /home/ubuntu/1669429605/openbmc/build + [[ -n qemux86-64 ]] + export MACHINE=qemux86-64 + MACHINE=qemux86-64 + export 'BB_ENV_EXTRAWHITE= MACHINE' + BB_ENV_EXTRAWHITE=' MACHINE' + cat + bitbake obmc-phosphor-image obmc-phosphor-debug-tarball
Change-Id: I2c30a6d48f801d1a9ea9a218ba5f20ec2565819e Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
|