changeset 218:08138aee2110

Update config to work with 2.6.23.
author Rob Landley <rob@landley.net>
date Sun, 16 Sep 2007 21:16:33 -0500
parents 01fd30185476
children 11e99cacb09e
files sources/configs/armv4l sources/configs/armv5l
diffstat 2 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/sources/configs/armv4l	Sun Sep 16 18:33:25 2007 -0500
+++ b/sources/configs/armv4l	Sun Sep 16 21:16:33 2007 -0500
@@ -1,3 +1,16 @@
+# ARM v4 soft float.  This is an extremely generic arm image that should run
+# on any arm hardware still in use today.
+
+# Note: ARMv5 can run ARMv4, ARMv6 can run ARMv5, and so on.  Each new
+# architecture is a superset of the old ones, and the only reason to compile
+# for newer platforms is speed.  (ARMv5 code runs about 25% faster than
+# ARMv4 code on hardware that can handle it.)  The oldest architecture this
+# goes back to is ARMv3 (which introduced 32-bit addressing), but that
+# hardware is obsolete (not just no longer being sold, but mostly cycled out
+# of the installed base).
+
+# For details, see http://www.arm.com/products/CPUs/architecture.html
+CLEANUP=echo
 KARCH=arm
 KERNEL_PATH=arch/${KARCH}/boot/zImage
 GCC_FLAGS="--with-float=soft"
@@ -89,8 +102,10 @@
 CONFIG_FW_LOADER=y
 CONFIG_BLK_DEV_LOOP=y
 CONFIG_SCSI=y
+CONFIG_BLK_DEV=y
 CONFIG_BLK_DEV_SD=y
 CONFIG_BLK_DEV_SR=y
+CONFIG_SCSI_LOWLEVEL=y
 CONFIG_SCSI_SYM53C8XX_2=y
 CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0
 CONFIG_SCSI_SYM53C8XX_MMIO=y
--- a/sources/configs/armv5l	Sun Sep 16 18:33:25 2007 -0500
+++ b/sources/configs/armv5l	Sun Sep 16 21:16:33 2007 -0500
@@ -1,3 +1,7 @@
+# ARMv5 with vector floating point (vfp).  Should run about 25% faster than
+# the armv4 image for integer stuff, and faster than that for floating point.
+# Assuming you have at least ARMv5 hardware (which most stuff sold today is).
+
 KARCH=arm
 KERNEL_PATH=arch/${KARCH}/boot/zImage
 GCC_FLAGS=
@@ -86,9 +90,11 @@
 CONFIG_UNIX=y
 CONFIG_INET=y
 CONFIG_FW_LOADER=y
+CONFIG_BLK_DEV=y
 CONFIG_BLK_DEV_LOOP=y
 CONFIG_BLK_DEV_INITRD=y
 CONFIG_SCSI=y
+CONFIG_SCSI_LOWLEVEL=y
 CONFIG_BLK_DEV_SD=y
 CONFIG_BLK_DEV_SR=y
 CONFIG_SCSI_SYM53C8XX_2=y