2019-10-20 21:22:03 +02:00
|
|
|
# EEPROM driver configuration options
|
|
|
|
|
|
|
|
# Copyright (c) 2019 Vestas Wind Systems A/S
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig EEPROM
|
|
|
|
bool "EEPROM hardware support"
|
|
|
|
help
|
|
|
|
Enable support for EEPROM hardware.
|
|
|
|
|
|
|
|
if EEPROM
|
|
|
|
|
|
|
|
module = EEPROM
|
|
|
|
module-str = eeprom
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2019-10-31 22:29:08 +01:00
|
|
|
config EEPROM_SHELL
|
|
|
|
bool "Enable EEPROM shell"
|
|
|
|
depends on SHELL
|
|
|
|
help
|
|
|
|
Enable the EEPROM shell with EEPROM related commands.
|
|
|
|
|
|
|
|
config EEPROM_SHELL_BUFFER_SIZE
|
|
|
|
int "EEPROM shell buffer size"
|
|
|
|
default 256
|
|
|
|
depends on EEPROM_SHELL
|
|
|
|
help
|
|
|
|
Size of the buffer used for EEPROM read/write commands in
|
|
|
|
the EEPROM shell.
|
|
|
|
|
2019-11-01 19:56:08 +01:00
|
|
|
config EEPROM_NATIVE_POSIX
|
|
|
|
bool "Native POSIX EEPROM driver"
|
|
|
|
depends on BOARD_NATIVE_POSIX
|
|
|
|
help
|
|
|
|
Enable Native POSIX EEPROM driver.
|
|
|
|
|
2019-10-20 21:22:03 +02:00
|
|
|
endif # EEPROM
|