Re: terminal emulators using /usr/local/share/terminfo and a bug in perl's Term::Cap

2011-10-02 Thread Nicholas Marriott
This seems fine to me, but I'm not a perl guru. Have you talked to upstream? Cheers On Thu, Sep 29, 2011 at 10:49:36AM +0200, David Coppa wrote: Hi, The patch to ncurses nicm@ commited some days ago, exposes a bug in perl's cpan/Term-Cap/Cap.pm. So, when you use rxvt-unicode on a recent

Re: fix a seg and minor improvements to config(8)

2011-10-02 Thread Nicholas Marriott
Hi All but the stat bit looks fine. How do you reproduce the problems? It seems to fail just fine without it. $ config -f /x config: cannot read /x: No such file or directory Also maybe use access(2) instead? On Wed, Sep 28, 2011 at 02:37:34AM +0100, Edd Barrett wrote: Evening, When using

carp error message diff

2011-10-02 Thread Stefan Sperling
Sync error strings between v4 and v6 carp code. ok? Index: ip_carp.c === RCS file: /cvs/src/sys/netinet/ip_carp.c,v retrieving revision 1.190 diff -u -p -r1.190 ip_carp.c --- ip_carp.c 6 Sep 2011 16:00:22 - 1.190 +++

gpioiic: allow SDA and SCL pins to be inverted

2011-10-02 Thread Matthieu Herrb
Hi, the patch below adds a 'flags' locator to gpioiic(4). It allows to swap the SDA and SCL pins assigment during attach. The current gpio attach code did only allow for SDA being the lowest numbered pin. But for instance on geode (cs5536) SCL is gpio pin 3 and SDA is pin 4. This is a joint

Re: fix a seg and minor improvements to config(8)

2011-10-02 Thread Edd Barrett
On Sun, Oct 02, 2011 at 07:22:07AM +0100, Nicholas Marriott wrote: Hi All but the stat bit looks fine. How do you reproduce the problems? It seems to fail just fine without it. $ config -f /x config: cannot read /x: No such file or directory To reproduce these, you would use -e. If you

Re: fix a seg and minor improvements to config(8)

2011-10-02 Thread Nicholas Marriott
fine, ok nicm On Sun, Oct 02, 2011 at 10:46:52AM +0100, Edd Barrett wrote: On Sun, Oct 02, 2011 at 07:22:07AM +0100, Nicholas Marriott wrote: Hi All but the stat bit looks fine. How do you reproduce the problems? It seems to fail just fine without it. $ config -f /x config:

carp slaves send IPv6 neighbour advertisements

2011-10-02 Thread Stefan Sperling
After upgrading my carp setup to -current messages like the following started appearing in the logs of the carp master: Oct 1 22:09:39 dougal /bsd: nd6_na_input: duplicate IP6 address fe80:000a::0200:5eff:fe00:0101 Oct 1 22:09:39 dougal /bsd: nd6_na_input: duplicate IP6 address

Re: A few kernel-related questions: UVM, W^X and PAE

2011-10-02 Thread Barbier, Jason
3. What's the point in keeping sys/arch/i386/i386/pmapae.c? Are there any plans for re-enabling PAE support? PAE will always be needed for 32bit processors as I understand it. There are some 32bit processors out there that the boards will allow for more than 4 gigs of ram But you will need PAE to

Re: fix a seg and minor improvements to config(8)

2011-10-02 Thread Edd Barrett
On Sat, Oct 01, 2011 at 11:10:35PM -0300, Christiano F. Haesbaert wrote: Makes sense to me, ok. Later we should fix the include orderning and change the warning printfs to stderr. Yes. Well, here is the first phase. * As haesbaert suggests, correctly order include files. * Found some

carp ipv6 checksum fix

2011-10-02 Thread Stefan Sperling
I've started seeing the following problem after updating my carp setup to -current yesterday. But it is probably a bit older. My carp setup uses IPv6. The carp master complains as follows: Oct 1 22:10:19 dougal /bsd: carp: checksum failed, on carp0 The carp slave is also seeing checksum

routing bug?

2011-10-02 Thread David Coppa
Am I stupid or there's a bug with routing? This is what I've found when I was trying to switch from the internal wireless card in my laptop to an external usb wireless adapter... The system is: # dmesg | head -n 2 OpenBSD 5.0-current (GENERIC.MP) #2: Fri Sep 30 13:33:44 CEST 2011

Re: routing bug?

2011-10-02 Thread Mike Belopuhov
you didn't remove an ip address from ral0 after bringing it down. On Sun, Oct 2, 2011 at 5:13 PM, David Coppa dco...@gmail.com wrote: Am I stupid or there's a bug with routing? This is what I've found when I was trying to switch from the internal wireless card in my laptop to an external usb

Re: routing bug?

2011-10-02 Thread David Coppa
On Sun, Oct 2, 2011 at 5:36 PM, Mike Belopuhov m...@crypt.org.ru wrote: you didn't remove an ip address from ral0 after bringing it down. You're right, this is the right fix. Thanks a lot. ...And I would bet it was because I'm stupid and not because a bug in OpenBSD :) :) Ciao, David

Re: A few kernel-related questions: UVM, W^X and PAE

2011-10-02 Thread Stuart Henderson
On 2011/10/02 07:38, Barbier, Jason wrote: 3. What's the point in keeping sys/arch/i386/i386/pmapae.c? Are there any plans for re-enabling PAE support? PAE will always be needed for 32bit processors as I understand it. There are some 32bit processors out there that the boards will allow for

dd(1) support for uppercase size modifiers

2011-10-02 Thread Thomas Pfaff
Simple patch to allow uppercase size modifiers (K, M, and G). Is there a reason why not to? Plus, as a bonus you're less likely to mess up if you've been naughty and used dd on Linux. Index: args.c === RCS file:

Re: A few kernel-related questions: UVM, W^X and PAE

2011-10-02 Thread Ted Unangst
On Fri, Sep 30, 2011, Vadim Zhukov wrote: Hello all. After some talks on opennet.ru I dived into the sys/uvm/ and other places, having a few more or less tech-nical questions raised now. Can anybody answer them? Very nice. 1. amap_share_protect() in sys/uvm/uvm_amap.c is totally unused,

fstat.1 - a little typo fix

2011-10-02 Thread David Vasek
Just one missing letter. Regards, David Index: src/usr.bin/fstat/fstat.1 === RCS file: /cvs/src/usr.bin/fstat/fstat.1,v retrieving revision 1.46 diff -u -p -r1.46 fstat.1 --- src/usr.bin/fstat/fstat.1 2 May 2011 11:14:11 -

Re: dd(1) support for uppercase size modifiers

2011-10-02 Thread STeve Andre'
On 10/02/11 14:25, Thomas Pfaff wrote: Simple patch to allow uppercase size modifiers (K, M, and G). Is there a reason why not to? Plus, as a bonus you're less likely to mess up if you've been naughty and used dd on Linux. Index: args.c

UPDATE: xenocara/xkeyboard-config

2011-10-02 Thread Alexandr Shadchin
Hi, This update xkeyboard-config to the latest release 2.4. http://koba.devio.us/distfiles/xkeyboard-config-2.4.diff Tested on amd64. Comments ? OK ? -- Alexandr Shadchin

Re: dd(1) support for uppercase size modifiers

2011-10-02 Thread Thomas Pfaff
On Sun, 02 Oct 2011 14:38:42-0400 STeve Andre' and...@msu.edu wrote: On 10/02/11 14:25, Thomas Pfaff wrote: Simple patch to allow uppercase size modifiers (K, M, and G). Is there a reason why not to? Plus, as a bonus you're less likely to mess up if you've been naughty and used dd on

Re: fix a seg and minor improvements to config(8)

2011-10-02 Thread Nicholas Marriott
don't see any harm in this, ok nicm On Sun, Oct 02, 2011 at 03:44:52PM +0100, Edd Barrett wrote: On Sat, Oct 01, 2011 at 11:10:35PM -0300, Christiano F. Haesbaert wrote: Makes sense to me, ok. Later we should fix the include orderning and change the warning printfs to stderr.

Re: fstat.1 - a little typo fix

2011-10-02 Thread Jason McIntyre
On Sun, Oct 02, 2011 at 09:45:05PM +0200, David Vasek wrote: Just one missing letter. Regards, David fixed, thanks. jmc Index: src/usr.bin/fstat/fstat.1 === RCS file: /cvs/src/usr.bin/fstat/fstat.1,v retrieving revision

查w收

2011-10-02 Thread mail...@tw.mtf.news.yahoo.com
Your friend e/d:d8e fg+ g5d= e!! g5f(ggh(o od;#oah106v732 oeo kwyya oeoie72m5 og%(og4r5a7 hg3;d::oe e% ooo5234oooo oh/7d?ge$g(o xe65wma f%wf6