pnp with onboard isa sound chip CMI8330 and pcm0

1999-09-16 Thread Fritz Heinrichmeyer


i gave "current" a try and had no more sound as the pnp configuration was
gone.

Yesterday night at home i did the following to have it working again:
 
 (The sound-chip has the vendor_id 0x0100a90d. It is SB16 and MSS
  compatible and as far as i understand it now THAT is the problem. It
  switches to sb/mss when attached at the usual ports for the mentioned
  cards. Btw. there are still a lot of boxes without the possibility to
  configure pnp-cards in the bios out there .. :-( )

Anyway, there was no sound, so i moved the code


case 0x0100:
if (vend_id == 0x0100a90d) s = "CMI8330";
break;

from
static int pnpmss_probe(device_t dev) in /usr/src/sys/dev/pcm/isa/mss.c
to
static int sbpnp_probe(device_t dev) in /usr/src/sys/dev/pcm/isa/sb.c
and now i have sb-16 sound again. 

I changed case 0x0100 to case 0x0102 or 0x0103 as the sb
compatible configuration came as the third/fourth entry in the pnp
database of the card (i forgot the detail, sorry).

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



python-1.5.2 port broken with current

1999-10-05 Thread Fritz Heinrichmeyer


python-1.5.2 is broken with current this week when compiled with the
"--with-fpectl" option (a hack using jmpbuf.h, signal.h etc.) which is
default in the ports collection. Exponentiation fails i. e.

 Python 1.5.2   [GCC egcs-2.91.66 19990314 (egcs-1.1.2  on freebsd4
 Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
  3**1.5
 Traceback (innermost last):
   File "stdin", line 1, in ?
 OverflowError: (14, 'Bad address')
  

(without --with-fpectl): make test output:

  52 tests OK.
  1 test failed: test_fcntl
  8 tests skipped: test_al ... test_sunaudiodev

Last week the fcntl-tests failed the first time but this does no harm to 
i.e. the "sketch" program.

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



try to build xfree under current siginfo_t

1999-10-06 Thread Fritz Heinrichmeyer


as i accidentally deleted my libc.so.3 i thought it would be a good time 
to rebuild xfree, but i came in a preprocessor hell due to siginfo_t
_POSIX_SOURCE or not ... definition at the stage of building makedepend.
 In file included from main.c:41:
 /usr/include/signal.h:72: warning: `union sigval' declared inside parameter \
 list
 /usr/include/signal.h:72: warning: its scope is only this definition \
 or declaration,
 /usr/include/signal.h:72: warning: which is probably not what you want.
 /usr/include/signal.h:72: warning: parameter has incomplete type
 /usr/include/signal.h:73: syntax error before `siginfo_t'
 /usr/include/signal.h:74: syntax error before `siginfo_t'

the offending code is between an #ifdef _P1003_1B_VISIBLE
construct.


Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



patch to recognize my soundcard, communicator stopped working

1999-11-22 Thread Fritz Heinrichmeyer

the good news:
with the following patch my soundcard is recognized again
(some machine cycles are wasted ..)

*** sbc.c~ Mon Nov 22 07:07:45 1999
--- sbc.c Mon Nov 22 16:04:56 1999
***
*** 133,138 
--- 133,140 
   case 0x45008c0e: /* Creative SB AWE64 (CTL0045) */
if (vend_id2 == 0xe4008c0e)
 s = "Creative SB AWE64 (CTL0045)";
+   if (vend_id2 == 0xc5008c0e)
+s = "Creative SB AWE64 (CTL00c5)";
break;
  #if notdef
   case 0x0121: /* Avance Logic */

bad news:
   as others mentioned also
   communicator-4.7 is totally unuseable today
   (wo would use linux or freebsd without mozilla :-(




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Compiling XFree86 under Current

1999-11-24 Thread Fritz Heinrichmeyer


Here is how i compiled XFree86 today (an additonal file for
/usr/ports/x11/XFree86/patches):

http://es-i2.fernuni-hagen.de/~jfh/FreeBSD_Documentation/node7.html

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: gcc-2.95.2, jade and freebsd-sgml-documentationSubject:

1999-12-03 Thread Fritz Heinrichmeyer

thanks for the responses!

"make" and "make install" worked fine with the newest port changes, but when
making the handbook jade dumped core at last. Memory consumption raised
to over 30 MByte before the core dump.

I made a mistake in the former posting as i tried to compile
jade-1.2.2.tar.gz and forgot to mention this fact, sorry.

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



sshd only allows connections per public key since this week

2002-12-17 Thread Fritz Heinrichmeyer
this is almost the complete report, i get the on this list already
mentioned error message

fatal: ssh_msg_send: write

when i try to use password (pam?) authentication to my current box (same
effect from anywhere).

As the title says, public_key authentication works. This effect started to show up 
over the weekend.

Greetings
-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



ata timeouts until setting hw.ata.wc to zero

2003-01-12 Thread Fritz Heinrichmeyer
last week i was in fear of a complete data loss as my freebsd current
system freezed with ata ad0 timeout like this.

kernel: ad0: READ command timeout tag=0 serv=0 - resetting

It was still living as it reacted on pings.

Hardware:

ad0: 76345MB MAXTOR 6L080J4 [155114/16/63] at ata0-master UDMA100
CPU: AMD Athlon(TM) XP1600+ (1410.21-MHz 686-class CPU)
acpi0: ASUS   A7V266   on motherboard

now with hw.ata.wc=0, that means without write cache it works again, but
slower.

I will try a fresh makeworld now ...

Greetings
-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: ata timeouts until setting hw.ata.wc to zero

2003-01-12 Thread Fritz Heinrichmeyer
Sorry, forgot to mention it has the 
via 8233 ata100 controller

Greetings
-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: ata timeouts until setting hw.ata.wc to zero

2003-01-13 Thread Fritz Heinrichmeyer
Fritz Heinrichmeyer wrote:

last week i was in fear of a complete data loss as my freebsd current
system freezed with ata ad0 timeout like this.

kernel: ad0: READ command timeout tag=0 serv=0 - resetting

For now it seems we have a non freebsd related hardware problem here ...
Sorry for the noise.
--
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



first time that my floppy was recognized with acpi

2003-05-29 Thread Fritz Heinrichmeyer
with todays kernel i recognized that my floppy was back again,
then after cvsup this afternoon came

/usr/src/sys/contrib/dev/acpica/nsalloc.c

and the floppy controller went away again.
-- 
Mit freundlichen Grüßen
Fritz Heinrichmeyer FernUniversitaet, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: CSTD=c99 breaks package creation

2003-06-12 Thread Fritz Heinrichmeyer
deleting the define __attribute
stuff in system.h of
/usr/src/contrib/tar/src/system.h

and rebuilding+installing tar repaired package creation here.

--
Mit freundlichen Grüßen
Fritz Heinrichmeyer FernUniversitaet, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SMP hang at boot on Compaq Proliant ML370

2003-01-15 Thread Fritz Heinrichmeyer
On Wed, Jan 15, 2003 at 11:09:09AM +0100, Nicolas Kowalski wrote:
 The server is configured for Unixware7, as told in the archives.

our Compaq worked when configured for linux

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



sysinstall on current broken with larger drives

2003-02-12 Thread Fritz Heinrichmeyer
this is the same problem as googled here:

http://groups.google.de/groups?hl=delr=ie=UTF-8oe=UTF-8frame=rightth=b2760f23e09bd704seekm=b21hoi%24b75%241%40ncc1701.cistron.net#link1

sysinstall does not like the partition table.

It does not like the geometry 119150/16/63 found by kernel.
My bios says 1024/255/63 (wrong, only 8 GByte).
Sysinstall suggests 7476/255/63 (better, 60 GByte).

The partition table was created with diskpart from windows xp, btw.

Any ideas?

--
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: today's 5-current hang hard when building apache2 port

2003-02-24 Thread Fritz Heinrichmeyer

Hello, this is a simple ME TOO message

i had the same problem yesterday at home, but not here with todays
kernel.

Here, where everything works i have INET6 disabled in kernel.

I cannot look in the configuration file at home now.

Greetings

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message


ATA driver, ZIP-Disk and mtools now OK

1999-12-17 Thread Fritz Heinrichmeyer

today i tried again a windows formatted ZIP disk with mtools. First
with a line in /usr/local/etc/mtools.conf

drive z: file="/dev/afd0s4" --- this does not work!!

i had a message like 
 
 init Z: sector size too big
 Cannot initialize 'Z:'

this message i have never seen before, so i gave poking around with
mtools.conf another try. Looking at solaris examples, i edited

drive z: file="/dev/afd0s4" partition=4 # this works

and now it works!

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ATA driver, ZIP-Disk and mtools now OK, but mount_msdos ...

1999-12-17 Thread Fritz Heinrichmeyer


Of course i wish you a nice weekend ... but only mtools work.

Mount_msdos still fails:

mount_msdos /dev/afd0s4 /mnt
 mount_msdos: /dev/afd0s4: Invalid argument

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



current for production?

1999-12-20 Thread Fritz Heinrichmeyer


as there now is almost only talk about sound and ata drivers in this
list, would it be adviseable to use a current-snap on a server machine
(apache,samba,ftp) without need for sound and ata drivers (box with
aic-scsi-only drives)?

The integrated gcc-2.95.2 is so handy and current does all i want on my
private box anyway.

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



some problem with atapi-all.c

2000-01-07 Thread Fritz Heinrichmeyer


I tried the ATA_ENABLE_ATAPI_DMA option, it gave:

../../dev/ata/atapi-all.c: In function `atapi_attach':
../../dev/ata/atapi-all.c:150: syntax error before `)'

-- 
Fritz Heinrichmeyer mailto:[EMAIL PROTECTED]
FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Getting closer to use ATAPI-ZIP drives

1999-03-04 Thread Fritz Heinrichmeyer

Now in the first time there happens something with my ZIP-Drive.
Here something from dmesg:

 ata-pci0: Intel PIIX3 IDE controller rev 0x00 on pci0.7.1
 ata0 at 0x01f0 irq 14 on ata-pci0
 ..
 ..
 ata0: unwanted interrupt
 ata0: unwanted interrupt
 afd0: IOMEGA ZIP 100 ATAPI/23.D rewriteable drive at ata0 as master
 afd0: 96MB (196608 sectors), 32 cyls, 64 heads, 96 S/T, 512 B/S
 afd0: Unknown media (0x0)

Here something from my config file:

 controller ata0
 device atadisk0# ATA disk drives
 device atapifd0# my extrapolation!



after trying to mount with
 mount_msdos /dev/wfd0s4 /mnt

i get

mountmsdosfs(): bad bpb

is this a completely different problem (a msdosfs problem)?

-- 
Fritz Heinrichmeyer mailto:fritz.heinrichme...@fernuni-hagen.de
FernUniversitaet Hagen, LG Elektronische Schaltungen, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh
PGP fingerprint (mail for key): 160BDF84 3F2F63C0  5CA20D31 3E42D116


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



news from the ATAPI-ZIP frontier

1999-03-05 Thread Fritz Heinrichmeyer

I tried to use the ZIP-disk with the native file format:

First i made everything clean dd if=/dev/zero of=/dev/rwfd0 count=2
--
  2+0 records in
  2+0 records out
  1024 bytes transferred in 0.040078 secs (25550 bytes/sec)


then i invoced disklabel -rw wfd0 zip100
--
   disklabel: ioctl DIOCWLABEL: Inappropriate ioctl for device

then i created a fs with newfs /dev/rwfd0c zip100
--
  Warning: Block size and bytes per inode restrict cylinders per group to 5.
 /dev/rwfd0c:196608 sectors in 48 cylinders of 1 tracks, 4096 sectors
96.0MB in 10 cyl groups (5 c/g, 10.00MB/g, 4640 i/g)
 super-block backups (for fsck -b #) at:
 32, 20512, 40992, 61472, 81952, 102432, 122912, 143392, 163872, 184352,

then i continued with

mount /dev/wfd0c /mnt 
df
--/dev/wfd0c  92367084978 0%/mnt

when copying something to /mnt,
i see with dmesg

ata0: unwanted interrupt
ata0: unwanted interrupt
atapi_transfer: bad command phase
---
Fritz


-- 
Fritz Heinrichmeyer mailto:fritz.heinrichme...@fernuni-hagen.de
FernUniversitaet Hagen, LG Elektronische Schaltungen, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh
PGP fingerprint (mail for key): 160BDF84 3F2F63C0  5CA20D31 3E42D116


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



PS: news from the ATAPI-ZIP frontier

1999-03-05 Thread Fritz Heinrichmeyer

PS:

copying finished never and there was a complete freeze of the
workstation, apart from the keyboard beep ...

-- 
Fritz Heinrichmeyer mailto:fritz.heinrichme...@fernuni-hagen.de
FernUniversitaet Hagen, LG Elektronische Schaltungen, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh
PGP fingerprint (mail for key): 160BDF84 3F2F63C0  5CA20D31 3E42D116


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



ZIP Drive now working

1999-03-05 Thread Fritz Heinrichmeyer
Now the zip drive works with the old drivers, 
it was the vector wdintr what i changed now. Nothing else

controller  wdc0at isa? port IO_WD1 bio irq 14 vector wdintr
 
I followed a hint in  http://www.dancris.com/~p/software/ide_zip.html

Where is a place one can learn such secrets?

-- 
Fritz Heinrichmeyer mailto:fritz.heinrichme...@fernuni-hagen.de
FernUniversitaet Hagen, LG Elektronische Schaltungen, 58084 Hagen (Germany)
tel:+49 2331/987-1166 fax:987-355 http://ES-i2.fernuni-hagen.de/~jfh
PGP fingerprint (mail for key): 160BDF84 3F2F63C0  5CA20D31 3E42D116


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



/dev/fd0 not working with ACPI

2003-12-02 Thread Fritz Heinrichmeyer
In may 2003 there was a version  of 

/usr/src/sys/contrib/dev/acpica/nsalloc.c

in the tree so that the floppy disk interface was detected properly on
my cheap and already a little old k7s5a motherboard at home. 

Currently there is the old io range problem as before.

Are all others happy now with floppy support and acpi?

(There are no newer bios updates for the board around AFAIK)

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: /dev/fd0 not working with ACPI

2003-12-02 Thread Fritz Heinrichmeyer
Am Di, den 02.12.2003 schrieb Nate Lawson um 23:32:
 dmesg, please, including error.
 
 -Nate

Ok, here is a text attachment:
fdc0: cannot reserve I/O port range (6 ports), this was reported by some
others too within this year.


Copyright (c) 1992-2003 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 5.2-BETA #3: Tue Dec  2 22:27:21 CET 2003
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/FRITZ
Preloaded elf kernel /boot/kernel/kernel at 0xc0945000.
Preloaded elf module /boot/kernel/if_sis.ko at 0xc094526c.
Preloaded elf module /boot/kernel/miibus.ko at 0xc0945318.
Preloaded elf module /boot/kernel/snd_ich.ko at 0xc09453c4.
Preloaded elf module /boot/kernel/snd_pcm.ko at 0xc0945470.
Preloaded elf module /boot/kernel/usb.ko at 0xc094551c.
Preloaded elf module /boot/kernel/uhid.ko at 0xc09455c4.
Preloaded elf module /boot/kernel/ums.ko at 0xc0945670.
Preloaded elf module /boot/kernel/umass.ko at 0xc0945718.
Preloaded elf module /boot/kernel/nvidia.ko at 0xc09457c4.
Preloaded elf module /boot/kernel/linux.ko at 0xc0945870.
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: AMD Athlon(tm) Processor (896.19-MHz 686-class CPU)
  Origin = AuthenticAMD  Id = 0x642  Stepping = 2
  
Features=0x183f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR
  AMD Features=0xc044RSVD,AMIE,DSP,3DNow!
real memory  = 268369920 (255 MB)
avail memory = 251052032 (239 MB)
Pentium Pro MTRR support enabled
acpi0: AMIINT SiS735XX on motherboard
pcibios: BIOS version 2.10
Using $PIR table, 8 entries at 0xc00f7950
acpi0: Power Button (fixed)
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
acpi_cpu0: CPU on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib0: slot 2 INTD is routed to irq 5
pcib0: slot 2 INTA is routed to irq 12
pcib0: slot 2 INTC is routed to irq 11
pcib0: slot 3 INTA is routed to irq 11
agp0: SIS Generic host to PCI bridge mem 0xd000-0xd3ff at device 0.0 on pci0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
pcib0: slot 1 INTA is routed to irq 5
pcib1: slot 0 INTA is routed to irq 5
nvidia0: GeForce2 MX/MX 400 mem 0xc000-0xc7ff,0xce00-0xceff irq 5 at 
device 0.0 on pci1
isab0: PCI-ISA bridge at device 2.0 on pci0
isa0: ISA bus on isab0
ohci0: SiS 5571 USB controller mem 0xcfffe000-0xcfffefff irq 5 at device 2.2 on pci0
usb0: OHCI version 1.0, legacy support
usb0: SiS 5571 USB controller on ohci0
usb0: USB revision 1.0
uhub0: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 3 ports with 3 removable, self powered
ohci1: SiS 5571 USB controller mem 0xc000-0xcfff irq 12 at device 2.3 on pci0
usb1: OHCI version 1.0, legacy support
usb1: SiS 5571 USB controller on ohci1
usb1: USB revision 1.0
uhub1: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 3 ports with 3 removable, self powered
ums0: Logitech Inc. iFeel Mouse, rev 1.00/1.01, addr 2, iclass 3/1
ums0: 3 buttons and Z dir.
atapci0: SiS 735 UDMA100 controller port 0xff00-0xff0f at device 2.5 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata0: [MPSAFE]
ata1: at 0x170 irq 15 on atapci0
ata1: [MPSAFE]
pcm0: SiS 7012 port 0xd800-0xd83f,0xdc00-0xdcff irq 11 at device 2.7 on pci0
pcm0: Realtek ALC100 AC97 Codec
sis0: SiS 900 10/100BaseTX port 0xd400-0xd4ff mem 0xcfffd000-0xcfffdfff irq 11 at 
device 3.0 on pci0
sis0: Ethernet address: 00:07:95:b5:dc:e2
miibus0: MII bus on sis0
rlphy0: RTL8201L 10/100 media interface on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
acpi_button0: Sleep Button on acpi0
atkbdc0: Keyboard controller (i8042) port 0x64,0x60 irq 1 on acpi0
atkbd0: AT Keyboard flags 0x1 irq 1 on atkbdc0
kbd0 at atkbd0
fdc0: cmd 3 failed at out byte 1 of 3
sio0 port 0x3f8-0x3ff irq 4 on acpi0
sio0: type 16550A
sio1 port 0x2f8-0x2ff irq 3 on acpi0
sio1: type 16550A
fdc0: cmd 3 failed at out byte 1 of 3
npx0: [FAST]
npx0: math processor on motherboard
npx0: INT 16 interface
orm0: Option ROMs at iomem 0xcc800-0xd47ff,0xc-0xcc7ff on isa0
pmtimer0 on isa0
fdc0: cannot reserve I/O port range (6 ports)
sc0: System console at flags 0x100 on isa0
sc0: VGA 16 virtual consoles, flags=0x300
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
Timecounter TSC frequency 896191702 Hz quality 800
Timecounters tick every 10.000 msec
GEOM: create disk ad0 dp=0xc2d78e60
ad0: 57277MB SAMSUNG SV0602H [116374/16/63] at ata0-master UDMA100
GEOM: create disk ad1 dp=0xc2d99660
ad1: 16446MB ST317221A [33416/16/63] at ata0-slave UDMA66
acd0: CDRW R/RW 4x4x32 at ata1-master WDMA2
acd1: DVDROM HL-DT-STDVD-ROM GDR8161B at ata1-slave UDMA33
Mounting root from ufs:/dev/ad0s2a
Warning: pid 522 used static ldt allocation.
See the i386_set_ldt man page for more info
___
[EMAIL