Re: wireless on a laptop

2006-02-24 Thread S.I
You Can try to use this http://people.freebsd.org/~sam/ath/ Thanks once again Sam for your hard work. Regards S.I On Thu, 23 Feb 2006 11:40:26 -0500 Chuck Lever <[EMAIL PROTECTED]> wrote: > hi all- > > i have a D-Link DWL-G650M PCCard (Atheros) and an IBM T40 laptop. they > don't wan

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Nikos Vassiliadis
On Thursday 23 February 2006 18:33, John Baldwin wrote: > On Thursday 23 February 2006 02:56, Nikos Vassiliadis wrote: > > On Thursday 23 February 2006 07:06, Eugene Grosbein wrote: > > > On Wed, Feb 22, 2006 at 03:50:17PM +0200, Nikos Vassiliadis wrote: > > > > netstat -r prints link-layer generat

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Nikos Vassiliadis
On Thursday 23 February 2006 20:24, Giorgos Keramidas wrote: > On 2006-02-23 12:14, Gary Corcoran <[EMAIL PROTECTED]> wrote: > >John Baldwin wrote: > >>On Thursday 23 February 2006 02:56, Nikos Vassiliadis wrote: > >>>On Thursday 23 February 2006 07:06, Eugene Grosbein wrote: > On Wed, Feb 22,

Accessing SSH from a C program

2006-02-24 Thread Martin Möller
Hi all, I try to copy some files securely from one machine to another. What is the fastest and easiest way to accomplish this task? Can I access SSH routines in C (is there a library) or is it better just to call "scp" externally? Greetings, m. -- Martin Möller IM: 82221572 (ICQ) - [EMA

Re: Accessing SSH from a C program

2006-02-24 Thread Maslan
> I try to copy some files securely from one machine to another. What is > the fastest and easiest way to accomplish this task? Can I access SSH > routines in C (is there a library) or is it better just to call "scp" > externally? You would better check this http://freshmeat.net/projects/libssh/

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Eugene Grosbein
On Wed, Feb 22, 2006 at 03:50:17PM +0200, Nikos Vassiliadis wrote: > netstat -r prints link-layer generated routes and many > times the output becomes somehow obscure. For > example: > > [EMAIL PROTECTED]:0:/usr/home/src/FreeBSD-6/src/usr.bin/netstat# netstat > -ranfinet > Routing tables > > In

Re: volume serial number + volume label

2006-02-24 Thread Sergey Babkin
>From: andrew clarke <[EMAIL PROTECTED]> > >How can I programmatically retrieve the "volume serial number" and >"volume label" of a removable disc in FreeBSD? This is the same >information that's presented by issuing a "dir" command in Windows: > > Volume in drive D is FooBar > Volume Serial Numbe

usb2 iscochronous transfer

2006-02-24 Thread Peter B
Is there any work at all on usb2 isochronous transfer functionality? http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/usb/ehci.c?rev=1.14.2.10&content-type=text/x-cvsweb-markup * 1) The EHCI driver lacks support for isochronous transfers, so *devices using them don't work. Any hints on w

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Giorgos Keramidas
On 2006-02-24 11:32, Nikos Vassiliadis <[EMAIL PROTECTED]> wrote: >On Thursday 23 February 2006 20:24, Giorgos Keramidas wrote: >> >> ... about using a switch to shorten the netstat output (by not >> displaying the link-layer entries): >> >> How about making the new behavior non-default, i.e. toggl

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Giorgos Keramidas
On 2006-02-24 15:00, Giorgos Keramidas <[EMAIL PROTECTED]> wrote: > Unfortunately, the -s option is taken already. It enables the display > of statistics. A possible alternative is the -c (compact) option, > i.e. with a patch similar to the following: > > [...] I forgot to show sample output, so

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Nikos Vassiliadis
On Friday 24 February 2006 15:04, Giorgos Keramidas wrote: > On 2006-02-24 15:00, Giorgos Keramidas <[EMAIL PROTECTED]> wrote: > > Unfortunately, the -s option is taken already. It enables the display > > of statistics. A possible alternative is the -c (compact) option, > > i.e. with a patch simi

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Giorgos Keramidas
On 2006-02-24 15:12, Nikos Vassiliadis <[EMAIL PROTECTED]> wrote: >On Friday 24 February 2006 15:04, Giorgos Keramidas wrote: >>On 2006-02-24 15:00, Giorgos Keramidas <[EMAIL PROTECTED]> wrote: >>> Unfortunately, the -s option is taken already. It enables the display >>> of statistics. A possible

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Nikos Vassiliadis
On Friday 24 February 2006 15:08, Eugene Grosbein wrote: > On Thu, Feb 23, 2006 at 09:56:46AM +0200, Nikos Vassiliadis wrote: > > > Just use: > > > > > > netstat -rn | awk '$3 !~ /L/ { print }' > > > > That's exactly the point Eugene, I don't want to find ways to filter it > > out. It happens frequ

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Nikos Vassiliadis
On Friday 24 February 2006 15:24, Giorgos Keramidas wrote: > On 2006-02-24 15:12, Nikos Vassiliadis <[EMAIL PROTECTED]> wrote: > >On Friday 24 February 2006 15:04, Giorgos Keramidas wrote: > >>On 2006-02-24 15:00, Giorgos Keramidas <[EMAIL PROTECTED]> wrote: > >>> Unfortunately, the -s option is ta

Re: (feature change request) remove link-layer generated routes from netstat -r

2006-02-24 Thread Eugene Grosbein
On Thu, Feb 23, 2006 at 09:56:46AM +0200, Nikos Vassiliadis wrote: > > Just use: > > > > netstat -rn | awk '$3 !~ /L/ { print }' > > That's exactly the point Eugene, I don't want to find ways to filter it out. > It happens frequently. I didn't say it's difficult to remove it, I just don't > want

Re: usb2 iscochronous transfer

2006-02-24 Thread Hans Petter Selasky
On Thursday 23 February 2006 17:41, Peter B wrote: > Is there any work at all on usb2 isochronous transfer functionality? It's already implemented! > > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/usb/ehci.c?rev=1.14.2.10&; >content-type=text/x-cvsweb-markup > > * 1) The EHCI driver lacks s

Re: [PATCH] does ukbd delay break scan codes?

2006-02-24 Thread Maksim Yevmenkin
Norbert, yes I too looked at ukbd code and found the same. I already put a patch on the bug list yesterday. good. does it fix your problem, i.e. keyboard freeze? if it does then i can commit it for you. In the mean time I compared the ukbd code to that of NetBSD and OpenBSD. Their code is

[patch] Adding optimized kernel copying support to FreeBSD-i386 - Part I

2006-02-24 Thread Attilio Rao
Hi, As suggested in the list for volounteers, I'm currently working on optimizing kernel copying functions. As first step, I ported DragonFlyBSD's FPU handling design, which includes: - modifies to MD part of struct thread - modifies to npx device driver - a lot of modifies about kernel copying ro

Monitoring Chips for my SuperMicro board, how to access from FreeBSD?

2006-02-24 Thread Larry Rosenman
Greetings, I've got a 6014P-82R system from SuperMicro, which has wonderful monitoring chips in it. I can't seem to find a utility to read them. SuperMicro was kind enough to give me the following information on what's where, but I'm wondering if someone could help/guide me to getting functio

Re: usb2 iscochronous transfer

2006-02-24 Thread Peter B
Hans Petter Selasky wrote: > >On Thursday 23 February 2006 17:41, Peter B wrote: >> Is there any work at all on usb2 isochronous transfer functionality? > >It's already implemented! > >> >> http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/usb/ehci.c?rev=1.14.2.10&; >>content-type=text/x-cvsweb-mar

Re: wireless on a laptop

2006-02-24 Thread Sam Leffler
Florent Thoumie wrote: On Thursday 23 February 2006 17:40, Chuck Lever wrote: hi all- i have a D-Link DWL-G650M PCCard (Atheros) and an IBM T40 laptop. they don't want to talk with each other. the T40 has a built in Aironet, but the driver generates "received 194 bytes, expected 196 bytes" me

PPI

2006-02-24 Thread Steve Olisar
Would it be possible to write a program that uses the parallel port to listen on the status pins in real time, when the status of a pin changes the program would read a config file and start/stop processes based on what is in the config file? ex: if status is either 0 or 1, the status of pin one

Re: usb2 iscochronous transfer

2006-02-24 Thread Hans Petter Selasky
On Friday 24 February 2006 17:25, Peter B wrote: > Hans Petter Selasky wrote: > >On Thursday 23 February 2006 17:41, Peter B wrote: > >> Is there any work at all on usb2 isochronous transfer functionality? > > > >It's already implemented! > > > >> http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/u

Re: devctl attach/detach notification for disks

2006-02-24 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Nate Nielsen <[EMAIL PROTECTED]> writes: : I'm working on a bit of code to get devctl notifications for attaching : and removing of disks. This would allow actions to be taken via devd : when a disk is attached or removed from the system. I'm not sure I

Re: Accessing SSH from a C program

2006-02-24 Thread Vlad GALU
On 2/24/06, Martin Möller <[EMAIL PROTECTED]> wrote: > Hi all, > > I try to copy some files securely from one machine to another. What is > the fastest and easiest way to accomplish this task? Can I access SSH > routines in C (is there a library) or is it better just to call "scp" > externally?

Re: [patch] Adding optimized kernel copying support to FreeBSD-i386 - Part I

2006-02-24 Thread Attilio Rao
2006/2/24, Attilio Rao [EMAIL PROTECTED]: > Hi, > As suggested in the list for volounteers, I'm currently working on optimizing kernel copying functions. > As first step, I ported DragonFlyBSD's FPU handling design, which includes: [snip] Attachment seems to be removed. You can get the patch here

VMWARE GSX Port?

2006-02-24 Thread Ashok Shrestha
VMWARE GSX was released recently for free. [http://www.vmware.com/news/releases/server_beta.html] Is anyone working on a port for this? -- Ashok Shrestha ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hac

Re: wireless on a laptop

2006-02-24 Thread Chuck Lever
Sam Leffler wrote: Florent Thoumie wrote: On Thursday 23 February 2006 17:40, Chuck Lever wrote: hi all- i have a D-Link DWL-G650M PCCard (Atheros) and an IBM T40 laptop. they don't want to talk with each other. the T40 has a built in Aironet, but the driver generates "received 194 bytes,