| Age | Commit message (Collapse) | Author |
|
Add a number of warnings to avoid misuse of the previously added features
(most important check for recursive dependencies).
|
|
The 'range' keyword allows to define a lower and upper limit for integer
and hex symbols.
|
|
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.
|
|
"default" accepts now not only a single symbol but also an expression
which can be assigned to boolean and tristate symbols.
|
|
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>.
|
|
Remove old code and debugging macros which were used by the cml1->kconfig
converter.
|
|
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"
|
|
Add a changed flag to properties, which can be used by front ends to check
for changed symbols/properties.
|
|
Various small kconfig updates to fix all the reported little problems and
the single menu mode for menuconfig by Petr Baudis <pasky@ucw.cz>.
|
|
This adds the new kernel config core (library + the three front ends).
|