HELP!
i can't get ftape to compile on a Linux 2.0.38 #4 Sun Dec 5 06:00:39 PST
1999 i586 unknown. gcc --version 2.7.2.3
yes, i have MODVERSIONS turned off, both in the kernel and in ftape.
i have attached below the make output, MCONFIG, and .config files.
is this pilot error?
-ken
------
for i in ftape ; do make -C $i all ; done
make[1]: Entering directory `/usr/src/ftape-4.03-pre-2/ftape'
for i in setup lowlevel internal parport zftape compressor; \
do \
make -C $i NODEP=true versions; \
done
make[2]: Entering directory `/usr/src/ftape-4.03-pre-2/ftape/setup'
make[2]: Nothing to be done for `versions'.
make[2]: Leaving directory `/usr/src/ftape-4.03-pre-2/ftape/setup'
make[2]: Entering directory `/usr/src/ftape-4.03-pre-2/ftape/lowlevel'
make[2]: Nothing to be done for `versions'.
make[2]: Leaving directory `/usr/src/ftape-4.03-pre-2/ftape/lowlevel'
make[2]: Entering directory `/usr/src/ftape-4.03-pre-2/ftape/internal'
make[2]: Nothing to be done for `versions'.
make[2]: Leaving directory `/usr/src/ftape-4.03-pre-2/ftape/internal'
make[2]: Entering directory `/usr/src/ftape-4.03-pre-2/ftape/parport'
make[2]: Nothing to be done for `versions'.
make[2]: Leaving directory `/usr/src/ftape-4.03-pre-2/ftape/parport'
make[2]: Entering directory `/usr/src/ftape-4.03-pre-2/ftape/zftape'
make[2]: Nothing to be done for `versions'.
make[2]: Leaving directory `/usr/src/ftape-4.03-pre-2/ftape/zftape'
make[2]: Entering directory `/usr/src/ftape-4.03-pre-2/ftape/compressor'
make[2]: Nothing to be done for `versions'.
make[2]: Leaving directory `/usr/src/ftape-4.03-pre-2/ftape/compressor'
set -e; for i in setup lowlevel internal parport zftape compressor; do
make -C $i modules; done
make[2]: Entering directory `/usr/src/ftape-4.03-pre-2/ftape/setup'
make[2]: *** No rule to make target
`/usr/src/linux/include/linux/modules/af_ax25.ver', needed by
`.ftape-setup.d'. Stop.
make[2]: Leaving directory `/usr/src/ftape-4.03-pre-2/ftape/setup'
make[1]: *** [modules] Error 2
make[1]: Leaving directory `/usr/src/ftape-4.03-pre-2/ftape'
make: *** [all] Error 2
############################################################################
###
#
# Copyright (C) 1997, 1998 Claus Heine.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
# $Source: /usr/src/oldsrc/cvs/ftape-stacked/MCONFIG,v $
# $Revision: 1.63 $
# $Date: 1998/09/13 21:48:21 $
#
# Compile time configuration for the QIC-40/80/3010/3020 ftape
# driver for Linux
#
############################################################################
###
############################################################################
###
#
# Pathnames. These should work just fine.
#
# change the following to point to the start of your kernel source tree:
#
# IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT
LINUX_LOCATION = /usr/src/linux
#
# Ok. It looks ugly. It is ugly.
#
KERNEL_VERSION = $$(grep UTS_RELEASE
$(LINUX_LOCATION)/include/linux/version.h|cut -d '"' -f 2)
#
# Change the following to point to the directory where you want the
# modules to be installed.
#
MODULESDIR = /lib/modules/$(KERNEL_VERSION)/misc
#
# This is a path prefix prepended to the installation paths for the
# helper utilities and scripts.
#
# NOTE: This used to be /usr rather than /usr/local in previous
# versions
PREFIX = /usr
# PREFIX = /usr/local
#
# Change the following to point to the directory where you want the
# swapout, ftformat and vtblc utilities to be installed.
#
# NOTE: ftformat and vtblc and swapout used to be installed in /sbin
# in previous versions.
#
SBINDIR = /sbin
# SBINDIR = $(PREFIX)/sbin
#
# Change the following to point to the directory where you want
# the mt program and the listtape scripts to be installed.
#
BINDIR = $(PREFIX)/bin
#
# IMPORTANT NOTE: if you don't like to install the documentation at
# all then please comment out the INFODIR and/or DOCDIR variables,
# i.e. add a `#' sign right at the beginning of the respective line.
#
#
# Change the following to point to the directory where you want the info
# documentation to be installed in
#
INFODIR = $(PREFIX)/info
#
# The html and dvi version of the manual will be installed under the
# following directory:
#
DOCDIR = $(PREFIX)/doc/ftape
#
# The manual pages (if any) will be installed below this directory:
#
MANDIR = $(PREFIX)/man
#
############################################################################
###
############################################################################
###
# IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT
IMPORTANT #
############################################################################
###
#
# Get the configuration of the kernel ftape is compiled for.
#
# This will only work with a configured kernel, but we need a fully
# configured kernel anyways?? If `$(LINUX_LOCATION)/.config' DOESN'T
# exist you'll need to set the variables of the "else" part of the
# "ifeq" clause according to the configuration of the kernel you want
# ftape to use with. If `$(LINUX_LOCATION)/.config' exists you can
# skip this part and go on with the hardware configuration options
# below.
#
#
ifeq ($(LINUX_LOCATION)/.config,$(wildcard $(LINUX_LOCATION)/.config))
include $(LINUX_LOCATION)/.config
else
#
# If the file `$(LINUX_LOCATION)/.config' doesn't exists, then try to
# tune the parameters in this "else" part of the "ifeq" clause above
# to fit your setup.
#
# If you attempt to use CONFIG_MODVERSIONS then make sure that
# `$(LINUX_LOCATION)/include/linux/modversions.h' REALLY
# EXISTS. Otherwise, don't use CONFIG_MODVERSIONS.
#
# You should also set the CONFIG_M386/486/586/686 according to your
# processor type. When running an DEC alpha then comment out the
# CONFIG_M486=y line and uncomment the CONFIG_ALPHA=y line.
#
#CONFIG_M386=y
CONFIG_M486=y
#CONFIG_M586=y
#CONFIG_M686=y
#CONFIG_MAMDK6
#CONFIG_ALPHA=y
#CONFIG_MODVERSIONS=y
#
# DON'T touch the following two lines! To enable/disable the procfs
# interface you should uncomment/comment out the CONFIG_FT_PROC_FS
# option below and leave the CONFIG_PROC_FS option ENABLED.
#
CONFIG_PROC_FS=y
CONFIG_MODULES=y
endif
#
############################################################################
###
############################################################################
###
# IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT
IMPORTANT #
############################################################################
###
#
# You MUST uncomment the following line if you are running a SMP
# (multi-processor) system
#
#SMP = 1
#
############################################################################
###
############################################################################
###
# IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT
IMPORTANT #
############################################################################
###
#
# Hardware configuration for the floppy tape drive.
#
# You need to take care of the following options if you didn't connect
# your floppy tape to the standard floppy controller, i.e. if you
# didn't plugged the floppy tape into the floppy controller already
# contained in your computer system.
#
# Short description of available options
# (`FDC' stands for `Floppy Disk Controller')
#
# PROBE_FC10 - if defined will look for a FC-10 (or FC-20)
# card.
# FDC_BASE - sets base address if using non-standard fdc
# FDC_IRQ - sets interrupt if FDC_BASE is defined
# FDC_DMA - sets dma channel if FDC_BASE is defined
# MACH2 - Support for Mountain MACH-2 controller. You
# have to specify its base address (either
# 0x1E0 or 0x3E0).
# CLK_48MHZ - must be defined and set to 0 if your 82078
# is _not_ being run from a 48 Mhz clock
# oscillator. Normally you don't need to worry
# about it.
#
#
#
# If you're using a non-standard floppy disk controller for the tape
# drive, enable one (only!) of the following lines and set the
# FDC_BASE, FDC_IRQ and FDC_DMA parameters to the actual values.
#
# `enable' means: `uncomment one of the lines starting with
# "FDC_OPT = ..."'. `uncomment' means: remove the leading `#'
#
# The following values hopefully reflect the default settings for
# those controllers.
#
# Note1: A FC-10/FC-20 controller must use either of DMA 1, 2, or 3.
# DMA 5 and 7 does NOT work!.
#
# Note2: IRQ 2 and IRQ 9 can be considered the same. When using IRQ 2
# on a controller you must specify IRQ 9 here!
#
# Note3: *_ALL_* parameters can as well be set as module parameters
# during module loading. This means that the following values
# only give the defaults in case you load the modules without
# any parameters.
#
# Note4: The "..._DEV=0" lines determine which device nodes to use
# with which floppy tape controller (/dev/qft0, ...,
# /dev/qft3). In case you have an internal floppy tape plugged
# into the standard floppy controller and a parallel port
# floppy tape drive, then leave the "STD_DEV=0" line as it is
# and uncomment either the option settings for the Trakker or
# the BackPack tape drive and set either "TRAKKER_DEV=1" or
# "BPCK_DEV=1" to use the parallel port tape drive using
# "/dev/qft1".
#
FDC_OPT :=
#
# For a standard floppy tape controller or automatic configuration of
# parallel port floppy tape drives uncomment the following line:
#
#AUTO_DEV=0
#FDC_OPT += -DCONFIG_FT_STD_FDC_$(AUTO_DEV) \
-DCONFIG_FT_AUTO_$(AUTO_DEV)=1
#
# For a standard floppy tape controller, uncomment the following line:
#
#STD_DEV=0
#FDC_OPT += -DCONFIG_FT_STD_FDC_$(STD_DEV) \
-DCONFIG_FT_INT_$(STD_DEV)=1
#
# For a Mountain MACH-2 controller, try
#
#MACH2_DEV=0
#FDC_OPT += -DCONFIG_FT_MACH2_$(MACH2_DEV)=1 \
-DCONFIG_FT_FDC_BASE_$(MACH2_DEV)=0x1E0 \
-DCONFIG_FT_FDC_IRQ_$(MACH2_DEV)=6 \
-DCONFIG_FT_FDC_DMA_$(MACH2_DEV)=2 \
-DCONFIG_FT_NR_BUFFERS=3 \
-DCONFIG_FT_INT_$(MACH2_DEV)=1
#
# For Colorado CMS FC-10 or FC-20 controllers:
#
#FC10_DEV=0
#FDC_OPT += -DCONFIG_FT_FC10_$(FC10_DEV)=1 \
-DCONFIG_FT_FDC_BASE_$(FC10_DEV)=0x180 \
-DCONFIG_FT_FDC_IRQ_$(FC10_DEV)=9 \
-DCONFIG_FT_FDC_DMA_$(FC10_DEV)=3 \
-DCONFIG_FT_NR_BUFFERS=3 \
-DCONFIG_FT_INT_$(FC10_DEV)=1
#
# Secondary floppy disk controller:
# including Ditto Dash 2Mbps controller, ExaByte accelerator card,
# CTC-2Mb (Seagate) and hopefully any 82078 based FDC controller card.
#
#82078_DEV=0
#FDC_OPT = -DCONFIG_FT_FDC_BASE_$(82078_DEV)=0x370 \
-DCONFIG_FT_FDC_IRQ_$(82078_DEV)=6 \
-DCONFIG_FT_FDC_DMA_$(82078_DEV)=2 \
-DCONFIG_FT_NR_BUFFERS=3 \
-DCONFIG_FT_INT_$(82078_DEV)=1
#
# Maybe one of the following alternatives work if you have a Ditto
# Dash and the above setting doesn't work:
#
#FDC_OPT = -DCONFIG_FT_FDC_BASE_$(82078_DEV)=0x370 \
-DCONFIG_FT_FDC_IRQ_$(82078_DEV)=5 \
-DCONFIG_FT_FDC_DMA_$(82078_DEV)=3 \
-DCONFIG_FT_NR_BUFFERS=3 \
-DCONFIG_FT_INT_$(82078_DEV)=1
#FDC_OPT = -DCONFIG_FT_FDC_BASE_$(82078_DEV)=0x370 \
-DCONFIG_FT_FDC_IRQ_$(82078_DEV)=2 \
-DCONFIG_FT_FDC_DMA_$(82078_DEV)=3 \
-DCONFIG_FT_NR_BUFFERS=3 \
-DCONFIG_FT_INT_$(82078_DEV)=1
#
# For a HP Colorado Trakker parallel port drive, try
#
#TRAKKER_DEV=0
#FDC_OPT += -DCONFIG_FT_FDC_PARPORT_$(TRAKKER_DEV)=-1 \
-DCONFIG_FT_PAR_$(TRAKKER_DEV)=1 \
-DCONFIG_FT_TRAKKER_$(TRAKKER_DEV)=1
#
# For a Micro Solutions opispo "backpack" based parallel port drive, try
#
BPCK_DEV=0
FDC_OPT += -DCONFIG_FT_FDC_PARPORT_$(BPCK_DEV)=-1 \
-DCONFIG_FT_PAR_$(BPCK_DEV)=1 \
-DCONFIG_FT_BPCK_$(BPCK_DEV)=1
#
#
#
#
############################################################################
###
############################################################################
###
#
# Generic ftape options.
#
# Valid ftape options are:
#
# GCC_2_4_5_BUG - must be set if using gcc-2.4.5 to prevent
# bad assembler-code for the dma
# handling. Type `gcc --version' to determine
# the version of gcc.
#
# CONFIG_FT_PROC_FS - enables proc interface (read-only) to provide
# information about kind of tape drive, data
# rate etc. Consumes about 2 kb of memory.
# Make sure to read the file `BUGS' before
# enabling this option. THIS WILL NOT WORK
# with Linux v1.2.13 (and older) kernels. It
# is safe to use this option with v2.1.x and
# later kernels
#
# BROKEN_FLOPPY_DRIVER - leave this defined if you DON'T apply the patch
# `patches/v2.0/floppy.c.dif' to the floppy
# driver of the standard kernel distribution.
# If you DON'T apply my patch, then you
# definitely need this switch if you want to
# create an emergency (rescue) disk with
# ftape. DON'T define this if you are running
# v2.1.x or later kernels. But if you are
# running v2.1.115 (maybe also v2.1.116) or
# previous kernels of the 2.1.x series, then
# consider applying the patch
# `patches/v2.1/floppy.c.dif' to your kernel.
#
FTAPE_OPT = -DTHE_FTAPE_MAINTAINER=\"[EMAIL PROTECTED]\"
FTAPE_OPT += -DBROKEN_FLOPPY_DRIVER
#FTAPE_OPT += -DCONFIG_FT_PROC_FS
#
############################################################################
###
############################################################################
###
#
# Options that affect the amount of debugging messages printed to the
# system console (or kernel log files). Also reduces the size of the
# driver.
#
# CONFIG_FT_FULL_DEBUG - if NOT defined, all messages with trace
# level 6 (i.e. ft_fdc_dma) or higher are
# disabled. You probably don't want to
# define this unless you want debug the
# drive. If unsure, don't define this.
#
# CONFIG_FT_NO_TRACE - if defined, only information and errors
# show up. If unsure, don't define it.
#
# CONFIG_FT_NO_TRACE_AT_ALL - if defined, no trace output shows
# up. If unsure, don't define it.
#
#TRACE_FLAGS = -DCONFIG_FT_NO_TRACE
#TRACE_FLAGS = -DCONFIG_FT_NO_TRACE_AT_ALL
#TRACE_FLAGS = -DCONFIG_FT_FULL_DEBUG
#
############################################################################
###
############################################################################
###
#
# Compiler options for your architecture
#
# ... in case you need any special options ...
#
# ARCH_OPT =
#
############################################################################
###
############################################################################
###
#
# Don't change anything below this point!!!!
#
# Unless you know what you are doing. Don't expect me to help you.
#
ifeq ($(CONFIG_MODULES),n)
ERROR_RULE:
@echo
@echo "*************************************************"
@echo
@echo "Please reconfigure your kernel to support runtime"
@echo "loadable modules. Retry making ftape afterwards."
@echo
@echo "*************************************************"
@echo
exit 1
endif
#
# MODVERSIONS and MODULES stuff
#
MAKING_MODULES = 1
MODULE_OPT = -DMODULE
ifeq ($(CONFIG_MODVERSIONS),y)
MODULE_OPT += -DMODVERSIONS
MODULE_OPT += -include $(LINUX_LOCATION)/include/linux/modversions.h
MODULE_OPT += -include $(TOPDIR)/include/linux/modversions.h
GENKSYMS = /sbin/genksyms
endif
#
# assemble the compile time options
#
CONFIG_OPT := $(FTAPE_OPT) $(FDC_OPT) $(TRACE_FLAGS)
CONFIG_OPT += -DCONFIG_FTAPE_MODULE
CONFIG_OPT += -DCONFIG_FT_INTERNAL_MODULE
CONFIG_OPT += -DCONFIG_FT_TRAKKER_MODULE
CONFIG_OPT += -DCONFIG_FT_BPCK_MODULE
CONFIG_OPT += -DCONFIG_ZFTAPE_MODULE
CONFIG_OPT += -DCONFIG_ZFT_COMPRESSOR_MODULE
override CONFIG_FTAPE := m
override CONFIG_FT_INTERNAL := m
override CONFIG_FT_TRAKKER := m
override CONFIG_FT_BPCK := m
override CONFIG_ZFTAPE := m
override CONFIG_ZFT_COMPRESSOR := m
ifneq ($(findstring, CONFIG_FT_PROC_FS,$(FTAPE_OPT)),"")
CONFIG_FT_PROC_FS := y
endif
#
# options needed to compile kernel source
#
INCLUDE_PATH := -I. -I$(TOPDIR)/include -I$(LINUX_LOCATION)/include
KERNEL_OPT := -D__KERNEL__ $(INCLUDE_PATH)
ifdef SMP
KERNEL_OPT += -D__SMP__
endif
#
# processor specific options.
#
ifdef CONFIG_M386
KERNEL_OPT += -m386 -DCPU=386
endif
ifdef CONFIG_M486
KERNEL_OPT += -m486 -DCPU=486
endif
ifdef CONFIG_M586
KERNEL_OPT += -m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2
-DCPU=586
endif
ifdef CONFIG_M686
KERNEL_OPT += -m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2
-DCPU=686
endif
ifdef CONFIG_MAMDK6
KERNEL_OPT += -mamdk6 -frisc
endif
WARNINGS = -Wall -Wstrict-prototypes
COMPILE = -O2 $(ARCH_OPT) -fomit-frame-pointer -fno-strength-reduce
LD_OPT = -r -S
ifdef CONFIG_ALPHA
#
# The -dc flag is needed when using BFD insmod on an alpha !
# You should probably also remove -m486 when compiling on the alpha.
#
LD_OPT += -dc
endif
CC = gcc
HOSTCC = gcc
#
# these are the flags referred to by the make rules in Rules.make.
#
GKSFLAGS = $(CONFIG_OPT) $(KERNEL_OPT) $(EXTRA_CFLAGS)
CPPFLAGS = $(CONFIG_OPT) $(MODULE_OPT) $(KERNEL_OPT) $(EXTRA_CFLAGS)
CFLAGS = $(WARNINGS) $(COMPILE) $(CPPFLAGS)
SFLAGS = -fverbose-asm $(CFLAGS)
EXTRA_LDFLAGS = $(LD_OPT)
INSTALL = install -c -o root -g root
#
# end of MCONFIG
#
############################################################################
####
# LocalWords: cvs ftape MCONFIG QIC Linux usr src linux Ok UTS ifeq config FS
# LocalWords: wildcard MODVERSIONS modversions PROC MAMDK endif MODULESDIR
lib
# LocalWords: misc swapout kdtime SBINDIR sbin INFODIR DOCDIR html dvi doc
SMP
# LocalWords: MANDIR FDC FC IRQ DMA fd fdc dma CLK Mhz DCONFIG CMS Mbps
CTC Mb
# LocalWords: ExaByte GCC gcc NR Sparc Mips proc kb dif DTHE claus momo rwth
# LocalWords: aachen DBROKEN DMODULE DMODVERSIONS TOPDIR GENKSYMS genksyms
ZFT
# LocalWords: ZFTAPE ifneq findstring ifdef DCPU mamdk frisc Wstrict fomit
fno
# LocalWords: LD dc BFD insmod CC GKSFLAGS CFLAGS CPPFLAGS SFLAGS fverbose
asm
# LocalWords: LDFLAGS ftformat procfs LocalWords
#
# Automatically generated by make menuconfig: don't edit
#
#
# Code maturity level options
#
# CONFIG_EXPERIMENTAL is not set
#
# Loadable module support
#
CONFIG_MODULES=y
# CONFIG_MODVERSIONS is not set
CONFIG_KERNELD=y
#
# General setup
#
# CONFIG_MATH_EMULATION is not set
CONFIG_MEM_STD=y
# CONFIG_MEM_ENT is not set
# CONFIG_MEM_SPECIAL is not set
CONFIG_MAX_MEMSIZE=1024
CONFIG_NET=y
# CONFIG_MAX_16M is not set
CONFIG_PCI=y
CONFIG_SYSVIPC=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_ELF=y
CONFIG_KERNEL_ELF=y
# CONFIG_M386 is not set
# CONFIG_M486 is not set
CONFIG_M586=y
# CONFIG_M686 is not set
# CONFIG_MTRR is not set
# CONFIG_APM is not set
#
# Floppy, IDE, and other block devices
#
CONFIG_BLK_DEV_FD=y
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_BLK_DEV_IDE_PCMCIA is not set
CONFIG_BLK_DEV_CMD640=y
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
CONFIG_BLK_DEV_RZ1000=y
CONFIG_BLK_DEV_TRITON=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_IDE_CHIPSETS is not set
CONFIG_BLK_DEV_LOOP=m
# CONFIG_BLK_DEV_MD is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_BLK_DEV_XD is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_DEV_HD is not set
#
# Networking options
#
# CONFIG_FIREWALL is not set
# CONFIG_NET_ALIAS is not set
CONFIG_INET=y
# CONFIG_IP_FORWARD is not set
# CONFIG_IP_MULTICAST is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_IP_ACCT is not set
# CONFIG_IP_ROUTER is not set
# CONFIG_NET_IPIP is not set
# CONFIG_INET_PCTCP is not set
# CONFIG_INET_RARP is not set
# CONFIG_NO_PATH_MTU_DISCOVERY is not set
CONFIG_IP_NOSR=y
CONFIG_SKB_LARGE=y
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_AX25 is not set
# CONFIG_NETLINK is not set
#
# SCSI support
#
# CONFIG_SCSI is not set
#
# Network device support
#
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_EQUALIZER is not set
# CONFIG_PLIP is not set
CONFIG_PPP=m
# CONFIG_SLIP is not set
# CONFIG_NET_RADIO is not set
CONFIG_NET_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_EL1 is not set
# CONFIG_EL2 is not set
CONFIG_EL3=m
# CONFIG_3C515 is not set
CONFIG_VORTEX=m
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_PCI is not set
# CONFIG_NET_ISA is not set
# CONFIG_NET_EISA is not set
# CONFIG_NET_POCKET is not set
# CONFIG_TR is not set
# CONFIG_FDDI is not set
# CONFIG_ARCNET is not set
#
# ISDN subsystem
#
# CONFIG_ISDN is not set
#
# CD-ROM drivers (not for SCSI or IDE/ATAPI drives)
#
# CONFIG_CD_NO_IDESCSI is not set
#
# Filesystems
#
# CONFIG_QUOTA is not set
CONFIG_MINIX_FS=y
# CONFIG_EXT_FS is not set
CONFIG_EXT2_FS=y
# CONFIG_XIA_FS is not set
CONFIG_NLS=y
CONFIG_ISO9660_FS=y
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
# CONFIG_UMSDOS_FS is not set
# CONFIG_VFAT_FS is not set
#
# Select available code pages
#
# CONFIG_NLS_CODEPAGE_437 is not set
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
CONFIG_PROC_FS=y
# CONFIG_NFS_FS is not set
# CONFIG_SMB_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
#
# Character devices
#
CONFIG_SERIAL=y
# CONFIG_DIGI is not set
# CONFIG_CYCLADES is not set
# CONFIG_STALDRV is not set
# CONFIG_RISCOM8 is not set
# CONFIG_PRINTER is not set
# CONFIG_SPECIALIX is not set
# CONFIG_MOUSE is not set
# CONFIG_UMISC is not set
# CONFIG_QIC02_TAPE is not set
# CONFIG_FTAPE is not set
# CONFIG_WATCHDOG is not set
# CONFIG_RTC is not set
#
# Sound
#
# CONFIG_SOUND is not set
#
# Kernel hacking
#
# CONFIG_PROFILE is not set