From d4d14cf7986e4589c71b91303afd1c5791185f02 Mon Sep 17 00:00:00 2001 From: Christian Lamparter Date: Thu, 17 Jan 2013 23:16:13 +0100 Subject: [PATCH] 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 --- autogen.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 ;; -- 2.31.1