|
Revision 549, 1.3 KB
(checked in by frodo, 14 years ago)
|
|
mkpatch documentation, both as a separate /doc file and in the
script itself. And a minor typo fix in Config.in
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | # Character device configuration |
|---|
| 3 | # |
|---|
| 4 | |
|---|
| 5 | if [ "$CONFIG_I2C" != "n" ] ; then |
|---|
| 6 | mainmenu_option next_comment |
|---|
| 7 | comment 'Hardware sensors support' |
|---|
| 8 | |
|---|
| 9 | dep_tristate 'Hardware sensors support' CONFIG_SENSORS $CONFIG_I2C |
|---|
| 10 | |
|---|
| 11 | if [ "$CONFIG_SENSORS" != "n" ]; then |
|---|
| 12 | dep_tristate ' Analog Devices ADM1021 and compatibles' CONFIG_SENSORS_ADM1021 $CONFIG_SENSORS |
|---|
| 13 | dep_tristate ' Analog Devices ADM9240 and compatibles' CONFIG_SENSORS_ADM9240 $CONFIG_SENSORS |
|---|
| 14 | dep_tristate ' Genesys Logic GL518SM' CONFIG_SENSORS_GL518SM $CONFIG_SENSORS |
|---|
| 15 | dep_tristate ' National Semiconductors LM75' CONFIG_SENSORS_LM75 $CONFIG_SENSORS |
|---|
| 16 | dep_tristate ' National Semiconductors LM78' CONFIG_SENSORS_LM78 $CONFIG_SENSORS |
|---|
| 17 | dep_tristate ' National Semiconductors LM80' CONFIG_SENSORS_LM80 $CONFIG_SENSORS |
|---|
| 18 | dep_tristate ' Silicon Integrated Systems Corp. SiS5595' CONFIG_SENSORS_SIS5595 $CONFIG_SENSORS |
|---|
| 19 | dep_tristate ' Winbond W83781D, W83782D and W83783S' CONFIG_SENSORS_W83781D $CONFIG_SENSORS |
|---|
| 20 | bool ' Other I2C devices' CONFIG_SENSORS_OTHER |
|---|
| 21 | if [ "$CONFIG_SENSORS_OTHER" = "y" ] ; then |
|---|
| 22 | dep_tristate ' EEprom (DIMM) reader ' CONFIG_SENSORS_EEPROM $CONFIG_SENSORS |
|---|
| 23 | dep_tristate ' Linear Technologies LTC1710 ' CONFIG_SENSORS_LTC1710 $CONFIG_SENSORS |
|---|
| 24 | fi |
|---|
| 25 | fi |
|---|
| 26 | endmenu |
|---|
| 27 | fi |
|---|
| 28 | |
|---|