blob: cf5288e9daebd7b0e59cb88414781e43c5bb7e40 (
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
|
if VENDOR_LIPPERT
choice
prompt "Mainboard model"
config BOARD_LIPPERT_FRONTRUNNER
bool "Cool FrontRunner"
config BOARD_LIPPERT_FRONTRUNNER_AF
bool "Cool FrontRunner-AF"
config BOARD_LIPPERT_HURRICANE_LX
bool "Hurricane-LX"
config BOARD_LIPPERT_LITERUNNER_LX
bool "Cool LiteRunner-LX"
config BOARD_LIPPERT_ROADRUNNER_LX
bool "Cool RoadRunner-LX"
config BOARD_LIPPERT_SPACERUNNER_LX
bool "Cool SpaceRunner-LX"
config BOARD_LIPPERT_TOUCAN_AF
bool "Toucan-AF (+W83627DHG SIO)"
endchoice
if BOARD_LIPPERT_FRONTRUNNER_AF || BOARD_LIPPERT_TOUCAN_AF
# No code, but two Kconfig options need to know this ...
choice
prompt "AMD Fusion CPU model"
default FUSION_G_T56N
help
The actual CPU model the board is fitted with:
G-T40R: 1 GHz, single core
G-T56N: 1.65 GHz, dual core
If unsure check with "grep model /proc/cpuinfo".
config FUSION_G_T40R
bool "G-T40R"
help
The actual CPU model the board is fitted with:
G-T40R: 1 GHz, single core
If unsure check with "grep model /proc/cpuinfo".
config FUSION_G_T56N
bool "G-T56N"
help
The actual CPU model the board is fitted with:
G-T56N: 1.65 GHz, dual core
If unsure check with "grep model /proc/cpuinfo".
endchoice
endif # BOARD_LIPPERT_FRONTRUNNER_AF || BOARD_LIPPERT_TOUCAN_AF
source "src/mainboard/lippert/frontrunner/Kconfig"
source "src/mainboard/lippert/frontrunner-af/Kconfig"
source "src/mainboard/lippert/hurricane-lx/Kconfig"
source "src/mainboard/lippert/literunner-lx/Kconfig"
source "src/mainboard/lippert/roadrunner-lx/Kconfig"
source "src/mainboard/lippert/spacerunner-lx/Kconfig"
source "src/mainboard/lippert/toucan-af/Kconfig"
config MAINBOARD_VENDOR
string
default "Lippert"
endif # VENDOR_LIPPERT
|