From: Christian Lamparter Date: Thu, 17 Jan 2013 22:16:13 +0000 (+0100) Subject: carl9170: allow kconfig options in autogen.sh's parameters X-Git-Tag: 1.9.8~23 X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=commitdiff_plain;h=d4d14cf7986e4589c71b91303afd1c5791185f02 carl9170: allow kconfig options in autogen.sh's parameters kconf supports several interesting options: --allnoconfig New config where all options are answered with no --allyesconfig New config where all options are answered with yes --alldefconfig New config with all symbols set to default --randconfig New config with random answer to all options to build the default firmware image, it is enough to run: ./autogen.sh --alldefconfig Signed-off-by: Christian Lamparter --- diff --git a/autogen.sh b/autogen.sh index 287d7a2..a360065 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,7 +9,8 @@ case "$1" in cmake . make popd - config/conf Kconfig + shift 1 + config/conf Kconfig "$@" cmake . ;; @@ -44,7 +45,7 @@ case "$1" in ;; *) - $0 config + $0 config "$@" $0 compile ;;