summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Lindholm <leif.lindholm@linaro.org>2018-09-03 17:03:59 +0100
committerLeif Lindholm <leif.lindholm@linaro.org>2018-09-03 17:03:59 +0100
commit6cb672bc27c87ee76b918aba233a5fd7e61cdd9a (patch)
tree904678acc8eb2cb34bdea51a5f7c5cf888f6c6d3
parent099f0e696cdcf19dd5d335470733aecefcecabe2 (diff)
edk2-build.sh: drop openssl import by default
Upstream edk2 has for quite some time now had a submodule for OpenSSL, so the special import step is no longer necessary. So, drop the --no-openssl flag (which was now misleading) and replace it with a --import-openssl, required for trying to import an upstream version manually. Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
-rwxr-xr-xedk2-build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/edk2-build.sh b/edk2-build.sh
index 7e168b4..3af4e7c 100755
--- a/edk2-build.sh
+++ b/edk2-build.sh
@@ -21,7 +21,7 @@ WORKSPACE=
EDK2_DIR=
PLATFORMS_DIR=
NON_OSI_DIR=
-IMPORT_OPENSSL=TRUE
+IMPORT_OPENSSL=FALSE
OPENSSL_CONFIGURED=FALSE
# Number of threads to use for build
@@ -326,8 +326,8 @@ while [ "$1" != "" ]; do
usage
exit
;;
- --no-openssl)
- IMPORT_OPENSSL=FALSE
+ --import-openssl)
+ IMPORT_OPENSSL=TRUE
;;
-n | --non-osi-dir)
shift