diff options
Diffstat (limited to 'scripts/poky-autobuild')
-rwxr-xr-x | scripts/poky-autobuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild index 47dba812c8..bd2a752db4 100755 --- a/scripts/poky-autobuild +++ b/scripts/poky-autobuild | |||
@@ -30,6 +30,13 @@ elif [ "$CURRDIR" = "/srv/poky/autobuild/incremental-shihtzu/build" ]; then | |||
30 | ABTARGET="incremental" | 30 | ABTARGET="incremental" |
31 | elif [ "$CURRDIR" = "/srv/poky/autobuild/full-darwin-shihtzu/build" ]; then | 31 | elif [ "$CURRDIR" = "/srv/poky/autobuild/full-darwin-shihtzu/build" ]; then |
32 | ABTARGET="darwin" | 32 | ABTARGET="darwin" |
33 | if [ ! -d "$CURRDIR/meta-darwin" ]; then | ||
34 | svn co http://svn.o-hand.com/repos/poky/branches/experimental/meta-darwin $CURRDIR/meta-darwin | ||
35 | else | ||
36 | cd $CURRDIR/meta-darwin | ||
37 | svn up | ||
38 | cd $CURRDIR | ||
39 | fi | ||
33 | fi | 40 | fi |
34 | 41 | ||
35 | if [ "xpreamble" = "x$1" ]; then | 42 | if [ "xpreamble" = "x$1" ]; then |
@@ -64,12 +71,6 @@ if [ ! -e "$CONFFILE" ]; then | |||
64 | echo 'PARALLEL_MAKE = "-j 6"' >> "$CONFFILE" | 71 | echo 'PARALLEL_MAKE = "-j 6"' >> "$CONFFILE" |
65 | echo 'DL_DIR = "/srv/poky/sources"' >> "$CONFFILE" | 72 | echo 'DL_DIR = "/srv/poky/sources"' >> "$CONFFILE" |
66 | if [ "$ABTARGET" = "darwin" ]; then | 73 | if [ "$ABTARGET" = "darwin" ]; then |
67 | if [ ! -d "$CURRDIR/meta-darwin" ]; then | ||
68 | svn co http://svn.o-hand.com/repos/poky/branches/experimental/meta-darwin $CURRDIR/meta-darwin | ||
69 | else | ||
70 | cd $CURRDIR/meta-darwin | ||
71 | svn up | ||
72 | fi | ||
73 | echo 'PACKAGE_CLASSES += "package_tar"' >> "$CONFFILE" | 74 | echo 'PACKAGE_CLASSES += "package_tar"' >> "$CONFFILE" |
74 | echo "BBFILES += \"$CURRDIR/meta-darwin/packages/*/*.bb\"" >> "./conf/local.conf" | 75 | echo "BBFILES += \"$CURRDIR/meta-darwin/packages/*/*.bb\"" >> "./conf/local.conf" |
75 | echo 'POKYMODE = "darwin"' >> "$CONFFILE" | 76 | echo 'POKYMODE = "darwin"' >> "$CONFFILE" |