diff options
author | Michal Marek <mmarek@suse.cz> | 2009-05-25 10:43:27 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2009-06-14 16:48:08 -0400 |
commit | 1f990cf94559e0a7363d56aade1d5dc6c515b60b (patch) | |
tree | b35e62754b90ffb46295249106c1d2cf6c65b4a5 /scripts/config | |
parent | 47312d2cfd9b769c1739738602c163c4c9814c7b (diff) |
kbuild: add generic --set-str option to scripts/config
Signed-off-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/config')
-rwxr-xr-x | scripts/config | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/scripts/config b/scripts/config index 640c6fe4d644..608d7fdb13e8 100755 --- a/scripts/config +++ b/scripts/config | |||
@@ -9,8 +9,10 @@ config options command ... | |||
9 | commands: | 9 | commands: |
10 | --enable|-e option Enable option | 10 | --enable|-e option Enable option |
11 | --disable|-d option Disable option | 11 | --disable|-d option Disable option |
12 | --module|-m option Turn option into a module | 12 | --module|-m option Turn option into a module |
13 | --state|-s option Print state of option (n,y,m,undef) | 13 | --set-str option value |
14 | Set option to "value" | ||
15 | --state|-s option Print state of option (n,y,m,undef) | ||
14 | 16 | ||
15 | --enable-after|-E beforeopt option | 17 | --enable-after|-E beforeopt option |
16 | Enable option directly after other option | 18 | Enable option directly after other option |
@@ -102,6 +104,11 @@ while [ "$1" != "" ] ; do | |||
102 | set_var "CONFIG_$ARG" "CONFIG_$ARG=m" | 104 | set_var "CONFIG_$ARG" "CONFIG_$ARG=m" |
103 | ;; | 105 | ;; |
104 | 106 | ||
107 | --set-str) | ||
108 | set_var "CONFIG_$ARG" "CONFIG_$ARG=\"$1\"" | ||
109 | shift | ||
110 | ;; | ||
111 | |||
105 | --state|-s) | 112 | --state|-s) |
106 | if grep -q "# CONFIG_$ARG is not set" $FN ; then | 113 | if grep -q "# CONFIG_$ARG is not set" $FN ; then |
107 | echo n | 114 | echo n |