summaryrefslogtreecommitdiffstats
path: root/meta/files
diff options
context:
space:
mode:
Diffstat (limited to 'meta/files')
-rw-r--r--meta/files/toolchain-shar-extract.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh
index 3624940430..cd0a547f86 100644
--- a/meta/files/toolchain-shar-extract.sh
+++ b/meta/files/toolchain-shar-extract.sh
@@ -32,7 +32,7 @@ answer=""
32relocate=1 32relocate=1
33savescripts=0 33savescripts=0
34verbose=0 34verbose=0
35while getopts ":yd:DRS" OPT; do 35while getopts ":yd:nDRS" OPT; do
36 case $OPT in 36 case $OPT in
37 y) 37 y)
38 answer="Y" 38 answer="Y"
@@ -40,6 +40,9 @@ while getopts ":yd:DRS" OPT; do
40 d) 40 d)
41 target_sdk_dir=$OPTARG 41 target_sdk_dir=$OPTARG
42 ;; 42 ;;
43 n)
44 prepare_buildsystem="no"
45 ;;
43 D) 46 D)
44 verbose=1 47 verbose=1
45 ;; 48 ;;
@@ -54,6 +57,8 @@ while getopts ":yd:DRS" OPT; do
54 echo "Usage: $(basename $0) [-y] [-d <dir>]" 57 echo "Usage: $(basename $0) [-y] [-d <dir>]"
55 echo " -y Automatic yes to all prompts" 58 echo " -y Automatic yes to all prompts"
56 echo " -d <dir> Install the SDK to <dir>" 59 echo " -d <dir> Install the SDK to <dir>"
60 echo "======== Extensible SDK only options ============"
61 echo " -n Do not prepare the build system"
57 echo "======== Advanced DEBUGGING ONLY OPTIONS ========" 62 echo "======== Advanced DEBUGGING ONLY OPTIONS ========"
58 echo " -S Save relocation scripts" 63 echo " -S Save relocation scripts"
59 echo " -R Do not relocate executables" 64 echo " -R Do not relocate executables"