blob: a08a5cc6e9f9fd90271d94b7721277eb97c05c72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
if VENDOR_LENOVO
choice
prompt "Mainboard model"
config BOARD_LENOVO_X60
bool "ThinkPad X60 / X60s"
help
The following X60 series ThinkPad machines have been verified to
work correctly:
ThinkPad X60s (Model 1703)
config BOARD_LENOVO_T60
bool "ThinkPad T60 / T60p"
help
endchoice
source "src/mainboard/lenovo/x60/Kconfig"
source "src/mainboard/lenovo/t60/Kconfig"
config MAINBOARD_VENDOR
string
default "Lenovo"
endif # VENDOR_LENOVO
|