Re: cvs.openbsd.org: src

2012-11-12 Thread Mitja Muženič
Thank you very much for this! # sysctl hw.cpuspeed sysctl hw.setperf hw.cpuspeed=601 hw.setperf=0 # sysctl hw.setperf=100 && sysctl hw.cpuspeed hw.setperf hw.setperf: 0 -> 100 hw.cpuspeed=1600 hw.setperf=100 (net6501-70) Mitja > -Original Message- > From: owner-source-chan...@openbsd.

Re: cvs.openbsd.org: src

2011-05-05 Thread Mitja Muženič
> -Original Message- > From: owner-source-chan...@openbsd.org [mailto:owner-source- > chan...@openbsd.org] On Behalf Of Stuart Henderson > Sent: Wednesday, May 04, 2011 10:50 PM > To: source-chan...@cvs.openbsd.org > Subject: CVS: cvs.openbsd.org: src > > CVSROOT: /cvs > Module name:

Re: cvs.openbsd.org: src

2010-03-04 Thread Mitja Muženič
> -Original Message- > From: owner-source-chan...@openbsd.org [mailto:owner-source- > chan...@openbsd.org] On Behalf Of Markus Friedl > Sent: Thursday, March 04, 2010 2:55 PM > To: source-chan...@cvs.openbsd.org > Subject: CVS: cvs.openbsd.org: src > > CVSROOT: /cvs > Module name: sr

Re: cvs.openbsd.org: src

2009-03-14 Thread Damien Bergamini
This is a Planex GW-USMicroN adapter (for those who asked.) Damien | CVSROOT: /cvs | Module name: src | Changes by: clau...@cvs.openbsd.org 2009/03/11 23:12:39 | | Modified files: | sys/dev/usb: if_run.c | | Log message: | Add id for this ridiculous small run(4) found at akihabara. As usual

Re: cvs.openbsd.org: src

2009-02-16 Thread Theo de Raadt
> There's a caveat though, you need to rm your old build dir first, otherwise > the resulting kernel will page fault at boot. No, no... you need to start using make depend as you are told. Or you will hit this kind of problem or other kinds of problems all the time.

Re: cvs.openbsd.org: src

2009-02-16 Thread Mitja Muženič
> -Original Message- > From: owner-source-chan...@openbsd.org > [mailto:owner-source-chan...@openbsd.org] On Behalf Of Jonathan Gray > Sent: Monday, February 16, 2009 4:44 PM > To: source-chan...@cvs.openbsd.org > Subject: CVS: cvs.openbsd.org: src > > CVSROOT: /cvs > Module name: s

Re: cvs.openbsd.org: src

2009-02-16 Thread Jason McIntyre
On Mon, Feb 16, 2009 at 08:23:45AM +0100, Damien Bergamini wrote: > | > | But $() does not work in csh and clones. So `` > | is more portable. Not everyone is using ksh. > > > I don't really care about the $() vs ``. > I just worry about the gratuitous difference with the drivers man > pages and

Re: cvs.openbsd.org: src

2009-02-15 Thread Damien Bergamini
| > > any particular reason to use a syntax different from the one | > > in the drivers man pages? | > > | > > i.e: | > > ifconfig wpi0 wpa wpapsk `wpa-psk wlan supersecret` | > > instead of: | > > ifconfig wpi0 nwid wlan wpa wpapsk $(wpa-psk wlan supersecret) | > | > `` is sh, $() is ksh. I believ

Re: cvs.openbsd.org: src

2009-02-15 Thread Claudio Jeker
On Sun, Feb 15, 2009 at 10:10:54PM -0500, Kenneth R Westerback wrote: > On Sun, Feb 15, 2009 at 06:58:10PM +0100, Damien Bergamini wrote: > > any particular reason to use a syntax different from the one > > in the drivers man pages? > > > > i.e: > > ifconfig wpi0 wpa wpapsk `wpa-psk wlan supersecr

Re: cvs.openbsd.org: src

2009-02-15 Thread Marco S Hyman
On Feb 15, 2009, at 7:10 PM, Kenneth R Westerback wrote: `` is sh, $() is ksh. I believe both work on our sh. As long as one is not doing any quoting inside I Minor nit: `` is vintage sh. POSIX sh states: Command Substitution Command substitution allows the output of a command to be

Re: cvs.openbsd.org: src

2009-02-15 Thread Kenneth R Westerback
On Sun, Feb 15, 2009 at 06:58:10PM +0100, Damien Bergamini wrote: > any particular reason to use a syntax different from the one > in the drivers man pages? > > i.e: > ifconfig wpi0 wpa wpapsk `wpa-psk wlan supersecret` > instead of: > ifconfig wpi0 nwid wlan wpa wpapsk $(wpa-psk wlan supersecret)

Re: cvs.openbsd.org: src

2009-02-15 Thread Damien Bergamini
| On Sun, Feb 15, 2009 at 06:58:10PM +0100, Damien Bergamini wrote: | > any particular reason to use a syntax different from the one | > in the drivers man pages? | > | > i.e: | > ifconfig wpi0 wpa wpapsk `wpa-psk wlan supersecret` | > instead of: | > ifconfig wpi0 nwid wlan wpa wpapsk $(wpa-psk wl

Re: cvs.openbsd.org: src

2009-02-15 Thread Bret S. Lambert
On Sun, Feb 15, 2009 at 06:58:10PM +0100, Damien Bergamini wrote: > any particular reason to use a syntax different from the one > in the drivers man pages? > > i.e: > ifconfig wpi0 wpa wpapsk `wpa-psk wlan supersecret` > instead of: > ifconfig wpi0 nwid wlan wpa wpapsk $(wpa-psk wlan supersecret)

Re: cvs.openbsd.org: src

2009-02-15 Thread Damien Bergamini
any particular reason to use a syntax different from the one in the drivers man pages? i.e: ifconfig wpi0 wpa wpapsk `wpa-psk wlan supersecret` instead of: ifconfig wpi0 nwid wlan wpa wpapsk $(wpa-psk wlan supersecret) you really want to specify the ssid with nwid too. Damien | CVSROOT: /cvs |