Re: ipw3945 intel wireless miniPCI

2006-06-15 Thread Alin-Adrian Anton
Christian Brueffer wrote: On Thu, Jun 15, 2006 at 05:56:41PM +0300, Alin-Adrian Anton wrote: Hi Hackers, Did anyone manage to get this card working under FreeBSD? I'm using FreeBSD 6.1_REL0 on my laptop. I know the /usr/ports/net-firmware/ is for IPW2100. Doesn't appear to work on 3945.

Re: Stack frame problem in gdb

2006-06-15 Thread Yar Tikhiy
On Tue, May 16, 2006 at 11:12:40AM +0400, Yar Tikhiy wrote: > > Has our stock GDB lost the ability to set the current stack frame > by its address? In 4.11-STABLE, the old recipe from the Developer's > Handbook still works: > > frame > > Alas, it no longer works in RELENG_6 or CURRENT (

Re: apic detection

2006-06-15 Thread John Baldwin
On Thursday 15 June 2006 14:23, Andriy Gapon wrote: > on 15/06/2006 20:10 John Baldwin said the following: > > On Wednesday 14 June 2006 12:33, Andriy Gapon wrote: > >> What is proper way to check from a driver/module if APIC is being used ? > >> Or even narrower, if local APIC timer is being used

Re: Options for boot program

2006-06-15 Thread Darren Pilgrim
I don't know why I was included in the CC list for this thread, nor do I have any input on the subject. Please trim my address from the CC list. Thanks. -- Darren Pilgrim ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/l

Re: ipw3945 intel wireless miniPCI

2006-06-15 Thread Christian Brueffer
On Thu, Jun 15, 2006 at 05:51:01PM +0200, Christian Brueffer wrote: > On Thu, Jun 15, 2006 at 05:56:41PM +0300, Alin-Adrian Anton wrote: > > Hi Hackers, > > > > Did anyone manage to get this card working under FreeBSD? I'm using > > FreeBSD 6.1_REL0 on my laptop. > > > > I know the /usr/

Re: Options for boot program

2006-06-15 Thread John Baldwin
I can identify with your condition. :) Unfortunately, the early boot loaders (boot0, and boot1+boot2) are simply too tight on space to add more features. I think boot0 literally has 0 or 1 bytes free right now. However /boot/loader has a lot more free space and can be easily and intuitively

Re: apic detection

2006-06-15 Thread Andriy Gapon
on 15/06/2006 20:10 John Baldwin said the following: > On Wednesday 14 June 2006 12:33, Andriy Gapon wrote: >> What is proper way to check from a driver/module if APIC is being used ? >> Or even narrower, if local APIC timer is being used ? > > There isn't currently. Why do you need to know? >

Re: apic detection

2006-06-15 Thread John Baldwin
On Wednesday 14 June 2006 12:33, Andriy Gapon wrote: > > What is proper way to check from a driver/module if APIC is being used ? > Or even narrower, if local APIC timer is being used ? There isn't currently. Why do you need to know? -- John Baldwin

Re: interfacing uhid devs from kernel module

2006-06-15 Thread Hans Petter Selasky
On Thursday 15 June 2006 19:02, Attilio Rao wrote: > 2006/6/15, Marcin Cylke <[EMAIL PROTECTED]>: > > On 6/15/06, Hans Petter Selasky <[EMAIL PROTECTED]> wrote: > > > What functions do you need? Have you looked at uhid.c under > > > /sys/dev/usb ? > > > > I would like to use the whole infrastructur

Re: interfacing uhid devs from kernel module

2006-06-15 Thread Attilio Rao
2006/6/15, Marcin Cylke <[EMAIL PROTECTED]>: On 6/15/06, Hans Petter Selasky <[EMAIL PROTECTED]> wrote: > What functions do you need? Have you looked at uhid.c under /sys/dev/usb ? I would like to use the whole infrastructure: struct hid_item hid_usage_page() hid_usage_in_page() hid_init() hid_

Re: interfacing uhid devs from kernel module

2006-06-15 Thread Marcin Cylke
On 6/15/06, Hans Petter Selasky <[EMAIL PROTECTED]> wrote: What functions do you need? Have you looked at uhid.c under /sys/dev/usb ? I would like to use the whole infrastructure: struct hid_item hid_usage_page() hid_usage_in_page() hid_init() hid_get_report_desc() Bye ___

Re: ipw3945 intel wireless miniPCI

2006-06-15 Thread Christian Brueffer
On Thu, Jun 15, 2006 at 05:56:41PM +0300, Alin-Adrian Anton wrote: > Hi Hackers, > > Did anyone manage to get this card working under FreeBSD? I'm using > FreeBSD 6.1_REL0 on my laptop. > > I know the /usr/ports/net-firmware/ is for IPW2100. Doesn't appear > to work on 3945. I

ipw3945 intel wireless miniPCI

2006-06-15 Thread Alin-Adrian Anton
Hi Hackers, Did anyone manage to get this card working under FreeBSD? I'm using FreeBSD 6.1_REL0 on my laptop. I know the /usr/ports/net-firmware/ is for IPW2100. Doesn't appear to work on 3945. I know about ipw3945.sourceforge.net, there's an opensource stable driver for linux.

Re: fdisk partition / disklabel recovery (help!)

2006-06-15 Thread Florent Thoumie
On Tue, 2006-06-13 at 23:54 -0400, Naram Qashat wrote: > You've also got the choice of using the program testdisk in > sysutils/testdisk to try to fix your problem. It helped me when I > accidently hosed the MBR and partition table on one of my drives. I second this (because it saved my life, not

Re: interfacing uhid devs from kernel module

2006-06-15 Thread Hans Petter Selasky
On Thursday 15 June 2006 16:04, Marcin Cylke wrote: > Hello > Is it possible to use functions from libusbhid in kernel module? It > would really ease some things for me, but I realize it is a userland > library. Still, is there some way to do this? > What functions do you need? Have you looked at

interfacing uhid devs from kernel module

2006-06-15 Thread Marcin Cylke
Hello Is it possible to use functions from libusbhid in kernel module? It would really ease some things for me, but I realize it is a userland library. Still, is there some way to do this? Bye Marcin Cylke ___ freebsd-hackers@freebsd.org mailing list ht

Re: Help:why bus resource shortage?

2006-06-15 Thread Attilio Rao
2006/6/15, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: Hi guys: I failed to get the pci bus resource after the driver is loaded (sc->r_mem is NULL after bus_alloc_resource_any is called). Is it because bus resources have been consumed by other drivers? Or other something happened? Please help me on

Re: Options for boot program

2006-06-15 Thread Giorgos Keramidas
On Thu, 15 Jun 2006 07:02:11 GMT, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > My way of operating is to multi-task almost all the time [...] > > Hence I want the boot program to sound a bell (possibly several > times with a short interval to wait between successive times, and > proceed immedia

Options for boot program

2006-06-15 Thread [EMAIL PROTECTED]
My way of operating is to multi-task almost all the time. As such, while working on one task, if another task on which I am also working (but had to pause in it because some information or equipment that the task needed wasn't available) of higher priority suddenly became available/operabl

Help:why bus resource shortage?

2006-06-15 Thread hongz
Hi guys: I failed to get the pci bus resource after the driver is loaded (sc->r_mem is NULL after bus_alloc_resource_any is called). Is it because bus resources have been consumed by other drivers? Or other something happened? Please help me on this! Thanks! Hong Notes: /* get reso