1# Copyright (c) 2020 Laczen
2# SPDX-License-Identifier: Apache-2.0
3
4config EEPROM_EMULATOR
5	bool "Emulated EEPROM driver"
6	default y
7	depends on DT_HAS_ZEPHYR_EMU_EEPROM_ENABLED
8	select FLASH
9	help
10	  Enable emulated (on flash) EEPROM support. This mimics an external
11	  EEPROM on a flash partition. The number of writes that can be
12	  performed to the EEPROM is maximized by using a flash area that is
13	  larger than the EEPROM area and by storing only changes to the EEPROM
14	  data.
15