diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2017-10-29 19:33:39 +0100 |
---|---|---|
committer | Alexander Couzens <lynxis@fe80.eu> | 2018-09-15 16:56:00 +0000 |
commit | f47682e586c093c896856d318bc3806d2cdad66d (patch) | |
tree | 3d6a1db1fffbfb9fbee4eca7d9e6667dfd81d813 | |
parent | 4e7a47350da8452bb110968e1acd83baccca4e6f (diff) |
mb/lenovo: Add Lenovo W500 as clone of Lenovo T400
At ECC 2017 user Bob reports, that an image built for the Lenovo T500
runs on the Lenovo W500 without any issues.
Change-Id: I17fd9725ab85ba2f0c99a70f40e35432265a81c1
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/22226
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Felix Singer <migy@darmstadt.ccc.de>
Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/mainboard/lenovo/t400/Kconfig | 2 | ||||
-rw-r--r-- | src/mainboard/lenovo/w500/Kconfig | 7 | ||||
-rw-r--r-- | src/mainboard/lenovo/w500/Kconfig.name | 2 | ||||
-rw-r--r-- | src/mainboard/lenovo/w500/board_info.txt | 6 |
4 files changed, 16 insertions, 1 deletions
diff --git a/src/mainboard/lenovo/t400/Kconfig b/src/mainboard/lenovo/t400/Kconfig index 2b378574a5..bea87372e8 100644 --- a/src/mainboard/lenovo/t400/Kconfig +++ b/src/mainboard/lenovo/t400/Kconfig @@ -1,4 +1,4 @@ -if BOARD_LENOVO_T400 || BOARD_LENOVO_T500 || BOARD_LENOVO_R400 +if BOARD_LENOVO_T400 || BOARD_LENOVO_T500 || BOARD_LENOVO_R400 || BOARD_LENOVO_W500 config BOARD_SPECIFIC_OPTIONS # dummy def_bool y diff --git a/src/mainboard/lenovo/w500/Kconfig b/src/mainboard/lenovo/w500/Kconfig new file mode 100644 index 0000000000..e9ee3ad275 --- /dev/null +++ b/src/mainboard/lenovo/w500/Kconfig @@ -0,0 +1,7 @@ +if BOARD_LENOVO_W500 + +config MAINBOARD_PART_NUMBER + string + default "ThinkPad W500" + +endif diff --git a/src/mainboard/lenovo/w500/Kconfig.name b/src/mainboard/lenovo/w500/Kconfig.name new file mode 100644 index 0000000000..2097b779d7 --- /dev/null +++ b/src/mainboard/lenovo/w500/Kconfig.name @@ -0,0 +1,2 @@ +config BOARD_LENOVO_W500 + bool "ThinkPad W500" diff --git a/src/mainboard/lenovo/w500/board_info.txt b/src/mainboard/lenovo/w500/board_info.txt new file mode 100644 index 0000000000..007ec6cea1 --- /dev/null +++ b/src/mainboard/lenovo/w500/board_info.txt @@ -0,0 +1,6 @@ +Category: laptop +ROM package: SOIC-16 or SOIC-8 +ROM protocol: SPI +ROM socketed: n +Flashrom support: n +Clone of: lenovo/t400 |