diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2011-12-29 20:27:28 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2011-12-29 20:27:28 +0100 |
commit | e34ea88646b4ed9a3ecd95ceb26c7407eeb4bb1c (patch) | |
tree | adca09f922fc5264c9265e215dacb7075ca80516 /.zsh/zshenv/80_openembedded | |
parent | 51de1ce8347185eba8329e09b6edca4ce9891216 (diff) | |
parent | b172881065dea065ef6ba45eb0e4a908b50867f8 (diff) |
Merge branch 'master' of git+ssh://git.distanz.ch/home/tklauser/scm/dotfiles/zsh
Diffstat (limited to '.zsh/zshenv/80_openembedded')
-rw-r--r-- | .zsh/zshenv/80_openembedded | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.zsh/zshenv/80_openembedded b/.zsh/zshenv/80_openembedded new file mode 100644 index 0000000..0cda09e --- /dev/null +++ b/.zsh/zshenv/80_openembedded @@ -0,0 +1,18 @@ +# zshenv/80_openembedded +# +# set up variables specific to OpenEmbedded +# +# Copyright © 2011 Tobias Klauser <tklauser@distanz.ch> +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git + +export OEBASE=/home/tklauser/src/oe + +if [ -d $OEBASE ] ; then + path_append $OEBASE/bitbake/bin + export BBPATH=$OEBASE/build:$OEBASE/openembedded + export BB_ENV_EXTRAWHITE="OEBASE" +fi + +# vim:ft=zsh |