summaryrefslogtreecommitdiffstats
path: root/openbmc-env
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2015-09-16 09:22:10 -0500
committerPatrick Williams <patrick@stwcx.xyz>2015-09-16 09:22:10 -0500
commit37eda0c49a9fc0a15002500e40da9c8bec70ebf3 (patch)
tree4a7513c85cb3b3ebd8a2814709f8f24c45b3d232 /openbmc-env
parent885cdf3f44f8a7a4f1972cb3adc18b1e80d606ce (diff)
downloadtalos-openbmc-37eda0c49a9fc0a15002500e40da9c8bec70ebf3.tar.gz
talos-openbmc-37eda0c49a9fc0a15002500e40da9c8bec70ebf3.zip
Environment helper utility.
Diffstat (limited to 'openbmc-env')
-rw-r--r--openbmc-env16
1 files changed, 16 insertions, 0 deletions
diff --git a/openbmc-env b/openbmc-env
new file mode 100644
index 000000000..03e8628e1
--- /dev/null
+++ b/openbmc-env
@@ -0,0 +1,16 @@
+if [ -n "$BASH_SOURCE" ]; then
+ OBMCROOT="`dirname $BASH_SOURCE`"
+elif [ -n "$ZSH_NAME" ]; then
+ OBMCROOT="`dirname $0`"
+else
+ OBMCROOT="`pwd`"
+fi
+
+if [ -f $OBMCROOT/customrc ]; then
+ echo "### Sourcing customrc ###"
+ . $OBMCROOT/customrc
+fi
+
+echo "### Initializing OE build env ###"
+. $OBMCROOT/oe-init-build-env
+
OpenPOWER on IntegriCloud