blob: 52ce32987c01c042c692692da1fb1310f161ca20 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/bin/sh
2
3# OE-Core Build Environment Setup Script
4#
5# Copyright (C) 2006-2011 Linux Foundation
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
Brad Bishop6e60e8b2018-02-01 10:27:11 -050021if ! $(return >/dev/null 2>&1) ; then
22 echo 'oe-buildenv-internal: error: this script must be sourced'
23 echo ''
24 echo 'Usage: . $OEROOT/scripts/oe-buildenv-internal &&'
25 echo ''
26 echo 'OpenEmbedded oe-buildenv-internal - an internal script that is'
Brad Bishopd7bf8c12018-02-25 22:55:05 -050027 echo 'used in oe-init-build-env to initialize oe build environment'
Brad Bishop6e60e8b2018-02-01 10:27:11 -050028 echo ''
29 exit 2
30fi
31
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032# It is assumed OEROOT is already defined when this is called
33if [ -z "$OEROOT" ]; then
34 echo >&2 "Error: OEROOT is not defined!"
35 return 1
36fi
37
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050038if [ -z "$OE_SKIP_SDK_CHECK" ] && [ -n "$OECORE_SDK_VERSION" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039 echo >&2 "Error: The OE SDK/ADT was detected as already being present in this shell environment. Please use a clean shell when sourcing this environment script."
40 return 1
41fi
42
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080043py_v27_check=$(python2 -c 'import sys; print sys.version_info >= (2,7,3)')
Patrick Williamsc0f7c042017-02-23 20:41:17 -060044if [ "$py_v27_check" != "True" ]; then
45 echo >&2 "OpenEmbedded requires 'python' to be python v2 (>= 2.7.3), not python v3."
46 echo >&2 "Please upgrade your python v2."
47fi
48unset py_v27_check
49
50# We potentially have code that doesn't parse correctly with older versions
51# of Python, and rather than fixing that and being eternally vigilant for
52# any other new feature use, just check the version here.
53py_v34_check=$(python3 -c 'import sys; print(sys.version_info >= (3,4,0))')
54if [ "$py_v34_check" != "True" ]; then
55 echo >&2 "BitBake requires Python 3.4.0 or later as 'python3'"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050056 return 1
Patrick Williamsc124f4f2015-09-15 14:41:29 -050057fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -060058unset py_v34_check
Patrick Williamsc124f4f2015-09-15 14:41:29 -050059
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050060if [ -z "$BDIR" ]; then
61 if [ -z "$1" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050062 BDIR="build"
63 else
64 BDIR="$1"
65 if [ "$BDIR" = "/" ]; then
66 echo >&2 "Error: / is not supported as a build directory."
67 return 1
68 fi
69
70 # Remove any possible trailing slashes. This is used to work around
71 # buggy readlink in Ubuntu 10.04 that doesn't ignore trailing slashes
72 # and hence "readlink -f new_dir_to_be_created/" returns empty.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050073 BDIR=$(echo $BDIR | sed -re 's|/+$||')
Patrick Williamsc124f4f2015-09-15 14:41:29 -050074
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050075 BDIR=$(readlink -f "$BDIR")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076 if [ -z "$BDIR" ]; then
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050077 PARENTDIR=$(dirname "$1")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050078 echo >&2 "Error: the directory $PARENTDIR does not exist?"
79 return 1
80 fi
81 fi
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050082 if [ -n "$2" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050083 BITBAKEDIR="$2"
84 fi
85fi
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050086if [ "${BDIR#/}" != "$BDIR" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050087 BUILDDIR="$BDIR"
88else
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050089 BUILDDIR="$(pwd)/$BDIR"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050090fi
91unset BDIR
92
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050093if [ -z "$BITBAKEDIR" ]; then
94 BITBAKEDIR="$OEROOT/bitbake$BBEXTRA"
Brad Bishop316dfdd2018-06-25 12:45:53 -040095 test -d "$BITBAKEDIR" || BITBAKEDIR="$OEROOT/../bitbake$BBEXTRA"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050096fi
97
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050098BITBAKEDIR=$(readlink -f "$BITBAKEDIR")
99BUILDDIR=$(readlink -f "$BUILDDIR")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500100BBPATH=$BUILDDIR
101
102export BBPATH
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500103
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500104if [ ! -d "$BITBAKEDIR" ]; then
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600105 echo >&2 "Error: The bitbake directory ($BITBAKEDIR) does not exist! Please ensure a copy of bitbake exists at this location or specify an alternative path on the command line"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500106 return 1
107fi
108
109# Make sure our paths are at the beginning of $PATH
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500110for newpath in "$BITBAKEDIR/bin" "$OEROOT/scripts"; do
111 # Remove any existences of $newpath from $PATH
112 PATH=$(echo $PATH | sed -re "s#(^|:)$newpath(:|$)#\2#g;s#^:##")
113
114 # Add $newpath to $PATH
115 PATH="$newpath:$PATH"
116done
117unset BITBAKEDIR newpath
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500118
119# Used by the runqemu script
120export BUILDDIR
121export PATH
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500122
123BB_ENV_EXTRAWHITE_OE="MACHINE DISTRO TCMODE TCLIBC HTTP_PROXY http_proxy \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500124HTTPS_PROXY https_proxy FTP_PROXY ftp_proxy FTPS_PROXY ftps_proxy ALL_PROXY \
125all_proxy NO_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY \
126SDKMACHINE BB_NUMBER_THREADS BB_NO_NETWORK PARALLEL_MAKE GIT_PROXY_COMMAND \
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600127SOCKS5_PASSWD SOCKS5_USER SCREENDIR STAMPS_DIR BBPATH_EXTRA BB_SETSCENE_ENFORCE"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500128
129BB_ENV_EXTRAWHITE="$(echo $BB_ENV_EXTRAWHITE $BB_ENV_EXTRAWHITE_OE | tr ' ' '\n' | LC_ALL=C sort --unique | tr '\n' ' ')"
130
131export BB_ENV_EXTRAWHITE