mb/google/poppy/variants/rammus: Add support for rammus board
This change adds variant rammus derived from baseboard poppy. The setting is copied from the poppy and will be modified later BUG=b:111579386 BRANCH=master TEST=emerge-rammus coreboot Change-Id: I169c225e28183a7a93f1142a3bf87a60b26ce9ca Signed-off-by: Zhuohao Lee <zhuohao@chromium.org> Reviewed-on: https://review.coreboot.org/27547 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
parent
333ad475fa
commit
8583a716bc
|
@ -53,6 +53,7 @@ config GBB_HWID
|
|||
default "NAMI TEST 1669" if BOARD_GOOGLE_NAMI
|
||||
default "NAUTILUS TEST 3013" if BOARD_GOOGLE_NAUTILUS
|
||||
default "NOCTURNE TEST 3421" if BOARD_GOOGLE_NOCTURNE
|
||||
default "RAMMUS TEST 2130" if BOARD_GOOGLE_RAMMUS
|
||||
default "SORAKA TEST 1869" if BOARD_GOOGLE_SORAKA
|
||||
|
||||
config INCLUDE_NHLT_BLOBS
|
||||
|
@ -96,6 +97,7 @@ config MAINBOARD_FAMILY
|
|||
default "Google_Nami" if BOARD_GOOGLE_NAMI
|
||||
default "Google_Nautilus" if BOARD_GOOGLE_NAUTILUS
|
||||
default "Google_Nocturne" if BOARD_GOOGLE_NOCTURNE
|
||||
default "Google_Rammus" if BOARD_GOOGLE_RAMMUS
|
||||
default "Google_Soraka" if BOARD_GOOGLE_SORAKA
|
||||
|
||||
config MAINBOARD_PART_NUMBER
|
||||
|
@ -105,6 +107,7 @@ config MAINBOARD_PART_NUMBER
|
|||
default "Nami" if BOARD_GOOGLE_NAMI
|
||||
default "Nautilus" if BOARD_GOOGLE_NAUTILUS
|
||||
default "Nocturne" if BOARD_GOOGLE_NOCTURNE
|
||||
default "Rammus" if BOARD_GOOGLE_RAMMUS
|
||||
default "Soraka" if BOARD_GOOGLE_SORAKA
|
||||
|
||||
config MAX_CPUS
|
||||
|
@ -126,6 +129,7 @@ config VARIANT_DIR
|
|||
default "nami" if BOARD_GOOGLE_NAMI
|
||||
default "nautilus" if BOARD_GOOGLE_NAUTILUS
|
||||
default "nocturne" if BOARD_GOOGLE_NOCTURNE
|
||||
default "poppy" if BOARD_GOOGLE_RAMMUS
|
||||
default "soraka" if BOARD_GOOGLE_SORAKA
|
||||
|
||||
# Select this option to enable camera ACPI support on the variant.
|
||||
|
|
|
@ -25,6 +25,11 @@ config BOARD_GOOGLE_NOCTURNE
|
|||
select BOARD_GOOGLE_BASEBOARD_POPPY
|
||||
select VARIANT_SPECIFIC_OPTIONS_NOCTURNE
|
||||
|
||||
config BOARD_GOOGLE_RAMMUS
|
||||
bool "-> Rammus"
|
||||
select BOARD_GOOGLE_BASEBOARD_POPPY
|
||||
select VARIANT_SPECIFIC_OPTIONS_POPPY
|
||||
|
||||
config BOARD_GOOGLE_SORAKA
|
||||
bool "-> Soraka"
|
||||
select BOARD_GOOGLE_BASEBOARD_POPPY
|
||||
|
|
Loading…
Reference in New Issue