diff options
author | Duncan Laurie <dlaurie@chromium.org> | 2013-06-18 13:19:26 -0700 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2013-12-02 14:59:33 +0100 |
commit | 91bd0b8419d4949fd2aa447432f0d68352f20965 (patch) | |
tree | dbf69345fea7bcf13315a8d12ac97bbdb23712b7 /src/mainboard | |
parent | 12a41d8f8ef2fc7cc93d0a1ff7eed162950994e0 (diff) | |
download | coreboot-91bd0b8419d4949fd2aa447432f0d68352f20965.tar.xz |
Add description to MAINBOARD_VENDOR string so it can be overridden
A quirk of the Kconfig used in coreboot is that config options
cannot be overriden by local config changes unless they have
a description string.
1) Add CONFIG_MAINBOARD_VENDOR="Custom" to local config
2) Build and flash coreboot
3) cat /sys/class/dmi/id/sys_vendor and look for "Custom"
Change-Id: I1b5f2124cd4a22c056c025143ae5bcaafa6b03f0
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/59088
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/4248
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/Kconfig b/src/mainboard/google/Kconfig index 4c369325db..9ed615d5c8 100644 --- a/src/mainboard/google/Kconfig +++ b/src/mainboard/google/Kconfig @@ -58,7 +58,7 @@ source "src/mainboard/google/snow/Kconfig" source "src/mainboard/google/stout/Kconfig" config MAINBOARD_VENDOR - string + string "Mainboard Vendor" default "Google" endif # VENDOR_GOOGLE |