Linux-Setup Digest #58, Volume #21 Tue, 17 Apr 01 03:13:08 EDT
Contents:
Re: Who can help me? ("Glitch")
Re: 486 help??!! (webgiant)
Re: 486 help??!! (webgiant)
Re: 486 help??!! (webgiant)
swap disk (jinp)
Re: 486 help??!! (webgiant)
Re: 486 help??!! (webgiant)
Re: swap disk (David)
Re: make dep error message (Jason Lott)
Re: kernel panic w/ kernel 2.4.2-1 -> VFS:Unable to mounth root fs on 03:44 ("Eric")
Re: kernel panic w/ kernel 2.4.2-1 -> VFS:Unable to mounth root fs on 03:44 ("Eric")
Re: Dual Boot Linux RH7.0 & M$ System ("Eric")
Kernel compiling problems ("Emil Christopher Melar")
Re: BeOS + Linux + Windows 2000 - Triple boot trouble. ("Emil Christopher Melar")
Re: Kernel compiling problems ("Emil Christopher Melar")
Re: make dep error message (Bill Cyzwenki)
----------------------------------------------------------------------------
From: "Glitch" <[EMAIL PROTECTED]>
Subject: Re: Who can help me?
Date: Tue, 17 Apr 2001 01:20:42 -0400
In article <9beomr$1661$[EMAIL PROTECTED]>, "ja" <[EMAIL PROTECTED]>
wrote:
> I face a problem about compile.
>
> %cc -o AppTest AppTest.c
> AppTest.c: In function 'Attempt Connection':
> AppTest.c:253: in compatible type for argument 2 of 'connect'
> AppTest.c: In function 'GetReturnStatus':
> AppTest.c:storage size of 'readFds' isn't known.
>
> Do you know what's wrong?
the problem is exactly what is specified in the error message:
In the plainest English possible, the 2nd argument that is given to the
Connect function has the wrong type(int, char, float, etc.). I'm not
gonna search thru your code to help any further but you get the point I
hope. I think the 2nd function is even more self explanatory.
You may try a more relevant newsgroup for your coding questions. This
newsgroup is for the setup of Linux, not program development.
> Below is my program.
>
> #include <errno.h>
> #include <sys/errno.h>
> #include <sys/param.h>
> #include <sys/types.h>
> #include <sys/socket.h>
> #include <sys/time.h>
> #include <signal.h>
> #include <stdio.h>
> #include <netdb.h>
> #include <fcntl.h>
> #include <unistd.h>
>
> /* include files needed for "herror ()" call */ #include <sys/types.h>
> #include <netinet/in.h>
> #include <arpa/nameser.h>
> #include <resolv.h>
>
> int AttemptConnection (ConnectionStatus)
> int *ConnectionStatus;
> {
> int Socket, I; struct sockaddr_in
> ServerAddr;
>
> Socket = stream_socket_info.Socket; ServerAddr =
> stream_socket_info.Addr;
>
> //AppTest.c:253: in compatible type for argument 2 of 'connect' //
> compile tell me ServerAddr have something wrong . why??? // How to
> modify ?
> if (connect (Socket, ServerAddr, sizeof (struct sockaddr_in)) ==
> ERROR) {
> if (errno == ECONNREFUSED)
> {
> perror ("INFO - Attempting connection to server "); close
> (Socket);
> if (CreateStreamSocket(I) == ERROR) return(ERROR);
> }
> else
> {
> perror ("FATAL ERROR - Attempting connection to server "); return
> (ERROR);
> }
> }
> else
> {
>
> printf ("Successful connection to %s\n",
> stream_socket_info.HostName);
>
> *ConnectionStatus = CONNECTED;
> return (NO_ERROR);
> }
> *ConnectionStatus = NOT_CONNECTED;
> return (NO_ERROR);
> }
>
>
> int GetReturnStatus ()
> {
> int BytesRead;
> int selectCount;
> //AppTest.c:storage size of 'readFds' isn't known. //How to modify?
> struct fd_set readFds;
> struct timeval timeLimit;
>
> timeLimit.tv_sec = TIME_OUT;
> timeLimit.tv_usec = 0;
>
> FD_ZERO (&readFds);
>
> FD_SET (stream_socket_info.Socket, &readFds);
>
> printf("WAITING FOR RESPONSE.....\n"); selectCount = select
> (FD_SETSIZE, &readFds, NULL,NULL, &timeLimit);
>
> if (selectCount == ERROR)
> {
> printf ("FATAL ERROR - select failed in GetReturnStatus.\n"); return
> (ERROR);
> }
>
> if (selectCount == 0)
> {
> printf ("FATAL ERROR - Time out occured in GetReturnStatus.\n");
> return (ERROR);
> }
>
> if ((BytesRead =
> read (stream_socket_info.Socket, &control_message, BUFLEN)) ==
> ERROR)
> {
> perror ("FATAL ERROR - GetReturnStatus (read).\n"); return (ERROR);
> }
>
> if (BytesRead < BUFLEN)
> {
> printf ("FATAL ERROR - Read from socket incomplete!!! \n"); return
> (ERROR);
> }
>
> printf ("%s for %s \n", control_message.Buffer1, WscStationId);
>
> }
>
> Thank you!
>
> [EMAIL PROTECTED]
>
>
>
>
------------------------------
From: [EMAIL PROTECTED] (webgiant )
Subject: Re: 486 help??!!
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 05:19:15 GMT
On Sat, 14 Apr 2001 20:04:48 GMT,
[EMAIL PROTECTED] () wrote:
>On Sat, 14 Apr 2001 17:10:19 GMT, Miguel <[EMAIL PROTECTED]> wrote:
>>[posted and mailed]
>>
>>well i have an old 486 with 8mb ram and a 4go Hd and i wanna know which is
>>the best way to install linux. i dont have any cdrom drive but im on adsl.
>
>Spend the $20 bucks or borrow a cdrom drive.
Gearhead.
New CDROM drives are $40. Some of us don't have that much disposable
income, or that tiny of an imagination.
------------------------------
From: [EMAIL PROTECTED] (webgiant )
Subject: Re: 486 help??!!
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 05:21:57 GMT
On Mon, 16 Apr 2001 01:12:48 GMT, E J <[EMAIL PROTECTED]> wrote:
>You can try peanut linux or an ancient distro. I don't know if you can make
>an FTP install such as Redhat for
>an old machine.
>In the case of Redhat, you get bootnet.img and use the dos program rawrite to
>write a network bootable
>floppy and find an appropriate FTP site and do the installation.
Why not just get a Slackware distro? Most of it can be loaded with
floppies, and if the concept of flipping floppies disgusts you, a null
modem cable and a small DOS partition lets you copy the whole distro
over and make an install from the DOS partition. Fdisk the DOS
partition away when you're done.
>Miguel wrote:
>
>> [posted and mailed]
>>
>> well i have an old 486 with 8mb ram and a 4go Hd and i wanna know which is
>> the best way to install linux. i dont have any cdrom drive but im on adsl.
------------------------------
From: [EMAIL PROTECTED] (webgiant )
Subject: Re: 486 help??!!
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 05:24:32 GMT
On Tue, 17 Apr 2001 01:22:24 +0200, [EMAIL PROTECTED] (Stephane) wrote:
>Le Mon, 16 Apr 2001 01:12:48 GMT, E J A ecrit:
>>You can try peanut linux or an ancient distro. I don't know if you can make
>>an FTP install such as Redhat for
>>an old machine.
>
>Yes, I made an FTP install with a RedHat 4.2.
>
>>In the case of Redhat, you get bootnet.img and use the dos program rawrite to
>>write a network bootable
>>floppy and find an appropriate FTP site and do the installation.
>>
>>Miguel wrote:
>>
>>> [posted and mailed]
>>>
>>> well i have an old 486 with 8mb ram and a 4go Hd and i wanna know which is
>>> the best way to install linux. i dont have any cdrom drive but im on adsl.
>
>For this kind of computer, I'm not sure that Linux is the best way,
A 486 with 8MB RAM works fine with Linux. I have Slackware 7.1
running on an old 486DX2 with 8MB of RAM and four 500MB drives (thats
2GB for those of you who bought big hard drives so you wouldn't have
to learn how to do math).
>it's more easy to use a BSD with a old Computer. OpenBSD or FreeBSD, you
>can make an FTP install.
>
>If you want really Linux, the Slackware, RedHat and Debian can do that.
Or you can skip any chancy FTP installs and just use a null modem
cable to copy over the files into a partition and install from there.
------------------------------
From: jinp <[EMAIL PROTECTED]>
Subject: swap disk
Date: Tue, 17 Apr 2001 01:41:52 -0400
Is it still true that linux can(should) only have max 128Mg disk for
swap? so if I have 128 Mg Ram, I should make 3 swap disks 128 Mg each(3
times of ram as suggested) or I can make 1 big swap disk?
Thanks
jinp
------------------------------
From: [EMAIL PROTECTED] (webgiant )
Subject: Re: 486 help??!!
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 05:26:20 GMT
On Sun, 15 Apr 2001 23:44:33 -0400, Tiffany
<[EMAIL PROTECTED]> wrote:
>>===== Original Message From [EMAIL PROTECTED] (Miguel) =====
>>[posted and mailed]
>>
>>well i have an old 486 with 8mb ram and a 4go Hd and i wanna know which is
>>the best way to install linux. i dont have any cdrom drive but im on adsl.
>
>Download the disk set for Debian GNU/Linux and the MS/PC-DOS rawrite.exe
>utility. Build the disk set and then insert the first disk into the floppy
>drive and away you go with the installation. Once you have the basic system
>installed you can connect to the Internet and grab the apt utility to
>install the other packages you want while connected to the Internet. If you need
>more instructions email me ([EMAIL PROTECTED]).
Didn't know Debian did a disk set too, but my favorite disk set is
Slackware. I've null modem cabled the larger files over once the base
install was made, but I've also used the Slackware ZipDrive boot disk
and used the parport ZipDrive to copy files over as well.
------------------------------
From: [EMAIL PROTECTED] (webgiant )
Subject: Re: 486 help??!!
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 05:29:51 GMT
On Sat, 14 Apr 2001 20:04:48 GMT,
[EMAIL PROTECTED] () wrote:
>On Sat, 14 Apr 2001 17:10:19 GMT, Miguel <[EMAIL PROTECTED]> wrote:
>>[posted and mailed]
>>
>>well i have an old 486 with 8mb ram and a 4go Hd and i wanna know which is
>>the best way to install linux. i dont have any cdrom drive but im on adsl.
>
>Spend the $20 bucks or borrow a cdrom drive.
So, you know where to get a parallel-port CDROM drive for $20?
MY 486DX2/75 laptop with 16MB of RAM didn't have a CDROM drive, or any
hope of attaching one except through the parallel port. EBay had a
docking station, but the seller wanted too much for it. I installed
Linux without EVER needing a CDROM on the system I was installing
Linux on.
Knee-jerk "gee, why don't you just turn your computer into something
completely different" responses only lead people to believe that Linux
advocates are LYING when they claim that "Linux will run on ANYTHING"!
If it will run on ANYTHING, then a CDROM or an Internet connection is
UNNECESSARY.
------------------------------
From: David <[EMAIL PROTECTED]>
Subject: Re: swap disk
Date: Tue, 17 Apr 2001 06:08:45 GMT
jinp wrote:
>
> Is it still true that linux can(should) only have max 128Mg disk for
> swap? so if I have 128 Mg Ram, I should make 3 swap disks 128 Mg each(3
> times of ram as suggested) or I can make 1 big swap disk?
You are not restricted to 128M of swap anymore. I use 1- 256M swap
partition on one of my systems.
--
Confucius say: He who play in root, eventually kill tree.
Registered with the Linux Counter. http://counter.li.org
ID # 123538
Completed more W/U's than 99.164% of seti users. +/- 0.01%
------------------------------
From: Jason Lott <[EMAIL PROTECTED]>
Subject: Re: make dep error message
Date: Tue, 17 Apr 2001 01:16:41 -0500
On Tue, 17 Apr 2001 03:38:25 GMT, Bill Cyzwenki <[EMAIL PROTECTED]> wrote:
>Is my problem caused by compileing with gcc instead of kgcc? If so, what do
>I need to change to compile using kgcc?
>
Depends on which distribution you're running... RH7? Not to mention that some
other information would make it much easier to answer the question... compiler
version, make version, etc... It's very important to read the kernel docs to see
the minimum requirements for the tools/libraries to properly compile the kernel.
>Bill Cyzwenki wrote:
>
>> I am trying to compile kernel 2.4.2 and during the 'make dep' step I got
>> numerous occurences of the error message "warning: pasting would not
>> give a valid preprocessing token". See a portion of my the message
>> below.
>>
>> What does this message mean and more important, how do I fix it? It
>> also occured in a few other places after this one.
>>
>> Also, other then the info pages is there any other place that explains
>> how the "make" command works?
>>
>> make -C block fastdep
>> make[4]: Entering directory `/usr/src/linux-2.4.2-K1/drivers/block'
>> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
>> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
>> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ ll_rw_blk.c
>> | /sbin/genksyms -k 2.4.2 >
>> /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver.tmp
>> mv /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver.tmp
>> /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver
>> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
>> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
>> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ blkpg.c
>> | /sbin/genksyms -k 2.4.2 >
>> /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver.tmp
>> mv /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver.tmp
>> /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver
>> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
>> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
>> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ loop.c
>> | /sbin/genksyms -k 2.4.2 >
>> /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver.tmp
>> mv /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver.tmp
>> /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver
>> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
>> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
>> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ DAC960.c
>> | /sbin/genksyms -k 2.4.2 >
>> /usr/src/linux-2.4.2-K1/include/linux/modules/DAC960.ver.tmp
>> DAC960.c:112:59: warning: pasting would not give a valid preprocessing
>> token
>> DAC960.c:114:54: warning: pasting would not give a valid preprocessing
>> token
>> DAC960.c:126:26: warning: pasting would not give a valid preprocessing
>> token
>> DAC960.c:131:63: warning: pasting would not give a valid preprocessing
>> token
>> DAC960.c:136:44: warning: pasting would not give a valid preprocessing
>> token
>> DAC960.c:137:67: warning: pasting would not give a valid preprocessing
>> token
>> DAC960.c:1069:47: warning: pasting would not give a valid preprocessing
>> token
>> DAC960.c:1182:58: warning: pasting would not give a valid preprocessing
>> token
>>
>> Thank you
------------------------------
From: "Eric" <[EMAIL PROTECTED]>
Subject: Re: kernel panic w/ kernel 2.4.2-1 -> VFS:Unable to mounth root fs on 03:44
Date: Tue, 17 Apr 2001 08:18:19 +0200
> > > I get the exact same problem, except I went from redhat 7 2.2.17-14 to
> > > 2.4.3, and I am trying to mount /dev/hda3 as root. I get "Unable to
> mount
> > > root fs on 03:03". I've compiled in every single filesystem option I
> can
> > > find in 2.4.3 and it still doesn't work.
> >
> > Did you compile in support for IDE? (obvious question).
>
> Yup. I tried several different kernel options and nothing's worked so
far.
> I'm working my way back to the slow generic IDE drivers one driver at a
> time, but the computer I'm working on is rather slow and complete compiles
> take about 45 minutes.
>
perhaps a library issue?
Check what you have/need (with respect to libc/glibc versions)
Eric
------------------------------
From: "Eric" <[EMAIL PROTECTED]>
Subject: Re: kernel panic w/ kernel 2.4.2-1 -> VFS:Unable to mounth root fs on 03:44
Date: Tue, 17 Apr 2001 08:30:25 +0200
> My all previous kernel booted fine. I started with 2.0.14 went up to
> 2.2.18 thru the time, and no problems until the new 2.4.2 kernel.
> I have also taken out the 'usbdevfs /proc/bus/usb' from the
> /etc/fstab, nothing changed.
That's not what we mentioned.
disable devfs, use the bootoption Peter mentioned
> Kernel panic I am getting by trying root=/dev/hdb4 and linux
> root=03:68 during boot are exactly the same.
Well it was the wrong syntax (Sorry :-) )
try root=368 instead
But still, in both cases the complaints are about 03:44 ??
That's strange as the 03:68 should have been translated to 03:00
Eric
------------------------------
From: "Eric" <[EMAIL PROTECTED]>
Subject: Re: Dual Boot Linux RH7.0 & M$ System
Date: Tue, 17 Apr 2001 08:40:56 +0200
> Thanks heaps for the quick response. I've heard of this quirk but I
> incorrectly assumed since I could boot off a Linux floppy boot disk that
it
booting from a floppy simply implies that you're always under cyl 1024.
Therefor that would not cause such a problem.
> wasn't this problem. However, my LILO version is 21.4-4, so I s'ppose I
need
> to go find a copy of LILO 21.6 or higher now.
21.4.4 is new enough
Add "lba32" to lilo.conf instead of the "linear" line that may be there.
> > > Using Redhat 7.0 I installed the Linux boot sector to a new partition
(not
> > > the MBR)
Are you sure it is there?
> > > and used the "dd if=/dev/hda3 of=bootsect.lnx bs=512 count=1"
What's in this file bootsect.lnx (when all zero's it's not LILO)
> > > command to create a file I placed on the Windows C:\ drive and edited
> the
> > > boot.ini file to use the .lnx file to boot Linux. All M$ systems boot
> OK,
> > > but it won't boot Linux. My Linux boot disk WILL boot Linux though so
how does it fail? do you get LI ? or does nothing happen?
> > > I'm not real sure what the prob is.
Then how can we help you?
> > > I kind of suspect my drive size could be causing me probs or the fact
> > > that the first partition is NTFS??.
The size perhaps, the NTFS partition as such is not a problem
Eric
------------------------------
From: "Emil Christopher Melar" <[EMAIL PROTECTED]>
Subject: Kernel compiling problems
Date: Tue, 17 Apr 2001 08:52:03 +0200
I am trying to compile 2.2.19 on my slackware 7.1.
It seems to compile fine, and I have stripped the kernel to what I have
myself (turned off voodoo banshee etc).
The problem is:
I get black screen when I am launching the kernel, I can see my SCSI cdrom
react and my harddrive work, but no actual picture. I can also hear that my
screen changes video mode too, but the screen remains black... I have tried
2.3.4 kernel too, but it seemed to miss files, and I heard rumours that it
didnt run well...
I think my problems are in the console drivers section...
My GFX card is TNT2 Ultra AGP (32 meg). What settings do I need in the
console drivers section / font settings to make my kernel show up?
Thanks in advance!
--
-
Emil Chr. Melar
------------------------------
From: "Emil Christopher Melar" <[EMAIL PROTECTED]>
Crossposted-To: alt.os.beos,alt.os.linux,comp.sys.be.help
Subject: Re: BeOS + Linux + Windows 2000 - Triple boot trouble.
Date: Tue, 17 Apr 2001 08:58:56 +0200
cant you just use Xosl to boot everything? www.xosl.org!
--
-
Emil Chr. Melar
------------------------------
From: "Emil Christopher Melar" <[EMAIL PROTECTED]>
Subject: Re: Kernel compiling problems
Date: Tue, 17 Apr 2001 09:00:03 +0200
I have tried
> 2.3.4 kernel too -> I meant 2.4.3!
--
-
Emil Chr. Melar
------------------------------
From: Bill Cyzwenki <[EMAIL PROTECTED]>
Subject: Re: make dep error message
Date: Tue, 17 Apr 2001 06:57:14 GMT
I am running redhat 7.0
make is version 3.79.1
gcc is version 2.96
Prior to starting this I read the README, Changes and other docs that came packaged
with 2.4.2. I upgraded to the min revs specified in the Changes file.
Jason Lott wrote:
> On Tue, 17 Apr 2001 03:38:25 GMT, Bill Cyzwenki <[EMAIL PROTECTED]> wrote:
>
> >Is my problem caused by compileing with gcc instead of kgcc? If so, what do
> >I need to change to compile using kgcc?
> >
> Depends on which distribution you're running... RH7? Not to mention that some
> other information would make it much easier to answer the question... compiler
> version, make version, etc... It's very important to read the kernel docs to see
> the minimum requirements for the tools/libraries to properly compile the kernel.
> >Bill Cyzwenki wrote:
> >
> >> I am trying to compile kernel 2.4.2 and during the 'make dep' step I got
> >> numerous occurences of the error message "warning: pasting would not
> >> give a valid preprocessing token". See a portion of my the message
> >> below.
> >>
> >> What does this message mean and more important, how do I fix it? It
> >> also occured in a few other places after this one.
> >>
> >> Also, other then the info pages is there any other place that explains
> >> how the "make" command works?
> >>
> >> make -C block fastdep
> >> make[4]: Entering directory `/usr/src/linux-2.4.2-K1/drivers/block'
> >> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
> >> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
> >> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ ll_rw_blk.c
> >> | /sbin/genksyms -k 2.4.2 >
> >> /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver.tmp
> >> mv /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver.tmp
> >> /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver
> >> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
> >> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
> >> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ blkpg.c
> >> | /sbin/genksyms -k 2.4.2 >
> >> /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver.tmp
> >> mv /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver.tmp
> >> /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver
> >> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
> >> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
> >> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ loop.c
> >> | /sbin/genksyms -k 2.4.2 >
> >> /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver.tmp
> >> mv /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver.tmp
> >> /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver
> >> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
> >> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
> >> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ DAC960.c
> >> | /sbin/genksyms -k 2.4.2 >
> >> /usr/src/linux-2.4.2-K1/include/linux/modules/DAC960.ver.tmp
> >> DAC960.c:112:59: warning: pasting would not give a valid preprocessing
> >> token
> >> DAC960.c:114:54: warning: pasting would not give a valid preprocessing
> >> token
> >> DAC960.c:126:26: warning: pasting would not give a valid preprocessing
> >> token
> >> DAC960.c:131:63: warning: pasting would not give a valid preprocessing
> >> token
> >> DAC960.c:136:44: warning: pasting would not give a valid preprocessing
> >> token
> >> DAC960.c:137:67: warning: pasting would not give a valid preprocessing
> >> token
> >> DAC960.c:1069:47: warning: pasting would not give a valid preprocessing
> >> token
> >> DAC960.c:1182:58: warning: pasting would not give a valid preprocessing
> >> token
> >>
> >> Thank you
------------------------------
** 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 by posting to comp.os.linux.setup.
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-Setup Digest
******************************