Re: Ethernet on AOD255E

2011-05-17 Thread Meyer Jerome
Thanks for your reply and I send my request to the misc list now! I've just installed openBSD on a AOD255E Netbook and I've some problem with Ethernet Card: Here's my dmesg : === OpenBSD 4.9 (GENERIC.MP) #794: Wed Mar 2 07:19:02 MST 2011 dera...@i386.openbsd.org:/usr/src/sys/arch/i386

get rid of trigraphs from rbootd and pppd

2011-05-17 Thread Daniel Dickman
Get rid of trigraphs. No effect with gcc since the default is to ignore trigraphs, but does get rid of the warnings during build. Index: /usr/src/usr.sbin/rbootd/rbootd.c === RCS file: /usr/cvs/src/usr.sbin/rbootd/rbootd.c,v retriev

Re: malloc: rework MALLOC_MAXSHIFT

2011-05-17 Thread Otto Moerbeek
On Wed, May 18, 2011 at 10:27:43AM +1000, Damien Miller wrote: > On Sun, 15 May 2011, Otto Moerbeek wrote: > > > Hi, > > > > define MALLOC_MAXSHIFT and related stuff more consistently. Also, zap > > region_bits, it is not used. > > looks ok. some questions: > > > - struct chunk_head chunk_di

Re: Tiny newsyslog(8) diff

2011-05-17 Thread Mark Lumsden
In version 1.58 of newsyslog.c, 512 was changed to 256, the cvs comments also suggest the kilobytes remark is wrong. As does the st_size of the struct used in lstat. So looks ok to correct the situation to as it just now. Obviously changing the MIN_SIZE to 512 is something else (as per Benny's r

Re: malloc: rework MALLOC_MAXSHIFT

2011-05-17 Thread Damien Miller
On Sun, 15 May 2011, Otto Moerbeek wrote: > Hi, > > define MALLOC_MAXSHIFT and related stuff more consistently. Also, zap > region_bits, it is not used. looks ok. some questions: > - struct chunk_head chunk_dir[MALLOC_MAXSHIFT]; > + struct chunk_head chunk_dir[MALLOC_MAXSHIFT + 1]; Why

Re: vmmap replacement, please test

2011-05-17 Thread Ariane van der Steldt
On Wed, May 11, 2011 at 05:05:32PM +0200, Ariane van der Steldt wrote: > On Wed, May 11, 2011 at 03:44:45AM +0200, Ariane van der Steldt wrote: > > On Wed, May 11, 2011 at 03:43:19AM +0200, Ariane van der Steldt wrote: > > > The newest version of vmmap (as of now) is vmmap_sys.diff.26 > > > Since t

Re: pkg_add interactive prompts

2011-05-17 Thread frantisek holop
hmm, on Tue, May 17, 2011 at 11:38:09PM +0200, Matthias Kilian said that > On Tue, May 17, 2011 at 11:00:01PM +0200, frantisek holop wrote: > > (my rationale for removing the option "0: " is that > > i have asked for the package, so why would i choose None? > > i can always ctrl-c out if i have cha

Small pgrep/pkill enhancement

2011-05-17 Thread Jonathan Perkin
Add -i to ignore case when matching process name Index: pkill.1 === RCS file: /cvs/src/usr.bin/pkill/pkill.1,v retrieving revision 1.16 diff -u -r1.16 pkill.1 --- pkill.1 29 Sep 2010 07:44:56 - 1.16 +++ pkill.1 17 May

Re: pkg_add interactive prompts

2011-05-17 Thread Matthias Kilian
On Tue, May 17, 2011 at 11:00:01PM +0200, frantisek holop wrote: > (my rationale for removing the option "0: " is that > i have asked for the package, so why would i choose None? > i can always ctrl-c out if i have changed my mind...) AFAIK, ambiguous packages can also happen during updates (pkg_a

pkg_add interactive prompts

2011-05-17 Thread frantisek holop
hi there, the following diff tries to make pkg_add's prompts be more "installer-like". if i look at the popularity of the installer, that might be a good thing.. (and i find the 'a' (for 'auto' i guess) a bit out of place and confusing) before: $ sudo pkg_add midori Ambiguous: choose dependenc

Re: malloc: rework MALLOC_MAXSHIFT

2011-05-17 Thread Otto Moerbeek
On Sun, May 15, 2011 at 06:42:06PM +0200, Otto Moerbeek wrote: > Hi, > > define MALLOC_MAXSHIFT and related stuff more consistently. Also, zap > region_bits, it is not used. > > Comments, ok? No feedback... :-( Come on, guys. This is a relatively simple diff, and so brings a great opportunity

Ethernet on AOD255E

2011-05-17 Thread Meyer Jerome
Hello I've installed openBSD on a acer aspire one D255E and I've some problem with the Ethernet LAN. On the mailling-list in archive I saw the following message from Kevin: *** The following diff adds support for Atheros AR8151/AR8152 chipsets; mostly from FreeBSD. It also fix

Re: typo in icmp6(4)

2011-05-17 Thread Jason McIntyre
On Tue, May 17, 2011 at 02:48:32PM +0200, Mike Belopuhov wrote: > On Mon, May 16, 2011 at 8:20 PM, Jason McIntyre wrote: > > > > what pf keyword addition? > > > > Andreas asked this question in the last sentence of his email: > > > Is there a key word planned for this icmp6 code which could be u

Re: typo in icmp6(4)

2011-05-17 Thread Mike Belopuhov
On Mon, May 16, 2011 at 8:20 PM, Jason McIntyre wrote: > > what pf keyword addition? > Andreas asked this question in the last sentence of his email: > Is there a key word planned for this icmp6 code which could be used in PF?

Zablistajte ovog proleća uz super popuste i poklone!

2011-05-17 Thread Top Shop
Ukoliko ne E>elite viE!e da primate naE!e elektronske poruke, za odjavljivanje sa naE!e e-mailing liste, kliknite ovde. Zablistajte sa proleDem! Top Shop Ne propustite proizvode za lepotu uz super POKLONE i POPUSTE! Ponuda vaE>i samo do: 16.juna 2011! Ne oklevajte, iskoristite pogodnosti odma

Re: Tiny newsyslog(8) diff

2011-05-17 Thread Benny Lofgren
On 2011-05-17 11.50, Nathanael Rensen wrote: > Poking around in newsyslog(8) I noticed: > > $ grep MIN_SIZE newsyslog.c > #define MIN_SIZE256 /* Don't rotate if smaller (in > bytes) */ > && ((ent->flags & CE_BINARY) || size >= MIN_SIZE { > > hence: I don'

Tiny newsyslog(8) diff

2011-05-17 Thread Nathanael Rensen
Poking around in newsyslog(8) I noticed: $ grep MIN_SIZE newsyslog.c #define MIN_SIZE256 /* Don't rotate if smaller (in bytes) */ && ((ent->flags & CE_BINARY) || size >= MIN_SIZE { hence: Index: newsyslog.8 =

Re: damien.bergamini.free.fr down

2011-05-17 Thread Stuart Henderson
On 2011/05/17 09:17, Antoine Jacoutot wrote: > On Tue, 17 May 2011, David Coppa wrote: > > > On Tue, May 17, 2011 at 7:55 AM, Paul de Weerd wrote: > > > On Tue, May 17, 2011 at 12:20:33AM +0200, patrick kristensen wrote: > > > | damien.bergamini.free.fr appears to be down. are the iwn-firmwares >

Re: damien.bergamini.free.fr down

2011-05-17 Thread David Coppa
On Tue, May 17, 2011 at 9:17 AM, Antoine Jacoutot wrote: > On Tue, 17 May 2011, David Coppa wrote: > >> On Tue, May 17, 2011 at 7:55 AM, Paul de Weerd wrote: >> > On Tue, May 17, 2011 at 12:20:33AM +0200, patrick kristensen wrote: >> > | damien.bergamini.free.fr appears to be down. are the iwn-fi

Re: damien.bergamini.free.fr down

2011-05-17 Thread Paul de Weerd
On Tue, May 17, 2011 at 09:17:57AM +0200, Antoine Jacoutot wrote: | On Tue, 17 May 2011, David Coppa wrote: | | > On Tue, May 17, 2011 at 7:55 AM, Paul de Weerd wrote: | > > On Tue, May 17, 2011 at 12:20:33AM +0200, patrick kristensen wrote: | > > | damien.bergamini.free.fr appears to be down. ar

Re: damien.bergamini.free.fr down

2011-05-17 Thread Antoine Jacoutot
On Tue, 17 May 2011, David Coppa wrote: > On Tue, May 17, 2011 at 7:55 AM, Paul de Weerd wrote: > > On Tue, May 17, 2011 at 12:20:33AM +0200, patrick kristensen wrote: > > | damien.bergamini.free.fr appears to be down. are the iwn-firmwares > > | available somewhere else? > > > > Try http://www.w

Re: ifconfig(8) tunnel and address families

2011-05-17 Thread David Coppa
On Mon, May 16, 2011 at 12:59 PM, Stuart Henderson wrote: > Re http://permalink.gmane.org/gmane.os.openbsd.misc/185629 > To set IPv6 tunnel endpoints for gif/gre, you have to use > syntax like "ifconfig gif0 inet6 tunnel 1::1 2::2" rather > than just "ifconfig gif0 tunnel 1::1 2::2". > > This is b

Re: damien.bergamini.free.fr down

2011-05-17 Thread David Coppa
On Tue, May 17, 2011 at 7:55 AM, Paul de Weerd wrote: > On Tue, May 17, 2011 at 12:20:33AM +0200, patrick kristensen wrote: > | damien.bergamini.free.fr appears to be down. are the iwn-firmwares > | available somewhere else? > > Try http://www.weirdnet.nl/openbsd/firmware/ Then manpages should be