projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
update version
[openwrt.git]
/
scripts
/
config
/
zconf.y
diff --git
a/scripts/config/zconf.y
b/scripts/config/zconf.y
index
4b8ba45
..
9689a3e
100644
(file)
--- a/
scripts/config/zconf.y
+++ b/
scripts/config/zconf.y
@@
-69,6
+69,7
@@
static struct menu *current_menu, *current_entry;
%token <id>T_PROMPT
%token <id>T_TYPE
%token <id>T_DEFAULT
%token <id>T_PROMPT
%token <id>T_TYPE
%token <id>T_DEFAULT
+%token <id>T_DESELECT
%token <id>T_SELECT
%token <id>T_RANGE
%token <id>T_ON
%token <id>T_SELECT
%token <id>T_RANGE
%token <id>T_ON
@@
-119,7
+120,7
@@
stmt_list:
;
option_name:
;
option_name:
- T_DEPENDS | T_PROMPT | T_TYPE | T_SELECT | T_OPTIONAL | T_RANGE | T_DEFAULT | T_RESET
+ T_DEPENDS | T_PROMPT | T_TYPE | T_
DESELECT | T_
SELECT | T_OPTIONAL | T_RANGE | T_DEFAULT | T_RESET
;
common_stmt:
;
common_stmt:
@@
-204,6
+205,12
@@
config_option: T_DEFAULT expr if_expr T_EOL
$1->stype);
};
$1->stype);
};
+config_option: T_DESELECT T_WORD if_expr T_EOL
+{
+ menu_add_symbol(P_DESELECT, sym_lookup($2, 0), $3);
+ printd(DEBUG_PARSE, "%s:%d:deselect\n", zconf_curname(), zconf_lineno());
+};
+
config_option: T_SELECT T_WORD if_expr T_EOL
{
menu_add_symbol(P_SELECT, sym_lookup($2, 0), $3);
config_option: T_SELECT T_WORD if_expr T_EOL
{
menu_add_symbol(P_SELECT, sym_lookup($2, 0), $3);
This page took
0.022347 seconds
and
4
git commands to generate.