83405a1241
The hp/abm board is used in network/server applications. Notes: - The hp/abm board is headless and therefore does not define CONFIG_GFXUMA, and does not require a video bios. - The micro USB connector on the board edge is connected to COM4 (i.e. I/O=2E8h). Coreboot needs to be configured to use Index=3. - If you are using SeaBIOS it would also need to be configured to use the UART at I/O=2E8h. - This board has been tested with headless installed versions of Ubuntu 12.10 and Fedora 19. Change-Id: I60bde98411c40a184c8d053199bac8d04df8ab07 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/6116 Tested-by: build bot (Jenkins) Reviewed-by: Dave Frodin <dave.frodin@se-eng.com>
33 lines
718 B
Text
33 lines
718 B
Text
if VENDOR_HP
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config BOARD_HP_ABM
|
|
bool "ABM"
|
|
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/abm/Kconfig"
|
|
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
|