diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2010-11-24 16:25:28 -0600 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-20 23:00:25 +0000 |
commit | 86b6b093374c37aeca87cdc36fc56440919d9458 (patch) | |
tree | 5380badad53264eaa2d4ff07f178bf92c3679cb9 /scripts/poky-env-internal | |
parent | 9975c00c1a6a9ae1c39678dec0986f4c62418c96 (diff) | |
download | poky-86b6b093374c37aeca87cdc36fc56440919d9458.tar.gz |
poky-init-build-env: Breakup the environment script
Break up the scripts/poky-env-internal into two parts:
1) Chunk that is sourced and sets up the environment
2) Chunk that is executed and configures the build directory
OEROOT configuration was moved into the initial poky-init-build-env script.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'scripts/poky-env-internal')
-rwxr-xr-x | scripts/poky-env-internal | 102 |
1 files changed, 9 insertions, 93 deletions
diff --git a/scripts/poky-env-internal b/scripts/poky-env-internal index 1557f9ddbd..2ec07ed061 100755 --- a/scripts/poky-env-internal +++ b/scripts/poky-env-internal | |||
@@ -18,9 +18,11 @@ | |||
18 | # along with this program; if not, write to the Free Software | 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 | 19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
20 | 20 | ||
21 | # scripts/ is a sub-directory of OEROOT, we use readlink to get the full path | 21 | # It is assumed OEROOT is already defined when this is called |
22 | SCRIPTPATH=`readlink -f "$BASH_SOURCE"` | 22 | if [ -z "$OEROOT" ]; then |
23 | OEROOT="`dirname $SCRIPTPATH`/../" | 23 | echo >&2 "Error: OEROOT is not defined!" |
24 | return | ||
25 | fi | ||
24 | 26 | ||
25 | if [ "x$BDIR" = "x" ]; then | 27 | if [ "x$BDIR" = "x" ]; then |
26 | if [ "x$1" = "x" ]; then | 28 | if [ "x$1" = "x" ]; then |
@@ -36,109 +38,23 @@ else | |||
36 | fi | 38 | fi |
37 | unset BDIR | 39 | unset BDIR |
38 | 40 | ||
39 | mkdir -p $BUILDDIR/conf | ||
40 | if ! (test -w "$BUILDDIR"); then | ||
41 | echo >&2 "Error: Cannot write to $BUILDDIR, perhaps try sourcing with a writable path? i.e. . poky-init-build-env ~/my-build" | ||
42 | return | ||
43 | fi | ||
44 | |||
45 | BITBAKEDIR="$OEROOT/bitbake$BBEXTRA/" | 41 | BITBAKEDIR="$OEROOT/bitbake$BBEXTRA/" |
46 | 42 | ||
47 | PATH="${OEROOT}/scripts:$BITBAKEDIR/bin/:$PATH" | ||
48 | |||
49 | # Remove any symlinks from paths | ||
50 | BITBAKEDIR=`readlink -f "$BITBAKEDIR"` | 43 | BITBAKEDIR=`readlink -f "$BITBAKEDIR"` |
51 | BUILDDIR=`readlink -f "$BUILDDIR"` | 44 | BUILDDIR=`readlink -f "$BUILDDIR"` |
52 | OEROOT=`readlink -f "$OEROOT"` | ||
53 | |||
54 | cd "$BUILDDIR" | ||
55 | 45 | ||
56 | if ! (test -d "$BITBAKEDIR" && test -d "$BUILDDIR"); then | 46 | if ! (test -d "$BITBAKEDIR"); then |
57 | echo >&2 "Error: Not all directories exist! Did you run this script in poky directory?" | 47 | echo >&2 "Error: The bitbake directory ($BITBAKEDIR) does not exist! Did you source the script in the poky directory?" |
58 | return | 48 | return |
59 | fi | 49 | fi |
60 | 50 | ||
61 | # | 51 | PATH="${OEROOT}/scripts:$BITBAKEDIR/bin/:$PATH" |
62 | # $POKYCONF can point to a directory for the template local.conf & bblayers.conf | ||
63 | # | ||
64 | if [ "x" != "x$POKYCONF" ]; then | ||
65 | if ! (test -d "$POKYCONF"); then | ||
66 | # Allow POKYCONF=meta-xyz/conf as a shortcut | ||
67 | if [ -d "$OEROOT/$POKYCONF" ]; then | ||
68 | POKYCONF="$OEROOT/$POKYCONF" | ||
69 | fi | ||
70 | if ! (test -d "$POKYCONF"); then | ||
71 | echo >&2 "Error: '$POKYCONF' must be a directory containing local.conf & bblayers.conf" | ||
72 | return | ||
73 | fi | ||
74 | fi | ||
75 | POKYLAYERCONF="$POKYCONF/bblayers.conf" | ||
76 | POKYLOCALCONF="$POKYCONF/local.conf" | ||
77 | fi | ||
78 | |||
79 | if [ "x" = "x$POKYLOCALCONF" ]; then | ||
80 | POKYLOCALCONF="$OEROOT/meta/conf/local.conf.sample" | ||
81 | fi | ||
82 | if ! (test -r "$BUILDDIR/conf/local.conf"); then | ||
83 | cat <<EOM | ||
84 | You had no conf/local.conf file. Poky has created this configuration file for | ||
85 | you with some default values. You may wish to edit it to use a different MACHINE | ||
86 | (target hardware) or enable parallel build options to take advantage of multiple | ||
87 | cores for example. See the file for more information as common configuration | ||
88 | options are commented. | ||
89 | |||
90 | Also, for more information see the Poky handbook: | ||
91 | http://pokylinux.org/doc/poky-handbook.html | ||
92 | |||
93 | EOM | ||
94 | cp -f $POKYLOCALCONF $BUILDDIR/conf/local.conf | ||
95 | fi | ||
96 | |||
97 | if [ "x" = "x$POKYLAYERCONF" ]; then | ||
98 | POKYLAYERCONF="$OEROOT/meta/conf/bblayers.conf.sample" | ||
99 | fi | ||
100 | if ! (test -r "$BUILDDIR/conf/bblayers.conf"); then | ||
101 | cat <<EOM | ||
102 | You had no conf/bblayers.conf file. Poky has created this configuration file for | ||
103 | you with some default values. To add additional metadata layers into your | ||
104 | configuration please add entries to this file. | ||
105 | |||
106 | For more information see the Poky handbook: | ||
107 | http://pokylinux.org/doc/poky-handbook.html | ||
108 | |||
109 | EOM | ||
110 | |||
111 | # Put the abosolute path to the layers in bblayers.conf so we can run | ||
112 | # bitbake without the init script after the first run | ||
113 | sed "s|##POKYBASE##|$OEROOT|g" $POKYLAYERCONF > $BUILDDIR/conf/bblayers.conf | ||
114 | fi | ||
115 | |||
116 | # Prevent disturbing a new GIT clone in same console | ||
117 | unset POKYLOCALCONF | ||
118 | unset POKYLAYERCONF | ||
119 | unset BITBAKEDIR | 52 | unset BITBAKEDIR |
120 | unset OEROOT | ||
121 | 53 | ||
122 | # Used by the poky-qemu script | 54 | # Used by the poky-qemu script |
123 | export BUILDDIR | 55 | export BUILDDIR |
124 | export PATH | 56 | export PATH |
57 | |||
125 | # Stop multi byte characters breaking the patcher stuff - This is for Redhat / Fedora people really | 58 | # Stop multi byte characters breaking the patcher stuff - This is for Redhat / Fedora people really |
126 | export LANG=C | 59 | export LANG=C |
127 | export BB_ENV_EXTRAWHITE="MACHINE DISTRO POKYMODE POKYLIBC http_proxy ftp_proxy https_proxy all_proxy ALL_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY SDKMACHINE BB_NUMBER_THREADS GIT_PROXY_COMMAND PSEUDO_DISABLED" | 60 | export BB_ENV_EXTRAWHITE="MACHINE DISTRO POKYMODE POKYLIBC http_proxy ftp_proxy https_proxy all_proxy ALL_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY SDKMACHINE BB_NUMBER_THREADS GIT_PROXY_COMMAND PSEUDO_DISABLED" |
128 | |||
129 | cat <<EOM | ||
130 | |||
131 | ### Shell environment set up for Poky builds. ### | ||
132 | |||
133 | You can now run 'bitbake <target>' | ||
134 | |||
135 | Common targets are: | ||
136 | poky-image-minimal | ||
137 | poky-image-sato | ||
138 | meta-toolchain | ||
139 | meta-toolchain-sdk | ||
140 | |||
141 | You can also run generated qemu images with a command like 'poky-qemu qemux86' | ||
142 | |||
143 | EOM | ||
144 | |||