blob: 96bb0c3dc950a8db89fa0bdab090b9231e23961d [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#
Brad Bishopc342db32019-05-15 21:57:59 -04007# SPDX-License-Identifier: GPL-2.0-or-later
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010if ! $(return >/dev/null 2>&1) ; then
11 echo 'oe-buildenv-internal: error: this script must be sourced'
12 echo ''
13 echo 'Usage: . $OEROOT/scripts/oe-buildenv-internal &&'
14 echo ''
15 echo 'OpenEmbedded oe-buildenv-internal - an internal script that is'
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016 echo 'used in oe-init-build-env to initialize oe build environment'
Brad Bishop6e60e8b2018-02-01 10:27:11 -050017 echo ''
18 exit 2
19fi
20
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021# It is assumed OEROOT is already defined when this is called
22if [ -z "$OEROOT" ]; then
23 echo >&2 "Error: OEROOT is not defined!"
24 return 1
25fi
26
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050027if [ -z "$OE_SKIP_SDK_CHECK" ] && [ -n "$OECORE_SDK_VERSION" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028 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."
29 return 1
30fi
31
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032py_v27_check=$(python2 -c 'import sys; print sys.version_info >= (2,7,3)')
Patrick Williamsc0f7c042017-02-23 20:41:17 -060033if [ "$py_v27_check" != "True" ]; then
34 echo >&2 "OpenEmbedded requires 'python' to be python v2 (>= 2.7.3), not python v3."
35 echo >&2 "Please upgrade your python v2."
36fi
37unset py_v27_check
38
39# We potentially have code that doesn't parse correctly with older versions
40# of Python, and rather than fixing that and being eternally vigilant for
41# any other new feature use, just check the version here.
42py_v34_check=$(python3 -c 'import sys; print(sys.version_info >= (3,4,0))')
43if [ "$py_v34_check" != "True" ]; then
44 echo >&2 "BitBake requires Python 3.4.0 or later as 'python3'"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050045 return 1
Patrick Williamsc124f4f2015-09-15 14:41:29 -050046fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -060047unset py_v34_check
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050049if [ -z "$BDIR" ]; then
50 if [ -z "$1" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050051 BDIR="build"
52 else
53 BDIR="$1"
54 if [ "$BDIR" = "/" ]; then
55 echo >&2 "Error: / is not supported as a build directory."
56 return 1
57 fi
58
59 # Remove any possible trailing slashes. This is used to work around
60 # buggy readlink in Ubuntu 10.04 that doesn't ignore trailing slashes
61 # and hence "readlink -f new_dir_to_be_created/" returns empty.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050062 BDIR=$(echo $BDIR | sed -re 's|/+$||')
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050064 BDIR=$(readlink -f "$BDIR")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050065 if [ -z "$BDIR" ]; then
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050066 PARENTDIR=$(dirname "$1")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050067 echo >&2 "Error: the directory $PARENTDIR does not exist?"
68 return 1
69 fi
70 fi
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050071 if [ -n "$2" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050072 BITBAKEDIR="$2"
73 fi
74fi
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050075if [ "${BDIR#/}" != "$BDIR" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076 BUILDDIR="$BDIR"
77else
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050078 BUILDDIR="$(pwd)/$BDIR"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050079fi
80unset BDIR
81
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050082if [ -z "$BITBAKEDIR" ]; then
83 BITBAKEDIR="$OEROOT/bitbake$BBEXTRA"
Brad Bishop316dfdd2018-06-25 12:45:53 -040084 test -d "$BITBAKEDIR" || BITBAKEDIR="$OEROOT/../bitbake$BBEXTRA"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050085fi
86
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050087BITBAKEDIR=$(readlink -f "$BITBAKEDIR")
88BUILDDIR=$(readlink -f "$BUILDDIR")
Brad Bishopd7bf8c12018-02-25 22:55:05 -050089BBPATH=$BUILDDIR
90
91export BBPATH
Patrick Williamsc124f4f2015-09-15 14:41:29 -050092
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050093if [ ! -d "$BITBAKEDIR" ]; then
Patrick Williamsc0f7c042017-02-23 20:41:17 -060094 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 -050095 return 1
96fi
97
98# Make sure our paths are at the beginning of $PATH
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050099for newpath in "$BITBAKEDIR/bin" "$OEROOT/scripts"; do
100 # Remove any existences of $newpath from $PATH
101 PATH=$(echo $PATH | sed -re "s#(^|:)$newpath(:|$)#\2#g;s#^:##")
102
103 # Add $newpath to $PATH
104 PATH="$newpath:$PATH"
105done
106unset BITBAKEDIR newpath
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500107
108# Used by the runqemu script
109export BUILDDIR
110export PATH
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500111
112BB_ENV_EXTRAWHITE_OE="MACHINE DISTRO TCMODE TCLIBC HTTP_PROXY http_proxy \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500113HTTPS_PROXY https_proxy FTP_PROXY ftp_proxy FTPS_PROXY ftps_proxy ALL_PROXY \
114all_proxy NO_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY \
115SDKMACHINE BB_NUMBER_THREADS BB_NO_NETWORK PARALLEL_MAKE GIT_PROXY_COMMAND \
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600116SOCKS5_PASSWD SOCKS5_USER SCREENDIR STAMPS_DIR BBPATH_EXTRA BB_SETSCENE_ENFORCE"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500117
118BB_ENV_EXTRAWHITE="$(echo $BB_ENV_EXTRAWHITE $BB_ENV_EXTRAWHITE_OE | tr ' ' '\n' | LC_ALL=C sort --unique | tr '\n' ' ')"
119
120export BB_ENV_EXTRAWHITE