diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-05-22 01:45:39 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-05-23 15:27:43 +0800 |
commit | 8216b11cdd50515fbc423a4b2709a00865b8621d (patch) | |
tree | bf2f78a6136009cff698e03fefd100aae13480a5 /board/intel/galileo | |
parent | 4cdce9f5b455195357fd7b5e89205888fe3115b8 (diff) | |
download | u-boot-8216b11cdd50515fbc423a4b2709a00865b8621d.tar.gz u-boot-8216b11cdd50515fbc423a4b2709a00865b8621d.tar.xz u-boot-8216b11cdd50515fbc423a4b2709a00865b8621d.zip |
x86: galileo: Override SMBIOS product name
Override the default product name U-Boot reports in the SMBIOS
table, to be compatible with the Intel provided UEFI BIOS, as
Linux kernel drivers (drivers/mfd/intel_quark_i2c_gpio.c and
drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c) make use of
it to do different board level configuration.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/intel/galileo')
-rw-r--r-- | board/intel/galileo/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/board/intel/galileo/Kconfig b/board/intel/galileo/Kconfig index 6515bacd76..87a0ec4ccc 100644 --- a/board/intel/galileo/Kconfig +++ b/board/intel/galileo/Kconfig @@ -21,4 +21,15 @@ config BOARD_SPECIFIC_OPTIONS # dummy select INTEL_QUARK select BOARD_ROMSIZE_KB_1024 +config SMBIOS_PRODUCT_NAME + default "GalileoGen2" + help + Override the default product name U-Boot reports in the SMBIOS + table, to be compatible with the Intel provided UEFI BIOS, as + Linux kernel drivers (drivers/mfd/intel_quark_i2c_gpio.c and + drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c) make use of + it to do different board level configuration. + + This can be "Galileo" for GEN1 Galileo board. + endif |