• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## SPDX-License-Identifier: GPL-2.0-only
2
3config VPD
4	bool "Support for Vital Product Data tables"
5	default n
6	help
7	  Enable support for flash based vital product data.
8
9config VPD_FMAP_NAME
10	string
11	depends on VPD
12	default "RO_VPD"
13	help
14	  Name of the FMAP region created in the default FMAP to store VPD tables.
15
16config VPD_FMAP_SIZE
17	hex
18	depends on VPD
19	default 0x4000
20	help
21	  Size in bytes of the FMAP region created to store VPD tables.
22
23config SMBIOS_SERIAL_FROM_VPD
24	bool "Load device serial from VPD"
25	depends on VPD && GENERATE_SMBIOS_TABLES
26	default n
27