watchdog bugging us.

2001-01-31 Thread [EMAIL PROTECTED]
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 When i do tail -f /var/log/messages, it gives me this. Jan 31 15:03:49 beta /kernel: xl0: watchdog timeout Jan 31 15:04:24 beta last message repeated 6 times Jan 31 15:06:27 beta last message repeated 18 times Jan 31 15:12:34 beta last message repeat

CVSup7.FreeBSD.org is back in service

2001-01-31 Thread John Polstra
Just a note to let you know that cvsup7.freebsd.org is back in service. John -- John Polstra [EMAIL PROTECTED] John D. Polstra & Co., Inc.Seattle, Washington USA "Disappointment is a good sign of basic intelligence." --

Re: Atomic bit operations

2001-01-31 Thread Matthew Emmerton
> On 01-Feb-01 Matthew Emmerton wrote: > >> 2) atomic_set_int(&my_int, 4); sets bit _2_ in the integer variable > > my_int. > >> Make sense? You can't address individual bits on a machine. :-P > >> > >> > I presume that I could wrap the char operations with something that > > takes > >> > 0x01 an

Re: CVSup7.FreeBSD.org is back in service

2001-01-31 Thread Julian Elischer
John Polstra wrote: > > Just a note to let you know that cvsup7.freebsd.org is back in > service. > > John > -- > John Polstra [EMAIL PROTECTED] > John D. Polstra & Co., Inc.Seattle, Washington USA > "Disappointment is a

Re: Atomic bit operations

2001-01-31 Thread Julian Elischer
John Baldwin wrote: > > On 31-Jan-01 Matthew Emmerton wrote: > > Hi all, > > > > I've taken a look around for an implementation of atomic bit operations in > > FreeBSD (similar to Linux' asm/bitopt.h, which include clear_bit() and > > test_and_set_bit()) but haven't found any. The only thing I'v

Re: Atomic bit operations

2001-01-31 Thread John Baldwin
On 01-Feb-01 Matthew Emmerton wrote: >> On 31-Jan-01 Matthew Emmerton wrote: >> > Hi all, >> > >> > I've taken a look around for an implementation of atomic bit operations > in >> > FreeBSD (similar to Linux' asm/bitopt.h, which include clear_bit() and >> > test_and_set_bit()) but haven't found a

Re: Atomic bit operations

2001-01-31 Thread John Baldwin
On 01-Feb-01 Matthew Emmerton wrote: >> 1) You need to look in -current. > > I only recently moved to 4-stable, so I'm not going to jump to -current > quite yet :) > >> 2) atomic_set_int(&my_int, 4); sets bit _2_ in the integer variable > my_int. >> Make sense? You can't address individual bit

Re: escape sequence for 'Ic' terminal capability

2001-01-31 Thread Aleksandr A.Babaylov
Peter Pentchev writes: > On Tue, Jan 09, 2001 at 10:05:01AM +0200, Peter Pentchev wrote: > > I'm thinking of messing with the syscons ioctl handler to allow setting > > of color values - all EGA- and VGA-compatible video controllers allow this. > > The idea is to later define my termcap(5) entry t

Re: Atomic bit operations

2001-01-31 Thread Matthew Emmerton
> On 31-Jan-01 Matthew Emmerton wrote: > > Hi all, > > > > I've taken a look around for an implementation of atomic bit operations in > > FreeBSD (similar to Linux' asm/bitopt.h, which include clear_bit() and > > test_and_set_bit()) but haven't found any. The only thing I've found are > > the ato

RE: Atomic bit operations

2001-01-31 Thread John Baldwin
On 31-Jan-01 Matthew Emmerton wrote: > Hi all, > > I've taken a look around for an implementation of atomic bit operations in > FreeBSD (similar to Linux' asm/bitopt.h, which include clear_bit() and > test_and_set_bit()) but haven't found any. The only thing I've found are > the atomic clear/se

Re: watchdog bugging us.

2001-01-31 Thread Reddy Crashalott
[disclaimer: this is an invalid sender and return address; replies should be posted to the list or perhaps better not posted at all, finally i am rid of that cursed e-mail reachability, free at last] :: When i do tail -f /var/log/messages, it gives me this. :: :: Jan 31 15:03:49 beta /kernel:

Re: Moving to KLM's

2001-01-31 Thread Kris Kennaway
On Wed, Jan 31, 2001 at 09:47:05AM -0600, Daryl Chance wrote: > Hi, > > I'm wanting to try and move from compiling a kernel with everything > in it, to complining a minimal kernel and loading the klms i need (NFS, > IPFW, etc etc). What file would i specify to load all the klms i want? > Is ther

regular coding?

2001-01-31 Thread GLOBALLINK2001
Hello everyone! First off, I would like to thank everyone on this list for there help especially in response to my 'kernel hacking' question. Here is my question: I am a beggining C programmer, I have written a simple calculator etc, and I understand basic C concepts, is it correct to ask norm

Re: Atomic bit operations

2001-01-31 Thread Matthew Emmerton
> On 01-Feb-01 Matthew Emmerton wrote: > >> On 31-Jan-01 Matthew Emmerton wrote: > >> > Hi all, > >> > > >> > I've taken a look around for an implementation of atomic bit operations > > in > >> > FreeBSD (similar to Linux' asm/bitopt.h, which include clear_bit() and > >> > test_and_set_bit()) but

Re: escape sequence for 'Ic' terminal capability

2001-01-31 Thread Peter Pentchev
On Tue, Jan 09, 2001 at 10:05:01AM +0200, Peter Pentchev wrote: > Hi, > > I'm thinking of messing with the syscons ioctl handler to allow setting > of color values - all EGA- and VGA-compatible video controllers allow this. > The idea is to later define my termcap(5) entry to let ncurses deal wit

Moving to KLM's

2001-01-31 Thread Daryl Chance
Hi, I'm wanting to try and move from compiling a kernel with everything in it, to complining a minimal kernel and loading the klms i need (NFS, IPFW, etc etc). What file would i specify to load all the klms i want? Is there one, kinda like the sysctl file? Or do I do it a differnt way. thanks,

Re: EBCDIC -> ASCII

2001-01-31 Thread Peter Pentchev
On Wed, Jan 31, 2001 at 02:37:43PM -0500, Garance A Drosihn wrote: [snip good explanation why EBCDIC encoding diffs matter] > > Now, it's perfectly reasonable to try 'dd's conversion, and > see if that works for you. But if it doesn't, then rummage > around thru the ports collection, and see if

Re: EBCDIC -> ASCII

2001-01-31 Thread Garance A Drosihn
At 8:42 AM -0800 1/31/01, Luigi Rizzo wrote: > > At 1:33 PM -0800 1/29/01, Josef Grosch wrote: >> >Does anybody know of an EBCDIC to ASCII converter? I thought >> >that at one time FreeBSD had one of these. >> >> Note there are multiple ideas of what it means to be EBCDIC. >> Alphanumerics st

Atomic bit operations

2001-01-31 Thread Matthew Emmerton
Hi all, I've taken a look around for an implementation of atomic bit operations in FreeBSD (similar to Linux' asm/bitopt.h, which include clear_bit() and test_and_set_bit()) but haven't found any. The only thing I've found are the atomic clear/set/add/sub routines in machine/atomic.h. Do we hav

Re: Realtek card support

2001-01-31 Thread David Greenman
>PS. for the record: I also still have an SMC EtherEZ 10Mb UTP and a 3Com >3c503 for those who want to work on drivers for them. Both of those should work with the ed driver. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://w

Re: EBCDIC -> ASCII

2001-01-31 Thread Dan Bongert
Try dd: dd if=infile of=outfile conf=ascii On 31-Jan-2001 Garance A Drosihn wrote: > At 1:33 PM -0800 1/29/01, Josef Grosch wrote: >>Does anybody know of an EBCDIC to ASCII converter? I thought >>that at one time FreeBSD had one of these. > > Note there are multiple ideas of what it means to be

newpcm / csa driver question

2001-01-31 Thread Florent.Parent
I sent this message on the freebsd-mobile mailing list. Since it is related to the newpcm/csa driver, I think folks on the hackers list may be able to help. Summary: - newpcm/csa driver on 4.2-stable doesn't work on my thinkpad a20p - Same laptop with NetBSD 1.5, it works fine (clcs driver) Que

Re: ptrace()

2001-01-31 Thread Vojislav Milunovic
On Wed, 31 Jan 2001, AARON J MARKS wrote: > > There's a good (albeit small) treatment of ptrace() in the Bach book (The > Design of the UNIX Operating System). If you need some examples, I can > send you some code you can look at. Yes I need some exapmles:o) If you can,please send me those sour

Re: ptrace()

2001-01-31 Thread AARON J MARKS
There's a good (albeit small) treatment of ptrace() in the Bach book (The Design of the UNIX Operating System). If you need some examples, I can send you some code you can look at. -A. On Wed, 31 Jan 2001, Vojislav Milunovic wrote: > > Does anyone have some sourcecodes or some papers for ptr

Re: EBCDIC -> ASCII

2001-01-31 Thread Lyndon Nerenberg
> "Luigi" == Luigi Rizzo <[EMAIL PROTECTED]> writes: Luigi> isn't so for ASCII chars >128 as well ? There are no ASCII characters > 128. --lyndon To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

ptrace()

2001-01-31 Thread Vojislav Milunovic
Does anyone have some sourcecodes or some papers for ptrace() on FreeBSD? I'm little incurious about this function.I read man but seems that I don't understand it:o( -- Vojislav Milunovic [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hack

Re: EBCDIC -> ASCII

2001-01-31 Thread Luigi Rizzo
> At 1:33 PM -0800 1/29/01, Josef Grosch wrote: > >Does anybody know of an EBCDIC to ASCII converter? I thought > >that at one time FreeBSD had one of these. > > Note there are multiple ideas of what it means to be EBCDIC. > Alphanumerics stay the same between them, of course, but a > few of the

Re: EBCDIC -> ASCII

2001-01-31 Thread Garance A Drosihn
At 1:33 PM -0800 1/29/01, Josef Grosch wrote: >Does anybody know of an EBCDIC to ASCII converter? I thought >that at one time FreeBSD had one of these. Note there are multiple ideas of what it means to be EBCDIC. Alphanumerics stay the same between them, of course, but a few of the special charac

Re: Realtek card support

2001-01-31 Thread Jose M. Alcaide
Luigi Rizzo wrote: > > what card is that and what is broken ? > both the ne and the rl driver works reasonably well with the 8029 > and 8139 chips. Media autodetection does not work here -I tried several different 10Mbps hubs- with 8139 based cards. I have to specify "media 10baseT/UTP" to ifcon

Re: Realtek card support

2001-01-31 Thread Christoph Sold
"Koster, K.J." schrieb: > > > > > > This particular card is branded "TP-Link", chip reads RTL8139B. > > > > > > It detects, configures and runs for a while, but drops the > > > line after a while. (PPTP to my ADSL modem) > > > > I got exactly this chip (RTL8139b) on a Realtek card working here

RE: Realtek card support

2001-01-31 Thread Koster, K.J.
> > > This particular card is branded "TP-Link", chip reads RTL8139B. > > > > It detects, configures and runs for a while, but drops the > > line after a while. (PPTP to my ADSL modem) > > I got exactly this chip (RTL8139b) on a Realtek card working here 24/7 > since about two months. I also go

Re: Realtek card support

2001-01-31 Thread Christoph Sold
"Koster, K.J." schrieb: > > > > > > > > > I have two RealTek network cards that I'm willing to send > > > to someone who is > > > going to update the FreeBSD realtek driver to support them. > > > > > > > what card is that and what is broken ? > > both the ne and the rl driver works reasonably w

RE: Realtek card support

2001-01-31 Thread Koster, K.J.
> > > > > I have two RealTek network cards that I'm willing to send > > to someone who is > > going to update the FreeBSD realtek driver to support them. > > > > what card is that and what is broken ? > both the ne and the rl driver works reasonably well with the 8029 > and 8139 chips. > Thi

Re: Realtek card support

2001-01-31 Thread Luigi Rizzo
what card is that and what is broken ? both the ne and the rl driver works reasonably well with the 8029 and 8139 chips. luigi > > I have two RealTek network cards that I'm willing to send to someone who is > going to update the FreeBSD realtek driver to support them. > > I know it's s

Realtek card support

2001-01-31 Thread Koster, K.J.
Dear All, I have two RealTek network cards that I'm willing to send to someone who is going to update the FreeBSD realtek driver to support them. I know it's supposed to be broken in the hardware, but the sad fact is that in the Netherlands this is the *only* card they sell in many smaller store

Re: gzip and cvsweb.cg

2001-01-31 Thread Dan Langille
On 31 Jan 2001, at 19:10, Akinori MUSHA wrote: > Read cvsweb.cgi and you'll know it only gzip's the stream when the > user agent claims either it's "Mozilla/*" or it accepts gzip > encoding. Which applies to your situation? Thanks for that bit. Given that I'm using fetch under 4.1-stable, I wo

Re: Bash2 removes SSH_CLIENT from the environment

2001-01-31 Thread Dag-Erling Smorgrav
Chet Ramey <[EMAIL PROTECTED]> writes: > Bash uses the presence of SSH_CLIENT to decide whether or not to run the > shell startup files for a non-interactive shell (like it attempts to do > for rsh). [...] Feh. Here's a nickel, kid, get yourself a real shell. DES -- Dag-Erling Smorgrav - [EMA

Re: gzip and cvsweb.cg

2001-01-31 Thread Akinori MUSHA
At Wed, 31 Jan 2001 22:52:02 +1300, Dan Langille wrote: > OK. Explain this. When we telnet to port 80 and fetch it, we don't get > gzip. When we use lynx, it doesn't come back gzip'd (does lynx know > gzip?). > > [dan@lists:~/temp] $ lynx -dump > http://www.freebsd.org/cgi/cvsweb.cgi/ports/

Re: gzip and cvsweb.cg

2001-01-31 Thread Dan Langille
On 30 Jan 2001, at 14:35, Akinori MUSHA wrote: > At Tue, 30 Jan 2001 14:26:01 +1300 (NZDT), > Dan Langille wrote: > > I've noticed that cvsweb.cgi sometimes gives me GZIP and sometimes not. I > > tracked down a fix for my needs, but would like some feedback please. > > > > The problem arose whe

'netstat -inb' short byte counters

2001-01-31 Thread Zaitsev Serg
I like to use 'netstat -inb' for monthly looking how much bytes in/out on particular network device (xl2, for me) on FreeBSD 4.2-release. But counters look like a modus of 2^32 (4294967296, unsigned double word). It's so little for my needs. Are there user way to enlarge counters to 64 bits? Hints