diff options
author | Matthew Allum <mallum@openedhand.com> | 2005-08-31 11:21:44 +0000 |
---|---|---|
committer | Matthew Allum <mallum@openedhand.com> | 2005-08-31 11:21:44 +0000 |
commit | 8e65c870f9b2edb71b5e39d4a7314eca0c5a0f9a (patch) | |
tree | 1bd78c7d1e61885dbac536918fa337c28e2e8592 /setdevenv | |
parent | d3fa3b8f9c1e302a532cee20278f38fc59cc32cb (diff) | |
download | openembedded-core-8e65c870f9b2edb71b5e39d4a7314eca0c5a0f9a.tar.gz openembedded-core-8e65c870f9b2edb71b5e39d4a7314eca0c5a0f9a.tar.bz2 openembedded-core-8e65c870f9b2edb71b5e39d4a7314eca0c5a0f9a.zip |
Make setdevenv automagically setup local.conf if it dont exist
git-svn-id: https://svn.o-hand.com/repos/poky@4 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'setdevenv')
-rwxr-xr-x | setdevenv | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -4,7 +4,7 @@ # Change this to the location of this file. # Also update the locations at the top of conf/local.conf # -OEROOT=/usr/ohoe/ +OEROOT=`pwd` BBDIR=$OEROOT/bitbake/ PKGDIR=$OEROOT/openembedded/ @@ -20,10 +20,15 @@ PKGDIR=`readlink -f $PKGDIR` BUILDDIR=`readlink -f $BUILDDIR` if ! (test -d $BBDIR && test -d $PKGDIR && test -d $BUILDDIR); then - echo >&2 "Error: Not all directories exist!" + echo >&2 "Error: Not all directories exist! Did you run this script in poky directory?" exit 1 fi - + +if !(test -r $PKGDIR/conf/local.conf); then + echo "Setting up initial '$PKGDIR/conf/local.conf'." + cat $PKGDIR/conf/local.conf.sample | sed -e"s|POKYROOT|${OEROOT}|" > $PKGDIR/conf/local.conf +fi + BBPATH=$BBDIR if test x"$BBDIR" != x"$PKGDIR"; then BBPATH=$PKGDIR:$BBPATH |