]> git.proxmox.com Git - mirror_edk2.git/blobdiff - edksetup.sh
Fix ResetVectorVtf0.asm comment typo
[mirror_edk2.git] / edksetup.sh
index cc4f58211afe4a9eec3fd132243a0414d13889b5..39b76e1c2258bc5bec3acc2d505269c4a2eab59e 100755 (executable)
@@ -1,6 +1,6 @@
 #
-# Copyright (c) 2006 - 2008, Intel Corporation
-# All rights reserved. This program and the accompanying materials
+# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
+# This program and the accompanying materials
 # are licensed and made available under the terms and conditions of the BSD License
 # which accompanies this distribution.  The full text of the license may be found at
 # http://opensource.org/licenses/bsd-license.php
 # Please reference edk2 user manual for more detail descriptions at https://edk2.tianocore.org/files/documents/64/494/EDKII_UserManual.pdf
 #
 
+function HelpMsg()
+{
+  echo Please note: This script must be \'sourced\' so the environment can be changed.
+  echo ". edksetup.sh" 
+  echo "source edksetup.sh"
+}
+
+function SetupEnv()
+{
+  if [ -z "$WORKSPACE" ]
+  then
+    . BaseTools/BuildEnv $*
+  else
+    . $WORKSPACE/BaseTools/BuildEnv $*
+  fi
+}
+
+function SourceEnv()
+{
 if [ \
-     -z "$1" -o \
      "$1" = "-?" -o \
      "$1" = "-h" -o \
      "$1" = "--help" \
    ]
 then
-  echo BaseTools Usage: \'. edksetup.sh\'
-  echo
-  echo Please note: This script must be \'sourced\' so the environment can be changed.
-  echo \(Either \'. edksetup.sh\' or \'source edksetup.sh\'\)
+  HelpMsg
   return
-fi
-
-if [ -z "$WORKSPACE" ]
-then
-  . BaseTools/BuildEnv $*
 else
-  . $WORKSPACE/BaseTools/BuildEnv $*
+  SetupEnv "$*"
 fi
-
+}
+if [ $# -gt 1 ] 
+then
+  HelpMsg
+  return
+elif [ $# -eq 1 ] && [ "$1" != "BaseTool" ]
+then
+  HelpMsg
+  return
+fi 
+SourceEnv "$*"