diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2009-10-01 15:41:39 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2009-10-01 15:41:39 +0000 |
commit | e14f58343bc4f6b63673e3e2af8f6ce66d0bb74c (patch) | |
tree | e77c8c8d83046d529c7a0ed7f3fdb5c711998a1d /src/mainboard/dell/s1850/Kconfig | |
parent | 61d66db14d9f8790982a299314101e8c5125c36d (diff) |
We need this to be Kconfig. The old way is not trusted by me.
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4699 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/dell/s1850/Kconfig')
-rw-r--r-- | src/mainboard/dell/s1850/Kconfig | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/mainboard/dell/s1850/Kconfig b/src/mainboard/dell/s1850/Kconfig new file mode 100644 index 0000000000..3898c83f9b --- /dev/null +++ b/src/mainboard/dell/s1850/Kconfig @@ -0,0 +1,66 @@ +config BOARD_DELL_S1850 + bool "Dell S1850" + select ARCH_X86 + select CPU_INTEL_SOCKET_MPGA604 + select NORTHBRIDGE_INTEL_E7520 + select SOUTHBRIDGE_INTEL_I82801ER + select SUPERIO_NSC_PC8374 + select PIRQ_TABLE + help + Dell S1850mainboard. + +config MAINBOARD_DIR + string + default dell/s1850 + depends on BOARD_DELL_S1850 + +config LB_CKS_RANGE_END + int + default 122 + depends on BOARD_TYAN_S2881 + +config LB_CKS_LOC + int + default 123 + depends on BOARD_TYAN_S2881 + +config MAINBOARD_PART_NUMBER + string + default "s1850" + depends on BOARD_DELL_S1850 + +config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID + hex + default 0x016c + depends on BOARD_DELL_S1850 + +config USE_FAILOVER_IMAGE + bool + default n + depends on BOARD_DELL_S1850 + +config HAVE_FAILOVER_BOOT + bool + default n + depends on BOARD_DELL_S1850 + +config USE_FAILOVER_IMAGE + bool + default n + depends on BOARD_DELL_S1850 + +config MAX_CPUS + int + default 2 + depends on BOARD_DELL_S1850 + +config MAX_PHYSICAL_CPUS + int + default 2 + depends on BOARD_DELL_S1850 + +config USE_INIT + bool + default n + depends on BOARD_DELL_S1850 + |