blob: 95f7cfdfc5fdd4c6981415407875ff1fa85cc9dc (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
if VENDOR_LENOVO
choice
prompt "Mainboard model"
config BOARD_LENOVO_X60
bool "ThinkPad X60 / X60s / X60t"
help
The following X60 series ThinkPad machines have been verified to
work correctly:
ThinkPad X60s (Model 1702, 1703)
ThinkPad X60 (Model 1709)
config BOARD_LENOVO_X200
bool "ThinkPad X200"
help
Lenovo X200 laptop. Consult wiki for details.
config BOARD_LENOVO_X201
bool "ThinkPad X201 / X201s / X201t"
help
Lenovo X201 laptop. Consult wiki for details.
config BOARD_LENOVO_X220
bool "ThinkPad X220"
help
Lenovo X220 laptop. Consult wiki for details.
config BOARD_LENOVO_X230
bool "ThinkPad X230"
help
Lenovo X230 laptop. Consult wiki for details.
config BOARD_LENOVO_T420S
bool "ThinkPad T420s"
help
Lenovo T420s laptop. Consult wiki for details.
config BOARD_LENOVO_T430S
bool "ThinkPad T430s"
help
Lenovo T430s laptop. Consult wiki for details.
config BOARD_LENOVO_T520
bool "ThinkPad T520"
help
Lenovo T520 laptop. Consult wiki for details.
config BOARD_LENOVO_T530
bool "ThinkPad T530"
help
Lenovo T530 laptop. Consult wiki for details.
config BOARD_LENOVO_T60
bool "ThinkPad T60 / T60p"
help
The following T60 series ThinkPad machines have been verified to
work correctly:
Thinkpad T60p (Model 2007)
config BOARD_LENOVO_G505S
bool "AMD G505s"
help
Lenovo G505s
endchoice
source "src/mainboard/lenovo/x60/Kconfig"
source "src/mainboard/lenovo/x200/Kconfig"
source "src/mainboard/lenovo/x201/Kconfig"
source "src/mainboard/lenovo/x220/Kconfig"
source "src/mainboard/lenovo/x230/Kconfig"
source "src/mainboard/lenovo/t420s/Kconfig"
source "src/mainboard/lenovo/t430s/Kconfig"
source "src/mainboard/lenovo/t520/Kconfig"
source "src/mainboard/lenovo/t530/Kconfig"
source "src/mainboard/lenovo/t60/Kconfig"
source "src/mainboard/lenovo/g505s/Kconfig"
config MAINBOARD_VENDOR
string
default "LENOVO"
endif # VENDOR_LENOVO
|