fix naming convention, turn X.
another commit is following Signed-off-by: Yinghai Lu <yinghailu@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2468 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
1d8261d416
commit
9d6be3ec42
|
@ -1,5 +0,0 @@
|
|||
extern struct chip_operations mainboard_Iwill_DK8S2_ops;
|
||||
|
||||
struct mainboard_Iwill_DK8S2_config {
|
||||
int nothing;
|
||||
};
|
|
@ -1,5 +0,0 @@
|
|||
extern struct chip_operations mainboard_Iwill_DK8X_ops;
|
||||
|
||||
struct mainboard_Iwill_DK8X_config {
|
||||
int nothing;
|
||||
};
|
|
@ -0,0 +1,5 @@
|
|||
extern struct chip_operations mainboard_iwill_dk8x_ops;
|
||||
|
||||
struct mainboard_iwill_dk8x_config {
|
||||
int nothing;
|
||||
};
|
|
@ -5,7 +5,7 @@
|
|||
#include <device/pci_ops.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_Iwill_DK8X_ops = {
|
||||
struct chip_operations mainboard_iwill_dk8x_ops = {
|
||||
CHIP_NAME("Iwill DK8X mainboard")
|
||||
};
|
||||
|
|
@ -230,7 +230,7 @@ default CONFIG_IOAPIC=1
|
|||
## Clean up the motherboard id strings
|
||||
##
|
||||
default MAINBOARD_PART_NUMBER="dk8_htx"
|
||||
default MAINBOARD_VENDOR="Iwill"
|
||||
default MAINBOARD_VENDOR="iwill"
|
||||
default MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID=0x1022
|
||||
default MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID=0x2b80
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
extern struct chip_operations mainboard_Iwill_dk8_htx_ops;
|
||||
extern struct chip_operations mainboard_iwill_dk8_htx_ops;
|
||||
|
||||
struct mainboard_Iwill_dk8_htx_config {
|
||||
struct mainboard_iwill_dk8_htx_config {
|
||||
// int fixup_scsi;
|
||||
// int fixup_vga;
|
||||
};
|
||||
|
|
|
@ -130,7 +130,7 @@ mainboardinit cpu/x86/mmx/disable_mmx.inc
|
|||
dir /pc80
|
||||
config chip.h
|
||||
|
||||
# config for Iwill/DK8S2
|
||||
# config for iwill/dk8s2
|
||||
chip northbridge/amd/amdk8/root_complex
|
||||
device pci_domain 0 on
|
||||
chip northbridge/amd/amdk8
|
|
@ -0,0 +1,5 @@
|
|||
extern struct chip_operations mainboard_iwill_dk8s2_ops;
|
||||
|
||||
struct mainboard_iwill_dk8s2_config {
|
||||
int nothing;
|
||||
};
|
|
@ -5,7 +5,7 @@
|
|||
#include <device/pci_ops.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations mainboard_Iwill_DK8S2_ops = {
|
||||
struct chip_operations mainboard_iwill_dk8s2_ops = {
|
||||
CHIP_NAME("Iwill DK8S2 mainboard")
|
||||
};
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
target dk8_htx
|
||||
mainboard Iwill/dk8_htx
|
||||
mainboard iwill/dk8_htx
|
||||
|
||||
# serengeti_leopard
|
||||
romimage "normal"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
target dk8s2
|
||||
|
||||
mainboard Iwill/DK8S2
|
||||
mainboard iwill/dk8s2
|
||||
|
||||
option HAVE_HARD_RESET=1
|
||||
|
||||
|
|
Loading…
Reference in New Issue