blob: 4b391ad4d039fd9a9842cbf335443c6987eea6a4 (
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
|
if VENDOR_HP
choice
prompt "Mainboard model"
config BOARD_HP_DL145_G1
bool "ProLiant DL145 G1"
config BOARD_HP_DL145_G3
bool "ProLiant DL145 G3"
config BOARD_HP_DL165_G6_FAM10
bool "ProLiant DL165 G6 Fam10"
config BOARD_HP_E_VECTRA_P2706T
bool "e-Vectra P2706T"
config BOARD_HP_PAVILION_M6_1035DX
bool "Pavilion m6 1035dx"
endchoice
source "src/mainboard/hp/dl145_g1/Kconfig"
source "src/mainboard/hp/dl145_g3/Kconfig"
source "src/mainboard/hp/dl165_g6_fam10/Kconfig"
source "src/mainboard/hp/e_vectra_p2706t/Kconfig"
source "src/mainboard/hp/pavilion_m6_1035dx/Kconfig"
config MAINBOARD_VENDOR
string
default "HP"
endif # VENDOR_HP
|