diff options
-rw-r--r-- | src/mainboard/google/veyron_brain/Kconfig | 9 | ||||
-rw-r--r-- | src/mainboard/google/veyron_danger/Kconfig | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/src/mainboard/google/veyron_brain/Kconfig b/src/mainboard/google/veyron_brain/Kconfig index 6361d9e7e2..e5e38f9e5d 100644 --- a/src/mainboard/google/veyron_brain/Kconfig +++ b/src/mainboard/google/veyron_brain/Kconfig @@ -48,9 +48,16 @@ config MAINBOARD_VENDOR string default "Google" +# The 'ecrwhash' is removed from FMAP on Brain, since we don't have EC. +# As a result, we have to hack RAMSTAGE and ROMSTAGE index until there are +# better approaches for vboot2 to find right index. config VBOOT_RAMSTAGE_INDEX hex - default 0x3 + default 0x2 + +config VBOOT_ROMSTAGE_INDEX + hex + default 0x1 config BOOT_MEDIA_SPI_BUS int diff --git a/src/mainboard/google/veyron_danger/Kconfig b/src/mainboard/google/veyron_danger/Kconfig index 4c7405421b..2fad394f7b 100644 --- a/src/mainboard/google/veyron_danger/Kconfig +++ b/src/mainboard/google/veyron_danger/Kconfig @@ -49,9 +49,16 @@ config MAINBOARD_VENDOR string default "Google" +# The 'ecrwhash' is removed from FMAP on Danger, since we don't have EC. +# As a result, we have to hack RAMSTAGE and ROMSTAGE index until there are +# better approaches for vboot2 to find right index. config VBOOT_RAMSTAGE_INDEX hex - default 0x3 + default 0x2 + +config VBOOT_ROMSTAGE_INDEX + hex + default 0x1 config BOOT_MEDIA_SPI_BUS int |