aboutsummaryrefslogtreecommitdiffstats
path: root/org.openembedded.bc.ui/scripts/poky_install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'org.openembedded.bc.ui/scripts/poky_install.sh')
-rw-r--r--org.openembedded.bc.ui/scripts/poky_install.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/org.openembedded.bc.ui/scripts/poky_install.sh b/org.openembedded.bc.ui/scripts/poky_install.sh
new file mode 100644
index 0000000..ba5bdf0
--- /dev/null
+++ b/org.openembedded.bc.ui/scripts/poky_install.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+# Installation script for Poky Pinky development branch
+# Adapted from instructions available at http://wiki.openembedded.net/index.php/Getting_started
+# This script can be executable as shell script after substituting {| |} variables with real values.
+# 4/3/2009 Ken Gilmer
+
+# These are the variables that are queried in the UI. The following lines are parsed by the install wizard.
+# {|D|Install Directory|R|${HOME}/oe||}
+# {|T|Init Script|R|poky-init-build-env||}
+
+# System Check
+which git
+which svn
+which python
+
+# Directory Setup
+[ -d ${Install Directory} ] || mkdir -p ${Install Directory}
+cd ${Install Directory}
+
+# Installing from Poky pinky branch
+svn export -r HEAD http://svn.o-hand.com/repos/poky/branches/pinky/
+mv pinky/* .
+rm -Rf pinky
+