blob: 6ffb55e4f7a08bf17d9616efcbc77fb8dd6f9d13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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"
else
unset OEBASE
fi
# vim:ft=zsh
|