Re: FreeBSD 4.3 crashing with USB hub attached...

2001-05-11 Thread Shannon Hendrix
On Fri, May 11, 2001 at 07:54:26PM -0400, Shannon wrote: > For the second boot I unplugged the USB hub. This time everything was > fine... I'm sending this mail from the FreeBSD machine's console. Replying to my own post: The problem is the Logitech joystick, not the hub itself. Every time I bo

Re: adding a new function to libc

2001-05-11 Thread Peter Seebach
In message <[EMAIL PROTECTED]>, Daniel Hemmerich writes : >Any comments, suggestions, swears concerning adding a new function, >strndup(), to libc? Well, the obvious potential concern is that str[a-z]* is reserved namespace, and what if a future spec has a *different* strndup? >So that instead

adding a new function to libc

2001-05-11 Thread Daniel Hemmerich
Any comments, suggestions, swears concerning adding a new function, strndup(), to libc? So that instead of permitting it to attempt to allocate a large chunk of memory, it is possible to give it a max length. char * strndup(str, max_len) const char *str; size_t max_len; {

FreeBSD 4.3 crashing with USB hub attached...

2001-05-11 Thread Shannon
I just installed FreeBSD 4.3 on a machine that runs Linux, and had been running FreeBSD 3.5-4.1, various releases. No problems, at least nothing major. However, when booting up after the install, the machine crashed before it set all devices. I noticed that the system had trouble with some of

Re: xargs(1) "replstr" patch

2001-05-11 Thread Dima Dorfman
Garance A Drosihn <[EMAIL PROTECTED]> writes: > At 6:03 PM -0700 5/11/01, Dima Dorfman wrote: > >+For example, the following command will copy the list of files and > >+directories which start with an uppercase letter in the current > >+directory to > >+.Pa destdir : > >+.Pp > >+.Dl /bin/ls -1d [A

Re: xargs(1) "replstr" patch

2001-05-11 Thread Garance A Drosihn
At 6:03 PM -0700 5/11/01, Dima Dorfman wrote: >Comments? Suggestions? The one oddity I forgot to ask Dima about was in the man page. We included an example, which in nroff source is: >+For example, the following command will copy the list of files and >+directories which start with an uppercase

Re: subscribe

2001-05-11 Thread David O'Brien
On Fri, May 11, 2001 at 05:01:13PM -0700, Jordan Hubbard wrote: > Argh! I'm sorry folks, I almost always remember to delete the cc line > when I send somebody that particular form letter so as not to spam the > list myself, but this time I forgot to do that before typing the send > command. Bad

xargs(1) "replstr" patch

2001-05-11 Thread Dima Dorfman
Folks, The attached patch adds a "replacement string" feature to xargs(1). There's a full description in the man page update (also attached), but the following should demonstrate the new functionality: dima@spike% ./xargs -J [] echo CMD LINE [] ARGS < test CMD LINE this is the co

Re: subscribe

2001-05-11 Thread Joseph Mallett
Jordan, looks like you sold out! =P -- [ Joseph Mallett<[EMAIL PROTECTED]> ] [ http://srcsys.org ] [ xMach Core Team xMach: Proactively Unbloated Microkernel BSD ] [ Proud {Free,Net}BSD User; (Obj)C(++) Programmer ] [ http://xMach.org ] On Fri, 11 May 2001, Jordan Hubbard wro

Re: subscribe

2001-05-11 Thread Jordan Hubbard
Argh! I'm sorry folks, I almost always remember to delete the cc line when I send somebody that particular form letter so as not to spam the list myself, but this time I forgot to do that before typing the send command. Bad Jordan, no cookie! - Jordan To Unsubscribe: send mail to [EMAIL PROTEC

Re: subscribe

2001-05-11 Thread Jordan Hubbard
[ Sorry to send you a form letter, but I just happen to have one which covers this case and it saves me some typing :) -jkh ] If you're receiving this message, it's because you just sent a "subscribe" message erroneously to one of our mailing lists, resulting in thousands (and, in some cases, t

subscribe

2001-05-11 Thread marc . miller
To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: kernel boot up problem

2001-05-11 Thread Wes Peters
[Charset iso-8859-1 unsupported, filtering to ASCII...] Please send email to FreeBSD lists in plain ASCII, this really hoses those of us who use (or are stuck with) old mailers. > > Hi: > > I am using FreeBSD 3.3 on a proprietary machine. The problem is that a T1 > > card (which is a PCI device

possible bug in/around dscheck()?

2001-05-11 Thread Sitaram Iyer
Hi, I was mirroring some disks (happily ignoring badblocks), using rsh source_machine dd if=/dev/ad0 bs=1MB | dd of=/dev/ad0 bs=1MB with FreeBSD-4.3-release running both machines. This sometimes (disastrously) aborts when a partition boundary is crossed. Sure enough, dscheck() invoked from dis

Re: kernel boot up problem

2001-05-11 Thread Paul Halliday
[EMAIL PROTECTED] wrote: > > Thanks for the reply. I first tried to change the IRQ from the BIOS. I saw > that the IRQ of both the cards changes together. hmm.. the only other thing I could suggest is if possible is flashing the eprom on the T1 card. I am not sure if this card supports it or not

RE: kernel boot up problem

2001-05-11 Thread ashish_lal
Thanks for the reply. I first tried to change the IRQ from the BIOS. I saw that the IRQ of both the cards changes together. The machine has 4 CPUs and I am booting from CPU #1. The bios shows 4 PCI slots. The "Plug and Play OS" entry in the BIOS is set to "No". Any help will be greatly appreciated

availability of 'St.d - Server Tester (disk)'

2001-05-11 Thread Brian Reichert
I'm trying to get to but the DNS for simon-shapiro.org is screwed. The name server seems to be hosting the ftp/web server as well, so I can use this: Does anyone have any opinions (good/bad) about this ut

Re: Cannot mount logical partitions

2001-05-11 Thread Rubens
(From post to comp.unix.bsd.misc) Hmmm - since I got no answers to that, I changed the kernel and fdisk code to do it, and it looks like it worked. I am including uuencoded versions of both context diffs. (FreeBSD 4.2) begin 644 kernel_patch M26YD97@Z('-Y7,O:V5R;B]S M=6)R7V1I"!E M>'1E;F1E9"!P87

Re: Writing device drivers (was: help me please)

2001-05-11 Thread Brian Somers
> hi, > Thanx Julian for pointing me to the tunnel pseudo-driver. > But my major concern was regarding linking the driver to the kernel( i > am trying to use static linking stuff). I am presently doing > a major grep on "tun" 8-) > It would be great if i could get some docs regding w

Re: Writing device drivers (was: help me please)

2001-05-11 Thread Jayesh Krishna
hi, Thanx Julian for pointing me to the tunnel pseudo-driver. But my major concern was regarding linking the driver to the kernel( i am trying to use static linking stuff). I am presently doing a major grep on "tun" 8-) It would be great if i could get some docs regding which files h

ulimit -b in /bin/sh

2001-05-11 Thread Paul Herman
Not sure if -arch is a better list for this. If so, followups there. The units for sbsize in limits is currently displayed in bytes, not kilobytes. Changing the output to kb to be consistent with the others (datasize, stacksize, memoryuse, etc.) shouldn't be a problem... The problem would be w