summaryrefslogtreecommitdiff
path: root/scripts/kconfig/expr.h
AgeCommit message (Collapse)Author
2003-06-02[PATCH] add more warningsRoman Zippel
Add a number of warnings to avoid misuse of the previously added features (most important check for recursive dependencies).
2003-06-02[PATCH] support for 'range'Roman Zippel
The 'range' keyword allows to define a lower and upper limit for integer and hex symbols.
2003-06-02[PATCH] reverse dependency supportRoman Zippel
The 'select' keyword defines a lower limit for symbols and allows to select other symbols when a symbol is selected, e.g.: config JOLIET bool "Microsoft Joliet CDROM extensions" select NLS This means when JOLIET is selected, NLS will be selected as well.
2003-06-02[PATCH] expression supportRoman Zippel
"default" accepts now not only a single symbol but also an expression which can be assigned to boolean and tristate symbols.
2003-06-02[PATCH] Change P_ROOTMENU into a MENU_ROOT flagRoman Zippel
This changes P_ROOTMENU into a MENU_ROOT flag and also fixes some qconf usability problems. Some gconf fixes by Romain Lievin <roms@tilp.info>.
2003-06-02[PATCH] Remove old code and macrosRoman Zippel
Remove old code and debugging macros which were used by the cml1->kconfig converter.
2003-03-15[PATCH] add menuconfig supportRoman Zippel
This adds the support for the menuconfig keyword, which allows to define a config symbol and a submenu with a single step, e.g. instead of menu "SCSI device support" config SCSI tristate "SCSI device support" this is now enough: menuconfig SCSI tristate "SCSI device support"
2002-12-15[PATCH] kconfig: symbol change notificationRoman Zippel
Add a changed flag to properties, which can be used by front ends to check for changed symbols/properties.
2002-11-07[PATCH] various kconfig updatesRoman Zippel
Various small kconfig updates to fix all the reported little problems and the single menu mode for menuconfig by Petr Baudis <pasky@ucw.cz>.
2002-10-29[PATCH] new kernel configuration 2/7Roman Zippel
This adds the new kernel config core (library + the three front ends).