diff options
author | Fabien Proriol <fabien.proriol@kazoe.org> | 2025-05-23 18:30:47 +0200 |
---|---|---|
committer | Fabien Proriol <fabien.proriol@kazoe.org> | 2025-05-23 18:30:47 +0200 |
commit | 09783505e865bab1626fa70b15ea64c6e782fd4a (patch) | |
tree | 24db454ef45f09c464c4fbb6f8cfa354b664e7fd /tools/oe-init-build-env | |
parent | 5840b7823d8b03c249da2d3ed31514cc41f80cbf (diff) |
Add default conf and tools
Diffstat (limited to 'tools/oe-init-build-env')
-rwxr-xr-x | tools/oe-init-build-env | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/oe-init-build-env b/tools/oe-init-build-env new file mode 100755 index 0000000..2ae4f63 --- /dev/null +++ b/tools/oe-init-build-env @@ -0,0 +1,11 @@ +export BASH_SOURCE="$(pwd)/oe-init-build-env" +export OEROOT=$(pwd) +export PATH=$(pwd)/:$(pwd)/meta-kazoe/tools/:$PATH + +BUILD_DIR=$1 +BUILD_CONF_DIR=$(pwd)/$BUILD_DIR/conf +export YOCTO_ROOT_DIR=$(pwd) + +. $(pwd)/meta-yocto/oe-init-build-env $* + +export BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS YOCTO_ROOT_DIR" |