aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2020-04-15 12:14:13 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2020-04-15 12:14:55 +0300
commit5bbc814e329770b48200d5bc3616827792b0b476 (patch)
treebf457740cc9747ae3028a930dc5d79e799142d1f
parentf35e137b9fcaa2857aca1dd4cb07b261e8a1a9b3 (diff)
downloadlinux-dt-5bbc814e329770b48200d5bc3616827792b0b476.tar.gz
defconfig_builder.sh: add legacy -w option
Add -w option as a legacy option, meaning the same as -k Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rwxr-xr-xconfig/defconfig_builder.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/config/defconfig_builder.sh b/config/defconfig_builder.sh
index d909468..e9961c3 100755
--- a/config/defconfig_builder.sh
+++ b/config/defconfig_builder.sh
@@ -413,6 +413,7 @@ been tested by TI to boot and compile.
Optional:
-k - Location of the Linux kernel source
+ -w - Same as -k (deprecated)
-t - Indicates the type of defconfig to build. This will force the
defconfig to build without user interaction.
-l - List all buildable defconfig options
@@ -434,10 +435,10 @@ EOF
#########################################
# Script Start
#########################################
-while getopts "?k:t:o:l" OPTION
+while getopts "?k:w:t:o:l" OPTION
do
case $OPTION in
- k)
+ k|w)
KERNEL_PATH=$OPTARG;;
t)
CHOSEN_BUILD_TYPE=$OPTARG;;