diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-24 21:13:07 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-01-01 17:55:39 +0000 |
commit | 35f903074dcdba1db423d890a058828ba1787e2d (patch) | |
tree | 6cb5df1ab873bcfb0c7ed27ecf7e6d3510564b5c | |
parent | 8973942adf0e1cc21c1cbc59ddfb331cdcf0f1f3 (diff) |
mb/google/slippy: Select board-specific options per board
Move board-specific selects out of common configuration and add them to
each board where necessary.
Change-Id: I1cfea0491f707052db2fbcee078e2c27c5a306c5
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60353
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
-rw-r--r-- | src/mainboard/google/slippy/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/slippy/Kconfig b/src/mainboard/google/slippy/Kconfig index 12d0c26d32..0148093a9a 100644 --- a/src/mainboard/google/slippy/Kconfig +++ b/src/mainboard/google/slippy/Kconfig @@ -1,7 +1,6 @@ config BOARD_GOOGLE_BASEBOARD_SLIPPY def_bool n select BOARD_ROMSIZE_KB_8192 - select DRIVERS_I2C_RTD2132 if BOARD_GOOGLE_LEON select EC_GOOGLE_CHROMEEC select EC_GOOGLE_CHROMEEC_LPC select HAVE_ACPI_RESUME @@ -24,6 +23,7 @@ config BOARD_GOOGLE_FALCO config BOARD_GOOGLE_LEON select BOARD_GOOGLE_BASEBOARD_SLIPPY + select DRIVERS_I2C_RTD2132 config BOARD_GOOGLE_PEPPY select BOARD_GOOGLE_BASEBOARD_SLIPPY |