aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Gilmer <kgilmer@gmail.com>2011-06-25 13:48:49 +0900
committerKen Gilmer <kgilmer@gmail.com>2011-06-25 13:48:49 +0900
commit1b17c281c6876dabc27c3d43c4a6279a87c38626 (patch)
tree22d7210381ea14630f2db98e93f626760137ce36
parentffd072269da186f04757fdfd4ba43cec27c5c571 (diff)
downloadeclipsetools-1b17c281c6876dabc27c3d43c4a6279a87c38626.tar.gz
bitbake commander: update OE installation to use newer bitbake and
other local.conf defaults. Change-Id: I891029398fc51c94febb12a40e02fcd3db03c660
-rw-r--r--org.openembedded.bc.ui/scripts/oe_dev_install.sh14
1 files 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