From 1b17c281c6876dabc27c3d43c4a6279a87c38626 Mon Sep 17 00:00:00 2001 From: Ken Gilmer Date: Sat, 25 Jun 2011 13:48:49 +0900 Subject: bitbake commander: update OE installation to use newer bitbake and other local.conf defaults. Change-Id: I891029398fc51c94febb12a40e02fcd3db03c660 --- org.openembedded.bc.ui/scripts/oe_dev_install.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/org.openembedded.bc.ui/scripts/oe_dev_install.sh b/org.openembedded.bc.ui/scripts/oe_dev_install.sh index 58e18a2..1e0d5f4 100644 --- a/org.openembedded.bc.ui/scripts/oe_dev_install.sh +++ b/org.openembedded.bc.ui/scripts/oe_dev_install.sh @@ -9,8 +9,8 @@ # {|D|Build Directory|R|${HOME}/oe_build||} # {|T|Repository URL|R|git://git.openembedded.net/openembedded||} # {|T|Init Script|R|init.sh||} -# {|T|Distribution|R|angstrom-2008.1||} -# {|T|Machine|R|om-gta01||} +# {|T|Distribution|R|angstrom-2010.x||} +# {|T|Machine|R|beagleboard||} # {|T|Package Cache Directory|R|${HOME}/sources||} # System Check @@ -18,6 +18,8 @@ which git which svn which python +BITBAKE_VERSION=1.10.2 + # Directory Setup [ -d ${Install Directory} ] || mkdir -p ${Install Directory} cd ${Install Directory} @@ -25,10 +27,10 @@ mkdir -p build/conf [ -d ${Build Directory} ] || mkdir -p ${Build Directory} # Bitbake Setup -wget http://download.berlios.de/bitbake/bitbake-1.8.18.tar.gz -tar xfzv bitbake-1.8.18.tar.gz -mv bitbake-1.8.18 bitbake -rm bitbake-1.8.18.tar.gz +wget http://download.berlios.de/bitbake/bitbake-$BITBAKE_VERSION.tar.gz +tar xfzv bitbake-$BITBAKE_VERSION.tar.gz +mv bitbake-$BITBAKE_VERSION bitbake +rm bitbake-$BITBAKE_VERSION.tar.gz # OpenEmbedded Setup -- cgit 1.2.3-korg