diff options
author | Richard Smith <smithbone@gmail.com> | 2006-07-29 17:40:36 +0000 |
---|---|---|
committer | Richard Smith <smithbone@gmail.com> | 2006-07-29 17:40:36 +0000 |
commit | 924f92faa2f66d09f3ad79a946e3867c105372a7 (patch) | |
tree | cf3d183d57d81435ce3382cc0028c48393a99c1b /targets/asus/p2b/Config.lb | |
parent | 5e9dc231209c1a293b5a92a9ea78eb07ce0a3086 (diff) |
- Add support _framework_ for the Asus p2b.
- New superIO winbond/w83977tf
- Add single memory controller SBbus debug routine
into a file private to the i440bx
This adds support the start of support for an Asus p2b
mainboard. Current limitations are the same as for the
Bitworks IMS board. Reads from the SMbus don't work.
Moving dump_spd_registers() into its own private copy
solves the problem of having to go hack on the version that
included in src/sdram to only do one memory controller.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2351 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets/asus/p2b/Config.lb')
-rw-r--r-- | targets/asus/p2b/Config.lb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/targets/asus/p2b/Config.lb b/targets/asus/p2b/Config.lb new file mode 100644 index 0000000000..364309f7cc --- /dev/null +++ b/targets/asus/p2b/Config.lb @@ -0,0 +1,29 @@ +# Config file for asus p2b board +# This will make a target directory of ./p2b + +target p2b +mainboard asus/p2b + +option ROM_SIZE=256*1024 + +romimage "normal" + option USE_FALLBACK_IMAGE=0 + option ROM_IMAGE_SIZE=0x10000 + option LINUXBIOS_EXTRA_VERSION=".0Normal" +# payload /usr/share/etherboot/5.1.9pre2-lnxi-lb/tg3--ide_disk.zelf +# payload ../../../../tg3--ide_disk.zelf +# payload ../../../../../lnxieepro100.ebi + payload /etc/hosts +end + +romimage "fallback" + option USE_FALLBACK_IMAGE=1 + option ROM_IMAGE_SIZE=0x10000 + option LINUXBIOS_EXTRA_VERSION=".0Fallback" +# payload /usr/share/etherboot/5.1.9pre2-lnxi-lb/tg3--ide_disk.zelf +# payload ../../../../tg3--ide_disk.zelf +# payload ../../../../../lnxieepro100.ebia + payload /etc/hosts +end + +buildrom ./linuxbios.rom ROM_SIZE "normal" "fallback" |