ia64/xen-unstable
changeset 1459:6bb0f401f1b2
bitkeeper revision 1.956 (40c9ca08w7OtVOIV00pgYbkDiZW-RA)
move install and linux directories
move install and linux directories
author | iap10@labyrinth.cl.cam.ac.uk |
---|---|
date | Fri Jun 11 15:04:40 2004 +0000 (2004-06-11) |
parents | af0e7c294a1a |
children | 0d4ff32c9df0 |
files | .rootkeys BitKeeper/etc/ignore Makefile linux-2.4.26-xen-sparse/arch/xen/Makefile linux-2.4.26-xen-sparse/arch/xen/defconfig linux-2.4.26-xen-sparse/arch/xen/defconfig-xen0 linux-2.4.26-xen-sparse/arch/xen/defconfig-xenU linux-2.4.26-xen-sparse/arch/xen/defconfigs/dom0 linux-2.4.26-xen-sparse/arch/xen/defconfigs/unprivileged |
line diff
1.1 --- a/.rootkeys Fri Jun 11 07:11:59 2004 +0000 1.2 +++ b/.rootkeys Fri Jun 11 15:04:40 2004 +0000 1.3 @@ -43,8 +43,9 @@ 3e5a4e6589G-U42lFKs43plskXoFxQ linux-2.4 1.4 3e5a4e65IEPjnWPZ5w3TxS5scV8Ewg linux-2.4.26-xen-sparse/arch/xen/Makefile 1.5 3e5a4e65n-KhsEAs-A4ULiStBp-r6w linux-2.4.26-xen-sparse/arch/xen/boot/Makefile 1.6 3e5a4e65OV_j_DBtjzt5vej771AJsA linux-2.4.26-xen-sparse/arch/xen/config.in 1.7 -40648526SxcA4lGIHB_k7ID8VlRSzw linux-2.4.26-xen-sparse/arch/xen/defconfigs/dom0 1.8 -40c73c77QesbL7eIvG-fJGAtVwhGRg linux-2.4.26-xen-sparse/arch/xen/defconfigs/unprivileged 1.9 +40c9ca06qbn0-omx88JObgOYcEeiqQ linux-2.4.26-xen-sparse/arch/xen/defconfig 1.10 +40648526SxcA4lGIHB_k7ID8VlRSzw linux-2.4.26-xen-sparse/arch/xen/defconfig-xen0 1.11 +40c73c77QesbL7eIvG-fJGAtVwhGRg linux-2.4.26-xen-sparse/arch/xen/defconfig-xenU 1.12 3e6377f5xwPfYZkPHPrDbEq1PRN7uQ linux-2.4.26-xen-sparse/arch/xen/drivers/balloon/Makefile 1.13 3e6377f8Me8IqtvEhb70XFgOvqQH7A linux-2.4.26-xen-sparse/arch/xen/drivers/balloon/balloon.c 1.14 4083dc16z0jvZEH4PiVDbDRreaNp6w linux-2.4.26-xen-sparse/arch/xen/drivers/blkif/Makefile
2.1 --- a/BitKeeper/etc/ignore Fri Jun 11 07:11:59 2004 +0000 2.2 +++ b/BitKeeper/etc/ignore Fri Jun 11 15:04:40 2004 +0000 2.3 @@ -25,3 +25,6 @@ xen/include/xen/compile.h 2.4 xen/tools/elf-reloc 2.5 xen/tools/figlet/figlet 2.6 TAGS 2.7 +install/* 2.8 +linux-*.tar.gz 2.9 +linux-*-xen/*
3.1 --- a/Makefile Fri Jun 11 07:11:59 2004 +0000 3.2 +++ b/Makefile Fri Jun 11 15:04:40 2004 +0000 3.3 @@ -11,37 +11,38 @@ install: all 3.4 $(MAKE) -C tools install 3.5 3.6 dist: all 3.7 - $(MAKE) prefix=`pwd`/../install dist=yes -C xen install 3.8 - $(MAKE) prefix=`pwd`/../install dist=yes -C tools install 3.9 + $(MAKE) prefix=`pwd`/install dist=yes -C xen install 3.10 + $(MAKE) prefix=`pwd`/install dist=yes -C tools install 3.11 3.12 LINUX_VER ?= $(shell ( /bin/ls -ld linux-*-xen-sparse ) 2>/dev/null | sed -e 's!^.*linux-\(.\+\)-xen-sparse!\1!' ) 3.13 -LINUX_SRC ?= ../linux-$(LINUX_VER).tar.gz 3.14 -LINUX_CONFIG_DIR ?= ../install/config 3.15 +LINUX_SRC ?= linux-$(LINUX_VER).tar.gz 3.16 +LINUX_CONFIG_DIR ?= install/boot 3.17 3.18 linux: 3.19 # build whatever is in the current linux directory 3.20 ( cd ../linux-$(LINUX_VER)-xen ; ARCH=xen make bzImage ) 3.21 3.22 -world: dist 3.23 - mkdir -p ../install/config 3.24 - $(RM) -rf ../linux-$(LINUX_VER)-xen 3.25 - [ -e $(LINUX_SRC) ] || wget ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-$(LINUX_VER).tar.gz -O- > ../linux-$(LINUX_VER).tar.gz 3.26 - tar -x -z -C .. -f $(LINUX_SRC) 3.27 - mv ../linux-$(LINUX_VER) ../linux-$(LINUX_VER)-xen 3.28 - ( cd linux-$(LINUX_VER)-xen-sparse ; ./mkbuildtree ../../linux-$(LINUX_VER)-xen ) 3.29 - cp $(LINUX_CONFIG_DIR)/dom0 ../linux-$(LINUX_VER)-xen/.config || cp linux-$(LINUX_VER)-xen-sparse/arch/xen/defconfigs/dom0 ../linux-$(LINUX_VER)-xen/.config 3.30 - ( cd ../linux-$(LINUX_VER)-xen; ARCH=xen make oldconfig; ARCH=xen make dep; ARCH=xen make bzImage ) 3.31 - install -m0644 ../linux-$(LINUX_VER)-xen/arch/xen/boot/bzImage \ 3.32 - ../install/boot/vmlinuz-$(LINUX_VER)-xen0 3.33 - install -m0644 ../linux-$(LINUX_VER)-xen/vmlinux ../install/boot/vmlinux-syms-$(LINUX_VER)-xen0 3.34 - install -m0644 ../linux-$(LINUX_VER)-xen/.config $(LINUX_CONFIG_DIR)/dom0 3.35 - ( cd ../linux-$(LINUX_VER)-xen ; ARCH=xen make mrproper ) 3.36 - cp $(LINUX_CONFIG_DIR)/unprivileged ../linux-$(LINUX_VER)-xen/.config || cp linux-$(LINUX_VER)-xen-sparse/arch/xen/defconfigs/unprivileged ../linux-$(LINUX_VER)-xen/.config 3.37 - ( cd ../linux-$(LINUX_VER)-xen; ARCH=xen make oldconfig; ARCH=xen make dep; ARCH=xen make bzImage ) 3.38 - install -m0644 ../linux-$(LINUX_VER)-xen/arch/xen/boot/bzImage \ 3.39 - ../install/boot/vmlinuz-$(LINUX_VER)-xen 3.40 - install -m0644 ../linux-$(LINUX_VER)-xen/vmlinux ../install/boot/vmlinux-syms-$(LINUX_VER)-xen 3.41 - install -m0644 ../linux-$(LINUX_VER)-xen/.config $(LINUX_CONFIG_DIR)/unprivileged 3.42 +linux-src: 3.43 + [ -e $(LINUX_SRC) ] || wget ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-$(LINUX_VER).tar.gz -O- > linux-$(LINUX_VER).tar.gz 3.44 + 3.45 +mklinux-xen-tree: linux-src 3.46 + $(RM) -rf linux-$(LINUX_VER)-xen 3.47 + tar -x -z -f $(LINUX_SRC) 3.48 + mv linux-$(LINUX_VER) linux-$(LINUX_VER)-xen 3.49 + ( cd linux-$(LINUX_VER)-xen-sparse ; ./mkbuildtree ../linux-$(LINUX_VER)-xen ) 3.50 + 3.51 +world: dist mklinux-xen-tree 3.52 + cp ../$(LINUX_CONFIG_DIR)/config-$(LINUX_VER)-xenU .config || make -C linux-$(LINUX_VER)-xen ARCH=xen xenU_config 3.53 + make -C linux-$(LINUX_VER)-xen ARCH=xen oldconfig 3.54 + make -C linux-$(LINUX_VER)-xen ARCH=xen dep 3.55 + make -C linux-$(LINUX_VER)-xen ARCH=xen bzImage 3.56 + INSTALLSUFFIX=U make -C linux-$(LINUX_VER)-xen ARCH=xen dist 3.57 + make -C linux-$(LINUX_VER)-xen ARCH=xen mrproper 3.58 + cp ../$(LINUX_CONFIG_DIR)/config-$(LINUX_VER)-xen0 .config || ARCH=xen make ARCH=xen xen0_config 3.59 + make -C linux-$(LINUX_VER)-xen ARCH=xen oldconfig 3.60 + make -C linux-$(LINUX_VER)-xen ARCH=xen dep 3.61 + make -C linux-$(LINUX_VER)-xen ARCH=xen bzImage 3.62 + INSTALLSUFFIX=0 make -C linux-$(LINUX_VER)-xen ARCH=xen dist 3.63 3.64 clean: delete-symlinks 3.65 $(MAKE) -C xen clean 3.66 @@ -52,4 +53,4 @@ make-symlinks: delete-symlinks 3.67 3.68 delete-symlinks: 3.69 $(RM) linux-xen-sparse 3.70 - 3.71 \ No newline at end of file 3.72 +
4.1 --- a/linux-2.4.26-xen-sparse/arch/xen/Makefile Fri Jun 11 07:11:59 2004 +0000 4.2 +++ b/linux-2.4.26-xen-sparse/arch/xen/Makefile Fri Jun 11 15:04:40 2004 +0000 4.3 @@ -98,24 +98,34 @@ FORCE: ; 4.4 4.5 .PHONY: bzImage compressed clean archclean archmrproper archdep 4.6 4.7 + 4.8 bzImage: vmlinux 4.9 @$(MAKEBOOT) bzImage 4.10 4.11 install: bzImage 4.12 mkdir -p $(prefix)/boot 4.13 - install -m0644 arch/$(ARCH)/boot/bzImage $(prefix)/boot/vmlinuz-2.4.26-xen 4.14 - install -m0644 vmlinux $(prefix)/boot/vmlinux-syms-2.4.26-xen 4.15 + install -m0644 arch/$(ARCH)/boot/bzImage $(prefix)/boot/vmlinuz-$(KERNELRELEASE)$(INSTALLSUFFIX) 4.16 + install -m0644 vmlinux $(prefix)/boot/vmlinux-syms-$(KERNELRELEASE)$(INSTALLSUFFIX) 4.17 + install -m0664 .config $(prefix)/boot/config-$(KERNELRELEASE)$(INSTALLSUFFIX) 4.18 4.19 dist: bzImage 4.20 mkdir -p ../install/boot 4.21 - install -m0644 arch/$(ARCH)/boot/xenolinux.gz ../install/boot/vmlinuz-2.4.26-xen 4.22 - install -m0644 vmlinux ../install/boot/vmlinux-syms-2.4.26-xen 4.23 + install -m0644 arch/$(ARCH)/boot/bzImage ../install/boot/vmlinuz-$(KERNELRELEASE)$(INSTALLSUFFIX) 4.24 + install -m0644 vmlinux ../install/boot/vmlinux-syms-$(KERNELRELEASE)$(INSTALLSUFFIX) 4.25 + install -m0664 .config ../install/boot/config-$(KERNELRELEASE)$(INSTALLSUFFIX) 4.26 + 4.27 +%_config: arch/xen/defconfig-% 4.28 + rm -f .config arch/xen/defconfig 4.29 + cp -f arch/xen/defconfig-$(@:_config=) arch/xen/defconfig 4.30 + 4.31 4.32 archclean: 4.33 @$(MAKEBOOT) clean 4.34 4.35 archmrproper: 4.36 rm -f include/asm-xen/hypervisor-ifs/arch 4.37 + rm -f $(prefix)/boot/vmlinux-syms-$(KERNELRELEASE) 4.38 + rm -f $(prefix)/boot/vmlinuz-$(KERNELRELEASE) 4.39 4.40 archdep: 4.41 rm -f include/asm-xen/hypervisor-ifs/arch
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/linux-2.4.26-xen-sparse/arch/xen/defconfig Fri Jun 11 15:04:40 2004 +0000 5.3 @@ -0,0 +1,881 @@ 5.4 +# 5.5 +# Automatically generated make config: don't edit 5.6 +# 5.7 +CONFIG_XEN=y 5.8 +CONFIG_X86=y 5.9 +CONFIG_ISA=y 5.10 +# CONFIG_SBUS is not set 5.11 +CONFIG_UID16=y 5.12 + 5.13 +# 5.14 +# Xen 5.15 +# 5.16 +CONFIG_XEN_PRIVILEGED_GUEST=y 5.17 +CONFIG_XEN_PHYSDEV_ACCESS=y 5.18 +CONFIG_NO_IDLE_HZ=y 5.19 + 5.20 +# 5.21 +# Code maturity level options 5.22 +# 5.23 +CONFIG_EXPERIMENTAL=y 5.24 + 5.25 +# 5.26 +# Loadable module support 5.27 +# 5.28 +CONFIG_MODULES=y 5.29 +CONFIG_MODVERSIONS=y 5.30 +CONFIG_KMOD=y 5.31 + 5.32 +# 5.33 +# Processor type and features 5.34 +# 5.35 +CONFIG_M686=y 5.36 +# CONFIG_MPENTIUMIII is not set 5.37 +# CONFIG_MPENTIUM4 is not set 5.38 +# CONFIG_MK7 is not set 5.39 +# CONFIG_MK8 is not set 5.40 +# CONFIG_MVIAC3_2 is not set 5.41 +CONFIG_X86_WP_WORKS_OK=y 5.42 +CONFIG_X86_INVLPG=y 5.43 +CONFIG_X86_CMPXCHG=y 5.44 +CONFIG_X86_XADD=y 5.45 +CONFIG_X86_BSWAP=y 5.46 +CONFIG_X86_POPAD_OK=y 5.47 +# CONFIG_RWSEM_GENERIC_SPINLOCK is not set 5.48 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y 5.49 +CONFIG_X86_GOOD_APIC=y 5.50 +CONFIG_X86_PGE=y 5.51 +CONFIG_X86_USE_PPRO_CHECKSUM=y 5.52 +CONFIG_X86_TSC=y 5.53 +CONFIG_X86_L1_CACHE_SHIFT=5 5.54 +CONFIG_NOHIGHMEM=y 5.55 +# CONFIG_HIGHMEM4G is not set 5.56 +CONFIG_FORCE_MAX_ZONEORDER=12 5.57 + 5.58 +# 5.59 +# General setup 5.60 +# 5.61 +CONFIG_NET=y 5.62 +CONFIG_PCI=y 5.63 +CONFIG_PCI_NAMES=y 5.64 +CONFIG_HOTPLUG=y 5.65 + 5.66 +# 5.67 +# PCMCIA/CardBus support 5.68 +# 5.69 +# CONFIG_PCMCIA is not set 5.70 + 5.71 +# 5.72 +# PCI Hotplug Support 5.73 +# 5.74 +# CONFIG_HOTPLUG_PCI is not set 5.75 +# CONFIG_HOTPLUG_PCI_COMPAQ is not set 5.76 +# CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set 5.77 +CONFIG_SYSVIPC=y 5.78 +# CONFIG_BSD_PROCESS_ACCT is not set 5.79 +CONFIG_SYSCTL=y 5.80 +CONFIG_KCORE_ELF=y 5.81 +# CONFIG_KCORE_AOUT is not set 5.82 +CONFIG_BINFMT_AOUT=y 5.83 +CONFIG_BINFMT_ELF=y 5.84 +# CONFIG_BINFMT_MISC is not set 5.85 +# CONFIG_OOM_KILLER is not set 5.86 + 5.87 +# 5.88 +# Memory Technology Devices (MTD) 5.89 +# 5.90 +# CONFIG_MTD is not set 5.91 + 5.92 +# 5.93 +# Parallel port support 5.94 +# 5.95 +# CONFIG_PARPORT is not set 5.96 + 5.97 +# 5.98 +# Plug and Play configuration 5.99 +# 5.100 +CONFIG_PNP=y 5.101 +# CONFIG_ISAPNP is not set 5.102 + 5.103 +# 5.104 +# Block devices 5.105 +# 5.106 +# CONFIG_BLK_DEV_FD is not set 5.107 +# CONFIG_BLK_DEV_XD is not set 5.108 +# CONFIG_PARIDE is not set 5.109 +# CONFIG_BLK_CPQ_DA is not set 5.110 +# CONFIG_BLK_CPQ_CISS_DA is not set 5.111 +# CONFIG_CISS_SCSI_TAPE is not set 5.112 +# CONFIG_CISS_MONITOR_THREAD is not set 5.113 +# CONFIG_BLK_DEV_DAC960 is not set 5.114 +# CONFIG_BLK_DEV_UMEM is not set 5.115 +CONFIG_BLK_DEV_LOOP=y 5.116 +CONFIG_BLK_DEV_NBD=y 5.117 +CONFIG_BLK_DEV_RAM=y 5.118 +CONFIG_BLK_DEV_RAM_SIZE=4096 5.119 +CONFIG_BLK_DEV_INITRD=y 5.120 +# CONFIG_BLK_STATS is not set 5.121 + 5.122 +# 5.123 +# Multi-device support (RAID and LVM) 5.124 +# 5.125 +# CONFIG_MD is not set 5.126 +# CONFIG_BLK_DEV_MD is not set 5.127 +# CONFIG_MD_LINEAR is not set 5.128 +# CONFIG_MD_RAID0 is not set 5.129 +# CONFIG_MD_RAID1 is not set 5.130 +# CONFIG_MD_RAID5 is not set 5.131 +# CONFIG_MD_MULTIPATH is not set 5.132 +# CONFIG_BLK_DEV_LVM is not set 5.133 + 5.134 +# 5.135 +# Networking options 5.136 +# 5.137 +CONFIG_PACKET=y 5.138 +CONFIG_PACKET_MMAP=y 5.139 +# CONFIG_NETLINK_DEV is not set 5.140 +CONFIG_NETFILTER=y 5.141 +# CONFIG_NETFILTER_DEBUG is not set 5.142 +CONFIG_FILTER=y 5.143 +CONFIG_UNIX=y 5.144 +CONFIG_INET=y 5.145 +# CONFIG_IP_MULTICAST is not set 5.146 +# CONFIG_IP_ADVANCED_ROUTER is not set 5.147 +CONFIG_IP_PNP=y 5.148 +CONFIG_IP_PNP_DHCP=y 5.149 +# CONFIG_IP_PNP_BOOTP is not set 5.150 +# CONFIG_IP_PNP_RARP is not set 5.151 +# CONFIG_NET_IPIP is not set 5.152 +# CONFIG_NET_IPGRE is not set 5.153 +# CONFIG_ARPD is not set 5.154 +# CONFIG_INET_ECN is not set 5.155 +# CONFIG_SYN_COOKIES is not set 5.156 + 5.157 +# 5.158 +# IP: Netfilter Configuration 5.159 +# 5.160 +CONFIG_IP_NF_CONNTRACK=y 5.161 +CONFIG_IP_NF_FTP=y 5.162 +# CONFIG_IP_NF_AMANDA is not set 5.163 +CONFIG_IP_NF_TFTP=y 5.164 +CONFIG_IP_NF_IRC=y 5.165 +# CONFIG_IP_NF_QUEUE is not set 5.166 +CONFIG_IP_NF_IPTABLES=y 5.167 +# CONFIG_IP_NF_MATCH_LIMIT is not set 5.168 +# CONFIG_IP_NF_MATCH_MAC is not set 5.169 +# CONFIG_IP_NF_MATCH_PKTTYPE is not set 5.170 +# CONFIG_IP_NF_MATCH_MARK is not set 5.171 +# CONFIG_IP_NF_MATCH_MULTIPORT is not set 5.172 +# CONFIG_IP_NF_MATCH_TOS is not set 5.173 +# CONFIG_IP_NF_MATCH_RECENT is not set 5.174 +# CONFIG_IP_NF_MATCH_ECN is not set 5.175 +# CONFIG_IP_NF_MATCH_DSCP is not set 5.176 +# CONFIG_IP_NF_MATCH_AH_ESP is not set 5.177 +# CONFIG_IP_NF_MATCH_LENGTH is not set 5.178 +# CONFIG_IP_NF_MATCH_TTL is not set 5.179 +# CONFIG_IP_NF_MATCH_TCPMSS is not set 5.180 +# CONFIG_IP_NF_MATCH_HELPER is not set 5.181 +CONFIG_IP_NF_MATCH_STATE=y 5.182 +CONFIG_IP_NF_MATCH_CONNTRACK=y 5.183 +# CONFIG_IP_NF_MATCH_UNCLEAN is not set 5.184 +# CONFIG_IP_NF_MATCH_OWNER is not set 5.185 +CONFIG_IP_NF_FILTER=y 5.186 +CONFIG_IP_NF_TARGET_REJECT=y 5.187 +# CONFIG_IP_NF_TARGET_MIRROR is not set 5.188 +CONFIG_IP_NF_NAT=y 5.189 +CONFIG_IP_NF_NAT_NEEDED=y 5.190 +CONFIG_IP_NF_TARGET_MASQUERADE=y 5.191 +CONFIG_IP_NF_TARGET_REDIRECT=y 5.192 +# CONFIG_IP_NF_NAT_LOCAL is not set 5.193 +# CONFIG_IP_NF_NAT_SNMP_BASIC is not set 5.194 +CONFIG_IP_NF_NAT_IRC=y 5.195 +CONFIG_IP_NF_NAT_FTP=y 5.196 +CONFIG_IP_NF_NAT_TFTP=y 5.197 +# CONFIG_IP_NF_MANGLE is not set 5.198 +CONFIG_IP_NF_TARGET_LOG=y 5.199 +CONFIG_IP_NF_TARGET_ULOG=y 5.200 +# CONFIG_IP_NF_TARGET_TCPMSS is not set 5.201 +# CONFIG_IP_NF_ARPTABLES is not set 5.202 + 5.203 +# 5.204 +# IP: Virtual Server Configuration 5.205 +# 5.206 +# CONFIG_IP_VS is not set 5.207 +# CONFIG_IPV6 is not set 5.208 +# CONFIG_KHTTPD is not set 5.209 + 5.210 +# 5.211 +# SCTP Configuration (EXPERIMENTAL) 5.212 +# 5.213 +# CONFIG_IP_SCTP is not set 5.214 +# CONFIG_ATM is not set 5.215 +# CONFIG_VLAN_8021Q is not set 5.216 + 5.217 +# 5.218 +# 5.219 +# 5.220 +# CONFIG_IPX is not set 5.221 +# CONFIG_ATALK is not set 5.222 + 5.223 +# 5.224 +# Appletalk devices 5.225 +# 5.226 +# CONFIG_DEV_APPLETALK is not set 5.227 +# CONFIG_DECNET is not set 5.228 +CONFIG_BRIDGE=y 5.229 +# CONFIG_X25 is not set 5.230 +# CONFIG_LAPB is not set 5.231 +# CONFIG_LLC is not set 5.232 +# CONFIG_NET_DIVERT is not set 5.233 +# CONFIG_ECONET is not set 5.234 +# CONFIG_WAN_ROUTER is not set 5.235 +# CONFIG_NET_FASTROUTE is not set 5.236 +# CONFIG_NET_HW_FLOWCONTROL is not set 5.237 + 5.238 +# 5.239 +# QoS and/or fair queueing 5.240 +# 5.241 +# CONFIG_NET_SCHED is not set 5.242 + 5.243 +# 5.244 +# Network testing 5.245 +# 5.246 +# CONFIG_NET_PKTGEN is not set 5.247 + 5.248 +# 5.249 +# ATA/IDE/MFM/RLL support 5.250 +# 5.251 +CONFIG_IDE=y 5.252 + 5.253 +# 5.254 +# IDE, ATA and ATAPI Block devices 5.255 +# 5.256 +CONFIG_BLK_DEV_IDE=y 5.257 + 5.258 +# 5.259 +# Please see Documentation/ide.txt for help/info on IDE drives 5.260 +# 5.261 +# CONFIG_BLK_DEV_HD_IDE is not set 5.262 +# CONFIG_BLK_DEV_HD is not set 5.263 +CONFIG_BLK_DEV_IDEDISK=y 5.264 +CONFIG_IDEDISK_MULTI_MODE=y 5.265 +CONFIG_IDEDISK_STROKE=y 5.266 +# CONFIG_BLK_DEV_IDECS is not set 5.267 +CONFIG_BLK_DEV_IDECD=y 5.268 +CONFIG_BLK_DEV_IDETAPE=y 5.269 +CONFIG_BLK_DEV_IDEFLOPPY=y 5.270 +CONFIG_BLK_DEV_IDESCSI=y 5.271 +CONFIG_IDE_TASK_IOCTL=y 5.272 + 5.273 +# 5.274 +# IDE chipset support/bugfixes 5.275 +# 5.276 +CONFIG_BLK_DEV_CMD640=y 5.277 +CONFIG_BLK_DEV_CMD640_ENHANCED=y 5.278 +# CONFIG_BLK_DEV_ISAPNP is not set 5.279 +CONFIG_BLK_DEV_IDEPCI=y 5.280 +CONFIG_BLK_DEV_GENERIC=y 5.281 +CONFIG_IDEPCI_SHARE_IRQ=y 5.282 +CONFIG_BLK_DEV_IDEDMA_PCI=y 5.283 +CONFIG_BLK_DEV_OFFBOARD=y 5.284 +# CONFIG_BLK_DEV_IDEDMA_FORCED is not set 5.285 +CONFIG_IDEDMA_PCI_AUTO=y 5.286 +# CONFIG_IDEDMA_ONLYDISK is not set 5.287 +CONFIG_BLK_DEV_IDEDMA=y 5.288 +# CONFIG_IDEDMA_PCI_WIP is not set 5.289 +CONFIG_BLK_DEV_ADMA100=y 5.290 +CONFIG_BLK_DEV_AEC62XX=y 5.291 +CONFIG_BLK_DEV_ALI15X3=y 5.292 +CONFIG_WDC_ALI15X3=y 5.293 +CONFIG_BLK_DEV_AMD74XX=y 5.294 +CONFIG_AMD74XX_OVERRIDE=y 5.295 +# CONFIG_BLK_DEV_ATIIXP is not set 5.296 +CONFIG_BLK_DEV_CMD64X=y 5.297 +CONFIG_BLK_DEV_TRIFLEX=y 5.298 +CONFIG_BLK_DEV_CY82C693=y 5.299 +CONFIG_BLK_DEV_CS5530=y 5.300 +CONFIG_BLK_DEV_HPT34X=y 5.301 +# CONFIG_HPT34X_AUTODMA is not set 5.302 +CONFIG_BLK_DEV_HPT366=y 5.303 +CONFIG_BLK_DEV_PIIX=y 5.304 +CONFIG_BLK_DEV_NS87415=y 5.305 +# CONFIG_BLK_DEV_OPTI621 is not set 5.306 +CONFIG_BLK_DEV_PDC202XX_OLD=y 5.307 +CONFIG_PDC202XX_BURST=y 5.308 +CONFIG_BLK_DEV_PDC202XX_NEW=y 5.309 +CONFIG_PDC202XX_FORCE=y 5.310 +CONFIG_BLK_DEV_RZ1000=y 5.311 +CONFIG_BLK_DEV_SC1200=y 5.312 +CONFIG_BLK_DEV_SVWKS=y 5.313 +CONFIG_BLK_DEV_SIIMAGE=y 5.314 +CONFIG_BLK_DEV_SIS5513=y 5.315 +CONFIG_BLK_DEV_SLC90E66=y 5.316 +CONFIG_BLK_DEV_TRM290=y 5.317 +CONFIG_BLK_DEV_VIA82CXXX=y 5.318 +CONFIG_IDE_CHIPSETS=y 5.319 + 5.320 +# 5.321 +# Note: most of these also require special kernel boot parameters 5.322 +# 5.323 +# CONFIG_BLK_DEV_4DRIVES is not set 5.324 +# CONFIG_BLK_DEV_ALI14XX is not set 5.325 +# CONFIG_BLK_DEV_DTC2278 is not set 5.326 +# CONFIG_BLK_DEV_HT6560B is not set 5.327 +# CONFIG_BLK_DEV_PDC4030 is not set 5.328 +# CONFIG_BLK_DEV_QD65XX is not set 5.329 +# CONFIG_BLK_DEV_UMC8672 is not set 5.330 +CONFIG_IDEDMA_AUTO=y 5.331 +# CONFIG_IDEDMA_IVB is not set 5.332 +# CONFIG_DMA_NONPCI is not set 5.333 +CONFIG_BLK_DEV_PDC202XX=y 5.334 +# CONFIG_BLK_DEV_ATARAID is not set 5.335 +# CONFIG_BLK_DEV_ATARAID_PDC is not set 5.336 +# CONFIG_BLK_DEV_ATARAID_HPT is not set 5.337 +# CONFIG_BLK_DEV_ATARAID_MEDLEY is not set 5.338 +# CONFIG_BLK_DEV_ATARAID_SII is not set 5.339 + 5.340 +# 5.341 +# SCSI support 5.342 +# 5.343 +CONFIG_SCSI=y 5.344 + 5.345 +# 5.346 +# SCSI support type (disk, tape, CD-ROM) 5.347 +# 5.348 +CONFIG_BLK_DEV_SD=y 5.349 +CONFIG_SD_EXTRA_DEVS=40 5.350 +# CONFIG_CHR_DEV_ST is not set 5.351 +# CONFIG_CHR_DEV_OSST is not set 5.352 +# CONFIG_BLK_DEV_SR is not set 5.353 +CONFIG_CHR_DEV_SG=y 5.354 + 5.355 +# 5.356 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs 5.357 +# 5.358 +# CONFIG_SCSI_DEBUG_QUEUES is not set 5.359 +# CONFIG_SCSI_MULTI_LUN is not set 5.360 +# CONFIG_SCSI_CONSTANTS is not set 5.361 +# CONFIG_SCSI_LOGGING is not set 5.362 + 5.363 +# 5.364 +# SCSI low-level drivers 5.365 +# 5.366 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set 5.367 +# CONFIG_SCSI_7000FASST is not set 5.368 +# CONFIG_SCSI_ACARD is not set 5.369 +# CONFIG_SCSI_AHA152X is not set 5.370 +# CONFIG_SCSI_AHA1542 is not set 5.371 +# CONFIG_SCSI_AHA1740 is not set 5.372 +CONFIG_SCSI_AACRAID=y 5.373 +# CONFIG_SCSI_AIC7XXX is not set 5.374 +# CONFIG_SCSI_AIC79XX is not set 5.375 +# CONFIG_SCSI_AIC7XXX_OLD is not set 5.376 +# CONFIG_SCSI_DPT_I2O is not set 5.377 +# CONFIG_SCSI_ADVANSYS is not set 5.378 +# CONFIG_SCSI_IN2000 is not set 5.379 +# CONFIG_SCSI_AM53C974 is not set 5.380 +CONFIG_SCSI_MEGARAID=y 5.381 +# CONFIG_SCSI_MEGARAID2 is not set 5.382 +CONFIG_SCSI_BUSLOGIC=y 5.383 +# CONFIG_SCSI_OMIT_FLASHPOINT is not set 5.384 +# CONFIG_SCSI_CPQFCTS is not set 5.385 +# CONFIG_SCSI_DMX3191D is not set 5.386 +# CONFIG_SCSI_DTC3280 is not set 5.387 +# CONFIG_SCSI_EATA is not set 5.388 +# CONFIG_SCSI_EATA_DMA is not set 5.389 +# CONFIG_SCSI_EATA_PIO is not set 5.390 +# CONFIG_SCSI_FUTURE_DOMAIN is not set 5.391 +# CONFIG_SCSI_GDTH is not set 5.392 +# CONFIG_SCSI_GENERIC_NCR5380 is not set 5.393 +# CONFIG_SCSI_IPS is not set 5.394 +# CONFIG_SCSI_INITIO is not set 5.395 +# CONFIG_SCSI_INIA100 is not set 5.396 +# CONFIG_SCSI_NCR53C406A is not set 5.397 +# CONFIG_SCSI_NCR53C7xx is not set 5.398 +# CONFIG_SCSI_SYM53C8XX_2 is not set 5.399 +# CONFIG_SCSI_NCR53C8XX is not set 5.400 +# CONFIG_SCSI_SYM53C8XX is not set 5.401 +# CONFIG_SCSI_PAS16 is not set 5.402 +# CONFIG_SCSI_PCI2000 is not set 5.403 +# CONFIG_SCSI_PCI2220I is not set 5.404 +# CONFIG_SCSI_PSI240I is not set 5.405 +# CONFIG_SCSI_QLOGIC_FAS is not set 5.406 +# CONFIG_SCSI_QLOGIC_ISP is not set 5.407 +# CONFIG_SCSI_QLOGIC_FC is not set 5.408 +# CONFIG_SCSI_QLOGIC_1280 is not set 5.409 +# CONFIG_SCSI_SEAGATE is not set 5.410 +# CONFIG_SCSI_SIM710 is not set 5.411 +# CONFIG_SCSI_SYM53C416 is not set 5.412 +# CONFIG_SCSI_DC390T is not set 5.413 +# CONFIG_SCSI_T128 is not set 5.414 +# CONFIG_SCSI_U14_34F is not set 5.415 +# CONFIG_SCSI_ULTRASTOR is not set 5.416 +# CONFIG_SCSI_NSP32 is not set 5.417 +# CONFIG_SCSI_DEBUG is not set 5.418 + 5.419 +# 5.420 +# Fusion MPT device support 5.421 +# 5.422 +# CONFIG_FUSION is not set 5.423 +# CONFIG_FUSION_BOOT is not set 5.424 +# CONFIG_FUSION_ISENSE is not set 5.425 +# CONFIG_FUSION_CTL is not set 5.426 +# CONFIG_FUSION_LAN is not set 5.427 + 5.428 +# 5.429 +# IEEE 1394 (FireWire) support (EXPERIMENTAL) 5.430 +# 5.431 +# CONFIG_IEEE1394 is not set 5.432 + 5.433 +# 5.434 +# I2O device support 5.435 +# 5.436 +# CONFIG_I2O is not set 5.437 +# CONFIG_I2O_PCI is not set 5.438 +# CONFIG_I2O_BLOCK is not set 5.439 +# CONFIG_I2O_LAN is not set 5.440 +# CONFIG_I2O_SCSI is not set 5.441 +# CONFIG_I2O_PROC is not set 5.442 + 5.443 +# 5.444 +# Network device support 5.445 +# 5.446 +CONFIG_NETDEVICES=y 5.447 + 5.448 +# 5.449 +# ARCnet devices 5.450 +# 5.451 +# CONFIG_ARCNET is not set 5.452 +# CONFIG_DUMMY is not set 5.453 +# CONFIG_BONDING is not set 5.454 +# CONFIG_EQUALIZER is not set 5.455 +# CONFIG_TUN is not set 5.456 +# CONFIG_ETHERTAP is not set 5.457 + 5.458 +# 5.459 +# Ethernet (10 or 100Mbit) 5.460 +# 5.461 +CONFIG_NET_ETHERNET=y 5.462 +# CONFIG_SUNLANCE is not set 5.463 +# CONFIG_HAPPYMEAL is not set 5.464 +# CONFIG_SUNBMAC is not set 5.465 +# CONFIG_SUNQE is not set 5.466 +# CONFIG_SUNGEM is not set 5.467 +CONFIG_NET_VENDOR_3COM=y 5.468 +# CONFIG_EL1 is not set 5.469 +# CONFIG_EL2 is not set 5.470 +# CONFIG_ELPLUS is not set 5.471 +# CONFIG_EL16 is not set 5.472 +# CONFIG_EL3 is not set 5.473 +# CONFIG_3C515 is not set 5.474 +# CONFIG_ELMC is not set 5.475 +# CONFIG_ELMC_II is not set 5.476 +CONFIG_VORTEX=y 5.477 +# CONFIG_TYPHOON is not set 5.478 +# CONFIG_LANCE is not set 5.479 +# CONFIG_NET_VENDOR_SMC is not set 5.480 +# CONFIG_NET_VENDOR_RACAL is not set 5.481 +# CONFIG_AT1700 is not set 5.482 +# CONFIG_DEPCA is not set 5.483 +# CONFIG_HP100 is not set 5.484 +# CONFIG_NET_ISA is not set 5.485 +CONFIG_NET_PCI=y 5.486 +CONFIG_PCNET32=y 5.487 +# CONFIG_AMD8111_ETH is not set 5.488 +# CONFIG_ADAPTEC_STARFIRE is not set 5.489 +# CONFIG_AC3200 is not set 5.490 +# CONFIG_APRICOT is not set 5.491 +# CONFIG_B44 is not set 5.492 +# CONFIG_CS89x0 is not set 5.493 +# CONFIG_TULIP is not set 5.494 +# CONFIG_DE4X5 is not set 5.495 +# CONFIG_DGRS is not set 5.496 +# CONFIG_DM9102 is not set 5.497 +# CONFIG_EEPRO100 is not set 5.498 +# CONFIG_EEPRO100_PIO is not set 5.499 +# CONFIG_E100 is not set 5.500 +# CONFIG_LNE390 is not set 5.501 +# CONFIG_FEALNX is not set 5.502 +# CONFIG_NATSEMI is not set 5.503 +# CONFIG_NE2K_PCI is not set 5.504 +# CONFIG_FORCEDETH is not set 5.505 +# CONFIG_NE3210 is not set 5.506 +# CONFIG_ES3210 is not set 5.507 +# CONFIG_8139CP is not set 5.508 +# CONFIG_8139TOO is not set 5.509 +# CONFIG_8139TOO_PIO is not set 5.510 +# CONFIG_8139TOO_TUNE_TWISTER is not set 5.511 +# CONFIG_8139TOO_8129 is not set 5.512 +# CONFIG_8139_OLD_RX_RESET is not set 5.513 +# CONFIG_SIS900 is not set 5.514 +# CONFIG_EPIC100 is not set 5.515 +# CONFIG_SUNDANCE is not set 5.516 +# CONFIG_SUNDANCE_MMIO is not set 5.517 +# CONFIG_TLAN is not set 5.518 +# CONFIG_VIA_RHINE is not set 5.519 +# CONFIG_VIA_RHINE_MMIO is not set 5.520 +# CONFIG_WINBOND_840 is not set 5.521 +# CONFIG_NET_POCKET is not set 5.522 + 5.523 +# 5.524 +# Ethernet (1000 Mbit) 5.525 +# 5.526 +# CONFIG_ACENIC is not set 5.527 +# CONFIG_DL2K is not set 5.528 +CONFIG_E1000=y 5.529 +# CONFIG_E1000_NAPI is not set 5.530 +# CONFIG_MYRI_SBUS is not set 5.531 +# CONFIG_NS83820 is not set 5.532 +# CONFIG_HAMACHI is not set 5.533 +# CONFIG_YELLOWFIN is not set 5.534 +# CONFIG_R8169 is not set 5.535 +# CONFIG_SK98LIN is not set 5.536 +CONFIG_TIGON3=y 5.537 +# CONFIG_FDDI is not set 5.538 +# CONFIG_HIPPI is not set 5.539 +# CONFIG_PLIP is not set 5.540 +# CONFIG_PPP is not set 5.541 +# CONFIG_SLIP is not set 5.542 + 5.543 +# 5.544 +# Wireless LAN (non-hamradio) 5.545 +# 5.546 +# CONFIG_NET_RADIO is not set 5.547 + 5.548 +# 5.549 +# Token Ring devices 5.550 +# 5.551 +# CONFIG_TR is not set 5.552 +# CONFIG_NET_FC is not set 5.553 +# CONFIG_RCPCI is not set 5.554 +# CONFIG_SHAPER is not set 5.555 + 5.556 +# 5.557 +# Wan interfaces 5.558 +# 5.559 +# CONFIG_WAN is not set 5.560 + 5.561 +# 5.562 +# Amateur Radio support 5.563 +# 5.564 +# CONFIG_HAMRADIO is not set 5.565 + 5.566 +# 5.567 +# IrDA (infrared) support 5.568 +# 5.569 +# CONFIG_IRDA is not set 5.570 + 5.571 +# 5.572 +# ISDN subsystem 5.573 +# 5.574 +# CONFIG_ISDN is not set 5.575 + 5.576 +# 5.577 +# Old CD-ROM drivers (not SCSI, not IDE) 5.578 +# 5.579 +# CONFIG_CD_NO_IDESCSI is not set 5.580 + 5.581 +# 5.582 +# Input core support 5.583 +# 5.584 +# CONFIG_INPUT is not set 5.585 +# CONFIG_INPUT_KEYBDEV is not set 5.586 +# CONFIG_INPUT_MOUSEDEV is not set 5.587 +# CONFIG_INPUT_JOYDEV is not set 5.588 +# CONFIG_INPUT_EVDEV is not set 5.589 +# CONFIG_INPUT_UINPUT is not set 5.590 + 5.591 +# 5.592 +# Character devices 5.593 +# 5.594 +CONFIG_VT=y 5.595 +CONFIG_VT_CONSOLE=y 5.596 +# CONFIG_SERIAL is not set 5.597 +# CONFIG_SERIAL_EXTENDED is not set 5.598 +# CONFIG_SERIAL_NONSTANDARD is not set 5.599 +CONFIG_UNIX98_PTYS=y 5.600 +CONFIG_UNIX98_PTY_COUNT=256 5.601 + 5.602 +# 5.603 +# I2C support 5.604 +# 5.605 +# CONFIG_I2C is not set 5.606 + 5.607 +# 5.608 +# Mice 5.609 +# 5.610 +# CONFIG_BUSMOUSE is not set 5.611 +CONFIG_MOUSE=y 5.612 +CONFIG_PSMOUSE=y 5.613 +# CONFIG_82C710_MOUSE is not set 5.614 +# CONFIG_PC110_PAD is not set 5.615 +# CONFIG_MK712_MOUSE is not set 5.616 + 5.617 +# 5.618 +# Joysticks 5.619 +# 5.620 +# CONFIG_INPUT_GAMEPORT is not set 5.621 + 5.622 +# 5.623 +# Input core support is needed for gameports 5.624 +# 5.625 + 5.626 +# 5.627 +# Input core support is needed for joysticks 5.628 +# 5.629 +# CONFIG_QIC02_TAPE is not set 5.630 +# CONFIG_IPMI_HANDLER is not set 5.631 +# CONFIG_IPMI_PANIC_EVENT is not set 5.632 +# CONFIG_IPMI_DEVICE_INTERFACE is not set 5.633 +# CONFIG_IPMI_KCS is not set 5.634 +# CONFIG_IPMI_WATCHDOG is not set 5.635 + 5.636 +# 5.637 +# Watchdog Cards 5.638 +# 5.639 +# CONFIG_WATCHDOG is not set 5.640 +# CONFIG_SCx200 is not set 5.641 +# CONFIG_SCx200_GPIO is not set 5.642 +# CONFIG_AMD_RNG is not set 5.643 +# CONFIG_INTEL_RNG is not set 5.644 +# CONFIG_HW_RANDOM is not set 5.645 +# CONFIG_AMD_PM768 is not set 5.646 +# CONFIG_NVRAM is not set 5.647 +# CONFIG_RTC is not set 5.648 +# CONFIG_DTLK is not set 5.649 +# CONFIG_R3964 is not set 5.650 +# CONFIG_APPLICOM is not set 5.651 +# CONFIG_SONYPI is not set 5.652 + 5.653 +# 5.654 +# Ftape, the floppy tape device driver 5.655 +# 5.656 +# CONFIG_FTAPE is not set 5.657 +# CONFIG_AGP is not set 5.658 + 5.659 +# 5.660 +# Direct Rendering Manager (XFree86 DRI support) 5.661 +# 5.662 +# CONFIG_DRM is not set 5.663 +# CONFIG_MWAVE is not set 5.664 +# CONFIG_OBMOUSE is not set 5.665 + 5.666 +# 5.667 +# Multimedia devices 5.668 +# 5.669 +# CONFIG_VIDEO_DEV is not set 5.670 + 5.671 +# 5.672 +# File systems 5.673 +# 5.674 +# CONFIG_QUOTA is not set 5.675 +# CONFIG_QFMT_V2 is not set 5.676 +CONFIG_AUTOFS_FS=y 5.677 +CONFIG_AUTOFS4_FS=y 5.678 +# CONFIG_REISERFS_FS is not set 5.679 +# CONFIG_REISERFS_CHECK is not set 5.680 +# CONFIG_REISERFS_PROC_INFO is not set 5.681 +# CONFIG_ADFS_FS is not set 5.682 +# CONFIG_ADFS_FS_RW is not set 5.683 +# CONFIG_AFFS_FS is not set 5.684 +# CONFIG_HFS_FS is not set 5.685 +# CONFIG_HFSPLUS_FS is not set 5.686 +# CONFIG_BEFS_FS is not set 5.687 +# CONFIG_BEFS_DEBUG is not set 5.688 +# CONFIG_BFS_FS is not set 5.689 +CONFIG_EXT3_FS=y 5.690 +CONFIG_JBD=y 5.691 +# CONFIG_JBD_DEBUG is not set 5.692 +CONFIG_FAT_FS=y 5.693 +CONFIG_MSDOS_FS=y 5.694 +CONFIG_UMSDOS_FS=y 5.695 +CONFIG_VFAT_FS=y 5.696 +# CONFIG_EFS_FS is not set 5.697 +# CONFIG_JFFS_FS is not set 5.698 +# CONFIG_JFFS2_FS is not set 5.699 +# CONFIG_CRAMFS is not set 5.700 +CONFIG_TMPFS=y 5.701 +CONFIG_RAMFS=y 5.702 +CONFIG_ISO9660_FS=y 5.703 +CONFIG_JOLIET=y 5.704 +CONFIG_ZISOFS=y 5.705 +# CONFIG_JFS_FS is not set 5.706 +# CONFIG_JFS_DEBUG is not set 5.707 +# CONFIG_JFS_STATISTICS is not set 5.708 +# CONFIG_MINIX_FS is not set 5.709 +# CONFIG_VXFS_FS is not set 5.710 +# CONFIG_NTFS_FS is not set 5.711 +# CONFIG_NTFS_RW is not set 5.712 +# CONFIG_HPFS_FS is not set 5.713 +CONFIG_PROC_FS=y 5.714 +# CONFIG_DEVFS_FS is not set 5.715 +# CONFIG_DEVFS_MOUNT is not set 5.716 +# CONFIG_DEVFS_DEBUG is not set 5.717 +CONFIG_DEVPTS_FS=y 5.718 +# CONFIG_QNX4FS_FS is not set 5.719 +# CONFIG_QNX4FS_RW is not set 5.720 +# CONFIG_ROMFS_FS is not set 5.721 +CONFIG_EXT2_FS=y 5.722 +# CONFIG_SYSV_FS is not set 5.723 +# CONFIG_UDF_FS is not set 5.724 +# CONFIG_UDF_RW is not set 5.725 +# CONFIG_UFS_FS is not set 5.726 +# CONFIG_UFS_FS_WRITE is not set 5.727 +# CONFIG_XFS_FS is not set 5.728 +# CONFIG_XFS_QUOTA is not set 5.729 +# CONFIG_XFS_RT is not set 5.730 +# CONFIG_XFS_TRACE is not set 5.731 +# CONFIG_XFS_DEBUG is not set 5.732 + 5.733 +# 5.734 +# Network File Systems 5.735 +# 5.736 +# CONFIG_CODA_FS is not set 5.737 +# CONFIG_INTERMEZZO_FS is not set 5.738 +CONFIG_NFS_FS=y 5.739 +CONFIG_NFS_V3=y 5.740 +# CONFIG_NFS_DIRECTIO is not set 5.741 +CONFIG_ROOT_NFS=y 5.742 +CONFIG_NFSD=y 5.743 +CONFIG_NFSD_V3=y 5.744 +# CONFIG_NFSD_TCP is not set 5.745 +CONFIG_SUNRPC=y 5.746 +CONFIG_LOCKD=y 5.747 +CONFIG_LOCKD_V4=y 5.748 +# CONFIG_SMB_FS is not set 5.749 +# CONFIG_NCP_FS is not set 5.750 +# CONFIG_NCPFS_PACKET_SIGNING is not set 5.751 +# CONFIG_NCPFS_IOCTL_LOCKING is not set 5.752 +# CONFIG_NCPFS_STRONG is not set 5.753 +# CONFIG_NCPFS_NFS_NS is not set 5.754 +# CONFIG_NCPFS_OS2_NS is not set 5.755 +# CONFIG_NCPFS_SMALLDOS is not set 5.756 +# CONFIG_NCPFS_NLS is not set 5.757 +# CONFIG_NCPFS_EXTRAS is not set 5.758 +CONFIG_ZISOFS_FS=y 5.759 + 5.760 +# 5.761 +# Partition Types 5.762 +# 5.763 +CONFIG_PARTITION_ADVANCED=y 5.764 +# CONFIG_ACORN_PARTITION is not set 5.765 +# CONFIG_OSF_PARTITION is not set 5.766 +# CONFIG_AMIGA_PARTITION is not set 5.767 +# CONFIG_ATARI_PARTITION is not set 5.768 +# CONFIG_MAC_PARTITION is not set 5.769 +CONFIG_MSDOS_PARTITION=y 5.770 +# CONFIG_BSD_DISKLABEL is not set 5.771 +# CONFIG_MINIX_SUBPARTITION is not set 5.772 +# CONFIG_SOLARIS_X86_PARTITION is not set 5.773 +# CONFIG_UNIXWARE_DISKLABEL is not set 5.774 +# CONFIG_LDM_PARTITION is not set 5.775 +# CONFIG_SGI_PARTITION is not set 5.776 +# CONFIG_ULTRIX_PARTITION is not set 5.777 +# CONFIG_SUN_PARTITION is not set 5.778 +# CONFIG_EFI_PARTITION is not set 5.779 +# CONFIG_SMB_NLS is not set 5.780 +CONFIG_NLS=y 5.781 + 5.782 +# 5.783 +# Native Language Support 5.784 +# 5.785 +CONFIG_NLS_DEFAULT="iso8559-1" 5.786 +# CONFIG_NLS_CODEPAGE_437 is not set 5.787 +# CONFIG_NLS_CODEPAGE_737 is not set 5.788 +# CONFIG_NLS_CODEPAGE_775 is not set 5.789 +# CONFIG_NLS_CODEPAGE_850 is not set 5.790 +# CONFIG_NLS_CODEPAGE_852 is not set 5.791 +# CONFIG_NLS_CODEPAGE_855 is not set 5.792 +# CONFIG_NLS_CODEPAGE_857 is not set 5.793 +# CONFIG_NLS_CODEPAGE_860 is not set 5.794 +# CONFIG_NLS_CODEPAGE_861 is not set 5.795 +# CONFIG_NLS_CODEPAGE_862 is not set 5.796 +# CONFIG_NLS_CODEPAGE_863 is not set 5.797 +# CONFIG_NLS_CODEPAGE_864 is not set 5.798 +# CONFIG_NLS_CODEPAGE_865 is not set 5.799 +# CONFIG_NLS_CODEPAGE_866 is not set 5.800 +# CONFIG_NLS_CODEPAGE_869 is not set 5.801 +# CONFIG_NLS_CODEPAGE_936 is not set 5.802 +# CONFIG_NLS_CODEPAGE_950 is not set 5.803 +# CONFIG_NLS_CODEPAGE_932 is not set 5.804 +# CONFIG_NLS_CODEPAGE_949 is not set 5.805 +# CONFIG_NLS_CODEPAGE_874 is not set 5.806 +# CONFIG_NLS_ISO8859_8 is not set 5.807 +# CONFIG_NLS_CODEPAGE_1250 is not set 5.808 +# CONFIG_NLS_CODEPAGE_1251 is not set 5.809 +CONFIG_NLS_ISO8859_1=y 5.810 +# CONFIG_NLS_ISO8859_2 is not set 5.811 +# CONFIG_NLS_ISO8859_3 is not set 5.812 +# CONFIG_NLS_ISO8859_4 is not set 5.813 +# CONFIG_NLS_ISO8859_5 is not set 5.814 +# CONFIG_NLS_ISO8859_6 is not set 5.815 +# CONFIG_NLS_ISO8859_7 is not set 5.816 +# CONFIG_NLS_ISO8859_9 is not set 5.817 +# CONFIG_NLS_ISO8859_13 is not set 5.818 +# CONFIG_NLS_ISO8859_14 is not set 5.819 +# CONFIG_NLS_ISO8859_15 is not set 5.820 +# CONFIG_NLS_KOI8_R is not set 5.821 +# CONFIG_NLS_KOI8_U is not set 5.822 +# CONFIG_NLS_UTF8 is not set 5.823 + 5.824 +# 5.825 +# Console drivers 5.826 +# 5.827 +CONFIG_XEN_CONSOLE=y 5.828 +CONFIG_VGA_CONSOLE=y 5.829 +CONFIG_DUMMY_CONSOLE=y 5.830 +# CONFIG_VIDEO_SELECT is not set 5.831 +# CONFIG_MDA_CONSOLE is not set 5.832 + 5.833 +# 5.834 +# Frame-buffer support 5.835 +# 5.836 +# CONFIG_FB is not set 5.837 + 5.838 +# 5.839 +# Sound 5.840 +# 5.841 +# CONFIG_SOUND is not set 5.842 + 5.843 +# 5.844 +# USB support 5.845 +# 5.846 +# CONFIG_USB is not set 5.847 + 5.848 +# 5.849 +# Support for USB gadgets 5.850 +# 5.851 +# CONFIG_USB_GADGET is not set 5.852 + 5.853 +# 5.854 +# Bluetooth support 5.855 +# 5.856 +# CONFIG_BLUEZ is not set 5.857 + 5.858 +# 5.859 +# Kernel hacking 5.860 +# 5.861 +CONFIG_DEBUG_KERNEL=y 5.862 +# CONFIG_DEBUG_STACKOVERFLOW is not set 5.863 +# CONFIG_DEBUG_HIGHMEM is not set 5.864 +# CONFIG_DEBUG_SLAB is not set 5.865 +# CONFIG_DEBUG_IOVIRT is not set 5.866 +# CONFIG_MAGIC_SYSRQ is not set 5.867 +# CONFIG_DEBUG_SPINLOCK is not set 5.868 +# CONFIG_DEBUG_BUGVERBOSE is not set 5.869 +CONFIG_KALLSYMS=y 5.870 +# CONFIG_FRAME_POINTER is not set 5.871 +CONFIG_LOG_BUF_SHIFT=0 5.872 + 5.873 +# 5.874 +# Cryptographic options 5.875 +# 5.876 +# CONFIG_CRYPTO is not set 5.877 + 5.878 +# 5.879 +# Library routines 5.880 +# 5.881 +# CONFIG_CRC32 is not set 5.882 +CONFIG_ZLIB_INFLATE=y 5.883 +# CONFIG_ZLIB_DEFLATE is not set 5.884 +# CONFIG_FW_LOADER is not set
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/linux-2.4.26-xen-sparse/arch/xen/defconfig-xen0 Fri Jun 11 15:04:40 2004 +0000 6.3 @@ -0,0 +1,881 @@ 6.4 +# 6.5 +# Automatically generated make config: don't edit 6.6 +# 6.7 +CONFIG_XEN=y 6.8 +CONFIG_X86=y 6.9 +CONFIG_ISA=y 6.10 +# CONFIG_SBUS is not set 6.11 +CONFIG_UID16=y 6.12 + 6.13 +# 6.14 +# Xen 6.15 +# 6.16 +CONFIG_XEN_PRIVILEGED_GUEST=y 6.17 +CONFIG_XEN_PHYSDEV_ACCESS=y 6.18 +CONFIG_NO_IDLE_HZ=y 6.19 + 6.20 +# 6.21 +# Code maturity level options 6.22 +# 6.23 +CONFIG_EXPERIMENTAL=y 6.24 + 6.25 +# 6.26 +# Loadable module support 6.27 +# 6.28 +CONFIG_MODULES=y 6.29 +CONFIG_MODVERSIONS=y 6.30 +CONFIG_KMOD=y 6.31 + 6.32 +# 6.33 +# Processor type and features 6.34 +# 6.35 +CONFIG_M686=y 6.36 +# CONFIG_MPENTIUMIII is not set 6.37 +# CONFIG_MPENTIUM4 is not set 6.38 +# CONFIG_MK7 is not set 6.39 +# CONFIG_MK8 is not set 6.40 +# CONFIG_MVIAC3_2 is not set 6.41 +CONFIG_X86_WP_WORKS_OK=y 6.42 +CONFIG_X86_INVLPG=y 6.43 +CONFIG_X86_CMPXCHG=y 6.44 +CONFIG_X86_XADD=y 6.45 +CONFIG_X86_BSWAP=y 6.46 +CONFIG_X86_POPAD_OK=y 6.47 +# CONFIG_RWSEM_GENERIC_SPINLOCK is not set 6.48 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y 6.49 +CONFIG_X86_GOOD_APIC=y 6.50 +CONFIG_X86_PGE=y 6.51 +CONFIG_X86_USE_PPRO_CHECKSUM=y 6.52 +CONFIG_X86_TSC=y 6.53 +CONFIG_X86_L1_CACHE_SHIFT=5 6.54 +CONFIG_NOHIGHMEM=y 6.55 +# CONFIG_HIGHMEM4G is not set 6.56 +CONFIG_FORCE_MAX_ZONEORDER=12 6.57 + 6.58 +# 6.59 +# General setup 6.60 +# 6.61 +CONFIG_NET=y 6.62 +CONFIG_PCI=y 6.63 +CONFIG_PCI_NAMES=y 6.64 +CONFIG_HOTPLUG=y 6.65 + 6.66 +# 6.67 +# PCMCIA/CardBus support 6.68 +# 6.69 +# CONFIG_PCMCIA is not set 6.70 + 6.71 +# 6.72 +# PCI Hotplug Support 6.73 +# 6.74 +# CONFIG_HOTPLUG_PCI is not set 6.75 +# CONFIG_HOTPLUG_PCI_COMPAQ is not set 6.76 +# CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set 6.77 +CONFIG_SYSVIPC=y 6.78 +# CONFIG_BSD_PROCESS_ACCT is not set 6.79 +CONFIG_SYSCTL=y 6.80 +CONFIG_KCORE_ELF=y 6.81 +# CONFIG_KCORE_AOUT is not set 6.82 +CONFIG_BINFMT_AOUT=y 6.83 +CONFIG_BINFMT_ELF=y 6.84 +# CONFIG_BINFMT_MISC is not set 6.85 +# CONFIG_OOM_KILLER is not set 6.86 + 6.87 +# 6.88 +# Memory Technology Devices (MTD) 6.89 +# 6.90 +# CONFIG_MTD is not set 6.91 + 6.92 +# 6.93 +# Parallel port support 6.94 +# 6.95 +# CONFIG_PARPORT is not set 6.96 + 6.97 +# 6.98 +# Plug and Play configuration 6.99 +# 6.100 +CONFIG_PNP=y 6.101 +# CONFIG_ISAPNP is not set 6.102 + 6.103 +# 6.104 +# Block devices 6.105 +# 6.106 +# CONFIG_BLK_DEV_FD is not set 6.107 +# CONFIG_BLK_DEV_XD is not set 6.108 +# CONFIG_PARIDE is not set 6.109 +# CONFIG_BLK_CPQ_DA is not set 6.110 +# CONFIG_BLK_CPQ_CISS_DA is not set 6.111 +# CONFIG_CISS_SCSI_TAPE is not set 6.112 +# CONFIG_CISS_MONITOR_THREAD is not set 6.113 +# CONFIG_BLK_DEV_DAC960 is not set 6.114 +# CONFIG_BLK_DEV_UMEM is not set 6.115 +CONFIG_BLK_DEV_LOOP=y 6.116 +CONFIG_BLK_DEV_NBD=y 6.117 +CONFIG_BLK_DEV_RAM=y 6.118 +CONFIG_BLK_DEV_RAM_SIZE=4096 6.119 +CONFIG_BLK_DEV_INITRD=y 6.120 +# CONFIG_BLK_STATS is not set 6.121 + 6.122 +# 6.123 +# Multi-device support (RAID and LVM) 6.124 +# 6.125 +# CONFIG_MD is not set 6.126 +# CONFIG_BLK_DEV_MD is not set 6.127 +# CONFIG_MD_LINEAR is not set 6.128 +# CONFIG_MD_RAID0 is not set 6.129 +# CONFIG_MD_RAID1 is not set 6.130 +# CONFIG_MD_RAID5 is not set 6.131 +# CONFIG_MD_MULTIPATH is not set 6.132 +# CONFIG_BLK_DEV_LVM is not set 6.133 + 6.134 +# 6.135 +# Networking options 6.136 +# 6.137 +CONFIG_PACKET=y 6.138 +CONFIG_PACKET_MMAP=y 6.139 +# CONFIG_NETLINK_DEV is not set 6.140 +CONFIG_NETFILTER=y 6.141 +# CONFIG_NETFILTER_DEBUG is not set 6.142 +CONFIG_FILTER=y 6.143 +CONFIG_UNIX=y 6.144 +CONFIG_INET=y 6.145 +# CONFIG_IP_MULTICAST is not set 6.146 +# CONFIG_IP_ADVANCED_ROUTER is not set 6.147 +CONFIG_IP_PNP=y 6.148 +CONFIG_IP_PNP_DHCP=y 6.149 +# CONFIG_IP_PNP_BOOTP is not set 6.150 +# CONFIG_IP_PNP_RARP is not set 6.151 +# CONFIG_NET_IPIP is not set 6.152 +# CONFIG_NET_IPGRE is not set 6.153 +# CONFIG_ARPD is not set 6.154 +# CONFIG_INET_ECN is not set 6.155 +# CONFIG_SYN_COOKIES is not set 6.156 + 6.157 +# 6.158 +# IP: Netfilter Configuration 6.159 +# 6.160 +CONFIG_IP_NF_CONNTRACK=y 6.161 +CONFIG_IP_NF_FTP=y 6.162 +# CONFIG_IP_NF_AMANDA is not set 6.163 +CONFIG_IP_NF_TFTP=y 6.164 +CONFIG_IP_NF_IRC=y 6.165 +# CONFIG_IP_NF_QUEUE is not set 6.166 +CONFIG_IP_NF_IPTABLES=y 6.167 +# CONFIG_IP_NF_MATCH_LIMIT is not set 6.168 +# CONFIG_IP_NF_MATCH_MAC is not set 6.169 +# CONFIG_IP_NF_MATCH_PKTTYPE is not set 6.170 +# CONFIG_IP_NF_MATCH_MARK is not set 6.171 +# CONFIG_IP_NF_MATCH_MULTIPORT is not set 6.172 +# CONFIG_IP_NF_MATCH_TOS is not set 6.173 +# CONFIG_IP_NF_MATCH_RECENT is not set 6.174 +# CONFIG_IP_NF_MATCH_ECN is not set 6.175 +# CONFIG_IP_NF_MATCH_DSCP is not set 6.176 +# CONFIG_IP_NF_MATCH_AH_ESP is not set 6.177 +# CONFIG_IP_NF_MATCH_LENGTH is not set 6.178 +# CONFIG_IP_NF_MATCH_TTL is not set 6.179 +# CONFIG_IP_NF_MATCH_TCPMSS is not set 6.180 +# CONFIG_IP_NF_MATCH_HELPER is not set 6.181 +CONFIG_IP_NF_MATCH_STATE=y 6.182 +CONFIG_IP_NF_MATCH_CONNTRACK=y 6.183 +# CONFIG_IP_NF_MATCH_UNCLEAN is not set 6.184 +# CONFIG_IP_NF_MATCH_OWNER is not set 6.185 +CONFIG_IP_NF_FILTER=y 6.186 +CONFIG_IP_NF_TARGET_REJECT=y 6.187 +# CONFIG_IP_NF_TARGET_MIRROR is not set 6.188 +CONFIG_IP_NF_NAT=y 6.189 +CONFIG_IP_NF_NAT_NEEDED=y 6.190 +CONFIG_IP_NF_TARGET_MASQUERADE=y 6.191 +CONFIG_IP_NF_TARGET_REDIRECT=y 6.192 +# CONFIG_IP_NF_NAT_LOCAL is not set 6.193 +# CONFIG_IP_NF_NAT_SNMP_BASIC is not set 6.194 +CONFIG_IP_NF_NAT_IRC=y 6.195 +CONFIG_IP_NF_NAT_FTP=y 6.196 +CONFIG_IP_NF_NAT_TFTP=y 6.197 +# CONFIG_IP_NF_MANGLE is not set 6.198 +CONFIG_IP_NF_TARGET_LOG=y 6.199 +CONFIG_IP_NF_TARGET_ULOG=y 6.200 +# CONFIG_IP_NF_TARGET_TCPMSS is not set 6.201 +# CONFIG_IP_NF_ARPTABLES is not set 6.202 + 6.203 +# 6.204 +# IP: Virtual Server Configuration 6.205 +# 6.206 +# CONFIG_IP_VS is not set 6.207 +# CONFIG_IPV6 is not set 6.208 +# CONFIG_KHTTPD is not set 6.209 + 6.210 +# 6.211 +# SCTP Configuration (EXPERIMENTAL) 6.212 +# 6.213 +# CONFIG_IP_SCTP is not set 6.214 +# CONFIG_ATM is not set 6.215 +# CONFIG_VLAN_8021Q is not set 6.216 + 6.217 +# 6.218 +# 6.219 +# 6.220 +# CONFIG_IPX is not set 6.221 +# CONFIG_ATALK is not set 6.222 + 6.223 +# 6.224 +# Appletalk devices 6.225 +# 6.226 +# CONFIG_DEV_APPLETALK is not set 6.227 +# CONFIG_DECNET is not set 6.228 +CONFIG_BRIDGE=y 6.229 +# CONFIG_X25 is not set 6.230 +# CONFIG_LAPB is not set 6.231 +# CONFIG_LLC is not set 6.232 +# CONFIG_NET_DIVERT is not set 6.233 +# CONFIG_ECONET is not set 6.234 +# CONFIG_WAN_ROUTER is not set 6.235 +# CONFIG_NET_FASTROUTE is not set 6.236 +# CONFIG_NET_HW_FLOWCONTROL is not set 6.237 + 6.238 +# 6.239 +# QoS and/or fair queueing 6.240 +# 6.241 +# CONFIG_NET_SCHED is not set 6.242 + 6.243 +# 6.244 +# Network testing 6.245 +# 6.246 +# CONFIG_NET_PKTGEN is not set 6.247 + 6.248 +# 6.249 +# ATA/IDE/MFM/RLL support 6.250 +# 6.251 +CONFIG_IDE=y 6.252 + 6.253 +# 6.254 +# IDE, ATA and ATAPI Block devices 6.255 +# 6.256 +CONFIG_BLK_DEV_IDE=y 6.257 + 6.258 +# 6.259 +# Please see Documentation/ide.txt for help/info on IDE drives 6.260 +# 6.261 +# CONFIG_BLK_DEV_HD_IDE is not set 6.262 +# CONFIG_BLK_DEV_HD is not set 6.263 +CONFIG_BLK_DEV_IDEDISK=y 6.264 +CONFIG_IDEDISK_MULTI_MODE=y 6.265 +CONFIG_IDEDISK_STROKE=y 6.266 +# CONFIG_BLK_DEV_IDECS is not set 6.267 +CONFIG_BLK_DEV_IDECD=y 6.268 +CONFIG_BLK_DEV_IDETAPE=y 6.269 +CONFIG_BLK_DEV_IDEFLOPPY=y 6.270 +CONFIG_BLK_DEV_IDESCSI=y 6.271 +CONFIG_IDE_TASK_IOCTL=y 6.272 + 6.273 +# 6.274 +# IDE chipset support/bugfixes 6.275 +# 6.276 +CONFIG_BLK_DEV_CMD640=y 6.277 +CONFIG_BLK_DEV_CMD640_ENHANCED=y 6.278 +# CONFIG_BLK_DEV_ISAPNP is not set 6.279 +CONFIG_BLK_DEV_IDEPCI=y 6.280 +CONFIG_BLK_DEV_GENERIC=y 6.281 +CONFIG_IDEPCI_SHARE_IRQ=y 6.282 +CONFIG_BLK_DEV_IDEDMA_PCI=y 6.283 +CONFIG_BLK_DEV_OFFBOARD=y 6.284 +# CONFIG_BLK_DEV_IDEDMA_FORCED is not set 6.285 +CONFIG_IDEDMA_PCI_AUTO=y 6.286 +# CONFIG_IDEDMA_ONLYDISK is not set 6.287 +CONFIG_BLK_DEV_IDEDMA=y 6.288 +# CONFIG_IDEDMA_PCI_WIP is not set 6.289 +CONFIG_BLK_DEV_ADMA100=y 6.290 +CONFIG_BLK_DEV_AEC62XX=y 6.291 +CONFIG_BLK_DEV_ALI15X3=y 6.292 +CONFIG_WDC_ALI15X3=y 6.293 +CONFIG_BLK_DEV_AMD74XX=y 6.294 +CONFIG_AMD74XX_OVERRIDE=y 6.295 +# CONFIG_BLK_DEV_ATIIXP is not set 6.296 +CONFIG_BLK_DEV_CMD64X=y 6.297 +CONFIG_BLK_DEV_TRIFLEX=y 6.298 +CONFIG_BLK_DEV_CY82C693=y 6.299 +CONFIG_BLK_DEV_CS5530=y 6.300 +CONFIG_BLK_DEV_HPT34X=y 6.301 +# CONFIG_HPT34X_AUTODMA is not set 6.302 +CONFIG_BLK_DEV_HPT366=y 6.303 +CONFIG_BLK_DEV_PIIX=y 6.304 +CONFIG_BLK_DEV_NS87415=y 6.305 +# CONFIG_BLK_DEV_OPTI621 is not set 6.306 +CONFIG_BLK_DEV_PDC202XX_OLD=y 6.307 +CONFIG_PDC202XX_BURST=y 6.308 +CONFIG_BLK_DEV_PDC202XX_NEW=y 6.309 +CONFIG_PDC202XX_FORCE=y 6.310 +CONFIG_BLK_DEV_RZ1000=y 6.311 +CONFIG_BLK_DEV_SC1200=y 6.312 +CONFIG_BLK_DEV_SVWKS=y 6.313 +CONFIG_BLK_DEV_SIIMAGE=y 6.314 +CONFIG_BLK_DEV_SIS5513=y 6.315 +CONFIG_BLK_DEV_SLC90E66=y 6.316 +CONFIG_BLK_DEV_TRM290=y 6.317 +CONFIG_BLK_DEV_VIA82CXXX=y 6.318 +CONFIG_IDE_CHIPSETS=y 6.319 + 6.320 +# 6.321 +# Note: most of these also require special kernel boot parameters 6.322 +# 6.323 +# CONFIG_BLK_DEV_4DRIVES is not set 6.324 +# CONFIG_BLK_DEV_ALI14XX is not set 6.325 +# CONFIG_BLK_DEV_DTC2278 is not set 6.326 +# CONFIG_BLK_DEV_HT6560B is not set 6.327 +# CONFIG_BLK_DEV_PDC4030 is not set 6.328 +# CONFIG_BLK_DEV_QD65XX is not set 6.329 +# CONFIG_BLK_DEV_UMC8672 is not set 6.330 +CONFIG_IDEDMA_AUTO=y 6.331 +# CONFIG_IDEDMA_IVB is not set 6.332 +# CONFIG_DMA_NONPCI is not set 6.333 +CONFIG_BLK_DEV_PDC202XX=y 6.334 +# CONFIG_BLK_DEV_ATARAID is not set 6.335 +# CONFIG_BLK_DEV_ATARAID_PDC is not set 6.336 +# CONFIG_BLK_DEV_ATARAID_HPT is not set 6.337 +# CONFIG_BLK_DEV_ATARAID_MEDLEY is not set 6.338 +# CONFIG_BLK_DEV_ATARAID_SII is not set 6.339 + 6.340 +# 6.341 +# SCSI support 6.342 +# 6.343 +CONFIG_SCSI=y 6.344 + 6.345 +# 6.346 +# SCSI support type (disk, tape, CD-ROM) 6.347 +# 6.348 +CONFIG_BLK_DEV_SD=y 6.349 +CONFIG_SD_EXTRA_DEVS=40 6.350 +# CONFIG_CHR_DEV_ST is not set 6.351 +# CONFIG_CHR_DEV_OSST is not set 6.352 +# CONFIG_BLK_DEV_SR is not set 6.353 +CONFIG_CHR_DEV_SG=y 6.354 + 6.355 +# 6.356 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs 6.357 +# 6.358 +# CONFIG_SCSI_DEBUG_QUEUES is not set 6.359 +# CONFIG_SCSI_MULTI_LUN is not set 6.360 +# CONFIG_SCSI_CONSTANTS is not set 6.361 +# CONFIG_SCSI_LOGGING is not set 6.362 + 6.363 +# 6.364 +# SCSI low-level drivers 6.365 +# 6.366 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set 6.367 +# CONFIG_SCSI_7000FASST is not set 6.368 +# CONFIG_SCSI_ACARD is not set 6.369 +# CONFIG_SCSI_AHA152X is not set 6.370 +# CONFIG_SCSI_AHA1542 is not set 6.371 +# CONFIG_SCSI_AHA1740 is not set 6.372 +CONFIG_SCSI_AACRAID=y 6.373 +# CONFIG_SCSI_AIC7XXX is not set 6.374 +# CONFIG_SCSI_AIC79XX is not set 6.375 +# CONFIG_SCSI_AIC7XXX_OLD is not set 6.376 +# CONFIG_SCSI_DPT_I2O is not set 6.377 +# CONFIG_SCSI_ADVANSYS is not set 6.378 +# CONFIG_SCSI_IN2000 is not set 6.379 +# CONFIG_SCSI_AM53C974 is not set 6.380 +CONFIG_SCSI_MEGARAID=y 6.381 +# CONFIG_SCSI_MEGARAID2 is not set 6.382 +CONFIG_SCSI_BUSLOGIC=y 6.383 +# CONFIG_SCSI_OMIT_FLASHPOINT is not set 6.384 +# CONFIG_SCSI_CPQFCTS is not set 6.385 +# CONFIG_SCSI_DMX3191D is not set 6.386 +# CONFIG_SCSI_DTC3280 is not set 6.387 +# CONFIG_SCSI_EATA is not set 6.388 +# CONFIG_SCSI_EATA_DMA is not set 6.389 +# CONFIG_SCSI_EATA_PIO is not set 6.390 +# CONFIG_SCSI_FUTURE_DOMAIN is not set 6.391 +# CONFIG_SCSI_GDTH is not set 6.392 +# CONFIG_SCSI_GENERIC_NCR5380 is not set 6.393 +# CONFIG_SCSI_IPS is not set 6.394 +# CONFIG_SCSI_INITIO is not set 6.395 +# CONFIG_SCSI_INIA100 is not set 6.396 +# CONFIG_SCSI_NCR53C406A is not set 6.397 +# CONFIG_SCSI_NCR53C7xx is not set 6.398 +# CONFIG_SCSI_SYM53C8XX_2 is not set 6.399 +# CONFIG_SCSI_NCR53C8XX is not set 6.400 +# CONFIG_SCSI_SYM53C8XX is not set 6.401 +# CONFIG_SCSI_PAS16 is not set 6.402 +# CONFIG_SCSI_PCI2000 is not set 6.403 +# CONFIG_SCSI_PCI2220I is not set 6.404 +# CONFIG_SCSI_PSI240I is not set 6.405 +# CONFIG_SCSI_QLOGIC_FAS is not set 6.406 +# CONFIG_SCSI_QLOGIC_ISP is not set 6.407 +# CONFIG_SCSI_QLOGIC_FC is not set 6.408 +# CONFIG_SCSI_QLOGIC_1280 is not set 6.409 +# CONFIG_SCSI_SEAGATE is not set 6.410 +# CONFIG_SCSI_SIM710 is not set 6.411 +# CONFIG_SCSI_SYM53C416 is not set 6.412 +# CONFIG_SCSI_DC390T is not set 6.413 +# CONFIG_SCSI_T128 is not set 6.414 +# CONFIG_SCSI_U14_34F is not set 6.415 +# CONFIG_SCSI_ULTRASTOR is not set 6.416 +# CONFIG_SCSI_NSP32 is not set 6.417 +# CONFIG_SCSI_DEBUG is not set 6.418 + 6.419 +# 6.420 +# Fusion MPT device support 6.421 +# 6.422 +# CONFIG_FUSION is not set 6.423 +# CONFIG_FUSION_BOOT is not set 6.424 +# CONFIG_FUSION_ISENSE is not set 6.425 +# CONFIG_FUSION_CTL is not set 6.426 +# CONFIG_FUSION_LAN is not set 6.427 + 6.428 +# 6.429 +# IEEE 1394 (FireWire) support (EXPERIMENTAL) 6.430 +# 6.431 +# CONFIG_IEEE1394 is not set 6.432 + 6.433 +# 6.434 +# I2O device support 6.435 +# 6.436 +# CONFIG_I2O is not set 6.437 +# CONFIG_I2O_PCI is not set 6.438 +# CONFIG_I2O_BLOCK is not set 6.439 +# CONFIG_I2O_LAN is not set 6.440 +# CONFIG_I2O_SCSI is not set 6.441 +# CONFIG_I2O_PROC is not set 6.442 + 6.443 +# 6.444 +# Network device support 6.445 +# 6.446 +CONFIG_NETDEVICES=y 6.447 + 6.448 +# 6.449 +# ARCnet devices 6.450 +# 6.451 +# CONFIG_ARCNET is not set 6.452 +# CONFIG_DUMMY is not set 6.453 +# CONFIG_BONDING is not set 6.454 +# CONFIG_EQUALIZER is not set 6.455 +# CONFIG_TUN is not set 6.456 +# CONFIG_ETHERTAP is not set 6.457 + 6.458 +# 6.459 +# Ethernet (10 or 100Mbit) 6.460 +# 6.461 +CONFIG_NET_ETHERNET=y 6.462 +# CONFIG_SUNLANCE is not set 6.463 +# CONFIG_HAPPYMEAL is not set 6.464 +# CONFIG_SUNBMAC is not set 6.465 +# CONFIG_SUNQE is not set 6.466 +# CONFIG_SUNGEM is not set 6.467 +CONFIG_NET_VENDOR_3COM=y 6.468 +# CONFIG_EL1 is not set 6.469 +# CONFIG_EL2 is not set 6.470 +# CONFIG_ELPLUS is not set 6.471 +# CONFIG_EL16 is not set 6.472 +# CONFIG_EL3 is not set 6.473 +# CONFIG_3C515 is not set 6.474 +# CONFIG_ELMC is not set 6.475 +# CONFIG_ELMC_II is not set 6.476 +CONFIG_VORTEX=y 6.477 +# CONFIG_TYPHOON is not set 6.478 +# CONFIG_LANCE is not set 6.479 +# CONFIG_NET_VENDOR_SMC is not set 6.480 +# CONFIG_NET_VENDOR_RACAL is not set 6.481 +# CONFIG_AT1700 is not set 6.482 +# CONFIG_DEPCA is not set 6.483 +# CONFIG_HP100 is not set 6.484 +# CONFIG_NET_ISA is not set 6.485 +CONFIG_NET_PCI=y 6.486 +CONFIG_PCNET32=y 6.487 +# CONFIG_AMD8111_ETH is not set 6.488 +# CONFIG_ADAPTEC_STARFIRE is not set 6.489 +# CONFIG_AC3200 is not set 6.490 +# CONFIG_APRICOT is not set 6.491 +# CONFIG_B44 is not set 6.492 +# CONFIG_CS89x0 is not set 6.493 +# CONFIG_TULIP is not set 6.494 +# CONFIG_DE4X5 is not set 6.495 +# CONFIG_DGRS is not set 6.496 +# CONFIG_DM9102 is not set 6.497 +# CONFIG_EEPRO100 is not set 6.498 +# CONFIG_EEPRO100_PIO is not set 6.499 +# CONFIG_E100 is not set 6.500 +# CONFIG_LNE390 is not set 6.501 +# CONFIG_FEALNX is not set 6.502 +# CONFIG_NATSEMI is not set 6.503 +# CONFIG_NE2K_PCI is not set 6.504 +# CONFIG_FORCEDETH is not set 6.505 +# CONFIG_NE3210 is not set 6.506 +# CONFIG_ES3210 is not set 6.507 +# CONFIG_8139CP is not set 6.508 +# CONFIG_8139TOO is not set 6.509 +# CONFIG_8139TOO_PIO is not set 6.510 +# CONFIG_8139TOO_TUNE_TWISTER is not set 6.511 +# CONFIG_8139TOO_8129 is not set 6.512 +# CONFIG_8139_OLD_RX_RESET is not set 6.513 +# CONFIG_SIS900 is not set 6.514 +# CONFIG_EPIC100 is not set 6.515 +# CONFIG_SUNDANCE is not set 6.516 +# CONFIG_SUNDANCE_MMIO is not set 6.517 +# CONFIG_TLAN is not set 6.518 +# CONFIG_VIA_RHINE is not set 6.519 +# CONFIG_VIA_RHINE_MMIO is not set 6.520 +# CONFIG_WINBOND_840 is not set 6.521 +# CONFIG_NET_POCKET is not set 6.522 + 6.523 +# 6.524 +# Ethernet (1000 Mbit) 6.525 +# 6.526 +# CONFIG_ACENIC is not set 6.527 +# CONFIG_DL2K is not set 6.528 +CONFIG_E1000=y 6.529 +# CONFIG_E1000_NAPI is not set 6.530 +# CONFIG_MYRI_SBUS is not set 6.531 +# CONFIG_NS83820 is not set 6.532 +# CONFIG_HAMACHI is not set 6.533 +# CONFIG_YELLOWFIN is not set 6.534 +# CONFIG_R8169 is not set 6.535 +# CONFIG_SK98LIN is not set 6.536 +CONFIG_TIGON3=y 6.537 +# CONFIG_FDDI is not set 6.538 +# CONFIG_HIPPI is not set 6.539 +# CONFIG_PLIP is not set 6.540 +# CONFIG_PPP is not set 6.541 +# CONFIG_SLIP is not set 6.542 + 6.543 +# 6.544 +# Wireless LAN (non-hamradio) 6.545 +# 6.546 +# CONFIG_NET_RADIO is not set 6.547 + 6.548 +# 6.549 +# Token Ring devices 6.550 +# 6.551 +# CONFIG_TR is not set 6.552 +# CONFIG_NET_FC is not set 6.553 +# CONFIG_RCPCI is not set 6.554 +# CONFIG_SHAPER is not set 6.555 + 6.556 +# 6.557 +# Wan interfaces 6.558 +# 6.559 +# CONFIG_WAN is not set 6.560 + 6.561 +# 6.562 +# Amateur Radio support 6.563 +# 6.564 +# CONFIG_HAMRADIO is not set 6.565 + 6.566 +# 6.567 +# IrDA (infrared) support 6.568 +# 6.569 +# CONFIG_IRDA is not set 6.570 + 6.571 +# 6.572 +# ISDN subsystem 6.573 +# 6.574 +# CONFIG_ISDN is not set 6.575 + 6.576 +# 6.577 +# Old CD-ROM drivers (not SCSI, not IDE) 6.578 +# 6.579 +# CONFIG_CD_NO_IDESCSI is not set 6.580 + 6.581 +# 6.582 +# Input core support 6.583 +# 6.584 +# CONFIG_INPUT is not set 6.585 +# CONFIG_INPUT_KEYBDEV is not set 6.586 +# CONFIG_INPUT_MOUSEDEV is not set 6.587 +# CONFIG_INPUT_JOYDEV is not set 6.588 +# CONFIG_INPUT_EVDEV is not set 6.589 +# CONFIG_INPUT_UINPUT is not set 6.590 + 6.591 +# 6.592 +# Character devices 6.593 +# 6.594 +CONFIG_VT=y 6.595 +CONFIG_VT_CONSOLE=y 6.596 +# CONFIG_SERIAL is not set 6.597 +# CONFIG_SERIAL_EXTENDED is not set 6.598 +# CONFIG_SERIAL_NONSTANDARD is not set 6.599 +CONFIG_UNIX98_PTYS=y 6.600 +CONFIG_UNIX98_PTY_COUNT=256 6.601 + 6.602 +# 6.603 +# I2C support 6.604 +# 6.605 +# CONFIG_I2C is not set 6.606 + 6.607 +# 6.608 +# Mice 6.609 +# 6.610 +# CONFIG_BUSMOUSE is not set 6.611 +CONFIG_MOUSE=y 6.612 +CONFIG_PSMOUSE=y 6.613 +# CONFIG_82C710_MOUSE is not set 6.614 +# CONFIG_PC110_PAD is not set 6.615 +# CONFIG_MK712_MOUSE is not set 6.616 + 6.617 +# 6.618 +# Joysticks 6.619 +# 6.620 +# CONFIG_INPUT_GAMEPORT is not set 6.621 + 6.622 +# 6.623 +# Input core support is needed for gameports 6.624 +# 6.625 + 6.626 +# 6.627 +# Input core support is needed for joysticks 6.628 +# 6.629 +# CONFIG_QIC02_TAPE is not set 6.630 +# CONFIG_IPMI_HANDLER is not set 6.631 +# CONFIG_IPMI_PANIC_EVENT is not set 6.632 +# CONFIG_IPMI_DEVICE_INTERFACE is not set 6.633 +# CONFIG_IPMI_KCS is not set 6.634 +# CONFIG_IPMI_WATCHDOG is not set 6.635 + 6.636 +# 6.637 +# Watchdog Cards 6.638 +# 6.639 +# CONFIG_WATCHDOG is not set 6.640 +# CONFIG_SCx200 is not set 6.641 +# CONFIG_SCx200_GPIO is not set 6.642 +# CONFIG_AMD_RNG is not set 6.643 +# CONFIG_INTEL_RNG is not set 6.644 +# CONFIG_HW_RANDOM is not set 6.645 +# CONFIG_AMD_PM768 is not set 6.646 +# CONFIG_NVRAM is not set 6.647 +# CONFIG_RTC is not set 6.648 +# CONFIG_DTLK is not set 6.649 +# CONFIG_R3964 is not set 6.650 +# CONFIG_APPLICOM is not set 6.651 +# CONFIG_SONYPI is not set 6.652 + 6.653 +# 6.654 +# Ftape, the floppy tape device driver 6.655 +# 6.656 +# CONFIG_FTAPE is not set 6.657 +# CONFIG_AGP is not set 6.658 + 6.659 +# 6.660 +# Direct Rendering Manager (XFree86 DRI support) 6.661 +# 6.662 +# CONFIG_DRM is not set 6.663 +# CONFIG_MWAVE is not set 6.664 +# CONFIG_OBMOUSE is not set 6.665 + 6.666 +# 6.667 +# Multimedia devices 6.668 +# 6.669 +# CONFIG_VIDEO_DEV is not set 6.670 + 6.671 +# 6.672 +# File systems 6.673 +# 6.674 +# CONFIG_QUOTA is not set 6.675 +# CONFIG_QFMT_V2 is not set 6.676 +CONFIG_AUTOFS_FS=y 6.677 +CONFIG_AUTOFS4_FS=y 6.678 +# CONFIG_REISERFS_FS is not set 6.679 +# CONFIG_REISERFS_CHECK is not set 6.680 +# CONFIG_REISERFS_PROC_INFO is not set 6.681 +# CONFIG_ADFS_FS is not set 6.682 +# CONFIG_ADFS_FS_RW is not set 6.683 +# CONFIG_AFFS_FS is not set 6.684 +# CONFIG_HFS_FS is not set 6.685 +# CONFIG_HFSPLUS_FS is not set 6.686 +# CONFIG_BEFS_FS is not set 6.687 +# CONFIG_BEFS_DEBUG is not set 6.688 +# CONFIG_BFS_FS is not set 6.689 +CONFIG_EXT3_FS=y 6.690 +CONFIG_JBD=y 6.691 +# CONFIG_JBD_DEBUG is not set 6.692 +CONFIG_FAT_FS=y 6.693 +CONFIG_MSDOS_FS=y 6.694 +CONFIG_UMSDOS_FS=y 6.695 +CONFIG_VFAT_FS=y 6.696 +# CONFIG_EFS_FS is not set 6.697 +# CONFIG_JFFS_FS is not set 6.698 +# CONFIG_JFFS2_FS is not set 6.699 +# CONFIG_CRAMFS is not set 6.700 +CONFIG_TMPFS=y 6.701 +CONFIG_RAMFS=y 6.702 +CONFIG_ISO9660_FS=y 6.703 +CONFIG_JOLIET=y 6.704 +CONFIG_ZISOFS=y 6.705 +# CONFIG_JFS_FS is not set 6.706 +# CONFIG_JFS_DEBUG is not set 6.707 +# CONFIG_JFS_STATISTICS is not set 6.708 +# CONFIG_MINIX_FS is not set 6.709 +# CONFIG_VXFS_FS is not set 6.710 +# CONFIG_NTFS_FS is not set 6.711 +# CONFIG_NTFS_RW is not set 6.712 +# CONFIG_HPFS_FS is not set 6.713 +CONFIG_PROC_FS=y 6.714 +# CONFIG_DEVFS_FS is not set 6.715 +# CONFIG_DEVFS_MOUNT is not set 6.716 +# CONFIG_DEVFS_DEBUG is not set 6.717 +CONFIG_DEVPTS_FS=y 6.718 +# CONFIG_QNX4FS_FS is not set 6.719 +# CONFIG_QNX4FS_RW is not set 6.720 +# CONFIG_ROMFS_FS is not set 6.721 +CONFIG_EXT2_FS=y 6.722 +# CONFIG_SYSV_FS is not set 6.723 +# CONFIG_UDF_FS is not set 6.724 +# CONFIG_UDF_RW is not set 6.725 +# CONFIG_UFS_FS is not set 6.726 +# CONFIG_UFS_FS_WRITE is not set 6.727 +# CONFIG_XFS_FS is not set 6.728 +# CONFIG_XFS_QUOTA is not set 6.729 +# CONFIG_XFS_RT is not set 6.730 +# CONFIG_XFS_TRACE is not set 6.731 +# CONFIG_XFS_DEBUG is not set 6.732 + 6.733 +# 6.734 +# Network File Systems 6.735 +# 6.736 +# CONFIG_CODA_FS is not set 6.737 +# CONFIG_INTERMEZZO_FS is not set 6.738 +CONFIG_NFS_FS=y 6.739 +CONFIG_NFS_V3=y 6.740 +# CONFIG_NFS_DIRECTIO is not set 6.741 +CONFIG_ROOT_NFS=y 6.742 +CONFIG_NFSD=y 6.743 +CONFIG_NFSD_V3=y 6.744 +# CONFIG_NFSD_TCP is not set 6.745 +CONFIG_SUNRPC=y 6.746 +CONFIG_LOCKD=y 6.747 +CONFIG_LOCKD_V4=y 6.748 +# CONFIG_SMB_FS is not set 6.749 +# CONFIG_NCP_FS is not set 6.750 +# CONFIG_NCPFS_PACKET_SIGNING is not set 6.751 +# CONFIG_NCPFS_IOCTL_LOCKING is not set 6.752 +# CONFIG_NCPFS_STRONG is not set 6.753 +# CONFIG_NCPFS_NFS_NS is not set 6.754 +# CONFIG_NCPFS_OS2_NS is not set 6.755 +# CONFIG_NCPFS_SMALLDOS is not set 6.756 +# CONFIG_NCPFS_NLS is not set 6.757 +# CONFIG_NCPFS_EXTRAS is not set 6.758 +CONFIG_ZISOFS_FS=y 6.759 + 6.760 +# 6.761 +# Partition Types 6.762 +# 6.763 +CONFIG_PARTITION_ADVANCED=y 6.764 +# CONFIG_ACORN_PARTITION is not set 6.765 +# CONFIG_OSF_PARTITION is not set 6.766 +# CONFIG_AMIGA_PARTITION is not set 6.767 +# CONFIG_ATARI_PARTITION is not set 6.768 +# CONFIG_MAC_PARTITION is not set 6.769 +CONFIG_MSDOS_PARTITION=y 6.770 +# CONFIG_BSD_DISKLABEL is not set 6.771 +# CONFIG_MINIX_SUBPARTITION is not set 6.772 +# CONFIG_SOLARIS_X86_PARTITION is not set 6.773 +# CONFIG_UNIXWARE_DISKLABEL is not set 6.774 +# CONFIG_LDM_PARTITION is not set 6.775 +# CONFIG_SGI_PARTITION is not set 6.776 +# CONFIG_ULTRIX_PARTITION is not set 6.777 +# CONFIG_SUN_PARTITION is not set 6.778 +# CONFIG_EFI_PARTITION is not set 6.779 +# CONFIG_SMB_NLS is not set 6.780 +CONFIG_NLS=y 6.781 + 6.782 +# 6.783 +# Native Language Support 6.784 +# 6.785 +CONFIG_NLS_DEFAULT="iso8559-1" 6.786 +# CONFIG_NLS_CODEPAGE_437 is not set 6.787 +# CONFIG_NLS_CODEPAGE_737 is not set 6.788 +# CONFIG_NLS_CODEPAGE_775 is not set 6.789 +# CONFIG_NLS_CODEPAGE_850 is not set 6.790 +# CONFIG_NLS_CODEPAGE_852 is not set 6.791 +# CONFIG_NLS_CODEPAGE_855 is not set 6.792 +# CONFIG_NLS_CODEPAGE_857 is not set 6.793 +# CONFIG_NLS_CODEPAGE_860 is not set 6.794 +# CONFIG_NLS_CODEPAGE_861 is not set 6.795 +# CONFIG_NLS_CODEPAGE_862 is not set 6.796 +# CONFIG_NLS_CODEPAGE_863 is not set 6.797 +# CONFIG_NLS_CODEPAGE_864 is not set 6.798 +# CONFIG_NLS_CODEPAGE_865 is not set 6.799 +# CONFIG_NLS_CODEPAGE_866 is not set 6.800 +# CONFIG_NLS_CODEPAGE_869 is not set 6.801 +# CONFIG_NLS_CODEPAGE_936 is not set 6.802 +# CONFIG_NLS_CODEPAGE_950 is not set 6.803 +# CONFIG_NLS_CODEPAGE_932 is not set 6.804 +# CONFIG_NLS_CODEPAGE_949 is not set 6.805 +# CONFIG_NLS_CODEPAGE_874 is not set 6.806 +# CONFIG_NLS_ISO8859_8 is not set 6.807 +# CONFIG_NLS_CODEPAGE_1250 is not set 6.808 +# CONFIG_NLS_CODEPAGE_1251 is not set 6.809 +CONFIG_NLS_ISO8859_1=y 6.810 +# CONFIG_NLS_ISO8859_2 is not set 6.811 +# CONFIG_NLS_ISO8859_3 is not set 6.812 +# CONFIG_NLS_ISO8859_4 is not set 6.813 +# CONFIG_NLS_ISO8859_5 is not set 6.814 +# CONFIG_NLS_ISO8859_6 is not set 6.815 +# CONFIG_NLS_ISO8859_7 is not set 6.816 +# CONFIG_NLS_ISO8859_9 is not set 6.817 +# CONFIG_NLS_ISO8859_13 is not set 6.818 +# CONFIG_NLS_ISO8859_14 is not set 6.819 +# CONFIG_NLS_ISO8859_15 is not set 6.820 +# CONFIG_NLS_KOI8_R is not set 6.821 +# CONFIG_NLS_KOI8_U is not set 6.822 +# CONFIG_NLS_UTF8 is not set 6.823 + 6.824 +# 6.825 +# Console drivers 6.826 +# 6.827 +CONFIG_XEN_CONSOLE=y 6.828 +CONFIG_VGA_CONSOLE=y 6.829 +CONFIG_DUMMY_CONSOLE=y 6.830 +# CONFIG_VIDEO_SELECT is not set 6.831 +# CONFIG_MDA_CONSOLE is not set 6.832 + 6.833 +# 6.834 +# Frame-buffer support 6.835 +# 6.836 +# CONFIG_FB is not set 6.837 + 6.838 +# 6.839 +# Sound 6.840 +# 6.841 +# CONFIG_SOUND is not set 6.842 + 6.843 +# 6.844 +# USB support 6.845 +# 6.846 +# CONFIG_USB is not set 6.847 + 6.848 +# 6.849 +# Support for USB gadgets 6.850 +# 6.851 +# CONFIG_USB_GADGET is not set 6.852 + 6.853 +# 6.854 +# Bluetooth support 6.855 +# 6.856 +# CONFIG_BLUEZ is not set 6.857 + 6.858 +# 6.859 +# Kernel hacking 6.860 +# 6.861 +CONFIG_DEBUG_KERNEL=y 6.862 +# CONFIG_DEBUG_STACKOVERFLOW is not set 6.863 +# CONFIG_DEBUG_HIGHMEM is not set 6.864 +# CONFIG_DEBUG_SLAB is not set 6.865 +# CONFIG_DEBUG_IOVIRT is not set 6.866 +# CONFIG_MAGIC_SYSRQ is not set 6.867 +# CONFIG_DEBUG_SPINLOCK is not set 6.868 +# CONFIG_DEBUG_BUGVERBOSE is not set 6.869 +CONFIG_KALLSYMS=y 6.870 +# CONFIG_FRAME_POINTER is not set 6.871 +CONFIG_LOG_BUF_SHIFT=0 6.872 + 6.873 +# 6.874 +# Cryptographic options 6.875 +# 6.876 +# CONFIG_CRYPTO is not set 6.877 + 6.878 +# 6.879 +# Library routines 6.880 +# 6.881 +# CONFIG_CRC32 is not set 6.882 +CONFIG_ZLIB_INFLATE=y 6.883 +# CONFIG_ZLIB_DEFLATE is not set 6.884 +# CONFIG_FW_LOADER is not set
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/linux-2.4.26-xen-sparse/arch/xen/defconfig-xenU Fri Jun 11 15:04:40 2004 +0000 7.3 @@ -0,0 +1,526 @@ 7.4 +# 7.5 +# Automatically generated make config: don't edit 7.6 +# 7.7 +CONFIG_XEN=y 7.8 +CONFIG_X86=y 7.9 +CONFIG_ISA=y 7.10 +# CONFIG_SBUS is not set 7.11 +CONFIG_UID16=y 7.12 + 7.13 +# 7.14 +# Xen 7.15 +# 7.16 +CONFIG_XEN_PRIVILEGED_GUEST=y 7.17 +# CONFIG_XEN_PHYSDEV_ACCESS is not set 7.18 +CONFIG_NO_IDLE_HZ=y 7.19 + 7.20 +# 7.21 +# Code maturity level options 7.22 +# 7.23 +# CONFIG_EXPERIMENTAL is not set 7.24 + 7.25 +# 7.26 +# Loadable module support 7.27 +# 7.28 +CONFIG_MODULES=y 7.29 +CONFIG_MODVERSIONS=y 7.30 +CONFIG_KMOD=y 7.31 + 7.32 +# 7.33 +# Processor type and features 7.34 +# 7.35 +CONFIG_M686=y 7.36 +# CONFIG_MPENTIUMIII is not set 7.37 +# CONFIG_MPENTIUM4 is not set 7.38 +# CONFIG_MK7 is not set 7.39 +# CONFIG_MK8 is not set 7.40 +# CONFIG_MVIAC3_2 is not set 7.41 +CONFIG_X86_WP_WORKS_OK=y 7.42 +CONFIG_X86_INVLPG=y 7.43 +CONFIG_X86_CMPXCHG=y 7.44 +CONFIG_X86_XADD=y 7.45 +CONFIG_X86_BSWAP=y 7.46 +CONFIG_X86_POPAD_OK=y 7.47 +# CONFIG_RWSEM_GENERIC_SPINLOCK is not set 7.48 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y 7.49 +CONFIG_X86_GOOD_APIC=y 7.50 +CONFIG_X86_PGE=y 7.51 +CONFIG_X86_USE_PPRO_CHECKSUM=y 7.52 +CONFIG_X86_TSC=y 7.53 +CONFIG_X86_L1_CACHE_SHIFT=5 7.54 +CONFIG_NOHIGHMEM=y 7.55 +# CONFIG_HIGHMEM4G is not set 7.56 +CONFIG_FORCE_MAX_ZONEORDER=12 7.57 + 7.58 +# 7.59 +# General setup 7.60 +# 7.61 +CONFIG_NET=y 7.62 +CONFIG_SYSVIPC=y 7.63 +# CONFIG_BSD_PROCESS_ACCT is not set 7.64 +CONFIG_SYSCTL=y 7.65 +CONFIG_KCORE_ELF=y 7.66 +# CONFIG_KCORE_AOUT is not set 7.67 +CONFIG_BINFMT_AOUT=y 7.68 +CONFIG_BINFMT_ELF=y 7.69 +# CONFIG_BINFMT_MISC is not set 7.70 +# CONFIG_OOM_KILLER is not set 7.71 + 7.72 +# 7.73 +# Networking options 7.74 +# 7.75 +CONFIG_PACKET=y 7.76 +CONFIG_PACKET_MMAP=y 7.77 +# CONFIG_NETLINK_DEV is not set 7.78 +CONFIG_NETFILTER=y 7.79 +# CONFIG_NETFILTER_DEBUG is not set 7.80 +CONFIG_FILTER=y 7.81 +CONFIG_UNIX=y 7.82 +CONFIG_INET=y 7.83 +# CONFIG_IP_MULTICAST is not set 7.84 +# CONFIG_IP_ADVANCED_ROUTER is not set 7.85 +CONFIG_IP_PNP=y 7.86 +CONFIG_IP_PNP_DHCP=y 7.87 +# CONFIG_IP_PNP_BOOTP is not set 7.88 +# CONFIG_IP_PNP_RARP is not set 7.89 +# CONFIG_NET_IPIP is not set 7.90 +# CONFIG_NET_IPGRE is not set 7.91 +# CONFIG_INET_ECN is not set 7.92 +# CONFIG_SYN_COOKIES is not set 7.93 + 7.94 +# 7.95 +# IP: Netfilter Configuration 7.96 +# 7.97 +CONFIG_IP_NF_CONNTRACK=y 7.98 +CONFIG_IP_NF_FTP=y 7.99 +# CONFIG_IP_NF_AMANDA is not set 7.100 +CONFIG_IP_NF_TFTP=y 7.101 +CONFIG_IP_NF_IRC=y 7.102 +CONFIG_IP_NF_IPTABLES=y 7.103 +# CONFIG_IP_NF_MATCH_LIMIT is not set 7.104 +# CONFIG_IP_NF_MATCH_MAC is not set 7.105 +# CONFIG_IP_NF_MATCH_PKTTYPE is not set 7.106 +# CONFIG_IP_NF_MATCH_MARK is not set 7.107 +# CONFIG_IP_NF_MATCH_MULTIPORT is not set 7.108 +# CONFIG_IP_NF_MATCH_TOS is not set 7.109 +# CONFIG_IP_NF_MATCH_RECENT is not set 7.110 +# CONFIG_IP_NF_MATCH_ECN is not set 7.111 +# CONFIG_IP_NF_MATCH_DSCP is not set 7.112 +# CONFIG_IP_NF_MATCH_AH_ESP is not set 7.113 +# CONFIG_IP_NF_MATCH_LENGTH is not set 7.114 +# CONFIG_IP_NF_MATCH_TTL is not set 7.115 +# CONFIG_IP_NF_MATCH_TCPMSS is not set 7.116 +# CONFIG_IP_NF_MATCH_HELPER is not set 7.117 +CONFIG_IP_NF_MATCH_STATE=y 7.118 +CONFIG_IP_NF_MATCH_CONNTRACK=y 7.119 +CONFIG_IP_NF_FILTER=y 7.120 +CONFIG_IP_NF_TARGET_REJECT=y 7.121 +CONFIG_IP_NF_NAT=y 7.122 +CONFIG_IP_NF_NAT_NEEDED=y 7.123 +CONFIG_IP_NF_TARGET_MASQUERADE=y 7.124 +CONFIG_IP_NF_TARGET_REDIRECT=y 7.125 +# CONFIG_IP_NF_NAT_LOCAL is not set 7.126 +CONFIG_IP_NF_NAT_IRC=y 7.127 +CONFIG_IP_NF_NAT_FTP=y 7.128 +CONFIG_IP_NF_NAT_TFTP=y 7.129 +# CONFIG_IP_NF_MANGLE is not set 7.130 +CONFIG_IP_NF_TARGET_LOG=y 7.131 +CONFIG_IP_NF_TARGET_ULOG=y 7.132 +# CONFIG_IP_NF_TARGET_TCPMSS is not set 7.133 +# CONFIG_IP_NF_ARPTABLES is not set 7.134 + 7.135 +# 7.136 +# IP: Virtual Server Configuration 7.137 +# 7.138 +# CONFIG_IP_VS is not set 7.139 +# CONFIG_VLAN_8021Q is not set 7.140 + 7.141 +# 7.142 +# 7.143 +# 7.144 +# CONFIG_IPX is not set 7.145 +# CONFIG_ATALK is not set 7.146 + 7.147 +# 7.148 +# Appletalk devices 7.149 +# 7.150 +# CONFIG_DEV_APPLETALK is not set 7.151 +# CONFIG_DECNET is not set 7.152 +# CONFIG_BRIDGE is not set 7.153 + 7.154 +# 7.155 +# QoS and/or fair queueing 7.156 +# 7.157 +# CONFIG_NET_SCHED is not set 7.158 + 7.159 +# 7.160 +# Network testing 7.161 +# 7.162 +# CONFIG_NET_PKTGEN is not set 7.163 +CONFIG_NETDEVICES=y 7.164 + 7.165 +# 7.166 +# SCSI support 7.167 +# 7.168 +CONFIG_SCSI=y 7.169 + 7.170 +# 7.171 +# SCSI support type (disk, tape, CD-ROM) 7.172 +# 7.173 +CONFIG_BLK_DEV_SD=y 7.174 +CONFIG_SD_EXTRA_DEVS=40 7.175 +# CONFIG_CHR_DEV_ST is not set 7.176 +# CONFIG_CHR_DEV_OSST is not set 7.177 +# CONFIG_BLK_DEV_SR is not set 7.178 +# CONFIG_CHR_DEV_SG is not set 7.179 + 7.180 +# 7.181 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs 7.182 +# 7.183 +# CONFIG_SCSI_DEBUG_QUEUES is not set 7.184 +# CONFIG_SCSI_MULTI_LUN is not set 7.185 +# CONFIG_SCSI_CONSTANTS is not set 7.186 +# CONFIG_SCSI_LOGGING is not set 7.187 + 7.188 +# 7.189 +# SCSI low-level drivers 7.190 +# 7.191 +# CONFIG_SCSI_7000FASST is not set 7.192 +# CONFIG_SCSI_ACARD is not set 7.193 +# CONFIG_SCSI_AHA152X is not set 7.194 +# CONFIG_SCSI_AHA1542 is not set 7.195 +# CONFIG_SCSI_AHA1740 is not set 7.196 +# CONFIG_SCSI_AIC7XXX is not set 7.197 +# CONFIG_SCSI_AIC79XX is not set 7.198 +# CONFIG_SCSI_AIC7XXX_OLD is not set 7.199 +# CONFIG_SCSI_DPT_I2O is not set 7.200 +# CONFIG_SCSI_ADVANSYS is not set 7.201 +# CONFIG_SCSI_IN2000 is not set 7.202 +# CONFIG_SCSI_AM53C974 is not set 7.203 +# CONFIG_SCSI_MEGARAID is not set 7.204 +# CONFIG_SCSI_MEGARAID2 is not set 7.205 +# CONFIG_SCSI_BUSLOGIC is not set 7.206 +# CONFIG_SCSI_DMX3191D is not set 7.207 +# CONFIG_SCSI_DTC3280 is not set 7.208 +# CONFIG_SCSI_EATA is not set 7.209 +# CONFIG_SCSI_EATA_DMA is not set 7.210 +# CONFIG_SCSI_EATA_PIO is not set 7.211 +# CONFIG_SCSI_FUTURE_DOMAIN is not set 7.212 +# CONFIG_SCSI_GDTH is not set 7.213 +# CONFIG_SCSI_GENERIC_NCR5380 is not set 7.214 +# CONFIG_SCSI_IPS is not set 7.215 +# CONFIG_SCSI_INITIO is not set 7.216 +# CONFIG_SCSI_INIA100 is not set 7.217 +# CONFIG_SCSI_PPA is not set 7.218 +# CONFIG_SCSI_IMM is not set 7.219 +# CONFIG_SCSI_NCR53C406A is not set 7.220 +# CONFIG_SCSI_NCR53C7xx is not set 7.221 +# CONFIG_SCSI_PAS16 is not set 7.222 +# CONFIG_SCSI_PCI2000 is not set 7.223 +# CONFIG_SCSI_PCI2220I is not set 7.224 +# CONFIG_SCSI_PSI240I is not set 7.225 +# CONFIG_SCSI_QLOGIC_FAS is not set 7.226 +# CONFIG_SCSI_SEAGATE is not set 7.227 +# CONFIG_SCSI_SIM710 is not set 7.228 +# CONFIG_SCSI_SYM53C416 is not set 7.229 +# CONFIG_SCSI_T128 is not set 7.230 +# CONFIG_SCSI_U14_34F is not set 7.231 +# CONFIG_SCSI_ULTRASTOR is not set 7.232 +# CONFIG_SCSI_NSP32 is not set 7.233 + 7.234 +# 7.235 +# Block devices 7.236 +# 7.237 +CONFIG_BLK_DEV_LOOP=y 7.238 +CONFIG_BLK_DEV_NBD=y 7.239 +CONFIG_BLK_DEV_RAM=y 7.240 +CONFIG_BLK_DEV_RAM_SIZE=4096 7.241 +CONFIG_BLK_DEV_INITRD=y 7.242 +# CONFIG_BLK_STATS is not set 7.243 +# CONFIG_BLK_DEV_HD is not set 7.244 + 7.245 +# 7.246 +# Character devices 7.247 +# 7.248 +CONFIG_VT=y 7.249 +CONFIG_VT_CONSOLE=y 7.250 +# CONFIG_SERIAL is not set 7.251 +# CONFIG_SERIAL_EXTENDED is not set 7.252 +# CONFIG_SERIAL_NONSTANDARD is not set 7.253 +CONFIG_UNIX98_PTYS=y 7.254 +CONFIG_UNIX98_PTY_COUNT=256 7.255 +# CONFIG_PRINTER is not set 7.256 +# CONFIG_PPDEV is not set 7.257 +# CONFIG_TIPAR is not set 7.258 + 7.259 +# 7.260 +# I2C support 7.261 +# 7.262 +# CONFIG_I2C is not set 7.263 + 7.264 +# 7.265 +# Mice 7.266 +# 7.267 +# CONFIG_BUSMOUSE is not set 7.268 +CONFIG_MOUSE=y 7.269 +CONFIG_PSMOUSE=y 7.270 +# CONFIG_82C710_MOUSE is not set 7.271 +# CONFIG_PC110_PAD is not set 7.272 +# CONFIG_MK712_MOUSE is not set 7.273 + 7.274 +# 7.275 +# Joysticks 7.276 +# 7.277 +# CONFIG_INPUT_GAMEPORT is not set 7.278 +# CONFIG_INPUT_NS558 is not set 7.279 +# CONFIG_INPUT_LIGHTNING is not set 7.280 +# CONFIG_INPUT_PCIGAME is not set 7.281 +# CONFIG_INPUT_CS461X is not set 7.282 +# CONFIG_INPUT_EMU10K1 is not set 7.283 +# CONFIG_INPUT_SERIO is not set 7.284 +# CONFIG_INPUT_SERPORT is not set 7.285 + 7.286 +# 7.287 +# Joysticks 7.288 +# 7.289 +# CONFIG_INPUT_ANALOG is not set 7.290 +# CONFIG_INPUT_A3D is not set 7.291 +# CONFIG_INPUT_ADI is not set 7.292 +# CONFIG_INPUT_COBRA is not set 7.293 +# CONFIG_INPUT_GF2K is not set 7.294 +# CONFIG_INPUT_GRIP is not set 7.295 +# CONFIG_INPUT_INTERACT is not set 7.296 +# CONFIG_INPUT_TMDC is not set 7.297 +# CONFIG_INPUT_SIDEWINDER is not set 7.298 +# CONFIG_INPUT_IFORCE_USB is not set 7.299 +# CONFIG_INPUT_IFORCE_232 is not set 7.300 +# CONFIG_INPUT_WARRIOR is not set 7.301 +# CONFIG_INPUT_MAGELLAN is not set 7.302 +# CONFIG_INPUT_SPACEORB is not set 7.303 +# CONFIG_INPUT_SPACEBALL is not set 7.304 +# CONFIG_INPUT_STINGER is not set 7.305 +# CONFIG_INPUT_DB9 is not set 7.306 +# CONFIG_INPUT_GAMECON is not set 7.307 +# CONFIG_INPUT_TURBOGRAFX is not set 7.308 +# CONFIG_QIC02_TAPE is not set 7.309 +# CONFIG_IPMI_HANDLER is not set 7.310 +# CONFIG_IPMI_PANIC_EVENT is not set 7.311 +# CONFIG_IPMI_DEVICE_INTERFACE is not set 7.312 +# CONFIG_IPMI_KCS is not set 7.313 +# CONFIG_IPMI_WATCHDOG is not set 7.314 + 7.315 +# 7.316 +# Watchdog Cards 7.317 +# 7.318 +# CONFIG_WATCHDOG is not set 7.319 +# CONFIG_SCx200 is not set 7.320 +# CONFIG_SCx200_GPIO is not set 7.321 +# CONFIG_AMD_RNG is not set 7.322 +# CONFIG_INTEL_RNG is not set 7.323 +# CONFIG_HW_RANDOM is not set 7.324 +# CONFIG_AMD_PM768 is not set 7.325 +# CONFIG_NVRAM is not set 7.326 +# CONFIG_RTC is not set 7.327 +# CONFIG_DTLK is not set 7.328 +# CONFIG_R3964 is not set 7.329 +# CONFIG_APPLICOM is not set 7.330 + 7.331 +# 7.332 +# Ftape, the floppy tape device driver 7.333 +# 7.334 +# CONFIG_FTAPE is not set 7.335 +# CONFIG_AGP is not set 7.336 + 7.337 +# 7.338 +# Direct Rendering Manager (XFree86 DRI support) 7.339 +# 7.340 +# CONFIG_DRM is not set 7.341 +# CONFIG_MWAVE is not set 7.342 +# CONFIG_OBMOUSE is not set 7.343 + 7.344 +# 7.345 +# File systems 7.346 +# 7.347 +# CONFIG_QUOTA is not set 7.348 +# CONFIG_QFMT_V2 is not set 7.349 +CONFIG_AUTOFS_FS=y 7.350 +CONFIG_AUTOFS4_FS=y 7.351 +# CONFIG_REISERFS_FS is not set 7.352 +# CONFIG_REISERFS_CHECK is not set 7.353 +# CONFIG_REISERFS_PROC_INFO is not set 7.354 +# CONFIG_ADFS_FS is not set 7.355 +# CONFIG_ADFS_FS_RW is not set 7.356 +# CONFIG_AFFS_FS is not set 7.357 +# CONFIG_HFS_FS is not set 7.358 +# CONFIG_HFSPLUS_FS is not set 7.359 +# CONFIG_BEFS_FS is not set 7.360 +# CONFIG_BEFS_DEBUG is not set 7.361 +# CONFIG_BFS_FS is not set 7.362 +CONFIG_EXT3_FS=y 7.363 +CONFIG_JBD=y 7.364 +# CONFIG_JBD_DEBUG is not set 7.365 +CONFIG_FAT_FS=y 7.366 +CONFIG_MSDOS_FS=y 7.367 +CONFIG_UMSDOS_FS=y 7.368 +CONFIG_VFAT_FS=y 7.369 +# CONFIG_EFS_FS is not set 7.370 +# CONFIG_JFFS_FS is not set 7.371 +# CONFIG_JFFS2_FS is not set 7.372 +# CONFIG_CRAMFS is not set 7.373 +CONFIG_TMPFS=y 7.374 +CONFIG_RAMFS=y 7.375 +CONFIG_ISO9660_FS=y 7.376 +CONFIG_JOLIET=y 7.377 +CONFIG_ZISOFS=y 7.378 +# CONFIG_JFS_FS is not set 7.379 +# CONFIG_JFS_DEBUG is not set 7.380 +# CONFIG_JFS_STATISTICS is not set 7.381 +# CONFIG_MINIX_FS is not set 7.382 +# CONFIG_VXFS_FS is not set 7.383 +# CONFIG_NTFS_FS is not set 7.384 +# CONFIG_NTFS_RW is not set 7.385 +# CONFIG_HPFS_FS is not set 7.386 +CONFIG_PROC_FS=y 7.387 +# CONFIG_DEVFS_FS is not set 7.388 +# CONFIG_DEVFS_MOUNT is not set 7.389 +# CONFIG_DEVFS_DEBUG is not set 7.390 +CONFIG_DEVPTS_FS=y 7.391 +# CONFIG_QNX4FS_FS is not set 7.392 +# CONFIG_QNX4FS_RW is not set 7.393 +# CONFIG_ROMFS_FS is not set 7.394 +CONFIG_EXT2_FS=y 7.395 +# CONFIG_SYSV_FS is not set 7.396 +# CONFIG_UDF_FS is not set 7.397 +# CONFIG_UDF_RW is not set 7.398 +# CONFIG_UFS_FS is not set 7.399 +# CONFIG_UFS_FS_WRITE is not set 7.400 +# CONFIG_XFS_FS is not set 7.401 +# CONFIG_XFS_QUOTA is not set 7.402 +# CONFIG_XFS_RT is not set 7.403 +# CONFIG_XFS_TRACE is not set 7.404 +# CONFIG_XFS_DEBUG is not set 7.405 + 7.406 +# 7.407 +# Network File Systems 7.408 +# 7.409 +# CONFIG_CODA_FS is not set 7.410 +# CONFIG_INTERMEZZO_FS is not set 7.411 +CONFIG_NFS_FS=y 7.412 +CONFIG_NFS_V3=y 7.413 +# CONFIG_NFS_DIRECTIO is not set 7.414 +CONFIG_ROOT_NFS=y 7.415 +CONFIG_NFSD=y 7.416 +CONFIG_NFSD_V3=y 7.417 +# CONFIG_NFSD_TCP is not set 7.418 +CONFIG_SUNRPC=y 7.419 +CONFIG_LOCKD=y 7.420 +CONFIG_LOCKD_V4=y 7.421 +# CONFIG_SMB_FS is not set 7.422 +# CONFIG_NCP_FS is not set 7.423 +# CONFIG_NCPFS_PACKET_SIGNING is not set 7.424 +# CONFIG_NCPFS_IOCTL_LOCKING is not set 7.425 +# CONFIG_NCPFS_STRONG is not set 7.426 +# CONFIG_NCPFS_NFS_NS is not set 7.427 +# CONFIG_NCPFS_OS2_NS is not set 7.428 +# CONFIG_NCPFS_SMALLDOS is not set 7.429 +# CONFIG_NCPFS_NLS is not set 7.430 +# CONFIG_NCPFS_EXTRAS is not set 7.431 +CONFIG_ZISOFS_FS=y 7.432 + 7.433 +# 7.434 +# Partition Types 7.435 +# 7.436 +CONFIG_PARTITION_ADVANCED=y 7.437 +# CONFIG_ACORN_PARTITION is not set 7.438 +# CONFIG_OSF_PARTITION is not set 7.439 +# CONFIG_AMIGA_PARTITION is not set 7.440 +# CONFIG_ATARI_PARTITION is not set 7.441 +# CONFIG_MAC_PARTITION is not set 7.442 +CONFIG_MSDOS_PARTITION=y 7.443 +# CONFIG_BSD_DISKLABEL is not set 7.444 +# CONFIG_MINIX_SUBPARTITION is not set 7.445 +# CONFIG_SOLARIS_X86_PARTITION is not set 7.446 +# CONFIG_UNIXWARE_DISKLABEL is not set 7.447 +# CONFIG_LDM_PARTITION is not set 7.448 +# CONFIG_SGI_PARTITION is not set 7.449 +# CONFIG_ULTRIX_PARTITION is not set 7.450 +# CONFIG_SUN_PARTITION is not set 7.451 +# CONFIG_EFI_PARTITION is not set 7.452 +# CONFIG_SMB_NLS is not set 7.453 +CONFIG_NLS=y 7.454 + 7.455 +# 7.456 +# Native Language Support 7.457 +# 7.458 +CONFIG_NLS_DEFAULT="iso8559-1" 7.459 +# CONFIG_NLS_CODEPAGE_437 is not set 7.460 +# CONFIG_NLS_CODEPAGE_737 is not set 7.461 +# CONFIG_NLS_CODEPAGE_775 is not set 7.462 +# CONFIG_NLS_CODEPAGE_850 is not set 7.463 +# CONFIG_NLS_CODEPAGE_852 is not set 7.464 +# CONFIG_NLS_CODEPAGE_855 is not set 7.465 +# CONFIG_NLS_CODEPAGE_857 is not set 7.466 +# CONFIG_NLS_CODEPAGE_860 is not set 7.467 +# CONFIG_NLS_CODEPAGE_861 is not set 7.468 +# CONFIG_NLS_CODEPAGE_862 is not set 7.469 +# CONFIG_NLS_CODEPAGE_863 is not set 7.470 +# CONFIG_NLS_CODEPAGE_864 is not set 7.471 +# CONFIG_NLS_CODEPAGE_865 is not set 7.472 +# CONFIG_NLS_CODEPAGE_866 is not set 7.473 +# CONFIG_NLS_CODEPAGE_869 is not set 7.474 +# CONFIG_NLS_CODEPAGE_936 is not set 7.475 +# CONFIG_NLS_CODEPAGE_950 is not set 7.476 +# CONFIG_NLS_CODEPAGE_932 is not set 7.477 +# CONFIG_NLS_CODEPAGE_949 is not set 7.478 +# CONFIG_NLS_CODEPAGE_874 is not set 7.479 +# CONFIG_NLS_ISO8859_8 is not set 7.480 +# CONFIG_NLS_CODEPAGE_1250 is not set 7.481 +# CONFIG_NLS_CODEPAGE_1251 is not set 7.482 +CONFIG_NLS_ISO8859_1=y 7.483 +# CONFIG_NLS_ISO8859_2 is not set 7.484 +# CONFIG_NLS_ISO8859_3 is not set 7.485 +# CONFIG_NLS_ISO8859_4 is not set 7.486 +# CONFIG_NLS_ISO8859_5 is not set 7.487 +# CONFIG_NLS_ISO8859_6 is not set 7.488 +# CONFIG_NLS_ISO8859_7 is not set 7.489 +# CONFIG_NLS_ISO8859_9 is not set 7.490 +# CONFIG_NLS_ISO8859_13 is not set 7.491 +# CONFIG_NLS_ISO8859_14 is not set 7.492 +# CONFIG_NLS_ISO8859_15 is not set 7.493 +# CONFIG_NLS_KOI8_R is not set 7.494 +# CONFIG_NLS_KOI8_U is not set 7.495 +# CONFIG_NLS_UTF8 is not set 7.496 + 7.497 +# 7.498 +# Console drivers 7.499 +# 7.500 +CONFIG_XEN_CONSOLE=y 7.501 +CONFIG_VGA_CONSOLE=y 7.502 +CONFIG_DUMMY_CONSOLE=y 7.503 + 7.504 +# 7.505 +# Kernel hacking 7.506 +# 7.507 +CONFIG_DEBUG_KERNEL=y 7.508 +# CONFIG_DEBUG_STACKOVERFLOW is not set 7.509 +# CONFIG_DEBUG_HIGHMEM is not set 7.510 +# CONFIG_DEBUG_SLAB is not set 7.511 +# CONFIG_DEBUG_IOVIRT is not set 7.512 +CONFIG_MAGIC_SYSRQ=y 7.513 +# CONFIG_DEBUG_SPINLOCK is not set 7.514 +# CONFIG_DEBUG_BUGVERBOSE is not set 7.515 +CONFIG_KALLSYMS=y 7.516 +# CONFIG_FRAME_POINTER is not set 7.517 +CONFIG_LOG_BUF_SHIFT=0 7.518 + 7.519 +# 7.520 +# Cryptographic options 7.521 +# 7.522 +# CONFIG_CRYPTO is not set 7.523 + 7.524 +# 7.525 +# Library routines 7.526 +# 7.527 +# CONFIG_CRC32 is not set 7.528 +CONFIG_ZLIB_INFLATE=y 7.529 +# CONFIG_ZLIB_DEFLATE is not set
8.1 --- a/linux-2.4.26-xen-sparse/arch/xen/defconfigs/dom0 Fri Jun 11 07:11:59 2004 +0000 8.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 8.3 @@ -1,881 +0,0 @@ 8.4 -# 8.5 -# Automatically generated make config: don't edit 8.6 -# 8.7 -CONFIG_XEN=y 8.8 -CONFIG_X86=y 8.9 -CONFIG_ISA=y 8.10 -# CONFIG_SBUS is not set 8.11 -CONFIG_UID16=y 8.12 - 8.13 -# 8.14 -# Xen 8.15 -# 8.16 -CONFIG_XEN_PRIVILEGED_GUEST=y 8.17 -CONFIG_XEN_PHYSDEV_ACCESS=y 8.18 -CONFIG_NO_IDLE_HZ=y 8.19 - 8.20 -# 8.21 -# Code maturity level options 8.22 -# 8.23 -CONFIG_EXPERIMENTAL=y 8.24 - 8.25 -# 8.26 -# Loadable module support 8.27 -# 8.28 -CONFIG_MODULES=y 8.29 -CONFIG_MODVERSIONS=y 8.30 -CONFIG_KMOD=y 8.31 - 8.32 -# 8.33 -# Processor type and features 8.34 -# 8.35 -CONFIG_M686=y 8.36 -# CONFIG_MPENTIUMIII is not set 8.37 -# CONFIG_MPENTIUM4 is not set 8.38 -# CONFIG_MK7 is not set 8.39 -# CONFIG_MK8 is not set 8.40 -# CONFIG_MVIAC3_2 is not set 8.41 -CONFIG_X86_WP_WORKS_OK=y 8.42 -CONFIG_X86_INVLPG=y 8.43 -CONFIG_X86_CMPXCHG=y 8.44 -CONFIG_X86_XADD=y 8.45 -CONFIG_X86_BSWAP=y 8.46 -CONFIG_X86_POPAD_OK=y 8.47 -# CONFIG_RWSEM_GENERIC_SPINLOCK is not set 8.48 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y 8.49 -CONFIG_X86_GOOD_APIC=y 8.50 -CONFIG_X86_PGE=y 8.51 -CONFIG_X86_USE_PPRO_CHECKSUM=y 8.52 -CONFIG_X86_TSC=y 8.53 -CONFIG_X86_L1_CACHE_SHIFT=5 8.54 -CONFIG_NOHIGHMEM=y 8.55 -# CONFIG_HIGHMEM4G is not set 8.56 -CONFIG_FORCE_MAX_ZONEORDER=12 8.57 - 8.58 -# 8.59 -# General setup 8.60 -# 8.61 -CONFIG_NET=y 8.62 -CONFIG_PCI=y 8.63 -CONFIG_PCI_NAMES=y 8.64 -CONFIG_HOTPLUG=y 8.65 - 8.66 -# 8.67 -# PCMCIA/CardBus support 8.68 -# 8.69 -# CONFIG_PCMCIA is not set 8.70 - 8.71 -# 8.72 -# PCI Hotplug Support 8.73 -# 8.74 -# CONFIG_HOTPLUG_PCI is not set 8.75 -# CONFIG_HOTPLUG_PCI_COMPAQ is not set 8.76 -# CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set 8.77 -CONFIG_SYSVIPC=y 8.78 -# CONFIG_BSD_PROCESS_ACCT is not set 8.79 -CONFIG_SYSCTL=y 8.80 -CONFIG_KCORE_ELF=y 8.81 -# CONFIG_KCORE_AOUT is not set 8.82 -CONFIG_BINFMT_AOUT=y 8.83 -CONFIG_BINFMT_ELF=y 8.84 -# CONFIG_BINFMT_MISC is not set 8.85 -# CONFIG_OOM_KILLER is not set 8.86 - 8.87 -# 8.88 -# Memory Technology Devices (MTD) 8.89 -# 8.90 -# CONFIG_MTD is not set 8.91 - 8.92 -# 8.93 -# Parallel port support 8.94 -# 8.95 -# CONFIG_PARPORT is not set 8.96 - 8.97 -# 8.98 -# Plug and Play configuration 8.99 -# 8.100 -CONFIG_PNP=y 8.101 -# CONFIG_ISAPNP is not set 8.102 - 8.103 -# 8.104 -# Block devices 8.105 -# 8.106 -# CONFIG_BLK_DEV_FD is not set 8.107 -# CONFIG_BLK_DEV_XD is not set 8.108 -# CONFIG_PARIDE is not set 8.109 -# CONFIG_BLK_CPQ_DA is not set 8.110 -# CONFIG_BLK_CPQ_CISS_DA is not set 8.111 -# CONFIG_CISS_SCSI_TAPE is not set 8.112 -# CONFIG_CISS_MONITOR_THREAD is not set 8.113 -# CONFIG_BLK_DEV_DAC960 is not set 8.114 -# CONFIG_BLK_DEV_UMEM is not set 8.115 -CONFIG_BLK_DEV_LOOP=y 8.116 -CONFIG_BLK_DEV_NBD=y 8.117 -CONFIG_BLK_DEV_RAM=y 8.118 -CONFIG_BLK_DEV_RAM_SIZE=4096 8.119 -CONFIG_BLK_DEV_INITRD=y 8.120 -# CONFIG_BLK_STATS is not set 8.121 - 8.122 -# 8.123 -# Multi-device support (RAID and LVM) 8.124 -# 8.125 -# CONFIG_MD is not set 8.126 -# CONFIG_BLK_DEV_MD is not set 8.127 -# CONFIG_MD_LINEAR is not set 8.128 -# CONFIG_MD_RAID0 is not set 8.129 -# CONFIG_MD_RAID1 is not set 8.130 -# CONFIG_MD_RAID5 is not set 8.131 -# CONFIG_MD_MULTIPATH is not set 8.132 -# CONFIG_BLK_DEV_LVM is not set 8.133 - 8.134 -# 8.135 -# Networking options 8.136 -# 8.137 -CONFIG_PACKET=y 8.138 -CONFIG_PACKET_MMAP=y 8.139 -# CONFIG_NETLINK_DEV is not set 8.140 -CONFIG_NETFILTER=y 8.141 -# CONFIG_NETFILTER_DEBUG is not set 8.142 -CONFIG_FILTER=y 8.143 -CONFIG_UNIX=y 8.144 -CONFIG_INET=y 8.145 -# CONFIG_IP_MULTICAST is not set 8.146 -# CONFIG_IP_ADVANCED_ROUTER is not set 8.147 -CONFIG_IP_PNP=y 8.148 -CONFIG_IP_PNP_DHCP=y 8.149 -# CONFIG_IP_PNP_BOOTP is not set 8.150 -# CONFIG_IP_PNP_RARP is not set 8.151 -# CONFIG_NET_IPIP is not set 8.152 -# CONFIG_NET_IPGRE is not set 8.153 -# CONFIG_ARPD is not set 8.154 -# CONFIG_INET_ECN is not set 8.155 -# CONFIG_SYN_COOKIES is not set 8.156 - 8.157 -# 8.158 -# IP: Netfilter Configuration 8.159 -# 8.160 -CONFIG_IP_NF_CONNTRACK=y 8.161 -CONFIG_IP_NF_FTP=y 8.162 -# CONFIG_IP_NF_AMANDA is not set 8.163 -CONFIG_IP_NF_TFTP=y 8.164 -CONFIG_IP_NF_IRC=y 8.165 -# CONFIG_IP_NF_QUEUE is not set 8.166 -CONFIG_IP_NF_IPTABLES=y 8.167 -# CONFIG_IP_NF_MATCH_LIMIT is not set 8.168 -# CONFIG_IP_NF_MATCH_MAC is not set 8.169 -# CONFIG_IP_NF_MATCH_PKTTYPE is not set 8.170 -# CONFIG_IP_NF_MATCH_MARK is not set 8.171 -# CONFIG_IP_NF_MATCH_MULTIPORT is not set 8.172 -# CONFIG_IP_NF_MATCH_TOS is not set 8.173 -# CONFIG_IP_NF_MATCH_RECENT is not set 8.174 -# CONFIG_IP_NF_MATCH_ECN is not set 8.175 -# CONFIG_IP_NF_MATCH_DSCP is not set 8.176 -# CONFIG_IP_NF_MATCH_AH_ESP is not set 8.177 -# CONFIG_IP_NF_MATCH_LENGTH is not set 8.178 -# CONFIG_IP_NF_MATCH_TTL is not set 8.179 -# CONFIG_IP_NF_MATCH_TCPMSS is not set 8.180 -# CONFIG_IP_NF_MATCH_HELPER is not set 8.181 -CONFIG_IP_NF_MATCH_STATE=y 8.182 -CONFIG_IP_NF_MATCH_CONNTRACK=y 8.183 -# CONFIG_IP_NF_MATCH_UNCLEAN is not set 8.184 -# CONFIG_IP_NF_MATCH_OWNER is not set 8.185 -CONFIG_IP_NF_FILTER=y 8.186 -CONFIG_IP_NF_TARGET_REJECT=y 8.187 -# CONFIG_IP_NF_TARGET_MIRROR is not set 8.188 -CONFIG_IP_NF_NAT=y 8.189 -CONFIG_IP_NF_NAT_NEEDED=y 8.190 -CONFIG_IP_NF_TARGET_MASQUERADE=y 8.191 -CONFIG_IP_NF_TARGET_REDIRECT=y 8.192 -# CONFIG_IP_NF_NAT_LOCAL is not set 8.193 -# CONFIG_IP_NF_NAT_SNMP_BASIC is not set 8.194 -CONFIG_IP_NF_NAT_IRC=y 8.195 -CONFIG_IP_NF_NAT_FTP=y 8.196 -CONFIG_IP_NF_NAT_TFTP=y 8.197 -# CONFIG_IP_NF_MANGLE is not set 8.198 -CONFIG_IP_NF_TARGET_LOG=y 8.199 -CONFIG_IP_NF_TARGET_ULOG=y 8.200 -# CONFIG_IP_NF_TARGET_TCPMSS is not set 8.201 -# CONFIG_IP_NF_ARPTABLES is not set 8.202 - 8.203 -# 8.204 -# IP: Virtual Server Configuration 8.205 -# 8.206 -# CONFIG_IP_VS is not set 8.207 -# CONFIG_IPV6 is not set 8.208 -# CONFIG_KHTTPD is not set 8.209 - 8.210 -# 8.211 -# SCTP Configuration (EXPERIMENTAL) 8.212 -# 8.213 -# CONFIG_IP_SCTP is not set 8.214 -# CONFIG_ATM is not set 8.215 -# CONFIG_VLAN_8021Q is not set 8.216 - 8.217 -# 8.218 -# 8.219 -# 8.220 -# CONFIG_IPX is not set 8.221 -# CONFIG_ATALK is not set 8.222 - 8.223 -# 8.224 -# Appletalk devices 8.225 -# 8.226 -# CONFIG_DEV_APPLETALK is not set 8.227 -# CONFIG_DECNET is not set 8.228 -CONFIG_BRIDGE=y 8.229 -# CONFIG_X25 is not set 8.230 -# CONFIG_LAPB is not set 8.231 -# CONFIG_LLC is not set 8.232 -# CONFIG_NET_DIVERT is not set 8.233 -# CONFIG_ECONET is not set 8.234 -# CONFIG_WAN_ROUTER is not set 8.235 -# CONFIG_NET_FASTROUTE is not set 8.236 -# CONFIG_NET_HW_FLOWCONTROL is not set 8.237 - 8.238 -# 8.239 -# QoS and/or fair queueing 8.240 -# 8.241 -# CONFIG_NET_SCHED is not set 8.242 - 8.243 -# 8.244 -# Network testing 8.245 -# 8.246 -# CONFIG_NET_PKTGEN is not set 8.247 - 8.248 -# 8.249 -# ATA/IDE/MFM/RLL support 8.250 -# 8.251 -CONFIG_IDE=y 8.252 - 8.253 -# 8.254 -# IDE, ATA and ATAPI Block devices 8.255 -# 8.256 -CONFIG_BLK_DEV_IDE=y 8.257 - 8.258 -# 8.259 -# Please see Documentation/ide.txt for help/info on IDE drives 8.260 -# 8.261 -# CONFIG_BLK_DEV_HD_IDE is not set 8.262 -# CONFIG_BLK_DEV_HD is not set 8.263 -CONFIG_BLK_DEV_IDEDISK=y 8.264 -CONFIG_IDEDISK_MULTI_MODE=y 8.265 -CONFIG_IDEDISK_STROKE=y 8.266 -# CONFIG_BLK_DEV_IDECS is not set 8.267 -CONFIG_BLK_DEV_IDECD=y 8.268 -CONFIG_BLK_DEV_IDETAPE=y 8.269 -CONFIG_BLK_DEV_IDEFLOPPY=y 8.270 -CONFIG_BLK_DEV_IDESCSI=y 8.271 -CONFIG_IDE_TASK_IOCTL=y 8.272 - 8.273 -# 8.274 -# IDE chipset support/bugfixes 8.275 -# 8.276 -CONFIG_BLK_DEV_CMD640=y 8.277 -CONFIG_BLK_DEV_CMD640_ENHANCED=y 8.278 -# CONFIG_BLK_DEV_ISAPNP is not set 8.279 -CONFIG_BLK_DEV_IDEPCI=y 8.280 -CONFIG_BLK_DEV_GENERIC=y 8.281 -CONFIG_IDEPCI_SHARE_IRQ=y 8.282 -CONFIG_BLK_DEV_IDEDMA_PCI=y 8.283 -CONFIG_BLK_DEV_OFFBOARD=y 8.284 -# CONFIG_BLK_DEV_IDEDMA_FORCED is not set 8.285 -CONFIG_IDEDMA_PCI_AUTO=y 8.286 -# CONFIG_IDEDMA_ONLYDISK is not set 8.287 -CONFIG_BLK_DEV_IDEDMA=y 8.288 -# CONFIG_IDEDMA_PCI_WIP is not set 8.289 -CONFIG_BLK_DEV_ADMA100=y 8.290 -CONFIG_BLK_DEV_AEC62XX=y 8.291 -CONFIG_BLK_DEV_ALI15X3=y 8.292 -CONFIG_WDC_ALI15X3=y 8.293 -CONFIG_BLK_DEV_AMD74XX=y 8.294 -CONFIG_AMD74XX_OVERRIDE=y 8.295 -# CONFIG_BLK_DEV_ATIIXP is not set 8.296 -CONFIG_BLK_DEV_CMD64X=y 8.297 -CONFIG_BLK_DEV_TRIFLEX=y 8.298 -CONFIG_BLK_DEV_CY82C693=y 8.299 -CONFIG_BLK_DEV_CS5530=y 8.300 -CONFIG_BLK_DEV_HPT34X=y 8.301 -# CONFIG_HPT34X_AUTODMA is not set 8.302 -CONFIG_BLK_DEV_HPT366=y 8.303 -CONFIG_BLK_DEV_PIIX=y 8.304 -CONFIG_BLK_DEV_NS87415=y 8.305 -# CONFIG_BLK_DEV_OPTI621 is not set 8.306 -CONFIG_BLK_DEV_PDC202XX_OLD=y 8.307 -CONFIG_PDC202XX_BURST=y 8.308 -CONFIG_BLK_DEV_PDC202XX_NEW=y 8.309 -CONFIG_PDC202XX_FORCE=y 8.310 -CONFIG_BLK_DEV_RZ1000=y 8.311 -CONFIG_BLK_DEV_SC1200=y 8.312 -CONFIG_BLK_DEV_SVWKS=y 8.313 -CONFIG_BLK_DEV_SIIMAGE=y 8.314 -CONFIG_BLK_DEV_SIS5513=y 8.315 -CONFIG_BLK_DEV_SLC90E66=y 8.316 -CONFIG_BLK_DEV_TRM290=y 8.317 -CONFIG_BLK_DEV_VIA82CXXX=y 8.318 -CONFIG_IDE_CHIPSETS=y 8.319 - 8.320 -# 8.321 -# Note: most of these also require special kernel boot parameters 8.322 -# 8.323 -# CONFIG_BLK_DEV_4DRIVES is not set 8.324 -# CONFIG_BLK_DEV_ALI14XX is not set 8.325 -# CONFIG_BLK_DEV_DTC2278 is not set 8.326 -# CONFIG_BLK_DEV_HT6560B is not set 8.327 -# CONFIG_BLK_DEV_PDC4030 is not set 8.328 -# CONFIG_BLK_DEV_QD65XX is not set 8.329 -# CONFIG_BLK_DEV_UMC8672 is not set 8.330 -CONFIG_IDEDMA_AUTO=y 8.331 -# CONFIG_IDEDMA_IVB is not set 8.332 -# CONFIG_DMA_NONPCI is not set 8.333 -CONFIG_BLK_DEV_PDC202XX=y 8.334 -# CONFIG_BLK_DEV_ATARAID is not set 8.335 -# CONFIG_BLK_DEV_ATARAID_PDC is not set 8.336 -# CONFIG_BLK_DEV_ATARAID_HPT is not set 8.337 -# CONFIG_BLK_DEV_ATARAID_MEDLEY is not set 8.338 -# CONFIG_BLK_DEV_ATARAID_SII is not set 8.339 - 8.340 -# 8.341 -# SCSI support 8.342 -# 8.343 -CONFIG_SCSI=y 8.344 - 8.345 -# 8.346 -# SCSI support type (disk, tape, CD-ROM) 8.347 -# 8.348 -CONFIG_BLK_DEV_SD=y 8.349 -CONFIG_SD_EXTRA_DEVS=40 8.350 -# CONFIG_CHR_DEV_ST is not set 8.351 -# CONFIG_CHR_DEV_OSST is not set 8.352 -# CONFIG_BLK_DEV_SR is not set 8.353 -CONFIG_CHR_DEV_SG=y 8.354 - 8.355 -# 8.356 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs 8.357 -# 8.358 -# CONFIG_SCSI_DEBUG_QUEUES is not set 8.359 -# CONFIG_SCSI_MULTI_LUN is not set 8.360 -# CONFIG_SCSI_CONSTANTS is not set 8.361 -# CONFIG_SCSI_LOGGING is not set 8.362 - 8.363 -# 8.364 -# SCSI low-level drivers 8.365 -# 8.366 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set 8.367 -# CONFIG_SCSI_7000FASST is not set 8.368 -# CONFIG_SCSI_ACARD is not set 8.369 -# CONFIG_SCSI_AHA152X is not set 8.370 -# CONFIG_SCSI_AHA1542 is not set 8.371 -# CONFIG_SCSI_AHA1740 is not set 8.372 -CONFIG_SCSI_AACRAID=y 8.373 -# CONFIG_SCSI_AIC7XXX is not set 8.374 -# CONFIG_SCSI_AIC79XX is not set 8.375 -# CONFIG_SCSI_AIC7XXX_OLD is not set 8.376 -# CONFIG_SCSI_DPT_I2O is not set 8.377 -# CONFIG_SCSI_ADVANSYS is not set 8.378 -# CONFIG_SCSI_IN2000 is not set 8.379 -# CONFIG_SCSI_AM53C974 is not set 8.380 -CONFIG_SCSI_MEGARAID=y 8.381 -# CONFIG_SCSI_MEGARAID2 is not set 8.382 -CONFIG_SCSI_BUSLOGIC=y 8.383 -# CONFIG_SCSI_OMIT_FLASHPOINT is not set 8.384 -# CONFIG_SCSI_CPQFCTS is not set 8.385 -# CONFIG_SCSI_DMX3191D is not set 8.386 -# CONFIG_SCSI_DTC3280 is not set 8.387 -# CONFIG_SCSI_EATA is not set 8.388 -# CONFIG_SCSI_EATA_DMA is not set 8.389 -# CONFIG_SCSI_EATA_PIO is not set 8.390 -# CONFIG_SCSI_FUTURE_DOMAIN is not set 8.391 -# CONFIG_SCSI_GDTH is not set 8.392 -# CONFIG_SCSI_GENERIC_NCR5380 is not set 8.393 -# CONFIG_SCSI_IPS is not set 8.394 -# CONFIG_SCSI_INITIO is not set 8.395 -# CONFIG_SCSI_INIA100 is not set 8.396 -# CONFIG_SCSI_NCR53C406A is not set 8.397 -# CONFIG_SCSI_NCR53C7xx is not set 8.398 -# CONFIG_SCSI_SYM53C8XX_2 is not set 8.399 -# CONFIG_SCSI_NCR53C8XX is not set 8.400 -# CONFIG_SCSI_SYM53C8XX is not set 8.401 -# CONFIG_SCSI_PAS16 is not set 8.402 -# CONFIG_SCSI_PCI2000 is not set 8.403 -# CONFIG_SCSI_PCI2220I is not set 8.404 -# CONFIG_SCSI_PSI240I is not set 8.405 -# CONFIG_SCSI_QLOGIC_FAS is not set 8.406 -# CONFIG_SCSI_QLOGIC_ISP is not set 8.407 -# CONFIG_SCSI_QLOGIC_FC is not set 8.408 -# CONFIG_SCSI_QLOGIC_1280 is not set 8.409 -# CONFIG_SCSI_SEAGATE is not set 8.410 -# CONFIG_SCSI_SIM710 is not set 8.411 -# CONFIG_SCSI_SYM53C416 is not set 8.412 -# CONFIG_SCSI_DC390T is not set 8.413 -# CONFIG_SCSI_T128 is not set 8.414 -# CONFIG_SCSI_U14_34F is not set 8.415 -# CONFIG_SCSI_ULTRASTOR is not set 8.416 -# CONFIG_SCSI_NSP32 is not set 8.417 -# CONFIG_SCSI_DEBUG is not set 8.418 - 8.419 -# 8.420 -# Fusion MPT device support 8.421 -# 8.422 -# CONFIG_FUSION is not set 8.423 -# CONFIG_FUSION_BOOT is not set 8.424 -# CONFIG_FUSION_ISENSE is not set 8.425 -# CONFIG_FUSION_CTL is not set 8.426 -# CONFIG_FUSION_LAN is not set 8.427 - 8.428 -# 8.429 -# IEEE 1394 (FireWire) support (EXPERIMENTAL) 8.430 -# 8.431 -# CONFIG_IEEE1394 is not set 8.432 - 8.433 -# 8.434 -# I2O device support 8.435 -# 8.436 -# CONFIG_I2O is not set 8.437 -# CONFIG_I2O_PCI is not set 8.438 -# CONFIG_I2O_BLOCK is not set 8.439 -# CONFIG_I2O_LAN is not set 8.440 -# CONFIG_I2O_SCSI is not set 8.441 -# CONFIG_I2O_PROC is not set 8.442 - 8.443 -# 8.444 -# Network device support 8.445 -# 8.446 -CONFIG_NETDEVICES=y 8.447 - 8.448 -# 8.449 -# ARCnet devices 8.450 -# 8.451 -# CONFIG_ARCNET is not set 8.452 -# CONFIG_DUMMY is not set 8.453 -# CONFIG_BONDING is not set 8.454 -# CONFIG_EQUALIZER is not set 8.455 -# CONFIG_TUN is not set 8.456 -# CONFIG_ETHERTAP is not set 8.457 - 8.458 -# 8.459 -# Ethernet (10 or 100Mbit) 8.460 -# 8.461 -CONFIG_NET_ETHERNET=y 8.462 -# CONFIG_SUNLANCE is not set 8.463 -# CONFIG_HAPPYMEAL is not set 8.464 -# CONFIG_SUNBMAC is not set 8.465 -# CONFIG_SUNQE is not set 8.466 -# CONFIG_SUNGEM is not set 8.467 -CONFIG_NET_VENDOR_3COM=y 8.468 -# CONFIG_EL1 is not set 8.469 -# CONFIG_EL2 is not set 8.470 -# CONFIG_ELPLUS is not set 8.471 -# CONFIG_EL16 is not set 8.472 -# CONFIG_EL3 is not set 8.473 -# CONFIG_3C515 is not set 8.474 -# CONFIG_ELMC is not set 8.475 -# CONFIG_ELMC_II is not set 8.476 -CONFIG_VORTEX=y 8.477 -# CONFIG_TYPHOON is not set 8.478 -# CONFIG_LANCE is not set 8.479 -# CONFIG_NET_VENDOR_SMC is not set 8.480 -# CONFIG_NET_VENDOR_RACAL is not set 8.481 -# CONFIG_AT1700 is not set 8.482 -# CONFIG_DEPCA is not set 8.483 -# CONFIG_HP100 is not set 8.484 -# CONFIG_NET_ISA is not set 8.485 -CONFIG_NET_PCI=y 8.486 -CONFIG_PCNET32=y 8.487 -# CONFIG_AMD8111_ETH is not set 8.488 -# CONFIG_ADAPTEC_STARFIRE is not set 8.489 -# CONFIG_AC3200 is not set 8.490 -# CONFIG_APRICOT is not set 8.491 -# CONFIG_B44 is not set 8.492 -# CONFIG_CS89x0 is not set 8.493 -# CONFIG_TULIP is not set 8.494 -# CONFIG_DE4X5 is not set 8.495 -# CONFIG_DGRS is not set 8.496 -# CONFIG_DM9102 is not set 8.497 -# CONFIG_EEPRO100 is not set 8.498 -# CONFIG_EEPRO100_PIO is not set 8.499 -# CONFIG_E100 is not set 8.500 -# CONFIG_LNE390 is not set 8.501 -# CONFIG_FEALNX is not set 8.502 -# CONFIG_NATSEMI is not set 8.503 -# CONFIG_NE2K_PCI is not set 8.504 -# CONFIG_FORCEDETH is not set 8.505 -# CONFIG_NE3210 is not set 8.506 -# CONFIG_ES3210 is not set 8.507 -# CONFIG_8139CP is not set 8.508 -# CONFIG_8139TOO is not set 8.509 -# CONFIG_8139TOO_PIO is not set 8.510 -# CONFIG_8139TOO_TUNE_TWISTER is not set 8.511 -# CONFIG_8139TOO_8129 is not set 8.512 -# CONFIG_8139_OLD_RX_RESET is not set 8.513 -# CONFIG_SIS900 is not set 8.514 -# CONFIG_EPIC100 is not set 8.515 -# CONFIG_SUNDANCE is not set 8.516 -# CONFIG_SUNDANCE_MMIO is not set 8.517 -# CONFIG_TLAN is not set 8.518 -# CONFIG_VIA_RHINE is not set 8.519 -# CONFIG_VIA_RHINE_MMIO is not set 8.520 -# CONFIG_WINBOND_840 is not set 8.521 -# CONFIG_NET_POCKET is not set 8.522 - 8.523 -# 8.524 -# Ethernet (1000 Mbit) 8.525 -# 8.526 -# CONFIG_ACENIC is not set 8.527 -# CONFIG_DL2K is not set 8.528 -CONFIG_E1000=y 8.529 -# CONFIG_E1000_NAPI is not set 8.530 -# CONFIG_MYRI_SBUS is not set 8.531 -# CONFIG_NS83820 is not set 8.532 -# CONFIG_HAMACHI is not set 8.533 -# CONFIG_YELLOWFIN is not set 8.534 -# CONFIG_R8169 is not set 8.535 -# CONFIG_SK98LIN is not set 8.536 -CONFIG_TIGON3=y 8.537 -# CONFIG_FDDI is not set 8.538 -# CONFIG_HIPPI is not set 8.539 -# CONFIG_PLIP is not set 8.540 -# CONFIG_PPP is not set 8.541 -# CONFIG_SLIP is not set 8.542 - 8.543 -# 8.544 -# Wireless LAN (non-hamradio) 8.545 -# 8.546 -# CONFIG_NET_RADIO is not set 8.547 - 8.548 -# 8.549 -# Token Ring devices 8.550 -# 8.551 -# CONFIG_TR is not set 8.552 -# CONFIG_NET_FC is not set 8.553 -# CONFIG_RCPCI is not set 8.554 -# CONFIG_SHAPER is not set 8.555 - 8.556 -# 8.557 -# Wan interfaces 8.558 -# 8.559 -# CONFIG_WAN is not set 8.560 - 8.561 -# 8.562 -# Amateur Radio support 8.563 -# 8.564 -# CONFIG_HAMRADIO is not set 8.565 - 8.566 -# 8.567 -# IrDA (infrared) support 8.568 -# 8.569 -# CONFIG_IRDA is not set 8.570 - 8.571 -# 8.572 -# ISDN subsystem 8.573 -# 8.574 -# CONFIG_ISDN is not set 8.575 - 8.576 -# 8.577 -# Old CD-ROM drivers (not SCSI, not IDE) 8.578 -# 8.579 -# CONFIG_CD_NO_IDESCSI is not set 8.580 - 8.581 -# 8.582 -# Input core support 8.583 -# 8.584 -# CONFIG_INPUT is not set 8.585 -# CONFIG_INPUT_KEYBDEV is not set 8.586 -# CONFIG_INPUT_MOUSEDEV is not set 8.587 -# CONFIG_INPUT_JOYDEV is not set 8.588 -# CONFIG_INPUT_EVDEV is not set 8.589 -# CONFIG_INPUT_UINPUT is not set 8.590 - 8.591 -# 8.592 -# Character devices 8.593 -# 8.594 -CONFIG_VT=y 8.595 -CONFIG_VT_CONSOLE=y 8.596 -# CONFIG_SERIAL is not set 8.597 -# CONFIG_SERIAL_EXTENDED is not set 8.598 -# CONFIG_SERIAL_NONSTANDARD is not set 8.599 -CONFIG_UNIX98_PTYS=y 8.600 -CONFIG_UNIX98_PTY_COUNT=256 8.601 - 8.602 -# 8.603 -# I2C support 8.604 -# 8.605 -# CONFIG_I2C is not set 8.606 - 8.607 -# 8.608 -# Mice 8.609 -# 8.610 -# CONFIG_BUSMOUSE is not set 8.611 -CONFIG_MOUSE=y 8.612 -CONFIG_PSMOUSE=y 8.613 -# CONFIG_82C710_MOUSE is not set 8.614 -# CONFIG_PC110_PAD is not set 8.615 -# CONFIG_MK712_MOUSE is not set 8.616 - 8.617 -# 8.618 -# Joysticks 8.619 -# 8.620 -# CONFIG_INPUT_GAMEPORT is not set 8.621 - 8.622 -# 8.623 -# Input core support is needed for gameports 8.624 -# 8.625 - 8.626 -# 8.627 -# Input core support is needed for joysticks 8.628 -# 8.629 -# CONFIG_QIC02_TAPE is not set 8.630 -# CONFIG_IPMI_HANDLER is not set 8.631 -# CONFIG_IPMI_PANIC_EVENT is not set 8.632 -# CONFIG_IPMI_DEVICE_INTERFACE is not set 8.633 -# CONFIG_IPMI_KCS is not set 8.634 -# CONFIG_IPMI_WATCHDOG is not set 8.635 - 8.636 -# 8.637 -# Watchdog Cards 8.638 -# 8.639 -# CONFIG_WATCHDOG is not set 8.640 -# CONFIG_SCx200 is not set 8.641 -# CONFIG_SCx200_GPIO is not set 8.642 -# CONFIG_AMD_RNG is not set 8.643 -# CONFIG_INTEL_RNG is not set 8.644 -# CONFIG_HW_RANDOM is not set 8.645 -# CONFIG_AMD_PM768 is not set 8.646 -# CONFIG_NVRAM is not set 8.647 -# CONFIG_RTC is not set 8.648 -# CONFIG_DTLK is not set 8.649 -# CONFIG_R3964 is not set 8.650 -# CONFIG_APPLICOM is not set 8.651 -# CONFIG_SONYPI is not set 8.652 - 8.653 -# 8.654 -# Ftape, the floppy tape device driver 8.655 -# 8.656 -# CONFIG_FTAPE is not set 8.657 -# CONFIG_AGP is not set 8.658 - 8.659 -# 8.660 -# Direct Rendering Manager (XFree86 DRI support) 8.661 -# 8.662 -# CONFIG_DRM is not set 8.663 -# CONFIG_MWAVE is not set 8.664 -# CONFIG_OBMOUSE is not set 8.665 - 8.666 -# 8.667 -# Multimedia devices 8.668 -# 8.669 -# CONFIG_VIDEO_DEV is not set 8.670 - 8.671 -# 8.672 -# File systems 8.673 -# 8.674 -# CONFIG_QUOTA is not set 8.675 -# CONFIG_QFMT_V2 is not set 8.676 -CONFIG_AUTOFS_FS=y 8.677 -CONFIG_AUTOFS4_FS=y 8.678 -# CONFIG_REISERFS_FS is not set 8.679 -# CONFIG_REISERFS_CHECK is not set 8.680 -# CONFIG_REISERFS_PROC_INFO is not set 8.681 -# CONFIG_ADFS_FS is not set 8.682 -# CONFIG_ADFS_FS_RW is not set 8.683 -# CONFIG_AFFS_FS is not set 8.684 -# CONFIG_HFS_FS is not set 8.685 -# CONFIG_HFSPLUS_FS is not set 8.686 -# CONFIG_BEFS_FS is not set 8.687 -# CONFIG_BEFS_DEBUG is not set 8.688 -# CONFIG_BFS_FS is not set 8.689 -CONFIG_EXT3_FS=y 8.690 -CONFIG_JBD=y 8.691 -# CONFIG_JBD_DEBUG is not set 8.692 -CONFIG_FAT_FS=y 8.693 -CONFIG_MSDOS_FS=y 8.694 -CONFIG_UMSDOS_FS=y 8.695 -CONFIG_VFAT_FS=y 8.696 -# CONFIG_EFS_FS is not set 8.697 -# CONFIG_JFFS_FS is not set 8.698 -# CONFIG_JFFS2_FS is not set 8.699 -# CONFIG_CRAMFS is not set 8.700 -CONFIG_TMPFS=y 8.701 -CONFIG_RAMFS=y 8.702 -CONFIG_ISO9660_FS=y 8.703 -CONFIG_JOLIET=y 8.704 -CONFIG_ZISOFS=y 8.705 -# CONFIG_JFS_FS is not set 8.706 -# CONFIG_JFS_DEBUG is not set 8.707 -# CONFIG_JFS_STATISTICS is not set 8.708 -# CONFIG_MINIX_FS is not set 8.709 -# CONFIG_VXFS_FS is not set 8.710 -# CONFIG_NTFS_FS is not set 8.711 -# CONFIG_NTFS_RW is not set 8.712 -# CONFIG_HPFS_FS is not set 8.713 -CONFIG_PROC_FS=y 8.714 -# CONFIG_DEVFS_FS is not set 8.715 -# CONFIG_DEVFS_MOUNT is not set 8.716 -# CONFIG_DEVFS_DEBUG is not set 8.717 -CONFIG_DEVPTS_FS=y 8.718 -# CONFIG_QNX4FS_FS is not set 8.719 -# CONFIG_QNX4FS_RW is not set 8.720 -# CONFIG_ROMFS_FS is not set 8.721 -CONFIG_EXT2_FS=y 8.722 -# CONFIG_SYSV_FS is not set 8.723 -# CONFIG_UDF_FS is not set 8.724 -# CONFIG_UDF_RW is not set 8.725 -# CONFIG_UFS_FS is not set 8.726 -# CONFIG_UFS_FS_WRITE is not set 8.727 -# CONFIG_XFS_FS is not set 8.728 -# CONFIG_XFS_QUOTA is not set 8.729 -# CONFIG_XFS_RT is not set 8.730 -# CONFIG_XFS_TRACE is not set 8.731 -# CONFIG_XFS_DEBUG is not set 8.732 - 8.733 -# 8.734 -# Network File Systems 8.735 -# 8.736 -# CONFIG_CODA_FS is not set 8.737 -# CONFIG_INTERMEZZO_FS is not set 8.738 -CONFIG_NFS_FS=y 8.739 -CONFIG_NFS_V3=y 8.740 -# CONFIG_NFS_DIRECTIO is not set 8.741 -CONFIG_ROOT_NFS=y 8.742 -CONFIG_NFSD=y 8.743 -CONFIG_NFSD_V3=y 8.744 -# CONFIG_NFSD_TCP is not set 8.745 -CONFIG_SUNRPC=y 8.746 -CONFIG_LOCKD=y 8.747 -CONFIG_LOCKD_V4=y 8.748 -# CONFIG_SMB_FS is not set 8.749 -# CONFIG_NCP_FS is not set 8.750 -# CONFIG_NCPFS_PACKET_SIGNING is not set 8.751 -# CONFIG_NCPFS_IOCTL_LOCKING is not set 8.752 -# CONFIG_NCPFS_STRONG is not set 8.753 -# CONFIG_NCPFS_NFS_NS is not set 8.754 -# CONFIG_NCPFS_OS2_NS is not set 8.755 -# CONFIG_NCPFS_SMALLDOS is not set 8.756 -# CONFIG_NCPFS_NLS is not set 8.757 -# CONFIG_NCPFS_EXTRAS is not set 8.758 -CONFIG_ZISOFS_FS=y 8.759 - 8.760 -# 8.761 -# Partition Types 8.762 -# 8.763 -CONFIG_PARTITION_ADVANCED=y 8.764 -# CONFIG_ACORN_PARTITION is not set 8.765 -# CONFIG_OSF_PARTITION is not set 8.766 -# CONFIG_AMIGA_PARTITION is not set 8.767 -# CONFIG_ATARI_PARTITION is not set 8.768 -# CONFIG_MAC_PARTITION is not set 8.769 -CONFIG_MSDOS_PARTITION=y 8.770 -# CONFIG_BSD_DISKLABEL is not set 8.771 -# CONFIG_MINIX_SUBPARTITION is not set 8.772 -# CONFIG_SOLARIS_X86_PARTITION is not set 8.773 -# CONFIG_UNIXWARE_DISKLABEL is not set 8.774 -# CONFIG_LDM_PARTITION is not set 8.775 -# CONFIG_SGI_PARTITION is not set 8.776 -# CONFIG_ULTRIX_PARTITION is not set 8.777 -# CONFIG_SUN_PARTITION is not set 8.778 -# CONFIG_EFI_PARTITION is not set 8.779 -# CONFIG_SMB_NLS is not set 8.780 -CONFIG_NLS=y 8.781 - 8.782 -# 8.783 -# Native Language Support 8.784 -# 8.785 -CONFIG_NLS_DEFAULT="iso8559-1" 8.786 -# CONFIG_NLS_CODEPAGE_437 is not set 8.787 -# CONFIG_NLS_CODEPAGE_737 is not set 8.788 -# CONFIG_NLS_CODEPAGE_775 is not set 8.789 -# CONFIG_NLS_CODEPAGE_850 is not set 8.790 -# CONFIG_NLS_CODEPAGE_852 is not set 8.791 -# CONFIG_NLS_CODEPAGE_855 is not set 8.792 -# CONFIG_NLS_CODEPAGE_857 is not set 8.793 -# CONFIG_NLS_CODEPAGE_860 is not set 8.794 -# CONFIG_NLS_CODEPAGE_861 is not set 8.795 -# CONFIG_NLS_CODEPAGE_862 is not set 8.796 -# CONFIG_NLS_CODEPAGE_863 is not set 8.797 -# CONFIG_NLS_CODEPAGE_864 is not set 8.798 -# CONFIG_NLS_CODEPAGE_865 is not set 8.799 -# CONFIG_NLS_CODEPAGE_866 is not set 8.800 -# CONFIG_NLS_CODEPAGE_869 is not set 8.801 -# CONFIG_NLS_CODEPAGE_936 is not set 8.802 -# CONFIG_NLS_CODEPAGE_950 is not set 8.803 -# CONFIG_NLS_CODEPAGE_932 is not set 8.804 -# CONFIG_NLS_CODEPAGE_949 is not set 8.805 -# CONFIG_NLS_CODEPAGE_874 is not set 8.806 -# CONFIG_NLS_ISO8859_8 is not set 8.807 -# CONFIG_NLS_CODEPAGE_1250 is not set 8.808 -# CONFIG_NLS_CODEPAGE_1251 is not set 8.809 -CONFIG_NLS_ISO8859_1=y 8.810 -# CONFIG_NLS_ISO8859_2 is not set 8.811 -# CONFIG_NLS_ISO8859_3 is not set 8.812 -# CONFIG_NLS_ISO8859_4 is not set 8.813 -# CONFIG_NLS_ISO8859_5 is not set 8.814 -# CONFIG_NLS_ISO8859_6 is not set 8.815 -# CONFIG_NLS_ISO8859_7 is not set 8.816 -# CONFIG_NLS_ISO8859_9 is not set 8.817 -# CONFIG_NLS_ISO8859_13 is not set 8.818 -# CONFIG_NLS_ISO8859_14 is not set 8.819 -# CONFIG_NLS_ISO8859_15 is not set 8.820 -# CONFIG_NLS_KOI8_R is not set 8.821 -# CONFIG_NLS_KOI8_U is not set 8.822 -# CONFIG_NLS_UTF8 is not set 8.823 - 8.824 -# 8.825 -# Console drivers 8.826 -# 8.827 -CONFIG_XEN_CONSOLE=y 8.828 -CONFIG_VGA_CONSOLE=y 8.829 -CONFIG_DUMMY_CONSOLE=y 8.830 -# CONFIG_VIDEO_SELECT is not set 8.831 -# CONFIG_MDA_CONSOLE is not set 8.832 - 8.833 -# 8.834 -# Frame-buffer support 8.835 -# 8.836 -# CONFIG_FB is not set 8.837 - 8.838 -# 8.839 -# Sound 8.840 -# 8.841 -# CONFIG_SOUND is not set 8.842 - 8.843 -# 8.844 -# USB support 8.845 -# 8.846 -# CONFIG_USB is not set 8.847 - 8.848 -# 8.849 -# Support for USB gadgets 8.850 -# 8.851 -# CONFIG_USB_GADGET is not set 8.852 - 8.853 -# 8.854 -# Bluetooth support 8.855 -# 8.856 -# CONFIG_BLUEZ is not set 8.857 - 8.858 -# 8.859 -# Kernel hacking 8.860 -# 8.861 -CONFIG_DEBUG_KERNEL=y 8.862 -# CONFIG_DEBUG_STACKOVERFLOW is not set 8.863 -# CONFIG_DEBUG_HIGHMEM is not set 8.864 -# CONFIG_DEBUG_SLAB is not set 8.865 -# CONFIG_DEBUG_IOVIRT is not set 8.866 -# CONFIG_MAGIC_SYSRQ is not set 8.867 -# CONFIG_DEBUG_SPINLOCK is not set 8.868 -# CONFIG_DEBUG_BUGVERBOSE is not set 8.869 -CONFIG_KALLSYMS=y 8.870 -# CONFIG_FRAME_POINTER is not set 8.871 -CONFIG_LOG_BUF_SHIFT=0 8.872 - 8.873 -# 8.874 -# Cryptographic options 8.875 -# 8.876 -# CONFIG_CRYPTO is not set 8.877 - 8.878 -# 8.879 -# Library routines 8.880 -# 8.881 -# CONFIG_CRC32 is not set 8.882 -CONFIG_ZLIB_INFLATE=y 8.883 -# CONFIG_ZLIB_DEFLATE is not set 8.884 -# CONFIG_FW_LOADER is not set
9.1 --- a/linux-2.4.26-xen-sparse/arch/xen/defconfigs/unprivileged Fri Jun 11 07:11:59 2004 +0000 9.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 9.3 @@ -1,526 +0,0 @@ 9.4 -# 9.5 -# Automatically generated make config: don't edit 9.6 -# 9.7 -CONFIG_XEN=y 9.8 -CONFIG_X86=y 9.9 -CONFIG_ISA=y 9.10 -# CONFIG_SBUS is not set 9.11 -CONFIG_UID16=y 9.12 - 9.13 -# 9.14 -# Xen 9.15 -# 9.16 -CONFIG_XEN_PRIVILEGED_GUEST=y 9.17 -# CONFIG_XEN_PHYSDEV_ACCESS is not set 9.18 -CONFIG_NO_IDLE_HZ=y 9.19 - 9.20 -# 9.21 -# Code maturity level options 9.22 -# 9.23 -# CONFIG_EXPERIMENTAL is not set 9.24 - 9.25 -# 9.26 -# Loadable module support 9.27 -# 9.28 -CONFIG_MODULES=y 9.29 -CONFIG_MODVERSIONS=y 9.30 -CONFIG_KMOD=y 9.31 - 9.32 -# 9.33 -# Processor type and features 9.34 -# 9.35 -CONFIG_M686=y 9.36 -# CONFIG_MPENTIUMIII is not set 9.37 -# CONFIG_MPENTIUM4 is not set 9.38 -# CONFIG_MK7 is not set 9.39 -# CONFIG_MK8 is not set 9.40 -# CONFIG_MVIAC3_2 is not set 9.41 -CONFIG_X86_WP_WORKS_OK=y 9.42 -CONFIG_X86_INVLPG=y 9.43 -CONFIG_X86_CMPXCHG=y 9.44 -CONFIG_X86_XADD=y 9.45 -CONFIG_X86_BSWAP=y 9.46 -CONFIG_X86_POPAD_OK=y 9.47 -# CONFIG_RWSEM_GENERIC_SPINLOCK is not set 9.48 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y 9.49 -CONFIG_X86_GOOD_APIC=y 9.50 -CONFIG_X86_PGE=y 9.51 -CONFIG_X86_USE_PPRO_CHECKSUM=y 9.52 -CONFIG_X86_TSC=y 9.53 -CONFIG_X86_L1_CACHE_SHIFT=5 9.54 -CONFIG_NOHIGHMEM=y 9.55 -# CONFIG_HIGHMEM4G is not set 9.56 -CONFIG_FORCE_MAX_ZONEORDER=12 9.57 - 9.58 -# 9.59 -# General setup 9.60 -# 9.61 -CONFIG_NET=y 9.62 -CONFIG_SYSVIPC=y 9.63 -# CONFIG_BSD_PROCESS_ACCT is not set 9.64 -CONFIG_SYSCTL=y 9.65 -CONFIG_KCORE_ELF=y 9.66 -# CONFIG_KCORE_AOUT is not set 9.67 -CONFIG_BINFMT_AOUT=y 9.68 -CONFIG_BINFMT_ELF=y 9.69 -# CONFIG_BINFMT_MISC is not set 9.70 -# CONFIG_OOM_KILLER is not set 9.71 - 9.72 -# 9.73 -# Networking options 9.74 -# 9.75 -CONFIG_PACKET=y 9.76 -CONFIG_PACKET_MMAP=y 9.77 -# CONFIG_NETLINK_DEV is not set 9.78 -CONFIG_NETFILTER=y 9.79 -# CONFIG_NETFILTER_DEBUG is not set 9.80 -CONFIG_FILTER=y 9.81 -CONFIG_UNIX=y 9.82 -CONFIG_INET=y 9.83 -# CONFIG_IP_MULTICAST is not set 9.84 -# CONFIG_IP_ADVANCED_ROUTER is not set 9.85 -CONFIG_IP_PNP=y 9.86 -CONFIG_IP_PNP_DHCP=y 9.87 -# CONFIG_IP_PNP_BOOTP is not set 9.88 -# CONFIG_IP_PNP_RARP is not set 9.89 -# CONFIG_NET_IPIP is not set 9.90 -# CONFIG_NET_IPGRE is not set 9.91 -# CONFIG_INET_ECN is not set 9.92 -# CONFIG_SYN_COOKIES is not set 9.93 - 9.94 -# 9.95 -# IP: Netfilter Configuration 9.96 -# 9.97 -CONFIG_IP_NF_CONNTRACK=y 9.98 -CONFIG_IP_NF_FTP=y 9.99 -# CONFIG_IP_NF_AMANDA is not set 9.100 -CONFIG_IP_NF_TFTP=y 9.101 -CONFIG_IP_NF_IRC=y 9.102 -CONFIG_IP_NF_IPTABLES=y 9.103 -# CONFIG_IP_NF_MATCH_LIMIT is not set 9.104 -# CONFIG_IP_NF_MATCH_MAC is not set 9.105 -# CONFIG_IP_NF_MATCH_PKTTYPE is not set 9.106 -# CONFIG_IP_NF_MATCH_MARK is not set 9.107 -# CONFIG_IP_NF_MATCH_MULTIPORT is not set 9.108 -# CONFIG_IP_NF_MATCH_TOS is not set 9.109 -# CONFIG_IP_NF_MATCH_RECENT is not set 9.110 -# CONFIG_IP_NF_MATCH_ECN is not set 9.111 -# CONFIG_IP_NF_MATCH_DSCP is not set 9.112 -# CONFIG_IP_NF_MATCH_AH_ESP is not set 9.113 -# CONFIG_IP_NF_MATCH_LENGTH is not set 9.114 -# CONFIG_IP_NF_MATCH_TTL is not set 9.115 -# CONFIG_IP_NF_MATCH_TCPMSS is not set 9.116 -# CONFIG_IP_NF_MATCH_HELPER is not set 9.117 -CONFIG_IP_NF_MATCH_STATE=y 9.118 -CONFIG_IP_NF_MATCH_CONNTRACK=y 9.119 -CONFIG_IP_NF_FILTER=y 9.120 -CONFIG_IP_NF_TARGET_REJECT=y 9.121 -CONFIG_IP_NF_NAT=y 9.122 -CONFIG_IP_NF_NAT_NEEDED=y 9.123 -CONFIG_IP_NF_TARGET_MASQUERADE=y 9.124 -CONFIG_IP_NF_TARGET_REDIRECT=y 9.125 -# CONFIG_IP_NF_NAT_LOCAL is not set 9.126 -CONFIG_IP_NF_NAT_IRC=y 9.127 -CONFIG_IP_NF_NAT_FTP=y 9.128 -CONFIG_IP_NF_NAT_TFTP=y 9.129 -# CONFIG_IP_NF_MANGLE is not set 9.130 -CONFIG_IP_NF_TARGET_LOG=y 9.131 -CONFIG_IP_NF_TARGET_ULOG=y 9.132 -# CONFIG_IP_NF_TARGET_TCPMSS is not set 9.133 -# CONFIG_IP_NF_ARPTABLES is not set 9.134 - 9.135 -# 9.136 -# IP: Virtual Server Configuration 9.137 -# 9.138 -# CONFIG_IP_VS is not set 9.139 -# CONFIG_VLAN_8021Q is not set 9.140 - 9.141 -# 9.142 -# 9.143 -# 9.144 -# CONFIG_IPX is not set 9.145 -# CONFIG_ATALK is not set 9.146 - 9.147 -# 9.148 -# Appletalk devices 9.149 -# 9.150 -# CONFIG_DEV_APPLETALK is not set 9.151 -# CONFIG_DECNET is not set 9.152 -# CONFIG_BRIDGE is not set 9.153 - 9.154 -# 9.155 -# QoS and/or fair queueing 9.156 -# 9.157 -# CONFIG_NET_SCHED is not set 9.158 - 9.159 -# 9.160 -# Network testing 9.161 -# 9.162 -# CONFIG_NET_PKTGEN is not set 9.163 -CONFIG_NETDEVICES=y 9.164 - 9.165 -# 9.166 -# SCSI support 9.167 -# 9.168 -CONFIG_SCSI=y 9.169 - 9.170 -# 9.171 -# SCSI support type (disk, tape, CD-ROM) 9.172 -# 9.173 -CONFIG_BLK_DEV_SD=y 9.174 -CONFIG_SD_EXTRA_DEVS=40 9.175 -# CONFIG_CHR_DEV_ST is not set 9.176 -# CONFIG_CHR_DEV_OSST is not set 9.177 -# CONFIG_BLK_DEV_SR is not set 9.178 -# CONFIG_CHR_DEV_SG is not set 9.179 - 9.180 -# 9.181 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs 9.182 -# 9.183 -# CONFIG_SCSI_DEBUG_QUEUES is not set 9.184 -# CONFIG_SCSI_MULTI_LUN is not set 9.185 -# CONFIG_SCSI_CONSTANTS is not set 9.186 -# CONFIG_SCSI_LOGGING is not set 9.187 - 9.188 -# 9.189 -# SCSI low-level drivers 9.190 -# 9.191 -# CONFIG_SCSI_7000FASST is not set 9.192 -# CONFIG_SCSI_ACARD is not set 9.193 -# CONFIG_SCSI_AHA152X is not set 9.194 -# CONFIG_SCSI_AHA1542 is not set 9.195 -# CONFIG_SCSI_AHA1740 is not set 9.196 -# CONFIG_SCSI_AIC7XXX is not set 9.197 -# CONFIG_SCSI_AIC79XX is not set 9.198 -# CONFIG_SCSI_AIC7XXX_OLD is not set 9.199 -# CONFIG_SCSI_DPT_I2O is not set 9.200 -# CONFIG_SCSI_ADVANSYS is not set 9.201 -# CONFIG_SCSI_IN2000 is not set 9.202 -# CONFIG_SCSI_AM53C974 is not set 9.203 -# CONFIG_SCSI_MEGARAID is not set 9.204 -# CONFIG_SCSI_MEGARAID2 is not set 9.205 -# CONFIG_SCSI_BUSLOGIC is not set 9.206 -# CONFIG_SCSI_DMX3191D is not set 9.207 -# CONFIG_SCSI_DTC3280 is not set 9.208 -# CONFIG_SCSI_EATA is not set 9.209 -# CONFIG_SCSI_EATA_DMA is not set 9.210 -# CONFIG_SCSI_EATA_PIO is not set 9.211 -# CONFIG_SCSI_FUTURE_DOMAIN is not set 9.212 -# CONFIG_SCSI_GDTH is not set 9.213 -# CONFIG_SCSI_GENERIC_NCR5380 is not set 9.214 -# CONFIG_SCSI_IPS is not set 9.215 -# CONFIG_SCSI_INITIO is not set 9.216 -# CONFIG_SCSI_INIA100 is not set 9.217 -# CONFIG_SCSI_PPA is not set 9.218 -# CONFIG_SCSI_IMM is not set 9.219 -# CONFIG_SCSI_NCR53C406A is not set 9.220 -# CONFIG_SCSI_NCR53C7xx is not set 9.221 -# CONFIG_SCSI_PAS16 is not set 9.222 -# CONFIG_SCSI_PCI2000 is not set 9.223 -# CONFIG_SCSI_PCI2220I is not set 9.224 -# CONFIG_SCSI_PSI240I is not set 9.225 -# CONFIG_SCSI_QLOGIC_FAS is not set 9.226 -# CONFIG_SCSI_SEAGATE is not set 9.227 -# CONFIG_SCSI_SIM710 is not set 9.228 -# CONFIG_SCSI_SYM53C416 is not set 9.229 -# CONFIG_SCSI_T128 is not set 9.230 -# CONFIG_SCSI_U14_34F is not set 9.231 -# CONFIG_SCSI_ULTRASTOR is not set 9.232 -# CONFIG_SCSI_NSP32 is not set 9.233 - 9.234 -# 9.235 -# Block devices 9.236 -# 9.237 -CONFIG_BLK_DEV_LOOP=y 9.238 -CONFIG_BLK_DEV_NBD=y 9.239 -CONFIG_BLK_DEV_RAM=y 9.240 -CONFIG_BLK_DEV_RAM_SIZE=4096 9.241 -CONFIG_BLK_DEV_INITRD=y 9.242 -# CONFIG_BLK_STATS is not set 9.243 -# CONFIG_BLK_DEV_HD is not set 9.244 - 9.245 -# 9.246 -# Character devices 9.247 -# 9.248 -CONFIG_VT=y 9.249 -CONFIG_VT_CONSOLE=y 9.250 -# CONFIG_SERIAL is not set 9.251 -# CONFIG_SERIAL_EXTENDED is not set 9.252 -# CONFIG_SERIAL_NONSTANDARD is not set 9.253 -CONFIG_UNIX98_PTYS=y 9.254 -CONFIG_UNIX98_PTY_COUNT=256 9.255 -# CONFIG_PRINTER is not set 9.256 -# CONFIG_PPDEV is not set 9.257 -# CONFIG_TIPAR is not set 9.258 - 9.259 -# 9.260 -# I2C support 9.261 -# 9.262 -# CONFIG_I2C is not set 9.263 - 9.264 -# 9.265 -# Mice 9.266 -# 9.267 -# CONFIG_BUSMOUSE is not set 9.268 -CONFIG_MOUSE=y 9.269 -CONFIG_PSMOUSE=y 9.270 -# CONFIG_82C710_MOUSE is not set 9.271 -# CONFIG_PC110_PAD is not set 9.272 -# CONFIG_MK712_MOUSE is not set 9.273 - 9.274 -# 9.275 -# Joysticks 9.276 -# 9.277 -# CONFIG_INPUT_GAMEPORT is not set 9.278 -# CONFIG_INPUT_NS558 is not set 9.279 -# CONFIG_INPUT_LIGHTNING is not set 9.280 -# CONFIG_INPUT_PCIGAME is not set 9.281 -# CONFIG_INPUT_CS461X is not set 9.282 -# CONFIG_INPUT_EMU10K1 is not set 9.283 -# CONFIG_INPUT_SERIO is not set 9.284 -# CONFIG_INPUT_SERPORT is not set 9.285 - 9.286 -# 9.287 -# Joysticks 9.288 -# 9.289 -# CONFIG_INPUT_ANALOG is not set 9.290 -# CONFIG_INPUT_A3D is not set 9.291 -# CONFIG_INPUT_ADI is not set 9.292 -# CONFIG_INPUT_COBRA is not set 9.293 -# CONFIG_INPUT_GF2K is not set 9.294 -# CONFIG_INPUT_GRIP is not set 9.295 -# CONFIG_INPUT_INTERACT is not set 9.296 -# CONFIG_INPUT_TMDC is not set 9.297 -# CONFIG_INPUT_SIDEWINDER is not set 9.298 -# CONFIG_INPUT_IFORCE_USB is not set 9.299 -# CONFIG_INPUT_IFORCE_232 is not set 9.300 -# CONFIG_INPUT_WARRIOR is not set 9.301 -# CONFIG_INPUT_MAGELLAN is not set 9.302 -# CONFIG_INPUT_SPACEORB is not set 9.303 -# CONFIG_INPUT_SPACEBALL is not set 9.304 -# CONFIG_INPUT_STINGER is not set 9.305 -# CONFIG_INPUT_DB9 is not set 9.306 -# CONFIG_INPUT_GAMECON is not set 9.307 -# CONFIG_INPUT_TURBOGRAFX is not set 9.308 -# CONFIG_QIC02_TAPE is not set 9.309 -# CONFIG_IPMI_HANDLER is not set 9.310 -# CONFIG_IPMI_PANIC_EVENT is not set 9.311 -# CONFIG_IPMI_DEVICE_INTERFACE is not set 9.312 -# CONFIG_IPMI_KCS is not set 9.313 -# CONFIG_IPMI_WATCHDOG is not set 9.314 - 9.315 -# 9.316 -# Watchdog Cards 9.317 -# 9.318 -# CONFIG_WATCHDOG is not set 9.319 -# CONFIG_SCx200 is not set 9.320 -# CONFIG_SCx200_GPIO is not set 9.321 -# CONFIG_AMD_RNG is not set 9.322 -# CONFIG_INTEL_RNG is not set 9.323 -# CONFIG_HW_RANDOM is not set 9.324 -# CONFIG_AMD_PM768 is not set 9.325 -# CONFIG_NVRAM is not set 9.326 -# CONFIG_RTC is not set 9.327 -# CONFIG_DTLK is not set 9.328 -# CONFIG_R3964 is not set 9.329 -# CONFIG_APPLICOM is not set 9.330 - 9.331 -# 9.332 -# Ftape, the floppy tape device driver 9.333 -# 9.334 -# CONFIG_FTAPE is not set 9.335 -# CONFIG_AGP is not set 9.336 - 9.337 -# 9.338 -# Direct Rendering Manager (XFree86 DRI support) 9.339 -# 9.340 -# CONFIG_DRM is not set 9.341 -# CONFIG_MWAVE is not set 9.342 -# CONFIG_OBMOUSE is not set 9.343 - 9.344 -# 9.345 -# File systems 9.346 -# 9.347 -# CONFIG_QUOTA is not set 9.348 -# CONFIG_QFMT_V2 is not set 9.349 -CONFIG_AUTOFS_FS=y 9.350 -CONFIG_AUTOFS4_FS=y 9.351 -# CONFIG_REISERFS_FS is not set 9.352 -# CONFIG_REISERFS_CHECK is not set 9.353 -# CONFIG_REISERFS_PROC_INFO is not set 9.354 -# CONFIG_ADFS_FS is not set 9.355 -# CONFIG_ADFS_FS_RW is not set 9.356 -# CONFIG_AFFS_FS is not set 9.357 -# CONFIG_HFS_FS is not set 9.358 -# CONFIG_HFSPLUS_FS is not set 9.359 -# CONFIG_BEFS_FS is not set 9.360 -# CONFIG_BEFS_DEBUG is not set 9.361 -# CONFIG_BFS_FS is not set 9.362 -CONFIG_EXT3_FS=y 9.363 -CONFIG_JBD=y 9.364 -# CONFIG_JBD_DEBUG is not set 9.365 -CONFIG_FAT_FS=y 9.366 -CONFIG_MSDOS_FS=y 9.367 -CONFIG_UMSDOS_FS=y 9.368 -CONFIG_VFAT_FS=y 9.369 -# CONFIG_EFS_FS is not set 9.370 -# CONFIG_JFFS_FS is not set 9.371 -# CONFIG_JFFS2_FS is not set 9.372 -# CONFIG_CRAMFS is not set 9.373 -CONFIG_TMPFS=y 9.374 -CONFIG_RAMFS=y 9.375 -CONFIG_ISO9660_FS=y 9.376 -CONFIG_JOLIET=y 9.377 -CONFIG_ZISOFS=y 9.378 -# CONFIG_JFS_FS is not set 9.379 -# CONFIG_JFS_DEBUG is not set 9.380 -# CONFIG_JFS_STATISTICS is not set 9.381 -# CONFIG_MINIX_FS is not set 9.382 -# CONFIG_VXFS_FS is not set 9.383 -# CONFIG_NTFS_FS is not set 9.384 -# CONFIG_NTFS_RW is not set 9.385 -# CONFIG_HPFS_FS is not set 9.386 -CONFIG_PROC_FS=y 9.387 -# CONFIG_DEVFS_FS is not set 9.388 -# CONFIG_DEVFS_MOUNT is not set 9.389 -# CONFIG_DEVFS_DEBUG is not set 9.390 -CONFIG_DEVPTS_FS=y 9.391 -# CONFIG_QNX4FS_FS is not set 9.392 -# CONFIG_QNX4FS_RW is not set 9.393 -# CONFIG_ROMFS_FS is not set 9.394 -CONFIG_EXT2_FS=y 9.395 -# CONFIG_SYSV_FS is not set 9.396 -# CONFIG_UDF_FS is not set 9.397 -# CONFIG_UDF_RW is not set 9.398 -# CONFIG_UFS_FS is not set 9.399 -# CONFIG_UFS_FS_WRITE is not set 9.400 -# CONFIG_XFS_FS is not set 9.401 -# CONFIG_XFS_QUOTA is not set 9.402 -# CONFIG_XFS_RT is not set 9.403 -# CONFIG_XFS_TRACE is not set 9.404 -# CONFIG_XFS_DEBUG is not set 9.405 - 9.406 -# 9.407 -# Network File Systems 9.408 -# 9.409 -# CONFIG_CODA_FS is not set 9.410 -# CONFIG_INTERMEZZO_FS is not set 9.411 -CONFIG_NFS_FS=y 9.412 -CONFIG_NFS_V3=y 9.413 -# CONFIG_NFS_DIRECTIO is not set 9.414 -CONFIG_ROOT_NFS=y 9.415 -CONFIG_NFSD=y 9.416 -CONFIG_NFSD_V3=y 9.417 -# CONFIG_NFSD_TCP is not set 9.418 -CONFIG_SUNRPC=y 9.419 -CONFIG_LOCKD=y 9.420 -CONFIG_LOCKD_V4=y 9.421 -# CONFIG_SMB_FS is not set 9.422 -# CONFIG_NCP_FS is not set 9.423 -# CONFIG_NCPFS_PACKET_SIGNING is not set 9.424 -# CONFIG_NCPFS_IOCTL_LOCKING is not set 9.425 -# CONFIG_NCPFS_STRONG is not set 9.426 -# CONFIG_NCPFS_NFS_NS is not set 9.427 -# CONFIG_NCPFS_OS2_NS is not set 9.428 -# CONFIG_NCPFS_SMALLDOS is not set 9.429 -# CONFIG_NCPFS_NLS is not set 9.430 -# CONFIG_NCPFS_EXTRAS is not set 9.431 -CONFIG_ZISOFS_FS=y 9.432 - 9.433 -# 9.434 -# Partition Types 9.435 -# 9.436 -CONFIG_PARTITION_ADVANCED=y 9.437 -# CONFIG_ACORN_PARTITION is not set 9.438 -# CONFIG_OSF_PARTITION is not set 9.439 -# CONFIG_AMIGA_PARTITION is not set 9.440 -# CONFIG_ATARI_PARTITION is not set 9.441 -# CONFIG_MAC_PARTITION is not set 9.442 -CONFIG_MSDOS_PARTITION=y 9.443 -# CONFIG_BSD_DISKLABEL is not set 9.444 -# CONFIG_MINIX_SUBPARTITION is not set 9.445 -# CONFIG_SOLARIS_X86_PARTITION is not set 9.446 -# CONFIG_UNIXWARE_DISKLABEL is not set 9.447 -# CONFIG_LDM_PARTITION is not set 9.448 -# CONFIG_SGI_PARTITION is not set 9.449 -# CONFIG_ULTRIX_PARTITION is not set 9.450 -# CONFIG_SUN_PARTITION is not set 9.451 -# CONFIG_EFI_PARTITION is not set 9.452 -# CONFIG_SMB_NLS is not set 9.453 -CONFIG_NLS=y 9.454 - 9.455 -# 9.456 -# Native Language Support 9.457 -# 9.458 -CONFIG_NLS_DEFAULT="iso8559-1" 9.459 -# CONFIG_NLS_CODEPAGE_437 is not set 9.460 -# CONFIG_NLS_CODEPAGE_737 is not set 9.461 -# CONFIG_NLS_CODEPAGE_775 is not set 9.462 -# CONFIG_NLS_CODEPAGE_850 is not set 9.463 -# CONFIG_NLS_CODEPAGE_852 is not set 9.464 -# CONFIG_NLS_CODEPAGE_855 is not set 9.465 -# CONFIG_NLS_CODEPAGE_857 is not set 9.466 -# CONFIG_NLS_CODEPAGE_860 is not set 9.467 -# CONFIG_NLS_CODEPAGE_861 is not set 9.468 -# CONFIG_NLS_CODEPAGE_862 is not set 9.469 -# CONFIG_NLS_CODEPAGE_863 is not set 9.470 -# CONFIG_NLS_CODEPAGE_864 is not set 9.471 -# CONFIG_NLS_CODEPAGE_865 is not set 9.472 -# CONFIG_NLS_CODEPAGE_866 is not set 9.473 -# CONFIG_NLS_CODEPAGE_869 is not set 9.474 -# CONFIG_NLS_CODEPAGE_936 is not set 9.475 -# CONFIG_NLS_CODEPAGE_950 is not set 9.476 -# CONFIG_NLS_CODEPAGE_932 is not set 9.477 -# CONFIG_NLS_CODEPAGE_949 is not set 9.478 -# CONFIG_NLS_CODEPAGE_874 is not set 9.479 -# CONFIG_NLS_ISO8859_8 is not set 9.480 -# CONFIG_NLS_CODEPAGE_1250 is not set 9.481 -# CONFIG_NLS_CODEPAGE_1251 is not set 9.482 -CONFIG_NLS_ISO8859_1=y 9.483 -# CONFIG_NLS_ISO8859_2 is not set 9.484 -# CONFIG_NLS_ISO8859_3 is not set 9.485 -# CONFIG_NLS_ISO8859_4 is not set 9.486 -# CONFIG_NLS_ISO8859_5 is not set 9.487 -# CONFIG_NLS_ISO8859_6 is not set 9.488 -# CONFIG_NLS_ISO8859_7 is not set 9.489 -# CONFIG_NLS_ISO8859_9 is not set 9.490 -# CONFIG_NLS_ISO8859_13 is not set 9.491 -# CONFIG_NLS_ISO8859_14 is not set 9.492 -# CONFIG_NLS_ISO8859_15 is not set 9.493 -# CONFIG_NLS_KOI8_R is not set 9.494 -# CONFIG_NLS_KOI8_U is not set 9.495 -# CONFIG_NLS_UTF8 is not set 9.496 - 9.497 -# 9.498 -# Console drivers 9.499 -# 9.500 -CONFIG_XEN_CONSOLE=y 9.501 -CONFIG_VGA_CONSOLE=y 9.502 -CONFIG_DUMMY_CONSOLE=y 9.503 - 9.504 -# 9.505 -# Kernel hacking 9.506 -# 9.507 -CONFIG_DEBUG_KERNEL=y 9.508 -# CONFIG_DEBUG_STACKOVERFLOW is not set 9.509 -# CONFIG_DEBUG_HIGHMEM is not set 9.510 -# CONFIG_DEBUG_SLAB is not set 9.511 -# CONFIG_DEBUG_IOVIRT is not set 9.512 -CONFIG_MAGIC_SYSRQ=y 9.513 -# CONFIG_DEBUG_SPINLOCK is not set 9.514 -# CONFIG_DEBUG_BUGVERBOSE is not set 9.515 -CONFIG_KALLSYMS=y 9.516 -# CONFIG_FRAME_POINTER is not set 9.517 -CONFIG_LOG_BUF_SHIFT=0 9.518 - 9.519 -# 9.520 -# Cryptographic options 9.521 -# 9.522 -# CONFIG_CRYPTO is not set 9.523 - 9.524 -# 9.525 -# Library routines 9.526 -# 9.527 -# CONFIG_CRC32 is not set 9.528 -CONFIG_ZLIB_INFLATE=y 9.529 -# CONFIG_ZLIB_DEFLATE is not set