Re: FreeBSD RoadMap

2009-07-13 Thread Andrew Reilly
On Mon, Jul 13, 2009 at 12:55:19AM -0400, grarpamp wrote:
 Is there a general roadmap of what's planned
 for future major releases? I don't mean minor
 stuff like driver or contributed version bumps.
 But bigger, or just plain cool things, like as SMP,
 soft updates, ZFS, netgraph, pf, etc, were in the past.

I doubt that there's much big in the ambit of Unix-like OS
that isn't already in the 8-current series.

In a project like FreeBSD, what's in the roadmap equates
pretty closely with what are the developers working on, and
that is summarised in the quarterly status reports, such as this
one:
http://www.freebsd.org/news/status/report-2009-01-2009-03.html

As for when any of this will hit the tree and find its way
into a release, that's very much a how long is a piece of
string sort of question; not really the way FreeBSD works.
Particularly since it moved to a calendar-based release
schedule.

IMO, YMMV, i-do-not-speak-for-freebsd, etc.

Cheers,

-- 
Andrew
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


[quota] quotacheck wont go with geom_label

2009-07-13 Thread pluknet
Hi.

I found that a file system mounted through /dev/label/name doesn't
work with quotacheck. It turned out that quotacheck after looking
at fstab tries to open /dev/label/name and then receives EPERM (6.2, 7.2),
while it works fine with ordinary device-mounted file systems.

Is there a fix? Should I file a PR?

-- 
wbr,
pluknet
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


ZFS, unionfs - Operation not supported

2009-07-13 Thread Oliver Pinter
Hi all!

It is the problematic FS:
zpower on /mnt/zpower (zfs, local)
/usr/src on /mnt/zpower/jail/default/ports (nullfs, local)

and the failed command:
mount_unionfs -o below /mnt/zpower/jail/default/ports/
/mnt/zpower/jail/www/usr/ports/

(truss mount_unionfs -o below /mnt/zpower/jail/default/ports/
/mnt/zpower/jail/www/usr/ports/ )   /tmp/unionfs.log

Have I any chance, to unionmount ZFS with UFS or ZFS not supported
this operations?
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org

FreeBSD 7.2 USB stack info needed

2009-07-13 Thread Sagara Wijetunga
Hi FreeBSD community 

After an USB thumb drive id pluged in, the devd prints following line: 

+umass0 vendor=0x0781 product=0x5406 devclass=0x00 devsubclass=0x00 
release=0x0200 sernum=087663165D8139E6 intclass=0x08 intsubclass=0x06 at 
port=0 interface=0 vendor=0x0781 product=0x5406 devclass=0x00 
devsubclass=0x00 release=0x0200 sernum=087663165D8139E6 intclass=0x08 
intsubclass=0x06 on uhub4 



1. Could I know which exact program print above line on /dev/devctl ? 

2. I want to print another line with daN as the device-name, where N is 0 
to 9, with minimum vendor and product ids once the allocated device-name is 
known for USB Mass Storage devices. Your additional ideas/feedback/help is 
most welcomed. 


Kind regards
Sagara
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: mergemaster merge left/right

2009-07-13 Thread Ulrich Spörlein
On Fri, 03.07.2009 at 10:51:08 +0200, Dominic Fandrey wrote:
 I'd really like mergemaster to tell me whether the left
 or the right side is the new file.
 
 # $FreeBSD: src/etc/devd.conf,v 1.38. |   # $FreeBSD: src/etc/devd.conf,v 
 1.38.
 
 Like this I have no idea which one to pick.

When using X, maximize your xterm horizontally and use mergemaster -w100
or something like that. It will probe the tty again and offer the real
width, so I usually just run mergemaster -w1 and hit enter.

hth,
Ulrich Spörlein
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: pw groupadd/useradd fail when the nscd cache is used for name/group resolution

2009-07-13 Thread Ulrich Spörlein
On Thu, 09.07.2009 at 16:13:25 +0300, Vlad Galu wrote:
 I've stumbled upon this while installing postgres. In
 /etc/nsswitch.conf I had group: cache files compat and passwd:
 cache files compat. Once I commented them out things started working
 again. Before the change, this is how it looked like:
 
 -- cut here --
 [r...@vgalu /usr/ports/databases/postgresql84-server]# pw group add pgsql -g 
 70
 pw: group disappeared during update
 [r...@vgalu /usr/ports/databases/postgresql84-server]# pw group add pgsql -g 
 70
 pw: group 'pgsql' already exists
 [r...@vgalu /usr/ports/databases/postgresql84-server]#
 -- and here --
 
 Shouldn't 'files' be used upon a cache miss? If this is a PEBKAC,
 sorry for the noise.

Just a me too. This is most likely because nscd is also caching negative
lookups. The usual workaround would be to restart it using
/etc/rc.d/nscd restart

Cheers,
Ulrich Spörlein
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: pw groupadd/useradd fail when the nscd cache is used for name/group resolution

2009-07-13 Thread Michael Proto
On Mon, Jul 13, 2009 at 12:57 PM, Ulrich Spörleinu...@spoerlein.net wrote:
 On Thu, 09.07.2009 at 16:13:25 +0300, Vlad Galu wrote:
 I've stumbled upon this while installing postgres. In
 /etc/nsswitch.conf I had group: cache files compat and passwd:
 cache files compat. Once I commented them out things started working
 again. Before the change, this is how it looked like:

 -- cut here --
 [r...@vgalu /usr/ports/databases/postgresql84-server]# pw group add pgsql -g 
 70
 pw: group disappeared during update
 [r...@vgalu /usr/ports/databases/postgresql84-server]# pw group add pgsql -g 
 70
 pw: group 'pgsql' already exists
 [r...@vgalu /usr/ports/databases/postgresql84-server]#
 -- and here --

 Shouldn't 'files' be used upon a cache miss? If this is a PEBKAC,
 sorry for the noise.

 Just a me too. This is most likely because nscd is also caching negative
 lookups. The usual workaround would be to restart it using
 /etc/rc.d/nscd restart


A slightly lower-impact alternative would be to use nscd -i passwd
to invalidate the password cache.


-Proto
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: pw groupadd/useradd fail when the nscd cache is used for name/group resolution

2009-07-13 Thread Adam McDougall

Michael Proto wrote:

On Mon, Jul 13, 2009 at 12:57 PM, Ulrich Spörleinu...@spoerlein.net wrote:
  

On Thu, 09.07.2009 at 16:13:25 +0300, Vlad Galu wrote:


I've stumbled upon this while installing postgres. In
/etc/nsswitch.conf I had group: cache files compat and passwd:
cache files compat. Once I commented them out things started working
again. Before the change, this is how it looked like:

-- cut here --
[r...@vgalu /usr/ports/databases/postgresql84-server]# pw group add pgsql -g 70
pw: group disappeared during update
[r...@vgalu /usr/ports/databases/postgresql84-server]# pw group add pgsql -g 70
pw: group 'pgsql' already exists
[r...@vgalu /usr/ports/databases/postgresql84-server]#
-- and here --

Shouldn't 'files' be used upon a cache miss? If this is a PEBKAC,
sorry for the noise.
  

Just a me too. This is most likely because nscd is also caching negative
lookups. The usual workaround would be to restart it using
/etc/rc.d/nscd restart




A slightly lower-impact alternative would be to use nscd -i passwd
to invalidate the password cache.


-Proto
___
  


I was intending to report this soon as well (its been on my list for a 
while) as a problematic
issue while installing ports.  The other issue I had was Java would 
crash immediately if I had
nscd running (configured to cache YP).  I plan to report that soon if it 
still happens with 1.6.
I probably tested with 1.4 or 1.5. 
___

freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: FreeBSD RoadMap

2009-07-13 Thread Masoom Shaikh
can this help ?

http://ivoras.sharanet.org/freebsd/freebsd8.html

On Mon, Jul 13, 2009 at 7:55 AM, Andrew Reilly 
andrew-free...@areilly.bpc-users.org wrote:

 On Mon, Jul 13, 2009 at 12:55:19AM -0400, grarpamp wrote:
  Is there a general roadmap of what's planned
  for future major releases? I don't mean minor
  stuff like driver or contributed version bumps.
  But bigger, or just plain cool things, like as SMP,
  soft updates, ZFS, netgraph, pf, etc, were in the past.

 I doubt that there's much big in the ambit of Unix-like OS
 that isn't already in the 8-current series.

 In a project like FreeBSD, what's in the roadmap equates
 pretty closely with what are the developers working on, and
 that is summarised in the quarterly status reports, such as this
 one:
 http://www.freebsd.org/news/status/report-2009-01-2009-03.html

 As for when any of this will hit the tree and find its way
 into a release, that's very much a how long is a piece of
 string sort of question; not really the way FreeBSD works.
 Particularly since it moved to a calendar-based release
 schedule.

 IMO, YMMV, i-do-not-speak-for-freebsd, etc.

 Cheers,

 --
 Andrew
 ___
 freebsd-stable@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-stable
 To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: trap 12

2009-07-13 Thread John Baldwin
On Tuesday 07 July 2009 5:51:03 am Ian J Hart wrote:
 Quoting Ian J Hart ianjh...@ntlworld.com:
 
  Quoting Ian J Hart ianjh...@ntlworld.com:
 
  Is this likely to be hardware? Details will follow if not.
 
  [copied from a screen dump]
 
  Fatal trap 12: page fault while in kernel mode
  cpuid = 1; apic id = 01
  fault virtual address = 0x0
  fault code = supervisor write data, page not present
  instruction pointer = 0x8:0x807c6c12
  stack pointer = 0x10:0x510e7890
  frame pointer = 0x10:0xff00054a6c90
  code segment = base 0x0, limit 0xf, type 0x1b
  = DPL 0, pres 1, long 1 def32 0, gran 1
  processor eflags = interrupt enabled, resume, IOPL = 0
  current process = 75372 (printf)
  trap number = 12
  panic: page fault
  cpuid = 1
  uptime: 8m2s
  Cannot dump. No dump device defined.
 
 
   Ran crashinfo, now have much more info than I need ;)
 
   Starting another portupgrade run now to see how reproducable this is.
 
   Later BIOS waiting in USB floppy.
 
 [snip dmesg]
 
 It took 2 runs of portupgrade -af.Some corruption in the dbs may have  
 to pkg_delete -a.
 
 FreeBSD * 7.2-RELEASE-p1 FreeBSD 7.2-RELEASE-p1 #0: Tue Jun 16  
 18:03:10 BST 2009 *...@*:/usr/obj/usr/src/sys/GENERIC  amd64
 
 panic: page fault
 
 GNU gdb 6.1.1 [FreeBSD]
 Copyright 2004 Free Software Foundation, Inc.
 GDB is free software, covered by the GNU General Public License, and you are
 welcome to change it and/or distribute copies of it under certain 
conditions.
 Type show copying to see the conditions.
 There is absolutely no warranty for GDB.  Type show warranty for details.
 This GDB was configured as amd64-marcel-freebsd...
 
 Unread portion of the kernel message buffer:
 
 
 Fatal trap 12: page fault while in kernel mode
 cpuid = 1; apic id = 01
 fault virtual address   = 0xf570
 fault code  = supervisor write data, page not present
 instruction pointer = 0x8:0x807c429b
 stack pointer   = 0x10:0x511e4710
 frame pointer   = 0x10:0x20
 code segment= base 0x0, limit 0xf, type 0x1b
  = DPL 0, pres 1, long 1, def32 0, gran 1
 processor eflags= interrupt enabled, resume, IOPL = 0
 current process = 69996 (mkdir)
 trap number = 12
 panic: page fault

This one does look like a hardware issue from the stack trace.  It's hard to 
know if the first panic you saw was a hardware issue as well without the 
stack trace information.

 #7  0x807b706e in calltrap ()
  at /usr/src/sys/amd64/amd64/exception.S:209
 #8  0x807c429b in free_pv_entry (pmap=0x80b66c80,  
 pv=Variable pv is not available.
 )
  at /usr/src/sys/amd64/amd64/pmap.c:1905
 #9  0x807c4403 in pmap_remove_entry (pmap=Variable pmap is  
 not available.
 )
  at /usr/src/sys/amd64/amd64/pmap.c:2131
 #10 0x807c6447 in pmap_remove_pte (pmap=0x80b66c80,
  ptq=0xaaa8, va=18446744070506639360, ptepde=23601251,
  free=0x511e4790) at /usr/src/sys/amd64/amd64/pmap.c:2366
 #11 0x807cab87 in pmap_remove (pmap=0x80b66c80,
  sva=18446744070506639360, eva=18446744070506909696)
  at /usr/src/sys/amd64/amd64/pmap.c:2510

-- 
John Baldwin
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Introducing the Vintage America Collection with Nine West Benefitting Soles4Souls

2009-07-13 Thread Soles4Souls and Nine West
Introducing the Vintage America Collection with Nine West Benefitting 
Soles4Souls
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: FreeBSD RoadMap

2009-07-13 Thread Wolfgang Zenker
* Masoom Shaikh masoom.sha...@gmail.com [090713 20:26]:
 On Mon, Jul 13, 2009 at 7:55 AM, Andrew Reilly 
 andrew-free...@areilly.bpc-users.org wrote:
 On Mon, Jul 13, 2009 at 12:55:19AM -0400, grarpamp wrote:
 Is there a general roadmap of what's planned
 for future major releases? I don't mean minor
 stuff like driver or contributed version bumps.
 But bigger, or just plain cool things, like as SMP,
 soft updates, ZFS, netgraph, pf, etc, were in the past.

 I doubt that there's much big in the ambit of Unix-like OS
 that isn't already in the 8-current series.

 In a project like FreeBSD, what's in the roadmap equates
 pretty closely with what are the developers working on, and
 that is summarised in the quarterly status reports, such as this
 one:
 http://www.freebsd.org/news/status/report-2009-01-2009-03.html

 As for when any of this will hit the tree and find its way
 into a release, that's very much a how long is a piece of
 string sort of question; not really the way FreeBSD works.
 Particularly since it moved to a calendar-based release
 schedule.

 IMO, YMMV, i-do-not-speak-for-freebsd, etc.

 can this help ?

 http://ivoras.sharanet.org/freebsd/freebsd8.html

or you could visit this years eurobsdcon and listen to
http://www.ukuug.org/events/eurobsdcon2009/talks/#mckusick

:-)
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


problem with Soekris net5501 and USB hub

2009-07-13 Thread Graham Menhennitt
I originally sent this to the Soekris list thinking it was platform 
specific. I got a couple of replies suggesting that it's a FreeBSD 
problem instead. So, if anybody can offer any insights, I would most 
appreciate it.


I have a Soekris net5501 running FreeBSD 7-Stable. I want to connect a 
number of USB devices to it:

- a HP Laserjet 1020 printer
- an APC Back UPS 350 UPS
- a 6-in-one card reader (not so fussed about this one).
The Soekris box has only one USB port brought out to a connector on the 
case, so rather than mod the box to add another port, I thought I would 
just use an external hub.


If I plug any of the devcies directly into the Soekris's USB port it 
works fine. However, if I use a USB hub then it doesn't work at all. 
I've tried it with two different hubs and two different cables. I've 
tried the hubs both with a plug pack, and being powered from the USB 
bus. The only thing common to the failures is the Soefkis and freeBSD. 
The hubs are both USB 2.0 according to their advertising.


The hub itself is recognised (although I don't have the output from
usbdevs available at the moment). The UPS doesn't ever seem to be
recognised when connected via the hub - there's nothing in dmesg and
nothing in usbdevs. Ditto for the 6-in-one card reader - the LED on the
front of it doesn't even light up.

The printer sometimes gets partially recognised. The output from
usbdevs -v when the printer is connected directly and working properly
looks like:

Controller /dev/usb0:
   addr 1: full speed, self powered, config 1, OHCI root hub(0x), 
AMD(0x), rev 1.00

port 1 powered
port 2 powered
port 3 powered
port 4 powered
   Controller /dev/usb1:
   addr 1: high speed, self powered, config 1, EHCI root hub(0x), 
AMD(0x), rev 1.00
port 1 addr 2: high speed, self powered, config 1, HP LaserJet 
1020(0x2b17), Hewlett-Packard(0x03f0), rev 1.00

port 2 powered
port 3 powered
port 4 powered

However, if I connect it via the hub, it sometimes doesn't show it at 
all, while other times it says something like (doing this from memory):


   port 1 addr 2: high speed, self powered, config 1, 0x2b17(0x2b17), 
vendor 0x03f0(0x03f0), rev 1.00


So, it can see it but it doesn't resolve the vendor or device ids. It 
looks like the Soekris can see whatever is directly connected to it, but 
 can't (reliably) see things that more than one step away.


My (custom) kernel has:

   device  usb # USB Bus (required)
   device  umass   # Disks/Mass storage - Requires 
scbus and da

   device  scbus   # SCSI bus (required for SCSI)
   device  da  # Direct Access (disks)
   device  uhci# UHCI PCI-USB interface
   device  ohci# OHCI PCI-USB interface
   device  ehci# EHCI PCI-USB interface (USB 2.0)
   device  ugen# Generic

So, does anybody have any ideas about how to fix this.

Thanks for any help,
 Graham
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: problem with Soekris net5501 and USB hub

2009-07-13 Thread Paul A. Procacci

Hello,

I recently (just yesterday) had a similar problem with 7-STABLE not 
being able to detect devices attached to a hub.  I immediately upgraded 
to 8-BETA1 and the problem is gone, though I've run into a number of 
other issues unrelated to usb devices.  The sokeris will more than 
likely fair better on FBSD 8 than my multipurpose machine, but it may be 
worth a try.


~Paul

Graham Menhennitt wrote:
I originally sent this to the Soekris list thinking it was platform 
specific. I got a couple of replies suggesting that it's a FreeBSD 
problem instead. So, if anybody can offer any insights, I would most 
appreciate it.


I have a Soekris net5501 running FreeBSD 7-Stable. I want to connect a 
number of USB devices to it:

- a HP Laserjet 1020 printer
- an APC Back UPS 350 UPS
- a 6-in-one card reader (not so fussed about this one).
The Soekris box has only one USB port brought out to a connector on the 
case, so rather than mod the box to add another port, I thought I would 
just use an external hub.


If I plug any of the devcies directly into the Soekris's USB port it 
works fine. However, if I use a USB hub then it doesn't work at all. 
I've tried it with two different hubs and two different cables. I've 
tried the hubs both with a plug pack, and being powered from the USB 
bus. The only thing common to the failures is the Soefkis and freeBSD. 
The hubs are both USB 2.0 according to their advertising.


The hub itself is recognised (although I don't have the output from
usbdevs available at the moment). The UPS doesn't ever seem to be
recognised when connected via the hub - there's nothing in dmesg and
nothing in usbdevs. Ditto for the 6-in-one card reader - the LED on the
front of it doesn't even light up.

The printer sometimes gets partially recognised. The output from
usbdevs -v when the printer is connected directly and working properly
looks like:

 Controller /dev/usb0:
addr 1: full speed, self powered, config 1, OHCI root hub(0x), 
AMD(0x), rev 1.00

 port 1 powered
 port 2 powered
 port 3 powered
 port 4 powered
Controller /dev/usb1:
addr 1: high speed, self powered, config 1, EHCI root hub(0x), 
AMD(0x), rev 1.00
 port 1 addr 2: high speed, self powered, config 1, HP LaserJet 
1020(0x2b17), Hewlett-Packard(0x03f0), rev 1.00

 port 2 powered
 port 3 powered
 port 4 powered

However, if I connect it via the hub, it sometimes doesn't show it at 
all, while other times it says something like (doing this from memory):


port 1 addr 2: high speed, self powered, config 1, 0x2b17(0x2b17), 
vendor 0x03f0(0x03f0), rev 1.00


So, it can see it but it doesn't resolve the vendor or device ids. It 
looks like the Soekris can see whatever is directly connected to it, but 
  can't (reliably) see things that more than one step away.


My (custom) kernel has:

device  usb # USB Bus (required)
device  umass   # Disks/Mass storage - Requires 
scbus and da

device  scbus   # SCSI bus (required for SCSI)
device  da  # Direct Access (disks)
device  uhci# UHCI PCI-USB interface
device  ohci# OHCI PCI-USB interface
device  ehci# EHCI PCI-USB interface (USB 2.0)
device  ugen# Generic

So, does anybody have any ideas about how to fix this.

Thanks for any help,
  Graham
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org
  


___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: mergemaster merge left/right

2009-07-13 Thread Doug Barton
Ulrich Spörlein wrote:
 When using X, maximize your xterm horizontally and use mergemaster -w100
 or something like that. It will probe the tty again and offer the real
 width, so I usually just run mergemaster -w1 and hit enter.

Making the window wider is good advice, but the -w option is not
needed. If you're running mergemaster in any sort of tty it will
automatically set the column width for sdiff for you.


hth,

Doug
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: FreeBSD 7.2 USB stack info needed

2009-07-13 Thread Sagara Wijetunga
Sagara Wijetunga writes: 

Hi FreeBSD community  

After an USB thumb drive id pluged in, the devd prints following line:  

+umass0 vendor=0x0781 product=0x5406 devclass=0x00 devsubclass=0x00 
release=0x0200 sernum=087663165D8139E6 intclass=0x08 intsubclass=0x06 at 
port=0 interface=0 vendor=0x0781 product=0x5406 devclass=0x00 
devsubclass=0x00 release=0x0200 sernum=087663165D8139E6 intclass=0x08 
intsubclass=0x06 on uhub4  



1. Could I know which exact program print above line on /dev/devctl ?  

2. I want to print another line with daN as the device-name, where N is 
0 to 9, with minimum vendor and product ids once the allocated device-name 
is known for USB Mass Storage devices. Your additional ideas/feedback/help 
is most welcomed.  



There is a typing mistake: After an USB thumb drive id pluged in should be 
corrected as After an USB thumb drive is plugged in. Very sorry for the 
mistake. 

Btw, I have started looking at umass.c and will have a look at later at 
usb.c of /usr/src/sys/dev/usb/. 

Any help is still very much appreciated. 


Best regards
Sagara
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org