blob: 64795c48d2746db78b600697b29e82860a3abaca [file] [log] [blame]
bbahnsenb9e16a82006-04-24 16:38:10 +00001#
hhtian92063c42011-02-16 12:21:31 +00002# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
hhtian24542fb2010-04-29 15:17:20 +00003# This program and the accompanying materials
bbahnsenb9e16a82006-04-24 16:38:10 +00004# are licensed and made available under the terms and conditions of the BSD License
5# which accompanies this distribution. The full text of the license may be found at
6# http://opensource.org/licenses/bsd-license.php
7#
8# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
9# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
klu22b1473c2009-07-08 05:54:53 +000010#
11# In *inux environment, the build tools's source is required and need to be compiled
12# firstly, please reference https://edk2.tianocore.org/unix-getting-started.html to
13# to get how to setup build tool.
14#
15# After build tool is downloaded and compiled, a soft symbol linker need to be created
16# at <workspace>/Conf. For example: ln -s /work/BaseTools /work/edk2/Conf/BaseToolsSource.
17#
bbahnsenb9e16a82006-04-24 16:38:10 +000018# Setup the environment for unix-like systems running a bash-like shell.
bbahnsen6dbea972006-11-14 17:57:07 +000019# This file must be "sourced" not merely executed. For example: ". edksetup.sh"
klu22b1473c2009-07-08 05:54:53 +000020#
bbahnsen6dbea972006-11-14 17:57:07 +000021# CYGWIN users: Your path and filename related environment variables should be
22# set up in the unix style. This script will make the necessary conversions to
23# windows style.
klu22b1473c2009-07-08 05:54:53 +000024#
25# Please reference edk2 user manual for more detail descriptions at https://edk2.tianocore.org/files/documents/64/494/EDKII_UserManual.pdf
26#
bbahnsenb9e16a82006-04-24 16:38:10 +000027
Parmeshwr Prasad729220e2014-01-28 02:18:23 +000028function HelpMsg()
29{
30 echo Please note: This script must be \'sourced\' so the environment can be changed.
31 echo ". edksetup.sh"
32 echo "source edksetup.sh"
Leif Lindholm1bb6bfa2014-01-30 19:26:53 +000033 return 1
Parmeshwr Prasad729220e2014-01-28 02:18:23 +000034}
35
Paolo Bonzinid5493442014-07-28 17:37:40 +000036function SetWorkspace()
37{
38 #
39 # If WORKSPACE is already set, then we can return right now
40 #
41 if [ -n "$WORKSPACE" ]
42 then
43 return 0
44 fi
45
46 if [ ! ${BASH_SOURCE[0]} -ef ./edksetup.sh ]
47 then
48 echo Run this script from the base of your tree. For example:
49 echo " cd /Path/To/Edk/Root"
50 echo " . edksetup.sh"
51 return 1
52 fi
53
54 #
55 # Check for BaseTools/BuildEnv before dirtying the user's environment.
56 #
57 if [ ! -f BaseTools/BuildEnv ] && [ -z "$EDK_TOOLS_PATH" ]
58 then
59 echo BaseTools not found in your tree, and EDK_TOOLS_PATH is not set.
60 echo Please point EDK_TOOLS_PATH at the directory that contains
61 echo the EDK2 BuildEnv script.
62 return 1
63 fi
64
65 #
66 # Set $WORKSPACE
67 #
68 export WORKSPACE=`pwd`
69
70 return 0
71}
72
Parmeshwr Prasad729220e2014-01-28 02:18:23 +000073function SetupEnv()
74{
Paolo Bonzini7bc14212014-07-28 17:37:35 +000075 if [ -n "$EDK_TOOLS_PATH" ]
Parmeshwr Prasad729220e2014-01-28 02:18:23 +000076 then
Paolo Bonzini7bc14212014-07-28 17:37:35 +000077 . $EDK_TOOLS_PATH/BuildEnv $*
Paolo Bonzinid5493442014-07-28 17:37:40 +000078 elif [ -f "$WORKSPACE/BaseTools/BuildEnv" ]
Paolo Bonzini7bc14212014-07-28 17:37:35 +000079 then
Parmeshwr Prasad729220e2014-01-28 02:18:23 +000080 . $WORKSPACE/BaseTools/BuildEnv $*
Paolo Bonzini7bc14212014-07-28 17:37:35 +000081 else
Paolo Bonzinid5493442014-07-28 17:37:40 +000082 echo BaseTools not found in your tree, and EDK_TOOLS_PATH is not set.
83 echo Please check that WORKSPACE is not set incorrectly in your
84 echo shell, or point EDK_TOOLS_PATH at the directory that contains
85 echo the EDK2 BuildEnv script.
86 return 1
Parmeshwr Prasad729220e2014-01-28 02:18:23 +000087 fi
88}
89
90function SourceEnv()
91{
Jordan Justenef9086c2014-01-30 19:26:46 +000092 if [ \
93 "$1" = "-?" -o \
94 "$1" = "-h" -o \
95 "$1" = "--help" \
96 ]
97 then
98 HelpMsg
Jordan Justenef9086c2014-01-30 19:26:46 +000099 else
Paolo Bonzinid5493442014-07-28 17:37:40 +0000100 SetWorkspace &&
Jordan Justenef9086c2014-01-30 19:26:46 +0000101 SetupEnv "$*"
102 fi
Parmeshwr Prasad729220e2014-01-28 02:18:23 +0000103}
Jordan Justenef9086c2014-01-30 19:26:46 +0000104
105if [ $# -gt 1 ]
Parmeshwr Prasad729220e2014-01-28 02:18:23 +0000106then
107 HelpMsg
Leif Lindholm1bb6bfa2014-01-30 19:26:53 +0000108elif [ $# -eq 1 ] && [ "$1" != "BaseTools" ]
Parmeshwr Prasad729220e2014-01-28 02:18:23 +0000109then
110 HelpMsg
Leif Lindholm1bb6bfa2014-01-30 19:26:53 +0000111fi
112
113RETVAL=$?
114if [ $RETVAL -ne 0 ]
115then
116 return $RETVAL
Jordan Justenef9086c2014-01-30 19:26:46 +0000117fi
118
Parmeshwr Prasad729220e2014-01-28 02:18:23 +0000119SourceEnv "$*"
jljustena3108862007-10-16 20:52:46 +0000120