Linux-Development-Sys Digest #135, Volume #7 Wed, 1 Sep 99 11:13:58 EDT
Contents:
Re: Strange thread & kernel behavior (Esa J Kallioniemi)
Re: NFS caching (Peter Samuelson)
Re: Fancy gcc compile error (Ken Booth)
Re: TAO: the ultimate OS (Donal K. Fellows)
Re: Fancy gcc compile error (Andreas Jaeger)
Re: Win95 is a bloody pain in th ass(after I installed linux)!! (Rimas)
Linux Bumpers ([EMAIL PROTECTED])
Re: Getting the Ethernet ID from directly from the network card. (hac)
Kernel 2.3.15 compilation problem (Sagar Gordhan)
----------------------------------------------------------------------------
From: Esa J Kallioniemi <[EMAIL PROTECTED]>
Subject: Re: Strange thread & kernel behavior
Date: 1 Sep 1999 08:31:00 GMT
David Wragg <[EMAIL PROTECTED]> wrote:
: Do these threads actually do anything, or does the program just spawn
: threads that immediately exit?
Ok, I'm sorry, fault was all mine... Threads did a little, but not enough
;) I spawn the threads which then sit there and wait for job to be given
them, by custom thread manager. I tested the whole thing with simple
"job" and it seems that because job lasted so little, I managed to
create way too much confilicts with locks.
: For times much less than a second, you are liable to get some random
: variation. 5 seconds seems high, but without more details of the
: program it is difficult to guess at the cause.
The threads are now doing the real job, and cpuload variation seems to
be a lot smaller amongst consecutive runs. But this whole project really
has indicated (at least it seems so) that Linux's thread handling could
be a lot better. Maybe with new kernels things will change ;)
eSa
__
Esa Kallioniemi [EMAIL PROTECTED]
"YouCanDoDangerousThingsWithAssembler"
------------------------------
From: [EMAIL PROTECTED] (Peter Samuelson)
Crossposted-To: comp.os.linux.networking
Subject: Re: NFS caching
Date: 1 Sep 1999 04:56:07 -0500
Reply-To: Peter Samuelson <[EMAIL PROTECTED]>
[bill davidsen <[EMAIL PROTECTED]>]
> Has anyone done anything to reduce network traffic between client and
> server when the data on the server is known not to change? I'm being
> very vague because I don't want to scare off any good solutions.
AIX implements a CacheFS on top of NFS for this purpose. I haven't
researched/deployed it yet though it could be useful here. It's on my
todo list.... Anyway I haven't heard that this has been implemented in
Linux yet.
Meanwhile Coda has a rather sophisticated caching scheme, it seems, but
of course that might be a level of complexity you don't need or want.
I like someone's rsync suggestion.
--
Peter Samuelson
<sampo.creighton.edu!psamuels>
------------------------------
From: Ken Booth <[EMAIL PROTECTED]>
Subject: Re: Fancy gcc compile error
Date: Wed, 01 Sep 1999 03:33:28 -0500
Did you use identical compiler options?
I'm not familiar with this compiler, but many compilers give the option of
library function or intrinsic (inline) code for such functions as memcopy.
Maybe the return value type varies in these cases?
--
Regards, Ken
I AM.
Klaus Schneider wrote:
> Hi Linux gurus,
>
> when compiling gcc-2.95, I got some strange errors. Look at the
> following lines from gcc/intl/localealias.c. Here, the compiler
> (egcs-1.1.2) complained: "void value is not ignored as it should be"
>
> map[nmap].alias = memcpy (&string_space[string_space_act],
> alias,alias_len);
>
> map[nmap].value = memcpy (&string_space[string_space_act],
> value, value_len);
>
> I can't see any errors in the code, but anyway I changed it to the code
> below which should do the same:
>
> map[nmap].alias = &string_space[string_space_act];
> memcpy(map[nmap].alias,alias,alias_len);
> string_space_act += alias_len;
>
> map[nmap].value = &string_space[string_space_act];
> memcpy(map[nmap].value,value, value_len);
> string_space_act += value_len;
>
> And then, everything went allright.
>
> Now, trying to check out why this strange error occured, I built a
> test application:
>
> char zw[11],*string="Teststring",*zeig;
>
> zeig = memcpy(zw,source,11);
> printf(zeig);
>
> And however, everything compiled allright.
>
> What's the matter here? Is this a compiler bug?
>
> Thanks for your help,
> Klaus
------------------------------
From: [EMAIL PROTECTED] (Donal K. Fellows)
Crossposted-To: alt.os.linux,comp.os.linux.advocacy,comp.os.misc,comp.unix.advocacy
Subject: Re: TAO: the ultimate OS
Date: 1 Sep 1999 12:21:05 GMT
In article <7qhkla$9nc$[EMAIL PROTECTED]>,
Jonathan Guthrie <[EMAIL PROTECTED]> wrote:
> Notwithstanding someone else's message that talks about Godel's (I don't
> how to produce an o with umlaut on this computer, here) completeness
> theorem, a message I recommend that you understand before proceeding, the
> practical problem with saying "viruses will be impossible" is that there
> is no essential difference between a virus and many of the programs people
> use every day for one thing or another. The question becomes "how do I
> tell the difference between a virus and ANY program that anyone may wish
> to run" and I don't believe that there is an answer you can give me that
> will work.
Hmm. I can remember reading something ages ago (the details
definitely escape me right now) on advanced security models where you
can track the network of trust on a per file/object/thingy basis.
Like that, it should be possible to make sure that untrusted
executable content (viruses, trojans, applets, etc.) cannot run amok
(in particular, the mechanisms for spreading could have enforced
dialog boxes or other cunning stuff that I've not had enough coffee to
think about right now.)
> Don't give me any nonsense about a sandbox being an account on a Linux
> system with few privileges. That's not a sandbox, it's just a sound way of
> configuring a system.
Strictly, that is a sandbox (as are all user sessions, and indeed the
whole of user-space.) Just not a very heavily locked down one...
Donal.
--
Donal K. Fellows http://www.cs.man.ac.uk/~fellowsd/ [EMAIL PROTECTED]
-- The small advantage of not having California being part of my country would
be overweighed by having California as a heavily-armed rabid weasel on our
borders. -- David Parsons <o r c @ p e l l . p o r t l a n d . o r . u s>
------------------------------
From: Andreas Jaeger <[EMAIL PROTECTED]>
Subject: Re: Fancy gcc compile error
Date: 01 Sep 1999 10:51:45 +0200
>>>>> Klaus Schneider writes:
> Hi Linux gurus,
> when compiling gcc-2.95, I got some strange errors. Look at the
> following lines from gcc/intl/localealias.c. Here, the compiler
> (egcs-1.1.2) complained: "void value is not ignored as it should be"
> map[nmap].alias = memcpy (&string_space[string_space_act],
> alias,alias_len);
> map[nmap].value = memcpy (&string_space[string_space_act],
> value, value_len);
> I can't see any errors in the code, but anyway I changed it to the code
> below which should do the same:
There might be (broken) a #define memcpy bcopy somewhere.
Andreas
--
Andreas Jaeger [EMAIL PROTECTED] [EMAIL PROTECTED]
for pgp-key finger [EMAIL PROTECTED]
------------------------------
From: Rimas <[EMAIL PROTECTED]>
Subject: Re: Win95 is a bloody pain in th ass(after I installed linux)!!
Date: Wed, 01 Sep 1999 14:26:48 +0200
"Santosh H." wrote:
>
> Hi all,
> Sorry for the bad language but Win95 is one bloody stinking bit of
> software.
>
> Well my problem is this.I have a comp at home which runs win95(+
> Linux) .To install linux I deleted all extended DOS partitions using
> fdisk(I'm using vfat mind) and created the new ext2 partition using cfdisk
> when I installed linux.Then when asked I installed LILO (to the
> superblock of my linux partition) and then to test
> what'd become of my win95 at the boot prompt I told it to boot my first
> win95 partiton.Fine Win95 boots but when I try to open My Computer it just
> hangs the system.Ditto with all the software I have when I try to chande
> drives from the open dialog.
>
This computer has a CD-ROM drive, right ?
Then open Control Panel -> System
In the tab "Device Managers" open CDROM and hit "Properties". In the tab
"Settings"
set "Reserved drive letters" to the letter (in MS-DOS terms) the CD-ROM
driver has become
after you deleted these MS-DOS partitions.
> ******************************************************************
> Santosh .H :
> Activities Linux Linux and only Linux :-)
> Thought for a lifetime:
> Only Wimps use MS windows
> Toughs use Linux:-)
Yes I use MS windows (besides other OS).
English is not my native language and unfortunately I don't know excatly
what 'wimp' means.
Could you elaborate in other words who I am, Mr. Santosh ?
--
Rimantas Plaipa,
Department of Biochemistry and Biophysics,
Vilnius University,
Ciurlionio 21/27, Vilnius 2009, Lithuania.
E-mail: [EMAIL PROTECTED]
Phone: (370-2)-650381
Fax: (370-2)-235049
------------------------------
From: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.powerpc,comp.unix.aix
Subject: Linux Bumpers
Date: Wed, 01 Sep 1999 13:26:48 GMT
Linux is greater than Windows bumperstickers: "LINUX > WINDOWS", black
printed on white. Let the Microsofties know that not all operating
systems are created equal. $3.00 each. RabbleTease Productions, 265 W.
Ohio Ave., Rittman, OH 44270.
>
> There's a company called Yellow Dog that's selling Linux for RS/6000.
>
> -Dave
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: hac <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware,comp.os.linux.development,linux.dev.kernel
Subject: Re: Getting the Ethernet ID from directly from the network card.
Date: Wed, 01 Sep 1999 13:59:03 GMT
Stefan Waizmann wrote:
>
> Peter Samuelson wrote:
> >
> > [Vincent <[EMAIL PROTECTED]>]
> > > I'm developping a driver that it must getting the Ethernet ID
> > > directly on the network card.
> >
> > This is confusing. Are you developing a network driver? If so, we
> > can't help you without knowing what the hardware is like.
>
> Hi, I would also like to have a short program to get the (unique)
> MAC-address of the ethernet card just for information. Or is there any
> possibilty to have a look to this with existing means?
>
> Stefan
ifconfig
--
Howard Christeller Irvine, CA [EMAIL PROTECTED]
------------------------------
From: Sagar Gordhan <[EMAIL PROTECTED]>
Subject: Kernel 2.3.15 compilation problem
Date: Wed, 01 Sep 1999 14:27:11 +0100
This is a multi-part message in MIME format.
==============720302AC370094AABF5BA68A
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Hello,
I am trying to compile kernel version 2.3.15 with the linux-atm version
0.62 patch applied. The 'make dep' works okay, but the 'make zImage'
fails. The messages that i get are the following. I attach a copy of my
.config file. If anyone has come across this problem before and knows
the fix i would appreciate your reply as i have looked on several
mailist list archives and cannot find a solution.
thanks in advance for your help.
Sagar Gordhan
[EMAIL PROTECTED]
--error message--
make -C arch/i386/kernel
make[1]: Entering directory `/usr/src/linux-2.3.15/arch/i386/kernel'
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2
-fomit-f
rame-pointer -fno-strict-aliasing -D__SMP__ -pipe -fno-strength-reduce
-m386 -D
CPU=386 -c -o visws_apic.o visws_apic.c
visws_apic.c:40: irq.h: No such file or directory
visws_apic.c:61: variable `piix4_master_irq_type' has initializer but
incomplete
type
visws_apic.c:62: warning: excess elements in struct initializer after
`piix4_mas
ter_irq_type'
visws_apic.c:63: warning: excess elements in struct initializer after
`piix4_mas
ter_irq_type'
visws_apic.c:64: warning: excess elements in struct initializer after
`piix4_mas
ter_irq_type'
visws_apic.c:65: warning: excess elements in struct initializer after
`piix4_mas
ter_irq_type'
visws_apic.c:66: warning: excess elements in struct initializer after
`piix4_mas
ter_irq_type'
visws_apic.c:68: warning: excess elements in struct initializer after
`piix4_mas
ter_irq_type'
visws_apic.c:75: variable `piix4_virtual_irq_type' has initializer but
incomplet
e type
visws_apic.c:76: warning: excess elements in struct initializer after
`piix4_vir
tual_irq_type'
visws_apic.c:77: warning: excess elements in struct initializer after
`piix4_vir
tual_irq_type'
visws_apic.c:78: warning: excess elements in struct initializer after
`piix4_vir
tual_irq_type'
visws_apic.c:79: warning: excess elements in struct initializer after
`piix4_vir
tual_irq_type'
visws_apic.c:80: warning: excess elements in struct initializer after
`piix4_vir
tual_irq_type'
visws_apic.c:82: warning: excess elements in struct initializer after
`piix4_vir
tual_irq_type'
visws_apic.c:94: variable `cobalt_irq_type' has initializer but
incomplete type
visws_apic.c:95: warning: excess elements in struct initializer after
`cobalt_ir
q_type'
visws_apic.c:96: warning: excess elements in struct initializer after
`cobalt_ir
q_type'
visws_apic.c:97: warning: excess elements in struct initializer after
`cobalt_ir
q_type'
visws_apic.c:98: warning: excess elements in struct initializer after
`cobalt_ir
q_type'
visws_apic.c:99: warning: excess elements in struct initializer after
`cobalt_ir
q_type'
visws_apic.c:101: warning: excess elements in struct initializer after
`cobalt_i
rq_type'
visws_apic.c: In function `do_cobalt_IRQ':
visws_apic.c:197: `irq_desc_t' undeclared (first use in this function)
visws_apic.c:197: (Each undeclared identifier is reported only once
visws_apic.c:197: for each function it appears in.)
visws_apic.c:197: `desc' undeclared (first use in this function)
visws_apic.c:197: `irq_desc' undeclared (first use in this function)
visws_apic.c:199: `irq_controller_lock' undeclared (first use in this
function)
visws_apic.c:203: `IRQ_REPLAY' undeclared (first use in this function)
visws_apic.c:203: `IRQ_WAITING' undeclared (first use in this function)
visws_apic.c:205: `IRQ_DISABLED' undeclared (first use in this function)
visws_apic.c:205: `IRQ_INPROGRESS' undeclared (first use in this
function)
visws_apic.c:217: warning: implicit declaration of function
`handle_IRQ_event'
visws_apic.c: In function `do_piix4_master_IRQ':
visws_apic.c:292: `irq_controller_lock' undeclared (first use in this
function)
visws_apic.c:330: `irq_desc_t' undeclared (first use in this function)
visws_apic.c:330: `desc' undeclared (first use in this function)
visws_apic.c:330: `irq_desc' undeclared (first use in this function)
visws_apic.c:332: `IRQ_DISABLED' undeclared (first use in this function)
visws_apic.c: At top level:
visws_apic.c:370: `no_action' undeclared here (not in a function)
visws_apic.c:370: initializer element for `master_action.handler' is not
constan
t
visws_apic.c: In function `init_VISWS_APIC_irqs':
visws_apic.c:377: `irq_desc' undeclared (first use in this function)
visws_apic.c:377: `IRQ_DISABLED' undeclared (first use in this function)
visws_apic.c:406: warning: implicit declaration of function
`setup_x86_irq'
make[1]: *** [visws_apic.o] Error 1
make[1]: Leaving directory `/usr/src/linux-2.3.15/arch/i386/kernel'
make: *** [_dir_arch/i386/kernel] Error 2
--
==============720302AC370094AABF5BA68A
Content-Type: text/plain; charset=us-ascii;
name=".config"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename=".config"
#
# Automatically generated make config: don't edit
#
#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
#
# Processor type and features
#
CONFIG_M386=y
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M686 is not set
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
CONFIG_1GB=y
# CONFIG_2GB is not set
CONFIG_MATH_EMULATION=y
CONFIG_MTRR=y
CONFIG_SMP=y
#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y
#
# General setup
#
CONFIG_NET=y
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_MCA=y
# CONFIG_VISWS is not set
CONFIG_X86_VISWS_APIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_SYSVIPC=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_SYSCTL=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=y
CONFIG_PARPORT=y
CONFIG_PARPORT_PC=y
CONFIG_PARPORT_PC_FIFO=y
# CONFIG_PARPORT_PC_PCMCIA is not set
# CONFIG_PARPORT_AMIGA is not set
# CONFIG_PARPORT_MFC3 is not set
# CONFIG_PARPORT_ATARI is not set
# CONFIG_PARPORT_OTHER is not set
# CONFIG_PARPORT_1284 is not set
CONFIG_APM=y
CONFIG_APM_IGNORE_USER_SUSPEND=y
CONFIG_APM_DO_ENABLE=y
# CONFIG_APM_CPU_IDLE is not set
# CONFIG_APM_DISPLAY_BLANK is not set
CONFIG_APM_POWER_OFF=y
# CONFIG_APM_IGNORE_MULTIPLE_SUSPEND is not set
# CONFIG_APM_IGNORE_SUSPEND_BOUNCE is not set
CONFIG_APM_RTC_IS_GMT=y
# CONFIG_APM_ALLOW_INTS is not set
#
# I2O device support
#
# CONFIG_I2O is not set
# CONFIG_I2O_PCI is not set
# CONFIG_I2O_BLOCK is not set
# CONFIG_I2O_LAN is not set
# CONFIG_I2O_SCSI is not set
# CONFIG_I2O_PROC is not set
#
# Plug and Play configuration
#
CONFIG_PNP=y
CONFIG_ISAPNP=y
#
# Block devices
#
CONFIG_BLK_DEV_FD=y
CONFIG_BLK_DEV_IDE=y
#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
# CONFIG_IDEDISK_MULTI_MODE is not set
CONFIG_BLK_DEV_IDECD=y
# CONFIG_IDECD_SLOTS is not set
# CONFIG_BLK_DEV_IDETAPE is not set
CONFIG_BLK_DEV_IDEFLOPPY=y
# CONFIG_BLK_DEV_IDESCSI is not set
CONFIG_BLK_DEV_CMD640=y
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
CONFIG_BLK_DEV_RZ1000=y
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_AEC6210 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_PIIX is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_IDE_CHIPSETS is not set
# CONFIG_BLK_DEV_PS2 is not set
# CONFIG_BLK_CPQ_DA is not set
#
# Additional Block Devices
#
CONFIG_BLK_DEV_LOOP=m
# CONFIG_BLK_DEV_NBD is not set
CONFIG_BLK_DEV_MD=y
CONFIG_MD_LINEAR=y
CONFIG_MD_STRIPED=y
CONFIG_MD_MIRRORING=y
# CONFIG_MD_RAID5 is not set
CONFIG_MD_BOOT=y
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_INITRD=y
# CONFIG_BLK_DEV_XD is not set
CONFIG_PARIDE_PARPORT=y
CONFIG_PARIDE=m
#
# Parallel IDE high-level drivers
#
# CONFIG_PARIDE_PD is not set
# CONFIG_PARIDE_PCD is not set
# CONFIG_PARIDE_PF is not set
# CONFIG_PARIDE_PT is not set
# CONFIG_PARIDE_PG is not set
#
# Parallel IDE protocol modules
#
# CONFIG_PARIDE_ATEN is not set
# CONFIG_PARIDE_BPCK is not set
# CONFIG_PARIDE_COMM is not set
# CONFIG_PARIDE_DSTR is not set
# CONFIG_PARIDE_FIT2 is not set
# CONFIG_PARIDE_FIT3 is not set
# CONFIG_PARIDE_EPAT is not set
# CONFIG_PARIDE_EPIA is not set
# CONFIG_PARIDE_FRIQ is not set
# CONFIG_PARIDE_FRPW is not set
# CONFIG_PARIDE_KBIC is not set
# CONFIG_PARIDE_KTTI is not set
# CONFIG_PARIDE_ON20 is not set
# CONFIG_PARIDE_ON26 is not set
CONFIG_BLK_DEV_IDE_MODES=y
# CONFIG_BLK_DEV_HD is not set
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_NETLINK=y
CONFIG_RTNETLINK=y
CONFIG_NETLINK_DEV=y
CONFIG_NETFILTER=y
CONFIG_NETFILTER_DEBUG=y
CONFIG_FILTER=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_RTNETLINK=y
CONFIG_NETLINK=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_TOS=y
CONFIG_IP_ROUTE_VERBOSE=y
# CONFIG_IP_ROUTE_LARGE_TABLES is not set
CONFIG_IP_ROUTE_NAT=y
# CONFIG_IP_ROUTE_FWMARK is not set
# CONFIG_IP_PNP is not set
# CONFIG_IP_ROUTER is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_IP_ALIAS is not set
CONFIG_ARPD=y
# CONFIG_SYN_COOKIES is not set
#
# (it is safe to leave these untouched)
#
CONFIG_SKB_LARGE=y
CONFIG_IPV6=m
# CONFIG_IPV6_EUI64 is not set
# CONFIG_KHTTPD is not set
CONFIG_ATM=y
CONFIG_ATM_CLIP=y
CONFIG_ATM_CLIP_NO_ICMP=y
CONFIG_ATM_LANE=y
CONFIG_ATM_MPOA=y
#
#
#
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_DECNET is not set
# CONFIG_X25 is not set
CONFIG_LAPB=m
# CONFIG_BRIDGE is not set
# CONFIG_LLC is not set
# CONFIG_ECONET is not set
CONFIG_WAN_ROUTER=m
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set
#
# QoS and/or fair queueing
#
CONFIG_NET_SCHED=y
CONFIG_NETLINK=y
CONFIG_RTNETLINK=y
CONFIG_NET_SCH_CBQ=y
# CONFIG_NET_SCH_CSZ is not set
CONFIG_NET_SCH_ATM=y
# CONFIG_NET_SCH_PRIO is not set
CONFIG_NET_SCH_RED=y
CONFIG_NET_SCH_SFQ=y
CONFIG_NET_SCH_TEQL=y
# CONFIG_NET_SCH_TBF is not set
CONFIG_NET_QOS=y
CONFIG_NET_ESTIMATOR=y
CONFIG_NET_CLS=y
CONFIG_NET_CLS_ROUTE4=y
CONFIG_NET_CLS_ROUTE=y
CONFIG_NET_CLS_FW=y
# CONFIG_NET_CLS_U32 is not set
CONFIG_NET_CLS_RSVP=y
CONFIG_NET_CLS_RSVP6=y
CONFIG_NET_CLS_POLICE=y
#
# SCSI support
#
CONFIG_SCSI=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
CONFIG_CHR_DEV_ST=y
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=y
#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
# CONFIG_SCSI_LOGGING is not set
#
# SCSI low-level drivers
#
# CONFIG_SCSI_7000FASST is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AHA152X is not set
# CONFIG_SCSI_AHA1542 is not set
# CONFIG_SCSI_AHA1740 is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_IN2000 is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_MEGARAID is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DTC3280 is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_DMA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_FD_MCS is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_GENERIC_NCR5380 is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_NCR53C406A is not set
# CONFIG_SCSI_SYM53C416 is not set
# CONFIG_SCSI_NCR53C7xx is not set
# CONFIG_SCSI_NCR53C8XX is not set
CONFIG_SCSI_SYM53C8XX=y
CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=4
CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32
CONFIG_SCSI_NCR53C8XX_SYNC=20
# CONFIG_SCSI_NCR53C8XX_PROFILE is not set
# CONFIG_SCSI_NCR53C8XX_IOMAPPED is not set
# CONFIG_SCSI_NCR53C8XX_PQS_PDS is not set
# CONFIG_SCSI_NCR53C8XX_SYMBIOS_COMPAT is not set
# CONFIG_SCSI_IBMMCA is not set
# CONFIG_SCSI_MCA_53C9X is not set
# CONFIG_SCSI_PAS16 is not set
# CONFIG_SCSI_PCI2000 is not set
# CONFIG_SCSI_PCI2220I is not set
# CONFIG_SCSI_PSI240I is not set
# CONFIG_SCSI_QLOGIC_FAS is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_SEAGATE is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_T128 is not set
# CONFIG_SCSI_U14_34F is not set
# CONFIG_SCSI_ULTRASTOR is not set
# CONFIG_SCSI_DEBUG is not set
#
# Network device support
#
CONFIG_NETDEVICES=y
#
# ARCnet devices
#
# CONFIG_ARCNET is not set
CONFIG_DUMMY=m
# CONFIG_EQUALIZER is not set
# CONFIG_ETHERTAP is not set
# CONFIG_NET_SB1000 is not set
#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_EL1 is not set
# CONFIG_EL2 is not set
# CONFIG_ELPLUS is not set
# CONFIG_EL16 is not set
# CONFIG_ELMC is not set
# CONFIG_ELMC_II is not set
CONFIG_EL3=y
# CONFIG_3C515 is not set
# CONFIG_VORTEX is not set
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set
# CONFIG_RTL8139 is not set
# CONFIG_SIS900 is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_ISA=y
# CONFIG_AT1700 is not set
# CONFIG_E2100 is not set
# CONFIG_DEPCA is not set
# CONFIG_EWRK3 is not set
# CONFIG_EEXPRESS is not set
# CONFIG_EEXPRESS_PRO is not set
# CONFIG_FMV18X is not set
# CONFIG_HPLAN_PLUS is not set
# CONFIG_HPLAN is not set
# CONFIG_HP100 is not set
# CONFIG_ETH16I is not set
# CONFIG_NE2000 is not set
# CONFIG_SEEQ8005 is not set
# CONFIG_SK_G16 is not set
# CONFIG_NE2_MCA is not set
# CONFIG_SKMC is not set
CONFIG_NET_EISA=y
# CONFIG_PCNET32 is not set
# CONFIG_ACENIC is not set
# CONFIG_AC3200 is not set
# CONFIG_APRICOT is not set
# CONFIG_CS89x0 is not set
# CONFIG_DE4X5 is not set
# CONFIG_DEC_ELCP is not set
# CONFIG_DGRS is not set
CONFIG_EEXPRESS_PRO100=y
# CONFIG_LNE390 is not set
# CONFIG_NE3210 is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_ES3210 is not set
# CONFIG_EPIC100 is not set
# CONFIG_ZNET is not set
# CONFIG_NET_POCKET is not set
CONFIG_FDDI=y
# CONFIG_DEFXX is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
# CONFIG_NET_RADIO is not set
#
# Token ring devices
#
# CONFIG_TR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
# CONFIG_SHAPER is not set
#
# Wan interfaces
#
# CONFIG_HOSTESS_SV11 is not set
# CONFIG_COSA is not set
# CONFIG_SEALEVEL_4021 is not set
# CONFIG_DLCI is not set
# CONFIG_WAN_DRIVERS is not set
#
# ATM drivers
#
CONFIG_ATM_TCP=y
CONFIG_ATM_ENI=y
CONFIG_ATM_ENI_DEBUG=y
# CONFIG_ATM_ENI_TUNE_BURST is not set
# CONFIG_ATM_ZATM is not set
CONFIG_ATM_NICSTAR=y
CONFIG_ATM_NICSTAR_USE_SUNI=y
# CONFIG_ATM_AMBASSADOR is not set
# CONFIG_ATM_HORIZON is not set
#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set
#
# IrDA subsystem support
#
# CONFIG_IRDA is not set
#
# ISDN subsystem
#
# CONFIG_ISDN is not set
#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set
#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_SERIAL=y
# CONFIG_SERIAL_CONSOLE is not set
# CONFIG_SERIAL_EXTENDED is not set
# CONFIG_SERIAL_NONSTANDARD is not set
CONFIG_UNIX98_PTYS=y
CONFIG_UNIX98_PTY_COUNT=256
# CONFIG_PRINTER is not set
# CONFIG_PPDEV is not set
#
# Mice
#
#CONFIG_BUSMOUSE is not set
# CONFIG_ATIXL_BUSMOUSE is not set
# CONFIG_LOGIBUSMOUSE is not set
# CONFIG_MS_BUSMOUSE is not set
CONFIG_MOUSE=y
CONFIG_PSMOUSE=y
CONFIG_82C710_MOUSE=y
# CONFIG_PC110_PAD is not set
# CONFIG_QIC02_TAPE is not set
# CONFIG_WATCHDOG is not set
# CONFIG_NVRAM is not set
# CONFIG_RTC is not set
#
# Video For Linux
#
CONFIG_VIDEO_DEV=m
# CONFIG_RADIO_CADET is not set
# CONFIG_RADIO_RTRACK is not set
# CONFIG_RADIO_RTRACK2 is not set
# CONFIG_RADIO_AZTECH is not set
# CONFIG_RADIO_GEMTEK is not set
# CONFIG_RADIO_MIROPCM20 is not set
# CONFIG_RADIO_TERRATEC is not set
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_BWQCAM is not set
# CONFIG_VIDEO_CQCAM is not set
# CONFIG_VIDEO_PMS is not set
# CONFIG_VIDEO_SAA5249 is not set
# CONFIG_RADIO_SF16FMI is not set
# CONFIG_RADIO_TYPHOON is not set
# CONFIG_RADIO_ZOLTRIX is not set
# CONFIG_I2C_PARPORT is not set
#
# Joystick support
#
# CONFIG_JOYSTICK is not set
# CONFIG_DTLK is not set
#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
#
# USB drivers - not for the faint of heart
#
# CONFIG_USB is not set
#
# Misc devices
#
# CONFIG_PIIX4_ACPI is not set
#
# Filesystems
#
CONFIG_QUOTA=y
CONFIG_AUTOFS_FS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_UMSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_EFS_FS=y
CONFIG_ISO9660_FS=y
# CONFIG_JOLIET is not set
# CONFIG_MINIX_FS is not set
CONFIG_NTFS_FS=y
CONFIG_NTFS_RW=y
CONFIG_HPFS_FS=y
CONFIG_PROC_FS=y
CONFIG_DEVPTS_FS=y
# CONFIG_QNX4FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_EXT2_FS=y
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
#
# Network File Systems
#
# CONFIG_CODA_FS is not set
CONFIG_NFS_FS=y
CONFIG_NFSD=m
CONFIG_NFSD_SUN=y
CONFIG_SUNRPC=y
CONFIG_LOCKD=y
CONFIG_SMB_FS=m
CONFIG_NCP_FS=m
# CONFIG_NCPFS_PACKET_SIGNING is not set
# CONFIG_NCPFS_IOCTL_LOCKING is not set
# CONFIG_NCPFS_STRONG is not set
# CONFIG_NCPFS_NFS_NS is not set
# CONFIG_NCPFS_OS2_NS is not set
# CONFIG_NCPFS_MOUNT_SUBDIR is not set
# CONFIG_NCPFS_NLS is not set
CONFIG_NCPFS_EXTRAS=y
#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_SMD_DISKLABEL=y
CONFIG_SUN_PARTITION=y
# CONFIG_SGI_DISKLABEL is not set
CONFIG_NLS=y
#
# Native Language Support
#
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_CODEPAGE_737=y
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
CONFIG_NLS_CODEPAGE_850=y
# 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_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
#
# Console drivers
#
CONFIG_VGA_CONSOLE=y
CONFIG_VIDEO_SELECT=y
# CONFIG_MDA_CONSOLE is not set
# CONFIG_FB is not set
#
# Sound
#
CONFIG_SOUND=m
# CONFIG_SOUND_CMPCI is not set
# CONFIG_SOUND_ES1370 is not set
# CONFIG_SOUND_ES1371 is not set
# CONFIG_SOUND_ESSSOLO1 is not set
# CONFIG_SOUND_SONICVIBES is not set
# CONFIG_SOUND_VWSND is not set
# CONFIG_SOUND_MSNDCLAS is not set
# CONFIG_SOUND_MSNDPIN is not set
# CONFIG_SOUND_OSS is not set
#
# Kernel hacking
#
CONFIG_MAGIC_SYSRQ=y
==============720302AC370094AABF5BA68A==
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list (and comp.os.linux.development.system) via:
Internet: [EMAIL PROTECTED]
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Development-System Digest
******************************