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