summaryrefslogtreecommitdiffstats
path: root/scripts/oe-setup-builddir
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-20 18:04:39 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-21 00:29:30 +0100
commit3ba0b8284dfe6b631bddde9c1654ffa680cd2de1 (patch)
tree01695fdbc251fe5f26601288e5844886e3ca427c /scripts/oe-setup-builddir
parente7126c1e53a85c36c312fedebac8bce983e55fb3 (diff)
downloadpoky-3ba0b8284dfe6b631bddde9c1654ffa680cd2de1.tar.gz
poky-setup-builddir: Rename to oe-setup-builddir and clean up POKY variable references
(From OE-Core rev: ac7411a885f53d687e65fdb6fd02510c09b97dc8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-setup-builddir')
-rw-r--r--scripts/oe-setup-builddir113
1 files changed, 113 insertions, 0 deletions
diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir
new file mode 100644
index 0000000000..0e616a7805
--- /dev/null
+++ b/scripts/oe-setup-builddir
@@ -0,0 +1,113 @@
1#!/bin/sh
2
3# Poky Build Enviroment Setup Script
4#
5# Copyright (C) 2006-2007 OpenedHand Ltd.
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
21if [ -z "$BUILDDIR" ]; then
22 echo >&2 "Error: The build directory (BUILDDIR) must be set!"
23 exit 1
24fi
25
26mkdir -p $BUILDDIR/conf
27
28if ! (test -d "$BUILDDIR"); then
29 echo >&2 "Error: The builddir ($BUILDDIR) does not exist!"
30 exit 1
31fi
32
33if ! (test -w "$BUILDDIR"); then
34 echo >&2 "Error: Cannot write to $BUILDDIR, perhaps try sourcing with a writable path? i.e. . oe-init-build-env ~/my-build"
35 exit 1
36fi
37
38cd "$BUILDDIR"
39
40#
41# $TEMPLATECONF can point to a directory for the template local.conf & bblayers.conf
42#
43if [ "x" != "x$TEMPLATECONF" ]; then
44 if ! (test -d "$TEMPLATECONF"); then
45 # Allow TEMPLATECONF=meta-xyz/conf as a shortcut
46 if [ -d "$OEROOT/$TEMPLATECONF" ]; then
47 TEMPLATECONF="$OEROOT/$POKYCONF"
48 fi
49 if ! (test -d "$TEMPLATECONF"); then
50 echo >&2 "Error: '$TEMPLATECONF' must be a directory containing local.conf & bblayers.conf"
51 return
52 fi
53 fi
54 OECORELAYERCONF="$TEMPLATECONF/bblayers.conf"
55 OECORELOCALCONF="$TEMPLATECONF/local.conf"
56fi
57
58if [ "x" = "x$OECORELOCALCONF" ]; then
59 OECORELOCALCONF="$OEROOT/meta/conf/local.conf.sample"
60fi
61if ! (test -r "$BUILDDIR/conf/local.conf"); then
62cat <<EOM
63You had no conf/local.conf file. Poky has created this configuration file for
64you with some default values. You may wish to edit it to use a different MACHINE
65(target hardware) or enable parallel build options to take advantage of multiple
66cores for example. See the file for more information as common configuration
67options are commented.
68
69Also, for more information see the Poky Reference Manual:
70 http://yoctoproject.org/community/documentation
71
72EOM
73 cp -f $OECORELOCALCONF $BUILDDIR/conf/local.conf
74fi
75
76if [ "x" = "x$OECORELAYERCONF" ]; then
77 OECORELAYERCONF="$OEROOT/meta/conf/bblayers.conf.sample"
78fi
79if ! (test -r "$BUILDDIR/conf/bblayers.conf"); then
80cat <<EOM
81You had no conf/bblayers.conf file. Poky has created this configuration file for
82you with some default values. To add additional metadata layers into your
83configuration please add entries to this file.
84
85For more information see the Poky Reference Manual:
86 http://yoctoproject.org/community/documentation
87
88EOM
89
90 # Put the abosolute path to the layers in bblayers.conf so we can run
91 # bitbake without the init script after the first run
92 sed "s|##COREBASE##|$OEROOT|g" $OECORELAYERCONF > $BUILDDIR/conf/bblayers.conf
93fi
94
95# Prevent disturbing a new GIT clone in same console
96unset OECORELOCALCONF
97unset OECORELAYERCONF
98
99cat <<EOM
100
101### Shell environment set up for Poky builds. ###
102
103You can now run 'bitbake <target>'
104
105Common targets are:
106 core-image-minimal
107 core-image-sato
108 meta-toolchain
109 meta-toolchain-sdk
110
111You can also run generated qemu images with a command like 'runqemu qemux86'
112
113EOM