提交 f0a6332c 编写于 作者: J Jonas Aaberg 提交者: Michal Marek

kbuild: add numeric --set-val option to scripts/config

Add new option to scripts/config for changing .config numeric values
Acked-by: NLinus Walleij <linus.walleij@stericsson.com>
Signed-off-by: NJonas Aaberg <jonas.aberg@stericsson.com>
Signed-off-by: NMichal Marek <mmarek@suse.cz>
上级 d52784eb
......@@ -10,8 +10,10 @@ commands:
--enable|-e option Enable option
--disable|-d option Disable option
--module|-m option Turn option into a module
--set-str option value
Set option to "value"
--set-str option string
Set option to "string"
--set-val option value
Set option to value
--state|-s option Print state of option (n,y,m,undef)
--enable-after|-E beforeopt option
......@@ -109,6 +111,11 @@ while [ "$1" != "" ] ; do
shift
;;
--set-val)
set_var "CONFIG_$ARG" "CONFIG_$ARG=$1"
shift
;;
--state|-s)
if grep -q "# CONFIG_$ARG is not set" $FN ; then
echo n
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册