brintos

brintos / linux-shallow public Read only

0
0
Text · 897 B · 5e586df Raw
43 lines · plain
1# SPDX-License-Identifier: GPL-2.02 3config NVMEM_LAYOUTS4	bool5	depends on OF6 7if NVMEM_LAYOUTS8 9menu "Layout Types"10 11config NVMEM_LAYOUT_SL28_VPD12	tristate "Kontron sl28 VPD layout support"13	select CRC814	help15	  Say Y here if you want to support the VPD layout of the Kontron16	  SMARC-sAL28 boards.17 18	  If unsure, say N.19 20config NVMEM_LAYOUT_ONIE_TLV21	tristate "ONIE tlv support"22	select CRC3223	help24	  Say Y here if you want to support the Open Compute Project ONIE25	  Type-Length-Value standard table.26 27	  If unsure, say N.28 29config NVMEM_LAYOUT_U_BOOT_ENV30	tristate "U-Boot environment variables layout"31	select CRC3232	select GENERIC_NET_UTILS33	help34	  U-Boot stores its setup as environment variables. This driver adds35	  support for verifying & exporting such data. It also exposes variables36	  as NVMEM cells so they can be referenced by other drivers.37 38	  If unsure, say N.39 40endmenu41 42endif43