summaryrefslogtreecommitdiffstats
path: root/bin/ptxdist
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2016-05-02 10:54:57 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2016-05-04 09:34:29 +0200
commit279a7c9e5487bba79c4c4c609b8e6ace78e570bd (patch)
tree88402f6a431649038401aa6e5329c92a645376ba /bin/ptxdist
parent18a22b09aeccf03eb9f7ca8ba47a3755ef5fea06 (diff)
downloadptxdist-279a7c9e5487bba79c4c4c609b8e6ace78e570bd.tar.gz
ptxdist-279a7c9e5487bba79c4c4c609b8e6ace78e570bd.tar.xz
ptxdist: add support for alldefconfig
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'bin/ptxdist')
-rwxr-xr-xbin/ptxdist7
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/ptxdist b/bin/ptxdist
index 21eb49fe8..ea16e064a 100755
--- a/bin/ptxdist
+++ b/bin/ptxdist
@@ -948,6 +948,7 @@ Setup and Project Actions:
allmodconfig run 'make allmodconfig' on ptxconfig file
allyesconfig run 'make allyesconfig' on ptxconfig file
allnoconfig run 'make allnoconfig' on ptxconfig file
+ alldefconfig run 'make alldefconfig' on ptxconfig file
randconfig run 'make randconfig' on ptxconfig file
migrate migrate config files from a previous
@@ -1380,7 +1381,7 @@ parse_first()
#
# calls menu/old config on several components
#
-# $1 what kind of config ("menuconfig", "oldconfig", "allmodconfig", "allyesconfig", "allnoconfig")
+# $1 what kind of config ("menuconfig", "oldconfig", "all*config", "randconfig")
# $2 what to "config"
# $... optional parameters
#
@@ -1396,7 +1397,7 @@ do_config()
fi
case "${config}" in
- "menuconfig"|"nconfig"|"oldconfig"|"allmodconfig"|"allyesconfig"|"allnoconfig"|"randconfig")
+ menuconfig|nconfig|oldconfig|all*config|randconfig)
;;
*)
echo
@@ -1750,7 +1751,7 @@ parse_second()
######## *config, *setup, toolchain
- menuconfig|nconfig|oldconfig|allmodconfig|allyesconfig|allnoconfig|randconfig)
+ menuconfig|nconfig|oldconfig|allmodconfig|allyesconfig|allnoconfig|alldefconfig|randconfig)
do_config "${cmd}" "${@}"
exit
;;