]> git.neil.brown.name Git - history.git/commitdiff
[ARM] Remove hard coded per-architecture memory, ramdisk and initrd
authorRussell King <rmk@flint.arm.linux.org.uk>
Thu, 30 May 2002 01:16:58 +0000 (02:16 +0100)
committerRussell King <rmk@flint.arm.linux.org.uk>
Thu, 30 May 2002 01:16:58 +0000 (02:16 +0100)
We have a fair number of command line options which can be used
to pass information about the target to the kernel.  We also provide
a default command line which the kernel will use in absence of one
provided by the boot loader.  We pass the hard coded options via the
command line now.

63 files changed:
arch/arm/config.in
arch/arm/def-configs/adi_evb
arch/arm/def-configs/adsbitsy
arch/arm/def-configs/anakin
arch/arm/def-configs/assabet
arch/arm/def-configs/badge4
arch/arm/def-configs/brutus
arch/arm/def-configs/cerfcube
arch/arm/def-configs/cerfpda
arch/arm/def-configs/cerfpod
arch/arm/def-configs/empeg
arch/arm/def-configs/epxa10db
arch/arm/def-configs/flexanet
arch/arm/def-configs/freebird
arch/arm/def-configs/freebird_new
arch/arm/def-configs/graphicsclient
arch/arm/def-configs/graphicsmaster
arch/arm/def-configs/huw_webpanel
arch/arm/def-configs/iq80310
arch/arm/def-configs/jornada720
arch/arm/def-configs/lusl7200
arch/arm/def-configs/neponset
arch/arm/def-configs/omnimeter
arch/arm/def-configs/pangolin
arch/arm/def-configs/pfs168_mqtft
arch/arm/def-configs/pfs168_mqvga
arch/arm/def-configs/pfs168_sastn
arch/arm/def-configs/pfs168_satft
arch/arm/def-configs/pleb
arch/arm/def-configs/sherman
arch/arm/kernel/setup.c
arch/arm/mach-adifcc/arch.c
arch/arm/mach-anakin/arch.c
arch/arm/mach-clps711x/cdb89712.c
arch/arm/mach-epxa10db/arch.c
arch/arm/mach-integrator/arch.c
arch/arm/mach-iop310/arch.c
arch/arm/mach-l7200/core.c
arch/arm/mach-pxa/idp.c
arch/arm/mach-pxa/lubbock.c
arch/arm/mach-rpc/riscpc.c
arch/arm/mach-sa1100/adsbitsy.c
arch/arm/mach-sa1100/assabet.c
arch/arm/mach-sa1100/brutus.c
arch/arm/mach-sa1100/cerf.c
arch/arm/mach-sa1100/empeg.c
arch/arm/mach-sa1100/flexanet.c
arch/arm/mach-sa1100/freebird.c
arch/arm/mach-sa1100/graphicsclient.c
arch/arm/mach-sa1100/graphicsmaster.c
arch/arm/mach-sa1100/huw_webpanel.c
arch/arm/mach-sa1100/itsy.c
arch/arm/mach-sa1100/jornada720.c
arch/arm/mach-sa1100/nanoengine.c
arch/arm/mach-sa1100/omnimeter.c
arch/arm/mach-sa1100/pangolin.c
arch/arm/mach-sa1100/pfs168.c
arch/arm/mach-sa1100/pleb.c
arch/arm/mach-sa1100/sherman.c
arch/arm/mach-sa1100/simpad.c
arch/arm/mach-sa1100/system3.c
arch/arm/mach-sa1100/xp860.c
include/asm-arm/mach/arch.h

index c28c700d43c1f1d4c979b03b3f9f59339db32154..c55faa4fbca7934391afa498e9585dca8184754a 100644 (file)
@@ -63,11 +63,6 @@ dep_bool '  ADS Bitsy' CONFIG_SA1100_ADSBITSY $CONFIG_ARCH_SA1100
 dep_bool '  Brutus' CONFIG_SA1100_BRUTUS $CONFIG_ARCH_SA1100
 dep_bool '  CerfBoard' CONFIG_SA1100_CERF $CONFIG_ARCH_SA1100
 if [ "$CONFIG_SA1100_CERF" = "y" ]; then
-   choice 'Cerf RAM available' \
-        "8MB   CONFIG_SA1100_CERF_8MB \
-         16MB   CONFIG_SA1100_CERF_16MB \
-         32MB   CONFIG_SA1100_CERF_32MB \
-         64MB   CONFIG_SA1100_CERF_64MB" CerfRam
    choice 'Cerf Flash available'  \
         "8MB    CONFIG_SA1100_CERF_FLASH_8MB \
          16MB   CONFIG_SA1100_CERF_FLASH_16MB \
@@ -453,7 +448,9 @@ else
 fi
 comment 'At least one math emulation must be selected'
 tristate 'NWFPE math emulation' CONFIG_FPE_NWFPE
-dep_tristate 'FastFPE math emulation (experimental)' CONFIG_FPE_FASTFPE $CONFIG_EXPERIMENTAL
+if [ "$CONFIG_CPU_26" = "n" -a "$CONFIG_CPU_32v3" = "n" ]; then
+   dep_tristate 'FastFPE math emulation (experimental)' CONFIG_FPE_FASTFPE $CONFIG_EXPERIMENTAL
+fi
 choice 'Kernel core (/proc/kcore) format' \
        "ELF            CONFIG_KCORE_ELF        \
         A.OUT          CONFIG_KCORE_AOUT" ELF
@@ -494,15 +491,10 @@ if [ "$CONFIG_ARCH_NETWINDER" = "y" -o  \
    fi
 fi
 
-if [ "$CONFIG_ARCH_SA1100" = "y" ]; then
+if [ "$CONFIG_CPU_32" = "y" ]; then
    define_bool CONFIG_ALIGNMENT_TRAP y
 else
-   if [ "$CONFIG_CPU_32" = "y" -a \
-        "$CONFIG_ARCH_EBSA110" != "y" ]; then
-      bool 'Mis-alignment trap handler' CONFIG_ALIGNMENT_TRAP
-   else
-      define_bool CONFIG_ALIGNMENT_TRAP n
-   fi
+   define_bool CONFIG_ALIGNMENT_TRAP n
 fi
 endmenu
 
@@ -510,6 +502,8 @@ source drivers/parport/Config.in
 
 if [ "$CONFIG_ALIGNMENT_TRAP" = "y" ]; then
   source drivers/mtd/Config.in
+else
+  define_bool CONFIG_MTD n
 fi
 
 source drivers/pnp/Config.in
index 2a9323fd357a3017ba83306351d913705a68e072..93cae0c134c4b849602f696818401f127b8dd585 100644 (file)
@@ -147,7 +147,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="console=ttyS0,115200 root=/dev/mtdblock1"
+CONFIG_CMDLINE="console=ttyS0,115200 root=/dev/mtdblock1 mem=32M initrd=0xc0800000,3M"
 CONFIG_ALIGNMENT_TRAP=y
 
 #
@@ -236,7 +236,7 @@ CONFIG_MTD_ADI_EVB=y
 # CONFIG_BLK_DEV_LOOP is not set
 # CONFIG_BLK_DEV_NBD is not set
 CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=4192
+CONFIG_BLK_DEV_RAM_SIZE=8192
 CONFIG_BLK_DEV_INITRD=y
 
 #
index 8de0b2a2bc34d51f3881d4ab78496e71a40c4fba..55dd18e03182c8040b09535f53630f1363217da4 100644 (file)
@@ -139,7 +139,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="ip=off"
+CONFIG_CMDLINE="ip=off mem=32M root=/dev/ram ramdisk=8192 initrd=0xc0800000,4M"
 # CONFIG_PFS168_CMDLINE is not set
 # CONFIG_LEDS is not set
 CONFIG_ALIGNMENT_TRAP=y
index 8d124e0394494a92fe9206b5f4620fcfd467eeba..c7aa93108e17d29f0c02e705396f2f676747199d 100644 (file)
@@ -8,12 +8,21 @@ CONFIG_ARM=y
 CONFIG_UID16=y
 CONFIG_RWSEM_GENERIC_SPINLOCK=y
 # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
+# CONFIG_GENERIC_BUST_SPINLOCK is not set
+# CONFIG_GENERIC_ISA_DMA is not set
 
 #
 # Code maturity level options
 #
 CONFIG_EXPERIMENTAL=y
-# CONFIG_OBSOLETE is not set
+
+#
+# General setup
+#
+CONFIG_NET=y
+# CONFIG_SYSVIPC is not set
+# CONFIG_BSD_PROCESS_ACCT is not set
+# CONFIG_SYSCTL is not set
 
 #
 # Loadable module support
@@ -25,17 +34,21 @@ CONFIG_MODULES=y
 #
 # System Type
 #
+# CONFIG_ARCH_ADIFCC is not set
+CONFIG_ARCH_ANAKIN=y
 # CONFIG_ARCH_ARCA5K is not set
 # CONFIG_ARCH_CLPS7500 is not set
+# CONFIG_ARCH_CLPS711X is not set
 # CONFIG_ARCH_CO285 is not set
 # CONFIG_ARCH_EBSA110 is not set
-# CONFIG_ARCH_L7200 is not set
+# CONFIG_ARCH_CAMELOT is not set
 # CONFIG_ARCH_FOOTBRIDGE is not set
 # CONFIG_ARCH_INTEGRATOR is not set
+# CONFIG_ARCH_IOP310 is not set
+# CONFIG_ARCH_L7200 is not set
 # CONFIG_ARCH_RPC is not set
 # CONFIG_ARCH_SA1100 is not set
-# CONFIG_ARCH_CLPS711X is not set
-CONFIG_ARCH_ANAKIN=y
+# CONFIG_ARCH_SHARK is not set
 
 #
 # Archimedes/A5000 Implementations
@@ -61,12 +74,19 @@ CONFIG_ARCH_ANAKIN=y
 #
 # CONFIG_SA1100_ASSABET is not set
 # CONFIG_ASSABET_NEPONSET is not set
+# CONFIG_SA1100_ADSBITSY is not set
 # CONFIG_SA1100_BRUTUS is not set
 # CONFIG_SA1100_CERF is not set
-# CONFIG_SA1100_BITSY is not set
+# CONFIG_SA1100_H3100 is not set
+# CONFIG_SA1100_H3600 is not set
+# CONFIG_SA1100_H3800 is not set
+# CONFIG_SA1100_H3XXX is not set
 # CONFIG_SA1100_EXTENEX1 is not set
+# CONFIG_SA1100_FLEXANET is not set
 # CONFIG_SA1100_FREEBIRD is not set
 # CONFIG_SA1100_GRAPHICSCLIENT is not set
+# CONFIG_SA1100_GRAPHICSMASTER is not set
+# CONFIG_SA1100_BADGE4 is not set
 # CONFIG_SA1100_JORNADA720 is not set
 # CONFIG_SA1100_HUW_WEBPANEL is not set
 # CONFIG_SA1100_ITSY is not set
@@ -75,16 +95,31 @@ CONFIG_ARCH_ANAKIN=y
 # CONFIG_SA1100_OMNIMETER is not set
 # CONFIG_SA1100_PANGOLIN is not set
 # CONFIG_SA1100_PLEB is not set
+# CONFIG_SA1100_PT_SYSTEM3 is not set
+# CONFIG_SA1100_SHANNON is not set
 # CONFIG_SA1100_SHERMAN is not set
+# CONFIG_SA1100_SIMPAD is not set
 # CONFIG_SA1100_PFS168 is not set
 # CONFIG_SA1100_VICTOR is not set
 # CONFIG_SA1100_XP860 is not set
 # CONFIG_SA1100_YOPY is not set
+# CONFIG_SA1100_STORK is not set
+# CONFIG_SA1100_USB is not set
+# CONFIG_SA1100_USB_NETLINK is not set
+# CONFIG_SA1100_USB_CHAR is not set
+# CONFIG_H3600_SLEEVE is not set
 
 #
 # CLPS711X/EP721X Implementations
 #
+# CONFIG_ARCH_AUTCPU12 is not set
+# CONFIG_ARCH_CDB89712 is not set
+# CONFIG_ARCH_CLEP7312 is not set
+# CONFIG_ARCH_EDB7211 is not set
 # CONFIG_ARCH_P720T is not set
+# CONFIG_ARCH_FORTUNET is not set
+# CONFIG_ARCH_EP7211 is not set
+# CONFIG_ARCH_EP7212 is not set
 # CONFIG_ARCH_ACORN is not set
 # CONFIG_FOOTBRIDGE is not set
 # CONFIG_FOOTBRIDGE_HOST is not set
@@ -97,27 +132,40 @@ CONFIG_CPU_32=y
 #
 # CONFIG_CPU_32v3 is not set
 CONFIG_CPU_32v4=y
+# CONFIG_CPU_32v5 is not set
 # CONFIG_CPU_ARM610 is not set
 # CONFIG_CPU_ARM710 is not set
 # CONFIG_CPU_ARM720T is not set
 # CONFIG_CPU_ARM920T is not set
+# CONFIG_CPU_ARM922T is not set
+# CONFIG_CPU_ARM926T is not set
 # CONFIG_CPU_ARM1020 is not set
 CONFIG_CPU_SA110=y
 # CONFIG_CPU_SA1100 is not set
-# CONFIG_DISCONTIGMEM is not set
+# CONFIG_CPU_XSCALE is not set
+# CONFIG_XSCALE_PMU is not set
+
+#
+# Processor Features
+#
 
 #
 # General setup
 #
+# CONFIG_DISCONTIGMEM is not set
 # CONFIG_PCI is not set
 # CONFIG_ISA is not set
 # CONFIG_ISA_DMA is not set
+# CONFIG_FIQ is not set
+# CONFIG_ZBOOT_ROM is not set
+CONFIG_ZBOOT_ROM_TEXT=0
+CONFIG_ZBOOT_ROM_BSS=0
 # CONFIG_HOTPLUG is not set
 # CONFIG_PCMCIA is not set
-CONFIG_NET=y
-# CONFIG_SYSVIPC is not set
-# CONFIG_BSD_PROCESS_ACCT is not set
-# CONFIG_SYSCTL is not set
+
+#
+# At least one math emulation must be selected
+#
 CONFIG_FPE_NWFPE=y
 # CONFIG_FPE_FASTFPE is not set
 CONFIG_KCORE_ELF=y
@@ -126,20 +174,28 @@ CONFIG_BINFMT_AOUT=y
 CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE=""
-# CONFIG_ALIGNMENT_TRAP is not set
+CONFIG_CMDLINE="root=/dev/ram initrd=0xc0800000,4M"
+CONFIG_ALIGNMENT_TRAP=y
 
 #
 # Parallel port support
 #
 # CONFIG_PARPORT is not set
 
+#
+# Memory Technology Devices (MTD)
+#
+# CONFIG_MTD is not set
+
 #
 # Plug and Play configuration
 #
 # CONFIG_PNP is not set
 # CONFIG_ISAPNP is not set
+# CONFIG_PNPBIOS is not set
 
 #
 # Block devices
@@ -149,7 +205,9 @@ CONFIG_CMDLINE=""
 # CONFIG_PARIDE is not set
 # CONFIG_BLK_CPQ_DA is not set
 # CONFIG_BLK_CPQ_CISS_DA is not set
+# CONFIG_CISS_SCSI_TAPE is not set
 # CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_UMEM is not set
 # CONFIG_BLK_DEV_LOOP is not set
 # CONFIG_BLK_DEV_NBD is not set
 CONFIG_BLK_DEV_RAM=y
@@ -165,13 +223,14 @@ CONFIG_BLK_DEV_INITRD=y
 # CONFIG_MD_RAID0 is not set
 # CONFIG_MD_RAID1 is not set
 # CONFIG_MD_RAID5 is not set
+# CONFIG_MD_MULTIPATH is not set
 # CONFIG_BLK_DEV_LVM is not set
 
 #
 # Networking options
 #
 # CONFIG_PACKET is not set
-# CONFIG_NETLINK is not set
+# CONFIG_NETLINK_DEV is not set
 # CONFIG_NETFILTER is not set
 # CONFIG_FILTER is not set
 CONFIG_UNIX=y
@@ -181,17 +240,24 @@ CONFIG_INET=y
 # CONFIG_IP_PNP is not set
 # CONFIG_NET_IPIP is not set
 # CONFIG_NET_IPGRE is not set
+# CONFIG_ARPD is not set
 # CONFIG_INET_ECN is not set
 # CONFIG_SYN_COOKIES is not set
 # CONFIG_IPV6 is not set
 # CONFIG_KHTTPD is not set
 # CONFIG_ATM is not set
+# CONFIG_VLAN_8021Q is not set
 
 #
 #  
 #
 # CONFIG_IPX is not set
 # CONFIG_ATALK is not set
+
+#
+# Appletalk devices
+#
+# CONFIG_DEV_APPLETALK is not set
 # CONFIG_DECNET is not set
 # CONFIG_BRIDGE is not set
 # CONFIG_X25 is not set
@@ -229,7 +295,13 @@ CONFIG_IRDA=y
 # CONFIG_IRLAN is not set
 # CONFIG_IRCOMM is not set
 # CONFIG_IRDA_ULTRA is not set
-# CONFIG_IRDA_OPTIONS is not set
+
+#
+# IrDA options
+#
+# CONFIG_IRDA_CACHE_LAST_LSAP is not set
+# CONFIG_IRDA_FAST_RR is not set
+# CONFIG_IRDA_DEBUG is not set
 
 #
 # Infrared-port device drivers
@@ -241,25 +313,26 @@ CONFIG_IRDA=y
 CONFIG_IRTTY_SIR=y
 # CONFIG_IRPORT_SIR is not set
 
+#
+# Dongle support
+#
+# CONFIG_DONGLE is not set
+
 #
 # FIR device drivers
 #
+# CONFIG_USB_IRDA is not set
 # CONFIG_NSC_FIR is not set
 # CONFIG_WINBOND_FIR is not set
 # CONFIG_TOSHIBA_FIR is not set
 # CONFIG_SMC_IRCC_FIR is not set
-# CONFIG_SA1100_FIR is not set
-
-#
-# Dongle support
-#
-# CONFIG_DONGLE is not set
+# CONFIG_ALI_FIR is not set
+# CONFIG_VLSI_FIR is not set
 
 #
 # ATA/IDE/MFM/RLL support
 #
 # CONFIG_IDE is not set
-# CONFIG_BLK_DEV_IDE_MODES is not set
 # CONFIG_BLK_DEV_HD is not set
 
 #
@@ -279,27 +352,73 @@ CONFIG_IRTTY_SIR=y
 #
 # ISDN subsystem
 #
-# CONFIG_ISDN is not set
+# CONFIG_ISDN_BOOL is not set
 
 #
-# Input core support
+# Input device support
 #
 # CONFIG_INPUT is not set
+# CONFIG_INPUT_KEYBDEV is not set
+# CONFIG_INPUT_MOUSEDEV is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_EVDEV is not set
+# CONFIG_GAMEPORT is not set
+CONFIG_SOUND_GAMEPORT=y
+# CONFIG_GAMEPORT_NS558 is not set
+# CONFIG_GAMEPORT_L4 is not set
+# CONFIG_INPUT_EMU10K1 is not set
+# CONFIG_GAMEPORT_PCIGAME is not set
+# CONFIG_GAMEPORT_FM801 is not set
+# CONFIG_GAMEPORT_CS461x is not set
+# CONFIG_SERIO is not set
+# CONFIG_SERIO_SERPORT is not set
 
 #
 # Character devices
 #
 CONFIG_VT=y
 # CONFIG_VT_CONSOLE is not set
-# CONFIG_SERIAL is not set
 # CONFIG_SERIAL_EXTENDED is not set
 # CONFIG_SERIAL_NONSTANDARD is not set
+
+#
+# Serial drivers
+#
+# CONFIG_SERIAL_8250 is not set
+# CONFIG_SERIAL_8250_CONSOLE is not set
+# CONFIG_SERIAL_8250_EXTENDED is not set
+# CONFIG_SERIAL_8250_MANY_PORTS is not set
+# CONFIG_SERIAL_8250_SHARE_IRQ is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_MULTIPORT is not set
+# CONFIG_SERIAL_8250_RSA is not set
+
+#
+# Non-8250 serial port support
+#
+
+#
+# ARM Serial drivers
+#
+# CONFIG_ATOMWIDE_SERIAL is not set
+# CONFIG_DUALSP_SERIAL is not set
 CONFIG_SERIAL_ANAKIN=y
 CONFIG_SERIAL_ANAKIN_CONSOLE=y
 CONFIG_ANAKIN_DEFAULT_BAUDRATE=115200
-CONFIG_TOUCHSCREEN_ANAKIN=y
+# CONFIG_SERIAL_AMBA is not set
+# CONFIG_SERIAL_AMBA_CONSOLE is not set
+# CONFIG_SERIAL_CLPS711X is not set
+# CONFIG_SERIAL_CLPS711X_CONSOLE is not set
+# CONFIG_SERIAL_21285 is not set
+# CONFIG_SERIAL_21285_OLD is not set
+# CONFIG_SERIAL_21285_CONSOLE is not set
+# CONFIG_SERIAL_UART00 is not set
+# CONFIG_SERIAL_UART00_CONSOLE is not set
+# CONFIG_SERIAL_SA1100 is not set
+# CONFIG_SERIAL_SA1100_CONSOLE is not set
 CONFIG_SERIAL_CORE=y
 CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_TOUCHSCREEN_ANAKIN=y
 # CONFIG_UNIX98_PTYS is not set
 
 #
@@ -308,19 +427,23 @@ CONFIG_SERIAL_CORE_CONSOLE=y
 # CONFIG_I2C is not set
 
 #
-# Mice
+# L3 serial bus support
 #
-# CONFIG_BUSMOUSE is not set
-# CONFIG_MOUSE is not set
+# CONFIG_L3 is not set
+# CONFIG_L3_ALGOBIT is not set
+# CONFIG_L3_BIT_SA1100_GPIO is not set
 
 #
-# Joysticks
+# Other L3 adapters
 #
-# CONFIG_JOYSTICK is not set
+# CONFIG_L3_SA1111 is not set
+# CONFIG_BIT_SA1100_GPIO is not set
 
 #
-# Input core support is needed for joysticks
+# Mice
 #
+# CONFIG_BUSMOUSE is not set
+# CONFIG_MOUSE is not set
 # CONFIG_QIC02_TAPE is not set
 
 #
@@ -350,27 +473,40 @@ CONFIG_SERIAL_CORE_CONSOLE=y
 # File systems
 #
 # CONFIG_QUOTA is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QFMT_V2 is not set
+# CONFIG_QIFACE_COMPAT is not set
 # CONFIG_AUTOFS_FS is not set
 # CONFIG_AUTOFS4_FS is not set
 # CONFIG_REISERFS_FS is not set
 # CONFIG_REISERFS_CHECK is not set
+# CONFIG_REISERFS_PROC_INFO is not set
 # CONFIG_ADFS_FS is not set
 # CONFIG_ADFS_FS_RW is not set
 # CONFIG_AFFS_FS is not set
 # CONFIG_HFS_FS is not set
 # CONFIG_BFS_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_JBD is not set
+# CONFIG_JBD_DEBUG is not set
 # CONFIG_FAT_FS is not set
 # CONFIG_MSDOS_FS is not set
 # CONFIG_UMSDOS_FS is not set
 # CONFIG_VFAT_FS is not set
 # CONFIG_EFS_FS is not set
 # CONFIG_JFFS_FS is not set
+# CONFIG_JFFS2_FS is not set
 # CONFIG_CRAMFS is not set
 # CONFIG_TMPFS is not set
-# CONFIG_RAMFS is not set
+CONFIG_RAMFS=y
 # CONFIG_ISO9660_FS is not set
 # CONFIG_JOLIET is not set
+# CONFIG_ZISOFS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JFS_DEBUG is not set
+# CONFIG_JFS_STATISTICS is not set
 # CONFIG_MINIX_FS is not set
+# CONFIG_VXFS_FS is not set
 # CONFIG_NTFS_FS is not set
 # CONFIG_NTFS_DEBUG is not set
 # CONFIG_HPFS_FS is not set
@@ -384,7 +520,6 @@ CONFIG_PROC_FS=y
 # CONFIG_ROMFS_FS is not set
 CONFIG_EXT2_FS=y
 # CONFIG_SYSV_FS is not set
-# CONFIG_SYSV_FS_WRITE is not set
 # CONFIG_UDF_FS is not set
 # CONFIG_UDF_RW is not set
 # CONFIG_UFS_FS is not set
@@ -394,13 +529,16 @@ CONFIG_EXT2_FS=y
 # Network File Systems
 #
 # CONFIG_CODA_FS is not set
+# CONFIG_INTERMEZZO_FS is not set
 # CONFIG_NFS_FS is not set
 # CONFIG_NFS_V3 is not set
 # CONFIG_ROOT_NFS is not set
 # CONFIG_NFSD is not set
 # CONFIG_NFSD_V3 is not set
+# CONFIG_NFSD_TCP is not set
 # CONFIG_SUNRPC is not set
 # CONFIG_LOCKD is not set
+# CONFIG_EXPORTFS is not set
 # CONFIG_SMB_FS is not set
 # CONFIG_NCP_FS is not set
 # CONFIG_NCPFS_PACKET_SIGNING is not set
@@ -411,12 +549,12 @@ CONFIG_EXT2_FS=y
 # CONFIG_NCPFS_SMALLDOS is not set
 # CONFIG_NCPFS_NLS is not set
 # CONFIG_NCPFS_EXTRAS is not set
+# CONFIG_ZISOFS_FS is not set
 
 #
 # Partition Types
 #
 # CONFIG_PARTITION_ADVANCED is not set
-CONFIG_MSDOS_PARTITION=y
 # CONFIG_SMB_NLS is not set
 # CONFIG_NLS is not set
 
@@ -425,7 +563,6 @@ CONFIG_MSDOS_PARTITION=y
 #
 CONFIG_PC_KEYMAP=y
 # CONFIG_VGA_CONSOLE is not set
-CONFIG_FB=y
 
 #
 # Frame-buffer support
@@ -433,11 +570,10 @@ CONFIG_FB=y
 CONFIG_FB=y
 CONFIG_DUMMY_CONSOLE=y
 # CONFIG_FB_ACORN is not set
+CONFIG_FB_ANAKIN=y
 # CONFIG_FB_CLPS711X is not set
-# CONFIG_FB_CYBER2000 is not set
 # CONFIG_FB_SA1100 is not set
-CONFIG_FB_ANAKIN=y
-# CONFIG_FB_E1355 is not set
+# CONFIG_FB_CYBER2000 is not set
 # CONFIG_FB_VIRTUAL is not set
 # CONFIG_FBCON_ADVANCED is not set
 CONFIG_FBCON_CFB16=y
@@ -446,20 +582,50 @@ CONFIG_FBCON_CFB16=y
 CONFIG_FONT_8x8=y
 CONFIG_FONT_8x16=y
 
+#
+# Multimedia Capabilities Port drivers
+#
+# CONFIG_MCP is not set
+# CONFIG_MCP_SA1100 is not set
+# CONFIG_MCP_UCB1200 is not set
+# CONFIG_MCP_UCB1200_AUDIO is not set
+# CONFIG_MCP_UCB1200_TS is not set
+
+#
+# Console Switches
+#
+# CONFIG_SWITCHES is not set
+
 #
 # USB support
 #
 # CONFIG_USB is not set
 
+#
+# Bluetooth support
+#
+# CONFIG_BLUEZ is not set
+
 #
 # Kernel hacking
 #
 # CONFIG_NO_FRAME_POINTER is not set
-CONFIG_DEBUG_ERRORS=y
 CONFIG_DEBUG_USER=y
 # CONFIG_DEBUG_INFO is not set
+# CONFIG_DEBUG_KERNEL is not set
+# CONFIG_DEBUG_SLAB is not set
 # CONFIG_MAGIC_SYSRQ is not set
-# CONFIG_NO_PGT_CACHE is not set
+# CONFIG_DEBUG_SPINLOCK is not set
+# CONFIG_DEBUG_WAITQ is not set
+# CONFIG_DEBUG_BUGVERBOSE is not set
+# CONFIG_DEBUG_ERRORS is not set
 # CONFIG_DEBUG_LL is not set
 # CONFIG_DEBUG_DC21285_PORT is not set
 # CONFIG_DEBUG_CLPS711X_UART2 is not set
+
+#
+# Library routines
+#
+# CONFIG_CRC32 is not set
+# CONFIG_ZLIB_INFLATE is not set
+# CONFIG_ZLIB_DEFLATE is not set
index c958476bc7f28e69fa88f2e4a047e899dbdf077d..9688b488858cf86c9a24e285f8831a678d77c2a8 100644 (file)
@@ -157,7 +157,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 CONFIG_PM=y
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE=""
+CONFIG_CMDLINE="mem=32M console=ttySA0,38400n8 initrd=0xc0800000,3M root=/dev/ram"
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
 CONFIG_LEDS_CPU=y
@@ -834,6 +834,13 @@ CONFIG_MCP_UCB1200=y
 CONFIG_MCP_UCB1200_AUDIO=m
 CONFIG_MCP_UCB1200_TS=y
 
+#
+# Console Switches
+#
+CONFIG_SWITCHES=y
+CONFIG_SWITCHES_SA1100=y
+CONFIG_SWITCHES_UCB1X00=y
+
 #
 # USB support
 #
index ba7c242646b4f502cf4dfdf2e48aa4c1ec782a10..954fbbd5b2c71352442e10a1f6b20b76b8ba1d45 100644 (file)
@@ -527,7 +527,6 @@ CONFIG_BLK_DEV_IDECD=m
 # CONFIG_BLK_DEV_IDETAPE is not set
 CONFIG_BLK_DEV_IDEFLOPPY=m
 CONFIG_BLK_DEV_IDESCSI=m
-# CONFIG_IDE_TASK_IOCTL is not set
 
 #
 # IDE chipset support/bugfixes
index 6b90db162c5362b81fce14ee655aef332ced700b..b26e7f0fa2aa8bb0564bb5c72b9714ac2bc1cd6d 100644 (file)
@@ -76,7 +76,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="keepinitrd"
+CONFIG_CMDLINE="mem=4M@0xc0000000 mem=4M@0xc8000000 mem=4M@0xd0000000 mem=4M@0xd8000000 keepinitrd root=/dev/ram ramdisk=8192 initrd=0xd8000000,3M"
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
 CONFIG_LEDS_CPU=y
index 2399205b4f769945476a4dcb401e97279736a3ea..16a030f0bd6f25749d8a247d23f2c917b3d705ca 100644 (file)
@@ -65,10 +65,6 @@ CONFIG_ARCH_SA1100=y
 # CONFIG_SA1100_ADSBITSY is not set
 # CONFIG_SA1100_BRUTUS is not set
 CONFIG_SA1100_CERF=y
-# CONFIG_SA1100_CERF_8MB is not set
-# CONFIG_SA1100_CERF_16MB is not set
-CONFIG_SA1100_CERF_32MB=y
-# CONFIG_SA1100_CERF_64MB is not set
 # CONFIG_SA1100_CERF_FLASH_8MB is not set
 CONFIG_SA1100_CERF_FLASH_16MB=y
 # CONFIG_SA1100_CERF_FLASH_32MB is not set
@@ -163,7 +159,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="console=ttySA0 root=1f03 rw"
+CONFIG_CMDLINE="console=ttySA0 root=/dev/mtdblock3 rw mem=32M"
 # CONFIG_PFS168_CMDLINE is not set
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
index 0587453db98c227eaa3953054ce9eb93628737d2..66aeb3d514cc545c64cb33c3011e0e9a2bc2fbe4 100644 (file)
@@ -65,10 +65,6 @@ CONFIG_ARCH_SA1100=y
 # CONFIG_SA1100_ADSBITSY is not set
 # CONFIG_SA1100_BRUTUS is not set
 CONFIG_SA1100_CERF=y
-# CONFIG_SA1100_CERF_8MB is not set
-# CONFIG_SA1100_CERF_16MB is not set
-# CONFIG_SA1100_CERF_32MB is not set
-CONFIG_SA1100_CERF_64MB=y
 # CONFIG_SA1100_CERF_FLASH_8MB is not set
 # CONFIG_SA1100_CERF_FLASH_16MB is not set
 CONFIG_SA1100_CERF_FLASH_32MB=y
@@ -163,7 +159,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="console=ttySA0 cpufreq_max=221200 root=1f03 rw"
+CONFIG_CMDLINE="console=ttySA0 cpufreq_max=221200 root=/dev/mtdblock3 rw mem=64M"
 # CONFIG_PFS168_CMDLINE is not set
 # CONFIG_LEDS is not set
 CONFIG_ALIGNMENT_TRAP=y
index a6250a459d9c8187164787fab524364ddd665b07..565617f2970ad0e685be0cd6f4ceda07a0fb2711 100644 (file)
@@ -65,10 +65,6 @@ CONFIG_ARCH_SA1100=y
 # CONFIG_SA1100_ADSBITSY is not set
 # CONFIG_SA1100_BRUTUS is not set
 CONFIG_SA1100_CERF=y
-# CONFIG_SA1100_CERF_8MB is not set
-# CONFIG_SA1100_CERF_16MB is not set
-CONFIG_SA1100_CERF_32MB=y
-# CONFIG_SA1100_CERF_64MB is not set
 # CONFIG_SA1100_CERF_FLASH_8MB is not set
 CONFIG_SA1100_CERF_FLASH_16MB=y
 # CONFIG_SA1100_CERF_FLASH_32MB is not set
@@ -163,7 +159,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="console=ttySA0 root=1f03 rw"
+CONFIG_CMDLINE="console=ttySA0 root=/dev/mtdblock3 rw mem=32M"
 # CONFIG_PFS168_CMDLINE is not set
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
index cd3792b53c28af2b0ce9b2fec337fa0e8ebd9552..a4e23dd5be30654bab2e182585d4c1af4102b866 100644 (file)
@@ -56,7 +56,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_ARTHUR is not set
 # CONFIG_PARPORT is not set
-CONFIG_CMDLINE=""
+CONFIG_CMDLINE="mem=4M@0xc0000000 mem=4M@0xc8000000 root=/dev/hda1 initrd=0xd00b0000,320K"
 
 #
 # Plug and Play support
index 8dd3c9ec5dea4dc36ec4a77de595444e5f8112aa..54e099a9c069607ac3b9ae7cb9a7cd9cf2e6013f 100644 (file)
@@ -156,7 +156,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="console=ttyUA0,38400 root=/dev/mtdblock0 rw"
+CONFIG_CMDLINE="mem=32M console=ttyUA0,38400 root=/dev/mtdblock0 rw"
 CONFIG_ALIGNMENT_TRAP=y
 
 #
index 4a62d6692f403a85078f711968cf84702ff1ed61..10fb7db8237c21dc1ab02e64a99291283eb15ccc 100644 (file)
@@ -162,7 +162,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 CONFIG_PM=y
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE=""
+CONFIG_CMDLINE="mem=64M root=/dev/ram initrd=0xc0800000,3M"
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
 CONFIG_LEDS_CPU=y
@@ -263,7 +263,7 @@ CONFIG_MTD_SA1100=y
 CONFIG_BLK_DEV_LOOP=y
 # CONFIG_BLK_DEV_NBD is not set
 CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=4096
+CONFIG_BLK_DEV_RAM_SIZE=8192
 CONFIG_BLK_DEV_INITRD=y
 
 #
index dac3c52844f155754a9ed935a38b44b367d71f34..bfddb1d2ea578011cc701c15235d70287d4680df 100644 (file)
@@ -131,7 +131,7 @@ CONFIG_BINFMT_MISC=m
 CONFIG_PM=y
 CONFIG_APM=y
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="mem=32M"
+CONFIG_CMDLINE="mem=32M root=/dev/ram initrd=0xc0800000,3M"
 # CONFIG_PFS168_CMDLINE is not set
 # CONFIG_LEDS is not set
 CONFIG_ALIGNMENT_TRAP=y
@@ -202,7 +202,7 @@ CONFIG_MTD_BLOCK=y
 CONFIG_BLK_DEV_LOOP=m
 CONFIG_BLK_DEV_NBD=m
 CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=4096
+CONFIG_BLK_DEV_RAM_SIZE=8192
 CONFIG_BLK_DEV_INITRD=y
 
 #
index f0be2526d83076081f3662528b6145ab8171be5e..940a3cf28b9603f507c219f2966fd022e404ca32 100644 (file)
@@ -131,7 +131,7 @@ CONFIG_BINFMT_ELF=y
 CONFIG_PM=y
 CONFIG_APM=y
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="noinitrd console=ttySA0 init=/linuxrc root=1f04 mem=32m"
+CONFIG_CMDLINE="noinitrd console=ttySA0 init=/linuxrc root=/dev/mtdblock4 mem=32m"
 # CONFIG_PFS168_CMDLINE is not set
 # CONFIG_LEDS is not set
 CONFIG_ALIGNMENT_TRAP=y
index a51122e66554c2ee4ad2bffda4eb8ced8f52529e..f6ad41b49c9ffa0588cee4b5f68eaf484243171f 100644 (file)
@@ -146,7 +146,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="ip=off"
+CONFIG_CMDLINE="ip=off mem=16M@0xc0000000 mem=16M@0xc8000000 root=/dev/ram initrd=0xc0800000,4M"
 # CONFIG_PFS168_CMDLINE is not set
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
index 0d30d5204bb29179b2d9606b9de934cd9a0ff356..2996f9e0c1faab18ba61741af8e3699e40674d24 100644 (file)
@@ -139,7 +139,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="ip=off"
+CONFIG_CMDLINE="ip=off mem=16M@0xc0000000 mem=16M@0xc8000000 root=/dev/ram initrd=0xc0800000,4M"
 # CONFIG_PFS168_CMDLINE is not set
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
index 65c42c599481c2bfba21d09f326b8ba1b18f8d2f..ca639ccf0a419dc69c10192dd76db1b24a9a9888 100644 (file)
@@ -96,7 +96,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="keepinitrd"
+CONFIG_CMDLINE="keepinitrd mem=32480K root=/dev/ram initrd=0xc0800000,8M"
 # CONFIG_LEDS is not set
 CONFIG_ALIGNMENT_TRAP=y
 
@@ -167,7 +167,7 @@ CONFIG_MTD_BLOCK=y
 CONFIG_BLK_DEV_LOOP=y
 # CONFIG_BLK_DEV_NBD is not set
 CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=4096
+CONFIG_BLK_DEV_RAM_SIZE=8192
 CONFIG_BLK_DEV_INITRD=y
 # CONFIG_BLK_DEV_FLASH is not set
 
index c4b7c347de86020faf036077c06c7de52ccd6049..f5eff90e421458a7666eab781ce1d31440ded2d2 100644 (file)
@@ -161,7 +161,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="console=ttyS0,115200 ip=bootp"
+CONFIG_CMDLINE="console=ttyS0,115200 ip=bootp mem=32M root=/dev/nfs initrd=0xc0800000,4M"
 CONFIG_ALIGNMENT_TRAP=y
 
 #
index 99ee871438fd33a9db0bfdff4a6deffa332714ae..8564ca1f0e2108fbedaed769182cd6f79ac82295 100644 (file)
@@ -158,7 +158,7 @@ CONFIG_BINFMT_ELF=y
 CONFIG_PM=y
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="keepinitrd"
+CONFIG_CMDLINE="keepinitrd mem=32M"
 # CONFIG_LEDS is not set
 CONFIG_ALIGNMENT_TRAP=y
 
index 176d863021609962e459a302c105dec5a6ae83ee..d9641682397c75c17871ddcd1b1905f8f2a16d18 100644 (file)
@@ -2,7 +2,14 @@
 # Automatically generated make config: don't edit
 #
 CONFIG_ARM=y
+# CONFIG_EISA is not set
+# CONFIG_SBUS is not set
+# CONFIG_MCA is not set
 CONFIG_UID16=y
+CONFIG_RWSEM_GENERIC_SPINLOCK=y
+# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
+# CONFIG_GENERIC_BUST_SPINLOCK is not set
+# CONFIG_GENERIC_ISA_DMA is not set
 
 #
 # Code maturity level options
@@ -10,50 +17,169 @@ CONFIG_UID16=y
 CONFIG_EXPERIMENTAL=y
 
 #
-# System and Processor Type
+# General setup
 #
-# CONFIG_ARCH_ARC is not set
-# CONFIG_ARCH_A5K is not set
-# CONFIG_ARCH_RPC is not set
+# CONFIG_NET is not set
+CONFIG_SYSVIPC=y
+CONFIG_BSD_PROCESS_ACCT=y
+CONFIG_SYSCTL=y
+
+#
+# Loadable module support
+#
+CONFIG_MODULES=y
+# CONFIG_MODVERSIONS is not set
+CONFIG_KMOD=y
+
+#
+# System Type
+#
+# CONFIG_ARCH_ADIFCC is not set
+# CONFIG_ARCH_ANAKIN is not set
+# CONFIG_ARCH_ARCA5K is not set
+# CONFIG_ARCH_CLPS7500 is not set
+# CONFIG_ARCH_CLPS711X is not set
+# CONFIG_ARCH_CO285 is not set
 # CONFIG_ARCH_EBSA110 is not set
-# CONFIG_FOOTBRIDGE is not set
+# CONFIG_ARCH_CAMELOT is not set
+# CONFIG_ARCH_FOOTBRIDGE is not set
+# CONFIG_ARCH_INTEGRATOR is not set
+# CONFIG_ARCH_IOP310 is not set
 CONFIG_ARCH_L7200=y
+# CONFIG_ARCH_RPC is not set
+# CONFIG_ARCH_SA1100 is not set
+# CONFIG_ARCH_SHARK is not set
+
+#
+# Archimedes/A5000 Implementations
+#
+
+#
+# Archimedes/A5000 Implementations (select only ONE)
+#
+# CONFIG_ARCH_ARC is not set
+# CONFIG_ARCH_A5K is not set
+
+#
+# Footbridge Implementations
+#
+# CONFIG_ARCH_CATS is not set
+# CONFIG_ARCH_PERSONAL_SERVER is not set
+# CONFIG_ARCH_EBSA285_ADDIN is not set
+# CONFIG_ARCH_EBSA285_HOST is not set
+# CONFIG_ARCH_NETWINDER is not set
+
+#
+# SA11x0 Implementations
+#
+# CONFIG_SA1100_ASSABET is not set
+# CONFIG_ASSABET_NEPONSET is not set
+# CONFIG_SA1100_ADSBITSY is not set
+# CONFIG_SA1100_BRUTUS is not set
+# CONFIG_SA1100_CERF is not set
+# CONFIG_SA1100_H3100 is not set
+# CONFIG_SA1100_H3600 is not set
+# CONFIG_SA1100_H3800 is not set
+# CONFIG_SA1100_H3XXX is not set
+# CONFIG_SA1100_EXTENEX1 is not set
+# CONFIG_SA1100_FLEXANET is not set
+# CONFIG_SA1100_FREEBIRD is not set
+# CONFIG_SA1100_GRAPHICSCLIENT is not set
+# CONFIG_SA1100_GRAPHICSMASTER is not set
+# CONFIG_SA1100_BADGE4 is not set
+# CONFIG_SA1100_JORNADA720 is not set
+# CONFIG_SA1100_HUW_WEBPANEL is not set
+# CONFIG_SA1100_ITSY is not set
+# CONFIG_SA1100_LART is not set
+# CONFIG_SA1100_NANOENGINE is not set
+# CONFIG_SA1100_OMNIMETER is not set
+# CONFIG_SA1100_PANGOLIN is not set
+# CONFIG_SA1100_PLEB is not set
+# CONFIG_SA1100_PT_SYSTEM3 is not set
+# CONFIG_SA1100_SHANNON is not set
+# CONFIG_SA1100_SHERMAN is not set
+# CONFIG_SA1100_SIMPAD is not set
+# CONFIG_SA1100_PFS168 is not set
+# CONFIG_SA1100_VICTOR is not set
+# CONFIG_SA1100_XP860 is not set
+# CONFIG_SA1100_YOPY is not set
+# CONFIG_SA1100_STORK is not set
+# CONFIG_SA1100_USB is not set
+# CONFIG_SA1100_USB_NETLINK is not set
+# CONFIG_SA1100_USB_CHAR is not set
+# CONFIG_H3600_SLEEVE is not set
+
+#
+# CLPS711X/EP721X Implementations
+#
+# CONFIG_ARCH_AUTCPU12 is not set
+# CONFIG_ARCH_CDB89712 is not set
+# CONFIG_ARCH_CLEP7312 is not set
+# CONFIG_ARCH_EDB7211 is not set
+# CONFIG_ARCH_P720T is not set
+# CONFIG_ARCH_FORTUNET is not set
+# CONFIG_ARCH_EP7211 is not set
+# CONFIG_ARCH_EP7212 is not set
 # CONFIG_ARCH_ACORN is not set
+# CONFIG_FOOTBRIDGE is not set
+# CONFIG_FOOTBRIDGE_HOST is not set
+# CONFIG_FOOTBRIDGE_ADDIN is not set
 CONFIG_CPU_32=y
 # CONFIG_CPU_26 is not set
+
+#
+# Processor Type
+#
+# CONFIG_CPU_32v3 is not set
 CONFIG_CPU_32v4=y
-CONFIG_CPU_ARM720=y
-CONFIG_ZBOOT_ROM=y
-CONFIG_ZBOOT_ROM_TEXT=0x00010000
-CONFIG_ZBOOT_ROM_BSS=0xf03e0000
-# CONFIG_PCI is not set
-# CONFIG_ISA is not set
-# CONFIG_ISA_DMA is not set
-# CONFIG_SBUS is not set
-# CONFIG_PCMCIA is not set
-# CONFIG_ALIGNMENT_TRAP is not set
+# CONFIG_CPU_32v5 is not set
+# CONFIG_CPU_ARM610 is not set
+# CONFIG_CPU_ARM710 is not set
+CONFIG_CPU_ARM720T=y
+# CONFIG_CPU_ARM920T is not set
+# CONFIG_CPU_ARM922T is not set
+# CONFIG_CPU_ARM926T is not set
+# CONFIG_CPU_ARM1020 is not set
+# CONFIG_CPU_SA110 is not set
+# CONFIG_CPU_SA1100 is not set
+# CONFIG_CPU_XSCALE is not set
+# CONFIG_XSCALE_PMU is not set
 
 #
-# Loadable module support
+# Processor Features
 #
-CONFIG_MODULES=y
-# CONFIG_MODVERSIONS is not set
-CONFIG_KMOD=y
+# CONFIG_ARM_THUMB is not set
 
 #
 # General setup
 #
-# CONFIG_NET is not set
-CONFIG_SYSVIPC=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_SYSCTL=y
-CONFIG_NWFPE=y
+# CONFIG_DISCONTIGMEM is not set
+# CONFIG_PCI is not set
+# CONFIG_ISA is not set
+# CONFIG_ISA_DMA is not set
+CONFIG_FIQ=y
+CONFIG_ZBOOT_ROM=y
+CONFIG_ZBOOT_ROM_TEXT=00010000
+CONFIG_ZBOOT_ROM_BSS=f03e0000
+# CONFIG_HOTPLUG is not set
+# CONFIG_PCMCIA is not set
+
+#
+# At least one math emulation must be selected
+#
+# CONFIG_FPE_NWFPE is not set
+# CONFIG_FPE_FASTFPE is not set
 CONFIG_KCORE_ELF=y
 # CONFIG_KCORE_AOUT is not set
 CONFIG_BINFMT_AOUT=y
 CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
+# CONFIG_PM is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
+CONFIG_CMDLINE="console=tty0 console=ttyLU1,115200 root=/dev/ram initrd=0xf1000000,0x005dac7b mem=32M"
+CONFIG_ALIGNMENT_TRAP=y
 
 #
 # Parallel port support
@@ -61,18 +187,16 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PARPORT is not set
 
 #
-# I2O device support
+# Memory Technology Devices (MTD)
 #
-# CONFIG_I2O is not set
-# CONFIG_I2O_BLOCK is not set
-# CONFIG_I2O_SCSI is not set
-# CONFIG_I2O_PROC is not set
+# CONFIG_MTD is not set
 
 #
 # Plug and Play configuration
 #
 # CONFIG_PNP is not set
 # CONFIG_ISAPNP is not set
+# CONFIG_PNPBIOS is not set
 
 #
 # Block devices
@@ -81,28 +205,79 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BLK_DEV_XD is not set
 # CONFIG_PARIDE is not set
 # CONFIG_BLK_CPQ_DA is not set
+# CONFIG_BLK_CPQ_CISS_DA is not set
+# CONFIG_CISS_SCSI_TAPE is not set
 # CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_UMEM is not set
 # CONFIG_BLK_DEV_LOOP is not set
 # CONFIG_BLK_DEV_NBD is not set
-# CONFIG_BLK_DEV_LVM is not set
-# CONFIG_BLK_DEV_MD is not set
-# CONFIG_MD_LINEAR is not set
-# CONFIG_MD_STRIPED is not set
 CONFIG_BLK_DEV_RAM=y
+CONFIG_BLK_DEV_RAM_SIZE=4096
 CONFIG_BLK_DEV_INITRD=y
 
+#
+# Multi-device support (RAID and LVM)
+#
+# CONFIG_MD is not set
+# CONFIG_BLK_DEV_MD is not set
+# CONFIG_MD_LINEAR is not set
+# CONFIG_MD_RAID0 is not set
+# CONFIG_MD_RAID1 is not set
+# CONFIG_MD_RAID5 is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_BLK_DEV_LVM is not set
+
+#
+# ATA/IDE/MFM/RLL support
+#
+# CONFIG_IDE is not set
+# CONFIG_BLK_DEV_HD is not set
+
+#
+# SCSI support
+#
+# CONFIG_SCSI is not set
+
+#
+# I2O device support
+#
+# CONFIG_I2O is not set
+# CONFIG_I2O_BLOCK is not set
+# CONFIG_I2O_SCSI is not set
+# CONFIG_I2O_PROC is not set
+
+#
+# ISDN subsystem
+#
+
+#
+# Input device support
+#
+# CONFIG_INPUT is not set
+# CONFIG_INPUT_KEYBDEV is not set
+# CONFIG_INPUT_MOUSEDEV is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_EVDEV is not set
+# CONFIG_GAMEPORT is not set
+CONFIG_SOUND_GAMEPORT=y
+# CONFIG_GAMEPORT_NS558 is not set
+# CONFIG_GAMEPORT_L4 is not set
+# CONFIG_INPUT_EMU10K1 is not set
+# CONFIG_GAMEPORT_PCIGAME is not set
+# CONFIG_GAMEPORT_FM801 is not set
+# CONFIG_GAMEPORT_CS461x is not set
+# CONFIG_SERIO is not set
+# CONFIG_SERIO_SERPORT is not set
+
 #
 # Character devices
 #
 # CONFIG_VT is not set
-# CONFIG_SERIAL is not set
 # CONFIG_SERIAL_EXTENDED is not set
 CONFIG_SERIAL_NONSTANDARD=y
 # CONFIG_COMPUTONE is not set
 # CONFIG_ROCKETPORT is not set
 # CONFIG_CYCLADES is not set
-CONFIG_SERIAL_L7200=y
-CONFIG_SERIAL_L7200_CONSOLE=y
 # CONFIG_DIGIEPCA is not set
 # CONFIG_DIGI is not set
 # CONFIG_ESPSERIAL is not set
@@ -110,11 +285,48 @@ CONFIG_SERIAL_L7200_CONSOLE=y
 # CONFIG_MOXA_SMARTIO is not set
 # CONFIG_ISI is not set
 # CONFIG_SYNCLINK is not set
+# CONFIG_SYNCLINKMP is not set
 # CONFIG_N_HDLC is not set
 # CONFIG_RISCOM8 is not set
 # CONFIG_SPECIALIX is not set
 # CONFIG_SX is not set
+# CONFIG_RIO is not set
 # CONFIG_STALDRV is not set
+
+#
+# Serial drivers
+#
+# CONFIG_SERIAL_8250 is not set
+# CONFIG_SERIAL_8250_CONSOLE is not set
+# CONFIG_SERIAL_8250_EXTENDED is not set
+# CONFIG_SERIAL_8250_MANY_PORTS is not set
+# CONFIG_SERIAL_8250_SHARE_IRQ is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_MULTIPORT is not set
+# CONFIG_SERIAL_8250_RSA is not set
+
+#
+# Non-8250 serial port support
+#
+
+#
+# ARM Serial drivers
+#
+# CONFIG_ATOMWIDE_SERIAL is not set
+# CONFIG_DUALSP_SERIAL is not set
+# CONFIG_SERIAL_ANAKIN is not set
+# CONFIG_SERIAL_ANAKIN_CONSOLE is not set
+# CONFIG_SERIAL_AMBA is not set
+# CONFIG_SERIAL_AMBA_CONSOLE is not set
+# CONFIG_SERIAL_CLPS711X is not set
+# CONFIG_SERIAL_CLPS711X_CONSOLE is not set
+# CONFIG_SERIAL_21285 is not set
+# CONFIG_SERIAL_21285_OLD is not set
+# CONFIG_SERIAL_21285_CONSOLE is not set
+# CONFIG_SERIAL_UART00 is not set
+# CONFIG_SERIAL_UART00_CONSOLE is not set
+# CONFIG_SERIAL_SA1100 is not set
+# CONFIG_SERIAL_SA1100_CONSOLE is not set
 # CONFIG_UNIX98_PTYS is not set
 
 #
@@ -123,28 +335,32 @@ CONFIG_SERIAL_L7200_CONSOLE=y
 # CONFIG_I2C is not set
 
 #
-# Mice
+# L3 serial bus support
 #
-# CONFIG_BUSMOUSE is not set
-# CONFIG_MOUSE is not set
+# CONFIG_L3 is not set
+# CONFIG_L3_ALGOBIT is not set
+# CONFIG_L3_BIT_SA1100_GPIO is not set
 
 #
-# Joysticks
+# Other L3 adapters
+#
+# CONFIG_L3_SA1111 is not set
+# CONFIG_BIT_SA1100_GPIO is not set
+
+#
+# Mice
 #
-# CONFIG_JOYSTICK is not set
+# CONFIG_BUSMOUSE is not set
+# CONFIG_MOUSE is not set
 # CONFIG_QIC02_TAPE is not set
 
 #
 # Watchdog Cards
 #
 # CONFIG_WATCHDOG is not set
+# CONFIG_INTEL_RNG is not set
 # CONFIG_NVRAM is not set
 # CONFIG_RTC is not set
-
-#
-# Video For Linux
-#
-# CONFIG_VIDEO_DEV is not set
 # CONFIG_DTLK is not set
 # CONFIG_R3964 is not set
 # CONFIG_APPLICOM is not set
@@ -153,48 +369,58 @@ CONFIG_SERIAL_L7200_CONSOLE=y
 # Ftape, the floppy tape device driver
 #
 # CONFIG_FTAPE is not set
-# CONFIG_DRM is not set
-# CONFIG_DRM_TDFX is not set
 # CONFIG_AGP is not set
+# CONFIG_DRM is not set
 
 #
-# ATA/IDE/MFM/RLL support
-#
-# CONFIG_IDE is not set
-# CONFIG_BLK_DEV_IDE_MODES is not set
-# CONFIG_BLK_DEV_HD is not set
-
-#
-# SCSI support
+# Multimedia devices
 #
-# CONFIG_SCSI is not set
+# CONFIG_VIDEO_DEV is not set
 
 #
 # File systems
 #
 # CONFIG_QUOTA is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QFMT_V2 is not set
+# CONFIG_QIFACE_COMPAT is not set
 # CONFIG_AUTOFS_FS is not set
 # CONFIG_AUTOFS4_FS is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_REISERFS_CHECK is not set
+# CONFIG_REISERFS_PROC_INFO is not set
 # CONFIG_ADFS_FS is not set
 # CONFIG_ADFS_FS_RW is not set
 # CONFIG_AFFS_FS is not set
 # CONFIG_HFS_FS is not set
 # CONFIG_BFS_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_JBD is not set
+# CONFIG_JBD_DEBUG is not set
 # CONFIG_FAT_FS is not set
 # CONFIG_MSDOS_FS is not set
 # CONFIG_UMSDOS_FS is not set
 # CONFIG_VFAT_FS is not set
 # CONFIG_EFS_FS is not set
+# CONFIG_JFFS_FS is not set
+# CONFIG_JFFS2_FS is not set
 # CONFIG_CRAMFS is not set
-# CONFIG_RAMFS is not set
+# CONFIG_TMPFS is not set
+CONFIG_RAMFS=y
 # CONFIG_ISO9660_FS is not set
 # CONFIG_JOLIET is not set
+# CONFIG_ZISOFS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JFS_DEBUG is not set
+# CONFIG_JFS_STATISTICS is not set
 # CONFIG_MINIX_FS is not set
+# CONFIG_VXFS_FS is not set
 # CONFIG_NTFS_FS is not set
 # CONFIG_NTFS_DEBUG is not set
 # CONFIG_HPFS_FS is not set
 CONFIG_PROC_FS=y
 # CONFIG_DEVFS_FS is not set
+# CONFIG_DEVFS_MOUNT is not set
 # CONFIG_DEVFS_DEBUG is not set
 # CONFIG_DEVPTS_FS is not set
 # CONFIG_QNX4FS_FS is not set
@@ -202,20 +428,35 @@ CONFIG_PROC_FS=y
 # CONFIG_ROMFS_FS is not set
 CONFIG_EXT2_FS=y
 # CONFIG_SYSV_FS is not set
-# CONFIG_SYSV_FS_WRITE is not set
 # CONFIG_UDF_FS is not set
 # CONFIG_UDF_RW is not set
 # CONFIG_UFS_FS is not set
 # CONFIG_UFS_FS_WRITE is not set
 # CONFIG_NCPFS_NLS is not set
+# CONFIG_SMB_FS is not set
+# CONFIG_ZISOFS_FS is not set
 
 #
 # Partition Types
 #
 # CONFIG_PARTITION_ADVANCED is not set
-CONFIG_MSDOS_PARTITION=y
+# CONFIG_SMB_NLS is not set
 # CONFIG_NLS is not set
 
+#
+# Multimedia Capabilities Port drivers
+#
+# CONFIG_MCP is not set
+# CONFIG_MCP_SA1100 is not set
+# CONFIG_MCP_UCB1200 is not set
+# CONFIG_MCP_UCB1200_AUDIO is not set
+# CONFIG_MCP_UCB1200_TS is not set
+
+#
+# Console Switches
+#
+# CONFIG_SWITCHES is not set
+
 #
 # USB support
 #
@@ -224,9 +465,23 @@ CONFIG_MSDOS_PARTITION=y
 #
 # Kernel hacking
 #
-CONFIG_FRAME_POINTER=y
-CONFIG_DEBUG_ERRORS=y
+# CONFIG_NO_FRAME_POINTER is not set
 CONFIG_DEBUG_USER=y
 CONFIG_DEBUG_INFO=y
+# CONFIG_DEBUG_KERNEL is not set
+# CONFIG_DEBUG_SLAB is not set
 # CONFIG_MAGIC_SYSRQ is not set
-CONFIG_DEBUG_LL=y
+# CONFIG_DEBUG_SPINLOCK is not set
+# CONFIG_DEBUG_WAITQ is not set
+# CONFIG_DEBUG_BUGVERBOSE is not set
+# CONFIG_DEBUG_ERRORS is not set
+# CONFIG_DEBUG_LL is not set
+# CONFIG_DEBUG_DC21285_PORT is not set
+# CONFIG_DEBUG_CLPS711X_UART2 is not set
+
+#
+# Library routines
+#
+# CONFIG_CRC32 is not set
+# CONFIG_ZLIB_INFLATE is not set
+# CONFIG_ZLIB_DEFLATE is not set
index 9f0d085053a4ccb9652cff526287d542aab0b70a..47d51bcdbd74ba592b8d5749edf5097f4226f194 100644 (file)
@@ -820,6 +820,13 @@ CONFIG_MCP_UCB1200=y
 CONFIG_MCP_UCB1200_AUDIO=m
 CONFIG_MCP_UCB1200_TS=y
 
+#
+# Console Switches
+#
+CONFIG_SWITCHES=y
+CONFIG_SWITCHES_SA1100=y
+CONFIG_SWITCHES_UCB1X00=y
+
 #
 # USB support
 #
index 475b3890588caca76e49cb4cbbbcad944da5bcd5..8aac5b9c84924a4e02b7315d261548321e7748ad 100644 (file)
@@ -100,7 +100,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="keepinitrd"
+CONFIG_CMDLINE="keepinitrd mem=16M root=/dev/ram ramdisk=8192 initrd=0xd0000000,4M"
 # CONFIG_LEDS is not set
 # CONFIG_ALIGNMENT_TRAP is not set
 
index 185934d16e2fef5ab84175534f0edcccd4568906..7ca6c88676b52d8010b2068ea85c182a0c6ba714 100644 (file)
@@ -137,7 +137,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="keepinitrd"
+CONFIG_CMDLINE="keepinitrd mem=128M root=/dev/ram initrd=0xc0800000,3M"
 # CONFIG_PFS168_CMDLINE is not set
 # CONFIG_LEDS is not set
 CONFIG_ALIGNMENT_TRAP=y
@@ -249,7 +249,7 @@ CONFIG_MTD_SA1100=y
 CONFIG_BLK_DEV_LOOP=y
 # CONFIG_BLK_DEV_NBD is not set
 CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=4096
+CONFIG_BLK_DEV_RAM_SIZE=16384
 CONFIG_BLK_DEV_INITRD=y
 
 #
index 8a15c59788cfbbbf604bcbe6849775dee4734a16..3a70e11c1605a1b53d915e1bcbbde29fed90d090 100644 (file)
@@ -140,8 +140,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="root=/dev/nfs"
-# CONFIG_PFS168_CMDLINE is not set
+CONFIG_CMDLINE="root=/dev/nfs mem=16M"
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
 CONFIG_LEDS_CPU=y
index 100429ea6cee2e3d1ef58fd92c537f8408724f29..00b56256d0fb9934bfe9b8374df2260930ea651a 100644 (file)
@@ -140,8 +140,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="root=/dev/nfs"
-# CONFIG_PFS168_CMDLINE is not set
+CONFIG_CMDLINE="root=/dev/nfs mem=16M"
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
 CONFIG_LEDS_CPU=y
index add34926e12b899832e22290043d66c487e0b087..6e0c5081b5e445f942d67fe5360d537fa1ece90c 100644 (file)
@@ -140,8 +140,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="root=/dev/nfs"
-# CONFIG_PFS168_CMDLINE is not set
+CONFIG_CMDLINE="root=/dev/nfs mem=16M"
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
 CONFIG_LEDS_CPU=y
index 6824186e96f7f27d17af5bf7b28a88b2f6bb8db2..64a50912deb6d0d08c1fb13960301737ea40d2ba 100644 (file)
@@ -140,8 +140,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_PM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="root=/dev/nfs"
-# CONFIG_PFS168_CMDLINE is not set
+CONFIG_CMDLINE="root=/dev/nfs mem=16M"
 CONFIG_LEDS=y
 CONFIG_LEDS_TIMER=y
 CONFIG_LEDS_CPU=y
index b084595bd006df078f2f8c091e4b5e059ca35150..5eccbbbeae35a537ca2c67c5331ffe50f46bc2d8 100644 (file)
@@ -126,7 +126,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_PM is not set
 # CONFIG_APM is not set
 # CONFIG_ARTHUR is not set
-CONFIG_CMDLINE="console=ttySA0,9600"
+CONFIG_CMDLINE="console=ttySA0,9600 mem=16M@0xc0000000 mem=16M@0xc8000000 root=/dev/ram initrd=0xc0400000,4M"
 # CONFIG_PFS168_CMDLINE is not set
 # CONFIG_LEDS is not set
 CONFIG_ALIGNMENT_TRAP=y
@@ -213,7 +213,7 @@ CONFIG_ALIGNMENT_TRAP=y
 # CONFIG_BLK_DEV_LOOP is not set
 # CONFIG_BLK_DEV_NBD is not set
 CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=4096
+CONFIG_BLK_DEV_RAM_SIZE=8192
 CONFIG_BLK_DEV_INITRD=y
 
 #
index e7bcb1cfdec27d9c1c5ed18ed6c88147813d5037..2c383cb5112e1df9e5eb134f5c22c1855f876cbc 100644 (file)
@@ -60,7 +60,7 @@ CONFIG_BINFMT_ELF=y
 # CONFIG_BINFMT_MISC is not set
 # CONFIG_ARTHUR is not set
 # CONFIG_PARPORT is not set
-CONFIG_CMDLINE=""
+CONFIG_CMDLINE="mem=64M@0xc0000000 mem=64M@0xc8000000 root=/dev/mtdblock2"
 
 #
 # Plug and Play support
index 810c732c88a53336f78ea20a34d30a13155f5316..007eb8c4ce6e4fd2cce72788ce8129a5e9a81d13 100644 (file)
@@ -341,7 +341,7 @@ parse_cmdline(struct meminfo *mi, char **cmdline_p, char *from)
        *cmdline_p = command_line;
 }
 
-void __init
+static void __init
 setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz)
 {
 #ifdef CONFIG_BLK_DEV_RAM
@@ -359,7 +359,7 @@ setup_ramdisk(int doload, int prompt, int image_start, unsigned int rd_sz)
 /*
  * initial ram disk
  */
-void __init setup_initrd(unsigned int start, unsigned int size)
+static void __init setup_initrd(unsigned int start, unsigned int size)
 {
 #ifdef CONFIG_BLK_DEV_INITRD
        if (start == 0)
index 3a63bf87c23c9c0689467c96e5731fd3ca2e08f2..9c715a9635fd726032183e12c04e52d7e8e18ba0 100644 (file)
 extern void adifcc_map_io(void);
 extern void adifcc_init_irq(void);
 
-static void __init
-fixup_adifcc(struct machine_desc *desc, struct tag *tags,
-             char **cmdline, struct meminfo *mi)
-{
-#ifdef CONFIG_ARCH_ADI_EVB
-       mi->bank[0].start = PHYS_OFFSET;
-       mi->bank[0].size  = (32*1024*1024);
-       mi->bank[0].node  = 0;
-       mi->nr_banks      = 1;
-
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( 0xc0800000, 3*1024*1024 );
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-#endif
-}
-
 #ifdef CONFIG_ARCH_ADI_EVB
 MACHINE_START(ADI_EVB, "ADI 80200FCC Evaluation Board")
        MAINTAINER("MontaVista Software Inc.")
        BOOT_MEM(0xc0000000, 0x00400000, 0xff400000)
-       FIXUP(fixup_adifcc)
        MAPIO(adifcc_map_io)
        INITIRQ(adifcc_init_irq)
 MACHINE_END
index ca10ef662031a572a54d9bb2a2be7a7c448d899a..4adb9cf2e7770a6546716297f3781b977906ae53 100644 (file)
 #include <asm/mach-types.h>
 #include <asm/mach/arch.h>
 
-#ifndef CONFIG_BLK_DEV_RAM_SIZE
-#define CONFIG_BLK_DEV_RAM_SIZE        4096
-#endif
-
 extern void anakin_map_io(void);
 extern void genarch_init_irq(void);
 
-static void __init
-fixup_anakin(struct machine_desc *desc, struct tag *tag,
-             char **cmdline, struct meminfo *mi)
-{
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR, 0);
-       setup_ramdisk(1, 0, 0, CONFIG_BLK_DEV_RAM_SIZE);
-       setup_initrd(0xc0800000, 4 * 1024 * 1024);
-}
-
-
 MACHINE_START(ANAKIN, "Anakin")
        MAINTAINER("Wookey/Tak-Shing Chan")
        BOOT_MEM(0x20000000, 0x40000000, 0xe0000000)
        VIDEO(0x80000000, 0x8002db40)
-       FIXUP(fixup_anakin)
        MAPIO(anakin_map_io)
        INITIRQ(genarch_init_irq)
 MACHINE_END
index e93563ba6b8d843b106eafe028eb00123011c15a..1c8cbfec6a73139f581938b2fad7276167e67de7 100644 (file)
@@ -44,12 +44,6 @@ static struct map_desc cdb89712_io_desc[] __initdata = {
        LAST_DESC
 };
 
-static void __init
-fixup_cdb89712(struct machine_desc *desc, struct tag *tags,
-           char **cmdline, struct meminfo *mi)
-{
-}
-
 static void __init cdb89712_map_io(void)
 {
        clps711x_map_io();
@@ -60,7 +54,6 @@ MACHINE_START(CDB89712, "Cirrus-CDB89712")
        MAINTAINER("Ray Lehtiniemi")
        BOOT_MEM(0xc0000000, 0x80000000, 0xff000000)
        BOOT_PARAMS(0xc0000100)
-       FIXUP(fixup_cdb89712)
        MAPIO(cdb89712_map_io)
        INITIRQ(clps711x_init_irq)
 MACHINE_END
index 78751ff0d5a114d89e6c1367acbef84c41f6d090..f30d0176784ea803dcee453decb34b408d68a605 100644 (file)
 extern void epxa10db_map_io(void);
 extern void epxa10db_init_irq(void);
 
-
-static void __init
-epxa10db_fixup(struct machine_desc *desc, struct tag *tags,
-                char **cmdline, struct meminfo *mi)
-{
-
-        mi->nr_banks      = 1;
-        mi->bank[0].start = 0;
-        mi->bank[0].size  = (32*1024*1024);
-        mi->bank[0].node  = 0;
-
-/*
-        ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-        setup_ramdisk( 1, 0, 0, 8192 );
-        setup_initrd(0xc0200000, 6*1024*1024);
-*/
-}
-
 MACHINE_START(CAMELOT, "Altera Epxa10db")
        MAINTAINER("Altera Corporation")
        BOOT_MEM(0x00000000, 0x7fffc000, 0xffffc000)
-       FIXUP(epxa10db_fixup)
        MAPIO(epxa10db_map_io)
        INITIRQ(epxa10db_init_irq)
-
 MACHINE_END
index ee5e2f3d3d08fffb8f0036f367ac3152755653bd..38dabe2812c5dfaf6c4e4d58a6725b13501e8b12 100644 (file)
@@ -50,9 +50,7 @@ static struct kmi_info integrator_mouse __initdata = {
 };
 #endif
 
-static void __init
-integrator_fixup(struct machine_desc *desc, struct tag *tags,
-                char **cmdline, struct meminfo *mi)
+static int __init integrator_init(void)
 {
 #ifdef CONFIG_KMI_KEYB
        register_kmi(&integrator_keyboard);
@@ -60,11 +58,12 @@ integrator_fixup(struct machine_desc *desc, struct tag *tags,
 #endif
 }
 
+__initcall(integrator_init);
+
 MACHINE_START(INTEGRATOR, "ARM-Integrator")
        MAINTAINER("ARM Ltd/Deep Blue Solutions Ltd")
        BOOT_MEM(0x00000000, 0x16000000, 0xf1600000)
        BOOT_PARAMS(0x00000100)
-       FIXUP(integrator_fixup)
        MAPIO(integrator_map_io)
        INITIRQ(integrator_init_irq)
 MACHINE_END
index 07770654a23421922f21e94e508c9e0119f42e91..9ff7a4c2963c8f4e0caa9ac1d2d35c1a788490d0 100644 (file)
@@ -31,21 +31,8 @@ fixup_iq80310(struct machine_desc *desc, struct tag *tags,
 {
        system_rev = (*(volatile unsigned int*)0xfe830000) & 0x0f;
 
-       if(system_rev)
+       if (system_rev)
                system_rev = 0xF;
-
-       mi->bank[0].start = PHYS_OFFSET;
-       mi->bank[0].size  = (32*1024*1024);
-       mi->bank[0].node  = 0;
-       mi->nr_banks      = 1;
-
-#ifdef CONFIG_ROOT_NFS
-       ROOT_DEV = to_kdev_t(0x00FF);   /* /dev/nfs pseudo device */
-#elif defined(CONFIG_BLK_DEV_INITRD)
-       setup_ramdisk( 1, 0, 0, CONFIG_BLK_DEV_RAM_SIZE );
-       setup_initrd( 0xc0800000, 4*1024*1024 );
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR, 0); /* /dev/ram */
-#endif
 }
 
 MACHINE_START(IQ80310, "Cyclone IQ80310")
index 39c543705fd04bee844c5651bd9414fcc4ee1674..5377f38f7e329b25a11266db38f30aac2dd75e4b 100644 (file)
@@ -82,33 +82,9 @@ static void __init l7200_map_io(void)
        iotable_init(l7200_io_desc);
 }
 
-static void __init
-fixup_l7200(struct machine_desc *desc, struct tag *tags,
-             char **cmdline, struct meminfo *mi)
-{
-        mi->nr_banks      = 1;
-        mi->bank[0].start = PHYS_OFFSET;
-        mi->bank[0].size  = (32*1024*1024);
-        mi->bank[0].node  = 0;
-
-        ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-        setup_ramdisk( 1, 0, 0, CONFIG_BLK_DEV_RAM_SIZE);
-        setup_initrd( __phys_to_virt(0xf1000000), 0x005dac7b);
-
-        /* Serial Console COM2 and LCD */
-       strcpy( *cmdline, "console=tty0 console=ttyLU1,115200");
-
-        /* Serial Console COM1 and LCD */
-       //strcpy( *cmdline, "console=tty0 console=ttyLU0,115200");
-
-        /* Console on LCD */
-       //strcpy( *cmdline, "console=tty0");
-}
-
 MACHINE_START(L7200, "LinkUp Systems L7200")
        MAINTAINER("Steve Hill / Scott McConnell")
        BOOT_MEM(0xf0000000, 0x80040000, 0xd0000000)
-       FIXUP(fixup_l7200)
        MAPIO(l7200_map_io)
        INITIRQ(l7200_init_irq)
 MACHINE_END
index 81e8ff57c4937f8b47f891e89d6fe0556ba8906c..b17ad93fd160e0b830fad042d00005b9b0f9df69 100644 (file)
@@ -68,23 +68,6 @@ static void __init idp_init_irq(void)
        pxa_init_irq();
 }
 
-static void __init
-fixup_idp(struct machine_desc *desc, struct tag *tags,
-               char **cmdline, struct meminfo *mi)
-{
-#ifdef PXA_IDP_REV02
-       SET_BANK (0, 0xa0000000, 64*1024*1024);
-#else
-       SET_BANK (0, 0xa0000000, 32*1024*1024);
-#endif
-       mi->nr_banks      = 1;
-#if 0
-       setup_ramdisk (1, 0, 0, 8192);
-       setup_initrd (__phys_to_virt(0xa1000000), 4*1024*1024);
-       ROOT_DEV = MKDEV(RAMDISK_MAJOR,0);
-#endif
-}
-
 static struct map_desc idp_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
 
@@ -132,7 +115,6 @@ static void __init idp_map_io(void)
 MACHINE_START(PXA_IDP, "Accelent Xscale IDP")
        MAINTAINER("Accelent Systems Inc.")
        BOOT_MEM(0xa0000000, 0x40000000, 0xfc000000)
-       FIXUP(fixup_idp)
        MAPIO(idp_map_io)
        INITIRQ(idp_init_irq)
 MACHINE_END
index d7909c9992b236abe2e6b2fa59868724e816d991..0c30c268cf6fe846e900dcf496eb561f081226e1 100644 (file)
@@ -119,19 +119,6 @@ static int __init lubbock_init(void)
 
 __initcall(lubbock_init);
 
-static void __init
-fixup_lubbock(struct machine_desc *desc, struct tag *tags,
-               char **cmdline, struct meminfo *mi)
-{
-       SET_BANK (0, 0xa0000000, 64*1024*1024);
-       mi->nr_banks      = 1;
-#if 0
-       setup_ramdisk (1, 0, 0, 8192);
-       setup_initrd (__phys_to_virt(0xa1000000), 4*1024*1024);
-       ROOT_DEV = MKDEV(RAMDISK_MAJOR,0);
-#endif
-}
-
 static struct map_desc lubbock_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf0000000, 0x08000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* CPLD */
@@ -160,7 +147,6 @@ static void __init lubbock_map_io(void)
 MACHINE_START(LUBBOCK, "Intel DBPXA250 Development Platform")
        MAINTAINER("MontaVista Software Inc.")
        BOOT_MEM(0xa0000000, 0x40000000, 0xfc000000)
-       FIXUP(fixup_lubbock)
        MAPIO(lubbock_map_io)
        INITIRQ(lubbock_init_irq)
 MACHINE_END
index 86a4716df444a0b47b974b0d01281e588578f4f7..2b5e5062ab2aa1d2a1a0f0e1fb21efe2315c1b90 100644 (file)
@@ -60,16 +60,6 @@ __tagtable(ATAG_ACORN, parse_tag_acorn);
 
 #endif
 
-static void __init
-fixup_riscpc(struct machine_desc *desc, struct tag *tags,
-           char **cmdline, struct meminfo *mi)
-{
-       /*
-        * RiscPC can't handle half-word loads and stores
-        */
-       elf_hwcap &= ~HWCAP_HALF;
-}
-
 static struct map_desc rpc_io_desc[] __initdata = {
  { SCREEN_BASE,        SCREEN_START,   2*1048576, DOMAIN_IO, 0, 1, 0, 0 }, /* VRAM             */
  { IO_BASE,    IO_START,       IO_SIZE  , DOMAIN_IO, 0, 1, 0, 0 }, /* IO space         */
@@ -80,6 +70,11 @@ static struct map_desc rpc_io_desc[] __initdata = {
 void __init rpc_map_io(void)
 {
        iotable_init(rpc_io_desc);
+
+       /*
+        * RiscPC can't handle half-word loads and stores
+        */
+       elf_hwcap &= ~HWCAP_HALF;
 }
 
 MACHINE_START(RISCPC, "Acorn-RiscPC")
@@ -88,7 +83,6 @@ MACHINE_START(RISCPC, "Acorn-RiscPC")
        BOOT_PARAMS(0x10000100)
        DISABLE_PARPORT(0)
        DISABLE_PARPORT(1)
-       FIXUP(fixup_riscpc)
        MAPIO(rpc_map_io)
        INITIRQ(rpc_init_irq)
 MACHINE_END
index 5be77f101af43d7a7e9c449769ccc6d34d433da7..baab204a6e8e551cf019e4ce7e49f1e9437fdbca 100644 (file)
@@ -76,23 +76,6 @@ static void __init adsbitsy_init_irq(void)
        sa1100_init_irq();
 }
 
-
-/*
- * Initialization fixup
- */
-
-static void __init
-fixup_adsbitsy(struct machine_desc *desc, struct tag *tags,
-                    char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 32*1024*1024 );
-       mi->nr_banks = 1;
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( __phys_to_virt(0xc0800000), 4*1024*1024 );
-}
-
 static struct map_desc adsbitsy_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf4000000, 0x18000000, 0x00800000, DOMAIN_IO, 0, 1, 0, 0 }, /* SA1111 */
@@ -135,7 +118,6 @@ static void __init adsbitsy_map_io(void)
 
 MACHINE_START(ADSBITSY, "ADS Bitsy")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_adsbitsy)
        MAPIO(adsbitsy_map_io)
        INITIRQ(adsbitsy_init_irq)
 MACHINE_END
index 5baf092d8a1e916b87c7c4385652683f81997ccc..fd8897f1da651ac736cd27e52237d69adab9dc52 100644 (file)
@@ -162,60 +162,12 @@ static void __init
 fixup_assabet(struct machine_desc *desc, struct tag *tags,
              char **cmdline, struct meminfo *mi)
 {
-       struct tag *t = tags;
-
        /* This must be done before any call to machine_has_neponset() */
        map_sa1100_gpio_regs();
        get_assabet_scr();
 
        if (machine_has_neponset())
                printk("Neponset expansion board detected\n");
-
-       if (t->hdr.tag != ATAG_CORE) {
-               t->hdr.tag = ATAG_CORE;
-               t->hdr.size = tag_size(tag_core);
-               t->u.core.flags = 0;
-               t->u.core.pagesize = PAGE_SIZE;
-               t->u.core.rootdev = RAMDISK_MAJOR << 8 | 0;
-               t = tag_next(t);
-
-               t->hdr.tag = ATAG_MEM;
-               t->hdr.size = tag_size(tag_mem32);
-               t->u.mem.start = 0xc0000000;
-               t->u.mem.size  = 32 * 1024 * 1024;
-               t = tag_next(t);
-
-
-               /*
-                * Note that Neponset RAM is slower...
-                * and still untested.
-                * This would be a candidate for
-                * _real_ NUMA support.
-                */
-               if (machine_has_neponset() && 0) {
-                       t->hdr.tag = ATAG_MEM;
-                       t->hdr.size = tag_size(tag_mem32);
-                       t->u.mem.start = 0xd0000000;
-                       t->u.mem.size  = 32 * 1024 * 1024;
-                       t = tag_next(t);
-               }
-
-               t->hdr.tag = ATAG_RAMDISK;
-               t->hdr.size = tag_size(tag_ramdisk);
-               t->u.ramdisk.flags = 1;
-               t->u.ramdisk.size = 8192;
-               t->u.ramdisk.start = 0;
-               t = tag_next(t);
-
-               t->hdr.tag = ATAG_INITRD;
-               t->hdr.size = tag_size(tag_initrd);
-               t->u.initrd.start = 0xc0800000;
-               t->u.initrd.size = 3 * 1024 * 1024;
-               t = tag_next(t);
-
-               t->hdr.tag = ATAG_NONE;
-               t->hdr.size = 0;
-       }
 }
 
 
index 5ace96e22cb62327acd19eff492fe88e3c6a58c1..fdfe024b10fa76bdcdbef9c49c3da510c8a956a3 100644 (file)
 
 #include "generic.h"
 
-
-static void __init
-fixup_brutus(struct machine_desc *desc, struct tag *tags,
-            char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 4*1024*1024 );
-       SET_BANK( 1, 0xc8000000, 4*1024*1024 );
-       SET_BANK( 2, 0xd0000000, 4*1024*1024 );
-       SET_BANK( 3, 0xd8000000, 4*1024*1024 );
-       mi->nr_banks = 4;
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( __phys_to_virt(0xd8000000), 3*1024*1024 );
-}
-
 static void __init brutus_map_io(void)
 {
        sa1100_map_io();
@@ -51,7 +35,6 @@ static void __init brutus_map_io(void)
 
 MACHINE_START(BRUTUS, "Intel Brutus (SA1100 eval board)")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_brutus)
        MAPIO(brutus_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 52d5c5e0b83dd849979fc7fce2b1d3d6cf4d3b43..ef96759ed39618019df7656036c917e6f06cbf9a 100644 (file)
@@ -35,33 +35,6 @@ static void __init cerf_init_irq(void)
        set_irq_type(IRQ_GPIO_UCB1200_IRQ, IRQT_RISING);
 }
 
-static void __init
-fixup_cerf(struct machine_desc *desc, struct tag *tags,
-          char **cmdline, struct meminfo *mi)
-{
-#if defined(CONFIG_SA1100_CERF_64MB)
-       SET_BANK( 0, 0xc0000000, 64*1024*1024 );
-       mi->nr_banks = 1;
-#elif defined(CONFIG_SA1100_CERF_32MB)
-       SET_BANK( 0, 0xc0000000, 32*1024*1024 );
-       mi->nr_banks = 1;
-#elif defined(CONFIG_SA1100_CERF_16MB)
-       SET_BANK( 0, 0xc0000000, 8*1024*1024 );
-       SET_BANK( 1, 0xc8000000, 8*1024*1024 );
-       mi->nr_banks = 2;
-#elif defined(CONFIG_SA1100_CERF_8MB)
-       SET_BANK( 0, 0xc0000000, 8*1024*1024 );
-       mi->nr_banks = 1;
-#else
-#error "Undefined memory size for Cerfboard."
-#endif
-
-//     ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-//     setup_ramdisk(1,  0, 0, 8192);
-//     // Save 2Meg for RAMDisk
-//     setup_initrd(0xc0500000, 3*1024*1024);
-}
-
 static struct map_desc cerf_io_desc[] __initdata = {
   /* virtual    physical    length      domain     r  w  c  b */
   { 0xf0000000, 0x08000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* Crystal Ethernet Chip */
@@ -96,7 +69,6 @@ static void __init cerf_map_io(void)
 MACHINE_START(CERF, "Intrinsyc's Cerf Family of Products")
        MAINTAINER("support@intrinsyc.com")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_cerf)
        MAPIO(cerf_map_io)
        INITIRQ(cerf_init_irq)
 MACHINE_END
index b687679ca5be1b26cdd14649b2fa813a44e47c88..f12ece4ebfca95861c9fe674c1f08ee6f6f73003 100644 (file)
 
 #include "generic.h"
 
-
-static void __init
-fixup_empeg(struct machine_desc *desc, struct tag *tags,
-           char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 4*1024*1024 );
-       SET_BANK( 1, 0xc8000000, 4*1024*1024 );
-       mi->nr_banks = 2;
-
-       ROOT_DEV = mk_kdev( 3, 1 );  /* /dev/hda1 */
-       setup_ramdisk( 1, 0, 0, 4096 );
-       setup_initrd( 0xd0000000+((1024-320)*1024), (320*1024) );
-}
-
 static struct map_desc empeg_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { EMPEG_FLASHBASE, 0x00000000, 0x00200000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash */
@@ -48,7 +34,6 @@ static void __init empeg_map_io(void)
 
 MACHINE_START(EMPEG, "empeg MP3 Car Audio Player")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_empeg)
        MAPIO(empeg_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 0358897571058659dbfc5dfafc0c3cdc7db57a01..bab87c19cb2fc3f062d39bdcf66cca6c19d02154 100644 (file)
@@ -151,21 +151,6 @@ static int __init flexanet_init(void)
 __initcall(flexanet_init);
 
 
-static void __init
-fixup_flexanet(struct machine_desc *desc, struct tag *tags,
-             char **cmdline, struct meminfo *mi)
-{
-       /* fixed RAM size, by now (64MB) */
-       SET_BANK( 0, 0xc0000000, 64*1024*1024 );
-       mi->nr_banks = 1;
-
-       /* setup ramdisk */
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( 0xc0800000, 3*1024*1024 );
-}
-
-
 static struct map_desc flexanet_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf0000000, 0x10000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* Board Control Register */
@@ -206,7 +191,6 @@ static void __init flexanet_map_io(void)
 MACHINE_START(FLEXANET, "FlexaNet")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
        BOOT_PARAMS(0xc0000100)
-       FIXUP(fixup_flexanet)
        MAPIO(flexanet_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 672ab9c8cc8fa15a0d06290edd1452cdd7eca340..fcfb3d4a7f9aff6ed5cb58ad4ea309fa47b106ad 100644 (file)
@@ -51,19 +51,6 @@ static int __init freebird_init(void)
 
 __initcall(freebird_init);
 
-static void __init
-fixup_freebird(struct machine_desc *desc, struct tag *tags,
-              char **cmdline, struct meminfo *mi)
-{
-#ifdef CONFIG_SA1100_FREEBIRD_OLD
-       SET_BANK( 0, 0xc0000000, 32*1024*1024 );
-       mi->nr_banks = 1;
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0 ,0 , 8192 );
-       setup_initrd( 0xc0800000, 3*1024*1024 );
-#endif
-}
-
 static struct map_desc freebird_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf0000000, 0x12000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* Board Control Register */
@@ -90,7 +77,6 @@ MACHINE_START(FREEBIRD, "Freebird-HPC-1.1")
 #ifdef CONFIG_SA1100_FREEBIRD_NEW
        BOOT_PARAMS(0xc0000100)
 #endif
-       FIXUP(fixup_freebird)
        MAPIO(freebird_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index a52e514ac023e592eb4f530c711d9455ba1d706c..4792f9b80097780d0057b55b1e6ce6bc7fb16b8a 100644 (file)
@@ -120,23 +120,6 @@ static void __init graphicsclient_init_irq(void)
 }
 
 
-/*
- * Initialization fixup
- */
-
-static void __init
-fixup_graphicsclient(struct machine_desc *desc, struct tag *tags,
-                    char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 16*1024*1024 );
-       SET_BANK( 1, 0xc8000000, 16*1024*1024 );
-       mi->nr_banks = 2;
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( __phys_to_virt(0xc0800000), 4*1024*1024 );
-}
-
 static struct map_desc graphicsclient_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf0000000, 0x10000000, 0x00400000, DOMAIN_IO, 0, 1, 0, 0 }, /* CPLD */
@@ -216,7 +199,6 @@ static void __init graphicsclient_map_io(void)
 
 MACHINE_START(GRAPHICSCLIENT, "ADS GraphicsClient")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_graphicsclient)
        MAPIO(graphicsclient_map_io)
        INITIRQ(graphicsclient_init_irq)
 MACHINE_END
index 46b30c83f732a3646aa8a53d79dd8954677a5c6f..971feeea4c956694b0909c95334937db3f2a1908 100644 (file)
@@ -152,24 +152,6 @@ static void __init graphicsmaster_init_irq(void)
 }
 
 
-/*
- * Initialization fixup
- */
-
-static void __init
-fixup_graphicsmaster(struct machine_desc *desc, struct tag *tags,
-                    char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 16*1024*1024 );
-       mi->nr_banks = 1;
-       SET_BANK( 1, 0xc8000000, 16*1024*1024 );
-       mi->nr_banks = 2;
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( __phys_to_virt(0xc0800000), 4*1024*1024 );
-}
-
 static struct map_desc graphicsmaster_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf0000000, 0x10000000, 0x00400000, DOMAIN_IO, 0, 1, 0, 0 }, /* CPLD */
@@ -276,7 +258,6 @@ static void __init graphicsmaster_map_io(void)
 
 MACHINE_START(GRAPHICSMASTER, "ADS GraphicsMaster")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_graphicsmaster)
        MAPIO(graphicsmaster_map_io)
        INITIRQ(graphicsmaster_init_irq)
 MACHINE_END
index accbc0cb1cbf6a31f8f4fafaf3bb5c6d2d4a9338..e1f9a390f54dde8c12a91c4887c27ec35d286d62 100644 (file)
@@ -54,22 +54,6 @@ static int __init init_huw_cs3(void)
 __initcall(init_huw_cs3);
 
 
-static void __init
-fixup_huw_webpanel(struct machine_desc *desc, struct tag *tags,
-                  char **cmdline, struct meminfo *mi)
-{
-       /**
-         memory information (JOR):
-         32 MByte - 256KByte bootloader (init at boot time) - 32 kByte save area
-        **/
-       SET_BANK( 0, 0xc0000000, ((32*1024 - (256 + 32)) * 1024));
-       mi->nr_banks = 1;
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( __phys_to_virt(0xc0800000), 8*1024*1024 );
-}
-
-
 /**
    memory information (JOR):
    32 MByte - 256KByte bootloader (init at boot time) - 32 kByte save area
@@ -95,7 +79,6 @@ static void __init huw_webpanel_map_io(void)
 MACHINE_START(HUW_WEBPANEL, "HuW-Webpanel")
        MAINTAINER("Roman Jordan")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_huw_webpanel)
        MAPIO(huw_webpanel_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index fa94c271a4b105a14d9fa7e8d07f944906e623c9..7ebb9ee7a5bd4adfe147f6ba2ed41378ccd77684 100644 (file)
 
 #include "generic.h"
 
-
-static void __init
-fixup_itsy(struct machine_desc *desc, struct tag *tags,
-          char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 16*1024*1024 );
-       SET_BANK( 1, 0xc8000000, 16*1024*1024 );
-       SET_BANK( 2, 0xd0000000, 16*1024*1024 );
-       SET_BANK( 3, 0xd8000000, 16*1024*1024 );
-       mi->nr_banks = 4;
-}
-
 /* BRADFIXME The egpio addresses aren't verifiably correct. (i.e. they're most
    likely wrong. */
 static struct map_desc itsy_io_desc[] __initdata = {
@@ -49,7 +37,6 @@ static void __init itsy_map_io(void)
 MACHINE_START(ITSY, "Compaq Itsy")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
        BOOT_PARAMS(0xc0000100)
-       FIXUP(fixup_itsy)
        MAPIO(itsy_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 0e1929f9a39b6cf512790b06eee49e2dbeabbc2f..9f4c685b77e91dae29b0b625405210bc24001337 100644 (file)
@@ -55,15 +55,6 @@ static int __init jornada720_init(void)
 
 __initcall(jornada720_init);
 
-
-static void __init
-fixup_jornada720(struct machine_desc *desc, struct tag *tags,
-                char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 32*1024*1024 );
-       mi->nr_banks = 1;
-}
-
 static struct map_desc jornada720_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf0000000, 0x48000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* Epson registers */
@@ -84,7 +75,6 @@ static void __init jornada720_map_io(void)
 MACHINE_START(JORNADA720, "HP Jornada 720")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
        BOOT_PARAMS(0xc0000100)
-       FIXUP(fixup_jornada720)
        MAPIO(jornada720_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 999b5f1618e49cd27fd03b4f443d231390c8d4e2..3d6ee63382b004664a3af4fad4e52be15b8b8804 100644 (file)
 
 #include "generic.h"
 
-
 static void __init
 fixup_nanoengine(struct machine_desc *desc, struct tag *tags,
                 char **cmdline, struct meminfo *mi)
 {
-       SET_BANK( 0, 0xc0000000, 32*1024*1024 );
-       mi->nr_banks = 1;
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( __phys_to_virt(0xc0800000), 4*1024*1024 );
-
        /* Get command line parameters passed from the loader (if any) */
-       if( *((char*)0xc0000100) )
+       if (*((char*)0xc0000100))
                *cmdline = ((char *)0xc0000100);
 }
 
index eacb061a1899208fbca3169a33acc0d510231fa2..415a7fd4d7435cf694a7a5f4f2cf0987d0d4c03b 100644 (file)
@@ -40,18 +40,6 @@ static int __init omnimeter_init(void)
 
 __initcall(omnimeter_init);
 
-static void __init
-fixup_omnimeter(struct machine_desc *desc, struct tag *tags,
-               char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 16*1024*1024 );
-       mi->nr_banks = 1;
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( __phys_to_virt(0xd0000000), 0x00400000 );
-}
-
 static struct map_desc omnimeter_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xd2000000, 0x10000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* TS */
@@ -69,7 +57,6 @@ static void __init omnimeter_map_io(void)
 
 MACHINE_START(OMNIMETER, "OmniMeter")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_omnimeter)
        MAPIO(omnimeter_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index f159db9fea91e97b0e28da2b99968c333dc1bb8c..5be564fa4bc5fa16696d197fbf554ac774deac61 100644 (file)
 
 #include "generic.h"
 
-
-static void __init
-fixup_pangolin(struct machine_desc *desc, struct tag *tags,
-              char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 128*1024*1024 );
-       mi->nr_banks = 1;
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 16384 );
-       setup_initrd( 0xc0800000, 3*1024*1024 );
-}
-
 static struct map_desc pangolin_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf2800000, 0x4b800000, 0x00800000, DOMAIN_IO, 0, 1, 0, 0 }, /* MQ200 */
@@ -52,7 +39,6 @@ static void __init pangolin_map_io(void)
 
 MACHINE_START(PANGOLIN, "Dialogue-Pangolin")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_pangolin)
        MAPIO(pangolin_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index f8e672162019e93fa34a2b32e5b1d67fd65eed24..39fdc09c437a13c1b5a08caaed0d779f90cd94d9 100644 (file)
@@ -55,19 +55,6 @@ static void __init pfs168_init_irq(void)
        set_GPIO_IRQ_edge(GPIO_UCB1300_IRQ, GPIO_RISING_EDGE);
 }
 
-
-static void __init
-fixup_pfs168(struct machine_desc *desc, struct tag *tags,
-            char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 16*1024*1024 );
-       mi->nr_banks = 1;
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( 0xc0800000, 3*1024*1024 );
-}
-
 static struct map_desc pfs168_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 0 */
@@ -98,10 +85,7 @@ static void __init pfs168_map_io(void)
 
 MACHINE_START(PFS168, "Tulsa")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-#if defined(CONFIG_PFS168_CMDLINE)
        BOOT_PARAMS(0xc0000100)
-#endif
-       FIXUP(fixup_pfs168)
        MAPIO(pfs168_map_io)
        INITIRQ(pfs168_init_irq)
 MACHINE_END
index 1e6c759a17f19e72c618fc12be893c926be46c7f..757768767fbc900582e8a8204c58d2006fdefeee 100644 (file)
 
 #include "generic.h"
 
-static void __init
-fixup_pleb(struct machine_desc *desc, struct tag *tags,
-           char **cmdline, struct meminfo *mi)
-{
-       SET_BANK(0, 0xc0000000, 16*1024*1024);
-       SET_BANK(1, 0xc8000000, 16*1024*1024);
-       SET_BANK(2, 0xd0000000, 16*1024*1024);
-       SET_BANK(3, 0xd8000000, 16*1024*1024);
-
-       /* make this 4 a second memory card is used to make 64MB */
-       /* make it 1 if a 16MB memory card is used */
-       mi->nr_banks = 2; /* Default 32MB */
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR, 0);
-       setup_ramdisk(1, 0, 0, 8192);
-       setup_initrd(0xc0400000, 4*1024*1024);
-}
-
 static struct map_desc pleb_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xe8000000, 0x00000000, 0x00400000, DOMAIN_IO, 0, 1, 0, 0 }, /* main flash memory */
@@ -55,7 +37,6 @@ static void __init pleb_map_io(void)
 
 MACHINE_START(PLEB, "PLEB")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_pleb)
        MAPIO(pleb_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 8ede177556cdd0580e26cc92b7f2a9f94de96623..c36f46017f53c22a7f08a9776eddaf7c49543ed3 100644 (file)
 
 #include "generic.h"
 
-
-static void __init
-fixup_sherman(struct machine_desc *desc, struct tag *tags,
-             char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 64*1024*1024 );
-       SET_BANK( 1, 0xc8000000, 64*1024*1024 );
-       mi->nr_banks = 2;
-
-       ROOT_DEV = mk_kdev( 60, 2 );
-       setup_ramdisk( 1, 0, 0, 8192 );
-//     setup_initrd( 0xc0400000, 8*1024*1024 );
-}
-
 static void __init sherman_map_io(void)
 {
        sa1100_map_io();
@@ -39,7 +25,6 @@ static void __init sherman_map_io(void)
 
 MACHINE_START(SHERMAN, "Blazie Engineering Sherman")
         BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-        FIXUP(fixup_sherman)
         MAPIO(sherman_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 4305917e52e034855d9ad9b8c42919a001691407..d4c15188b79b0481059a00bbb9d84976e8412d51 100644 (file)
@@ -40,22 +40,6 @@ void clear_cs3_bit(int value)
        *(CS3BUSTYPE *)(CS3_BASE) = cs3_shadow;
 }
 
-static void __init
-fixup_simpad(struct machine_desc *desc, struct tag *tags,
-                  char **cmdline, struct meminfo *mi)
-{
-#ifdef CONFIG_SA1100_SIMPAD_DRAM_64MB /* DRAM */
-       SET_BANK( 0, 0xc0000000, 64*1024*1024 );
-#else
-       SET_BANK( 0, 0xc0000000, 32*1024*1024 );
-#endif
-       mi->nr_banks = 1;
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( __phys_to_virt(0xc0800000), 4*1024*1024 );
-}
-
-
 static struct map_desc simpad_io_desc[] __initdata = {
   /* virtual   physical    length      domain     r  w  c  b */
   { 0xf2800000, 0x4b800000, 0x00800000, DOMAIN_IO, 0, 1, 0, 0 }, /* MQ200 */  
@@ -141,22 +125,14 @@ static int proc_cs3_read(char *page, char **start, off_t off,
 }
  
  
-static struct proc_dir_entry *proc_cs3;
 static int __init cs3_init(void)
 {
-       proc_cs3 = create_proc_entry("cs3", 0, 0);
+       struct proc_dir_entry *proc_cs3 = create_proc_entry("cs3", 0, 0);
        if (proc_cs3)
                proc_cs3->read_proc = proc_cs3_read;
        return 0;
 }
  
-static int __exit cs3_exit(void)
-{
-       if (proc_cs3)
-               remove_proc_entry( "cs3", 0);
-       return 0;
-}                 
 __initcall(cs3_init);
 
 #endif // CONFIG_PROC_FS
@@ -164,7 +140,6 @@ __initcall(cs3_init);
 MACHINE_START(SIMPAD, "Simpad")
        MAINTAINER("Juergen Messerer")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_simpad)
        MAPIO(simpad_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 4a5c983f5edbd3fe75dcab4d176deab594f0192d..429436a5238aee1364810951b73638f453e3403b 100644 (file)
@@ -73,8 +73,6 @@
  */
 
 /* init funcs */
-static void __init fixup_system3(struct machine_desc *desc,
-               struct tag *tags, char **cmdline, struct meminfo *mi);
 static int __init system3_init(void);
 static void __init system3_init_irq(void);
 static void __init system3_map_io(void);
@@ -228,25 +226,6 @@ static int sdram_notifier(struct notifier_block *nb, unsigned long event,
        return 0;
 }
 
-/**
- *     fixup_system3 - fixup function for system 3 board
- *     @desc:          machine description
- *     @param:         kernel params
- *     @cmdline:       kernel cmdline
- *     @mi:            memory info struct
- *
- */
-static void __init fixup_system3(struct machine_desc *desc,
-               struct tag *tags, char **cmdline, struct meminfo *mi)
-{
-       DPRINTK( "%s\n", "START" );
-
-       ROOT_DEV = mk_kdev(RAMDISK_MAJOR,0);
-       setup_ramdisk( 1, 0, 0, 8192 );
-       setup_initrd( 0xc0800000, 8*1024*1024 );
-}
-
-
 /**
  *     system3_uart_pm - powermgmt callback function for system 3 UART
  *     @port: uart port structure
@@ -457,7 +436,6 @@ __initcall(system3_init);
 MACHINE_START(PT_SYSTEM3, "PT System 3")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
        BOOT_PARAMS(0xc0000100)
-       FIXUP(fixup_system3)
        MAPIO(system3_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index ef46d543fc1974aaab58f3b2607f9b86493a7f5c..c80ce42f87c0ab543581f1540fb60ed450899b4c 100644 (file)
@@ -56,15 +56,6 @@ static int __init xp860_init(void)
 
 __initcall(xp860_init);
 
-
-static void __init
-fixup_xp860(struct machine_desc *desc, struct tag *tags,
-           char **cmdline, struct meminfo *mi)
-{
-       SET_BANK( 0, 0xc0000000, 32*1024*1024 );
-       mi->nr_banks = 1;
-}
-
 static struct map_desc xp860_io_desc[] __initdata = {
  /* virtual     physical    length      domain     r  w  c  b */
   { 0xf0000000, 0x10000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* SCSI */
@@ -84,7 +75,6 @@ static void __init xp860_map_io(void)
 
 MACHINE_START(XP860, "XP860")
        BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
-       FIXUP(fixup_xp860)
        MAPIO(xp860_map_io)
        INITIRQ(sa1100_init_irq)
 MACHINE_END
index 6831e446a50a44b42dc3a8e19ecb7e8e874a1fb9..d99f76c57a01bc20d3845ac7dd77527477e6c98e 100644 (file)
@@ -16,9 +16,6 @@
 
 #ifndef __ASSEMBLY__
 
-extern void setup_initrd(unsigned int start, unsigned int size);
-extern void setup_ramdisk(int doload, int prompt, int start, unsigned int rd_sz);
-
 struct tag;
 
 struct machine_desc {