diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2018-01-31 16:39:45 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2018-01-31 16:39:45 -0800 |
commit | 59b08f8d06700770cf1105269acb2ec2460e2a34 (patch) | |
tree | 7e26466ff1bdcb344d223d27c24a2014ff54a38f /kconfig/expr.h | |
parent | ba165ed4c0bfa8a83e61a2efd1ad205777978486 (diff) | |
download | crosstool-ng-59b08f8d06700770cf1105269acb2ec2460e2a34.tar.gz crosstool-ng-59b08f8d06700770cf1105269acb2ec2460e2a34.tar.bz2 crosstool-ng-59b08f8d06700770cf1105269acb2ec2460e2a34.zip |
Sync kconfig files with upstream 4.15
Last updated with 4.9-rc7.
This commit introduces the following upstream changes:
9059a3493efe kconfig: fix relational operators for bool and tristate symbols
88127dae6ed9 kconfig/symbol.c: use correct pointer type argument for sizeof
b24413180f56 License cleanup: add SPDX GPL-2.0 license identifier to files with no license
bb3290d91695 Remove gperf usage from toolchain
ad8181060788 kconfig: fix sparse warnings in nconfig
ff85a1a80e00 kconfig: Check for libncurses before menuconfig
9be3213b14d4 gconfig: remove misleading parentheses around a condition
83c3a1bad224 xconfig: fix missing suboption and help panels on first run
e039303ff71a xconfig: fix 'Show Debug' functionality
79e51b5c2dee kconfig/nconf: Fix hang when editing symbol with a long prompt
0eb47346968f Scripts: kconfig: nconf: fix _GNU_SOURCE redefined warning
237e3ad0f195 Kconfig: Introduce the "imply" keyword
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'kconfig/expr.h')
-rw-r--r-- | kconfig/expr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kconfig/expr.h b/kconfig/expr.h index 973b6f73..a73f762c 100644 --- a/kconfig/expr.h +++ b/kconfig/expr.h @@ -85,6 +85,7 @@ struct symbol { struct property *prop; struct expr_value dir_dep; struct expr_value rev_dep; + struct expr_value implied; }; #define for_all_symbols(i, sym) for (i = 0; i < SYMBOL_HASHSIZE; i++) for (sym = symbol_hash[i]; sym; sym = sym->next) if (sym->type != S_OTHER) @@ -136,6 +137,7 @@ enum prop_type { P_DEFAULT, /* default y */ P_CHOICE, /* choice value */ P_SELECT, /* select BAR */ + P_IMPLY, /* imply BAR */ P_RANGE, /* range 7..100 (for a symbol) */ P_ENV, /* value from environment variable */ P_SYMBOL, /* where a symbol is defined */ |