Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Rodney W. Grimes
> > > I don't see a problem with adding an option to cp to treat the first > > > argument as the target instead of the last argument. It's a simple > > > solution, the code change is simple, and it produces the exact desired > > > result. What's the problem? > > > > It's yet another non-portabl

Re: Syscons mouse char range redefine proposal

2001-04-22 Thread Justin T. Gibbs
>Currently SC_MOUSE_CHAR occupes 0xd0-0xd4 range which produce conflict >with several languages code tables. I plan to redefine it by default to >0x03-0x07 leaving possibility to redefine it to any range as currently >present. This way minimizes arcane information needed for user to setup >its lan

Re: kernel core

2001-04-22 Thread Warner Losh
In message <[EMAIL PROTECTED]> "Daniel C. Sobral" writes: : Chris Knight wrote: : > : > I've found the following sequence to be optimal from going from : > pre-dirpref -current to post-dirpref -current and 4-stable to -current: : > : > make buildworld : > make buildkernel KERNCONF=YOUR_KERNEL_HE

Re: got 5 stray irq 7's: not logging anymore?

2001-04-22 Thread Bruce Evans
On Mon, 23 Apr 2001, J Wunsch wrote: > As J Wunsch wrote: > > > Apr 22 23:39:08 uriah /boot/kernel/kernel: stray irq 7 The printer driver bogusly sets up its interrupt for every write(2). Apparently there are some races in this. > Even stranger, here's part of "systat -vm": > > Interrupts >

Re: One more typo in src/release/Makefile, rev 1.612? (w/patch)

2001-04-22 Thread David O'Brien
On Mon, Apr 16, 2001 at 08:10:39PM -0700, John Baldwin wrote: > Also, Bruce's fix is not entirely correct as it breaks for the > non-debug kernel case, but I've already sent you a mail about that, > just to let everyone know that it should be fixed shortly. :) I commited your "fix" for it. IMHO,

Re: Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Brian Somers
> On Sun, 22 Apr 2001 13:16:31 +0100, Brian Somers wrote: > > > On Sat, 21 Apr 2001 20:04:31 +0100, Brian Somers wrote: > > > > > Sorry for butting in. Adding new non-portable functionality to solve the >problem > > > > > which could be adequitely taken care of using existing and well known > > >

Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Garance A Drosihn
At 1:19 PM -0700 4/21/01, Dima Dorfman wrote: >Does that mean everyone is blind and missed my arrogant >cross-post of the amazingly short patch to do this, or >are we just interested in discussing it and not testing >the implementation? ;-) Well, I'm in the middle of a massive reorganization of a

Re: world is broken?

2001-04-22 Thread Kris Kennaway
On Sun, Apr 22, 2001 at 06:11:25PM +0400, Ilya Naumov wrote: > Hello, > > 'make buildworld' fails with the following symptoms: > > ===> usr.sbin/rpc.lockd > cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr/include/rpcsvc -g >-I/usr/obj/garbage/src/i386/usr/include -c /garbage/src/usr.sb

Re: got 5 stray irq 7's: not logging anymore?

2001-04-22 Thread J Wunsch
As J Wunsch wrote: > Apr 22 23:39:08 uriah /boot/kernel/kernel: stray irq 7 Even stranger, here's part of "systat -vm": Interrupts 418 total stray irq0 stray irq6 stray irq7 vx0 irq9 117 sym0 irq12 sym1 irq10 atkbd0 irq 1 fdc0 irq6 72 isic0 irq1

got 5 stray irq 7's: not logging anymore?

2001-04-22 Thread J Wunsch
Apr 22 23:39:08 uriah /boot/kernel/kernel: stray irq 7 Apr 22 23:39:08 uriah /boot/kernel/kernel: stray irq 7 Apr 22 23:41:00 uriah last message repeated 3 times Apr 22 23:41:00 uriah /boot/kernel/kernel: got 5 stray irq 7's: not logging anymore I get this while printing. Strange, because: % /s

Fix for union mount problem

2001-04-22 Thread Oliver Fromme
Hi, Would someone please have a quick look at "bin/26498"? It's a trivial one-line patch for the libc that fixes an annoying bug that occurs when using union mounts (i.e. mount -o union, _not_ unionfs). More details are in the PR. It applies to both -current and -stable. Thanks! Regards O

Re: --whole-archive ld(1) option doesn't work

2001-04-22 Thread Maxim Sobolev
On Sun, 22 Apr 2001 15:19:10 +0300 (EEST), Maxim Sobolev wrote: > I've noticed that the --whole-archive option doesn't work in -CURRENT and > 4-STABLE. Among other things it makes impossible to build openssl from ports > (yeah, I know that one should use ssl from /usr/src, but that's not a point).

IPSEC & checkinterface

2001-04-22 Thread Kent Hauser
Hi, I just rebuilt my several month old -current system & found that IPSEC processing appears broken. I restored my IPSEC functionality by setting `ip_checkinterface = 0' in "netinet/ip_input.c". However, something tells me that this is not the long-term fix. Thanks. Kent To Unsubscribe: se

Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Karsten W. Rohrbach
rohrbach@WM:datasink[~]68% tar cf /dev/null src/ rohrbach@WM:datasink[~]69% find src|wc -l 2552 rohrbach@WM:datasink[~]70% du -sk src 32258 src rohrbach@WM:datasink[~]71% mkdir src2 rohrbach@WM:datasink[~]72% time find src -exec cp {} src2 \; find src -exec cp {} src2 ; 0.31s user 7.55s sy

Click on to meet someone you Click with

2001-04-22 Thread Introsearch.Com
Title: Click on to meet someone you Click with Click on to meet someone you Click with Introsearch does not condone unsolicited Bulk Emailing - Our source email lists comprise only of email addresses which have been obtained through correct legal channels from users who have at some stage

Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Karsten W. Rohrbach
Brian Somers([EMAIL PROTECTED])@2001.04.20 11:29:15 +: > find something | xargs cp {} target_directory > > or > > find something | xargs -i '[]' cp '[]' target_directory > or find something -exec cp {} target_directory \; from find(1): -exec utility [argument ...]; True

Re: kernel core

2001-04-22 Thread Daniel C. Sobral
Chris Knight wrote: > > I've found the following sequence to be optimal from going from > pre-dirpref -current to post-dirpref -current and 4-stable to -current: > > make buildworld > make buildkernel KERNCONF=YOUR_KERNEL_HERE > make installkernel KERNCONF=YOUR_KERNEL_HERE > make installworld >

leftover pseudo-devices

2001-04-22 Thread Jens Schweikhardt
hello, world\n as -current's NOTES seems to no longer support pseudo-devices, we should get the docs up to snuff. Grepping /usr/src for pseudo-device turns up the following. I hesitate to simply s/pseudo-device/device/g and commit the changes. Could the maintainers of these files please have a l

world broken at vnode.h

2001-04-22 Thread Michael Harnois
In file included from ../../dev/bktr/bktr_audio.c:52: ../../sys/vnode.h:571: conflicting types for `vaccess_acl_posix1e' ../../sys/vnode.h:568: previous declaration of `vaccess_acl_posix1e' ../../sys/vnode.h:571: warning: redundant redeclaration of `vaccess_acl_posix1e' in same scope ../../sys/vn

Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Maxim Sobolev
On Sun, 22 Apr 2001 13:16:31 +0100, Brian Somers wrote: > > On Sat, 21 Apr 2001 20:04:31 +0100, Brian Somers wrote: > > > > Sorry for butting in. Adding new non-portable functionality to solve the >problem > > > > which could be adequitely taken care of using existing and well known > > > > techn

Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Maxim Sobolev
On Sat, 21 Apr 2001 20:04:31 +0100, Brian Somers wrote: > > Sorry for butting in. Adding new non-portable functionality to solve the problem > > which could be adequitely taken care of using existing and well known > > techniquies is not appropriate, I completely agree with you on that. > > And I

RE: kernel core

2001-04-22 Thread Chris Knight
Howdy, I've found the following sequence to be optimal from going from pre-dirpref -current to post-dirpref -current and 4-stable to -current: make buildworld make buildkernel KERNCONF=YOUR_KERNEL_HERE make installkernel KERNCONF=YOUR_KERNEL_HERE make installworld mergemaster fsck all partition

Wrong headline!

2001-04-22 Thread Fredrik Neisler
Current Release(s) -> Release 4.3 (November, 2000) ?!?? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Brian Somers
> On Sat, 21 Apr 2001 20:04:31 +0100, Brian Somers wrote: > > > Sorry for butting in. Adding new non-portable functionality to solve the problem > > > which could be adequitely taken care of using existing and well known > > > techniquies is not appropriate, I completely agree with you on that. >

--whole-archive ld(1) option doesn't work

2001-04-22 Thread Maxim Sobolev
I've noticed that the --whole-archive option doesn't work in -CURRENT and 4-STABLE. Among other things it makes impossible to build openssl from ports (yeah, I know that one should use ssl from /usr/src, but that's not a point). Attached testcase and log exose the problem in question. -Maxim ou

world is broken?

2001-04-22 Thread Ilya Naumov
Hello, 'make buildworld' fails with the following symptoms: ===> usr.sbin/rpc.lockd cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr/include/rpcsvc -g -I/usr/obj/garbage/src/i386/usr/include -c /garbage/src/usr.sbin/rpc.lockd/kern.c cc -pipe -march=k6 -I. -I/usr/obj/garbage/src/i386/usr

Re: cp -d dir patch for review (or 'xargs'?)

2001-04-22 Thread Brian Somers
> Brian Somers <[EMAIL PROTECTED]> writes: > > I looked at your patches and immediately thought ``these patches > > can't be right'' as I was expecting it to deal with things such as > > > > xargs -I [] echo args are [], duplicated are [] > > It deals with it. It conveniently ignores the se