summaryrefslogtreecommitdiff
path: root/src/mainboard/google/kahlee/Kconfig
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-11-22 20:30:17 -0700
committerMartin Roth <martinroth@google.com>2017-11-28 01:00:08 +0000
commit17e7a1e0e057aa9adca78401cd15cc0b5531b558 (patch)
treeea33cb262913a360142bcfb6bfed6653e697a8f7 /src/mainboard/google/kahlee/Kconfig
parent320b41b148eecfd342e27ea250fbf73915f579bf (diff)
downloadcoreboot-17e7a1e0e057aa9adca78401cd15cc0b5531b558.tar.xz
mainboard/google/kahlee: Update Grunt for 16MB ROM chip
- Update Grunt to 16MB chip in Kconfig. - Move chromeos.fmd into variant directory & update Kconfig with the new location. - Add Grunt specific chromeos.fmd file. BUG=b:69691210 TEST=Build grunt; Build & Boot Kahlee Change-Id: I8d2f5e3255984d0d9a18df560f84f6db03b73a78 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/22580 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Diffstat (limited to 'src/mainboard/google/kahlee/Kconfig')
-rw-r--r--src/mainboard/google/kahlee/Kconfig12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/mainboard/google/kahlee/Kconfig b/src/mainboard/google/kahlee/Kconfig
index 7173f1daa3..6c9bfcc5f8 100644
--- a/src/mainboard/google/kahlee/Kconfig
+++ b/src/mainboard/google/kahlee/Kconfig
@@ -16,7 +16,8 @@
config BOARD_GOOGLE_BASEBOARD_KAHLEE
bool
select SOC_AMD_STONEYRIDGE_FT4
- select BOARD_ROMSIZE_KB_8192
+ select BOARD_ROMSIZE_KB_16384 if BOARD_GOOGLE_GRUNT
+ select BOARD_ROMSIZE_KB_8192 if BOARD_GOOGLE_KAHLEE
select DRIVERS_PS2_KEYBOARD
select EC_GOOGLE_CHROMEEC
select EC_GOOGLE_CHROMEEC_LPC
@@ -53,6 +54,15 @@ config MAINBOARD_FAMILY
string
default "Google_Kahlee"
+config FMDFILE
+ string
+ default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/variants/${CONFIG_VARIANT_DIR}/chromeos.fmd" if CHROMEOS
+ default ""
+ help
+ The build system creates a default FMAP from ROM_SIZE and CBFS_SIZE,
+ but in some cases more complex setups are required.
+ When an fmd is specified, it overrides the default format.
+
config MAX_CPUS
int
default 4