diff options
author | Corey Osgood <corey.osgood@gmail.com> | 2007-06-14 06:10:57 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-06-14 06:10:57 +0000 |
commit | e99bd105af97ad905114bd76ae09326a10def8cf (patch) | |
tree | 22ef962a20d86a4362bc6a2620b72e2a8a344457 /src/mainboard/asus/mew-vm/mainboard.c | |
parent | bd88057f73b83e5bfd9d0fe57b28c87c98d73b12 (diff) | |
download | coreboot-e99bd105af97ad905114bd76ae09326a10def8cf.tar.xz |
This patch adds support for the Intel i82810 northbridge and various i82801xx
southbridges, along with the Asus MEW-VM. With this, my machine attempts to
boot linux, but does so very slowly and fails during the boot process, probably
because of the irq tables.
Signed-off-by: Corey Osgood <corey.osgood@gmail.com>
Acked-by: Joseph Smith <joe@smittys.pointclark.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2719 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/asus/mew-vm/mainboard.c')
-rw-r--r-- | src/mainboard/asus/mew-vm/mainboard.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainboard/asus/mew-vm/mainboard.c b/src/mainboard/asus/mew-vm/mainboard.c new file mode 100644 index 0000000000..62d18c2cfe --- /dev/null +++ b/src/mainboard/asus/mew-vm/mainboard.c @@ -0,0 +1,7 @@ +#include <device/device.h> +#include "chip.h" + +struct chip_operations mainboard_asus_mew_vm_ops = { + CHIP_NAME("ASUS MEW-VM Mainboard") +}; + |