Kconfig 542 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # EEPROM subsystem configuration
  3. #
  4. menu "1-wire EEPROM support"
  5. config W1_EEPROM
  6. bool "Enable support for EEPROMs on 1wire interface"
  7. depends on DM
  8. help
  9. Support for the EEPROMs connected on 1-wire Dallas protocol interface
  10. if W1_EEPROM
  11. config W1_EEPROM_DS24XXX
  12. bool "Enable Maxim DS24 families EEPROM support"
  13. depends on W1
  14. help
  15. Maxim DS24 EEPROMs 1-Wire EEPROM support
  16. config W1_EEPROM_SANDBOX
  17. bool "Enable sandbox onewire EEPROM driver"
  18. depends on W1
  19. help
  20. Sandbox driver for a onewire EEPROM memory
  21. endif
  22. endmenu