kconfig: Board name variable fixes and updates (trivial).
- Use alphabetical order. - Drop non-exisiting vendors. - Add missing vendors (Mitac, Soyo, Technologic, TeleVideo). Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4612 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
07b8c2d26b
commit
177aa3ad79
|
@ -4,14 +4,10 @@ choice
|
|||
prompt "Mainboard vendor"
|
||||
default VENDOR_EMULATION
|
||||
|
||||
config VENDOR_A_TREND
|
||||
bool "A-Trend"
|
||||
config VENDOR_ABIT
|
||||
bool "Abit"
|
||||
config VENDOR_ADVANTECH
|
||||
bool "Advantech"
|
||||
config VENDOR_AGAMI
|
||||
bool "agami"
|
||||
config VENDOR_AMD
|
||||
bool "AMD"
|
||||
config VENDOR_ARIMA
|
||||
|
@ -22,6 +18,8 @@ config VENDOR_ASI
|
|||
bool "ASI"
|
||||
config VENDOR_ASUS
|
||||
bool "ASUS"
|
||||
config VENDOR_A_TREND
|
||||
bool "A-Trend"
|
||||
config VENDOR_AXUS
|
||||
bool "AXUS"
|
||||
config VENDOR_AZZA
|
||||
|
@ -62,6 +60,8 @@ config VENDOR_KONTRON
|
|||
bool "Kontron"
|
||||
config VENDOR_LIPPERT
|
||||
bool "Lippert"
|
||||
config VENDOR_MITAC
|
||||
bool "Mitac"
|
||||
config VENDOR_MOTOROLA
|
||||
bool "Motorola"
|
||||
config VENDOR_MSI
|
||||
|
@ -78,12 +78,18 @@ config VENDOR_PC_ENGINES
|
|||
bool "PC Engines"
|
||||
config VENDOR_RCA
|
||||
bool "RCA"
|
||||
config VENDOR_SOYO
|
||||
bool "Soyo"
|
||||
config VENDOR_SUNW
|
||||
bool "Sun"
|
||||
config VENDOR_SUPERMICRO
|
||||
bool "Supermicro"
|
||||
config VENDOR_TECHNEXION
|
||||
bool "Technexion"
|
||||
config VENDOR_TECHNOLOGIC
|
||||
bool "Technologic"
|
||||
config VENDOR_TELEVIDEO
|
||||
bool "TeleVideo"
|
||||
config VENDOR_THOMSON
|
||||
bool "Thomson"
|
||||
config VENDOR_TOTAL_IMPACT
|
||||
|
@ -95,11 +101,6 @@ config VENDOR_VIA
|
|||
|
||||
endchoice
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "A-Trend"
|
||||
depends on VENDOR_A_TREND
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "Abit"
|
||||
|
@ -110,11 +111,6 @@ config MAINBOARD_VENDOR
|
|||
default "Advantech"
|
||||
depends on VENDOR_ADVANTECH
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "agami"
|
||||
depends on VENDOR_AGAMI
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "AMD"
|
||||
|
@ -140,6 +136,11 @@ config MAINBOARD_VENDOR
|
|||
default "ASUS"
|
||||
depends on VENDOR_ASUS
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "A-Trend"
|
||||
depends on VENDOR_A_TREND
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "AXUS"
|
||||
|
@ -240,6 +241,11 @@ config MAINBOARD_VENDOR
|
|||
default "Lippert"
|
||||
depends on VENDOR_LIPPERT
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "Mitac"
|
||||
depends on VENDOR_MITAC
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "Motorola"
|
||||
|
@ -280,6 +286,11 @@ config MAINBOARD_VENDOR
|
|||
default "RCA"
|
||||
depends on VENDOR_RCA
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "Soyo"
|
||||
depends on VENDOR_SOYO
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "Sun"
|
||||
|
@ -295,6 +306,16 @@ config MAINBOARD_VENDOR
|
|||
default "Technexion"
|
||||
depends on VENDOR_TECHNEXION
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "Technologic"
|
||||
depends on VENDOR_TECHNOLOGIC
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "TeleVideo"
|
||||
depends on VENDOR_TELEVIDEO
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
default "Thomson"
|
||||
|
|
Loading…
Reference in New Issue