Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

4 significant issues with amd64 -current



Now that the ahcisata issues with the first drive not probing correctly seems to be ironed out (thanks!), I figured I'd update my Feb 11th -current to May 11th. An install on a VMWare system worked fine, so I had high confidence in it working on my home server. Unfortunately, I had to roll back to Feb 11, due to the following 4 issues:

Issue 1:
Neither root nor a normal user can login. More precisely, entering proper credentials on either the serial console or via ssh seems to work, insomuch as I see the NetBSD banner, and the requisite "You have new mail" line. But then instead of a shell prompt, I'm returned to the login prompt. I can't find anything in authlog (which makes sense, since I did seem to authenticate properly!) or /var/log/messages. This one has me utterly stumped.

Issue 2:
In single-user mode (since I can't login in multi-user...see above), "vipw" reports that it cannot find /usr/bin/vi (no such file or directory). Of course, "vi" does reside there, and works fine. Comparing a ktrace on my VMWare installation and one on my real system shows everything identical up to:

    50      1 vipw     NAMI  "/etc/malloc.conf"
    50      1 vipw     RET   readlink -1 errno 2 No such file or directory
    50      1 vipw     CALL  issetugid
    50      1 vipw     RET   issetugid 0
    50      1 vipw     CALL  mmap(0,0x1000,3,0x1002,0xffffffff,0,0)
    50      1 vipw     RET   mmap 132958969085952/0x78ecec1f4000
    50      1 vipw     CALL  mmap(0,0x100000,3,0x14001002,0xffffffff,0,0)
    50      1 vipw     RET   mmap 132958963892224/0x78ecebd00000
    50      1 vipw     CALL  __vfork14
    50      1 vipw     RET   __vfork14 51/0x33
    50      1 vipw     CALL  wait4(0x33,0x7f7fff8676ac,2,0)
    50      1 vipw     RET   wait4 51/0x33
    50      1 vipw     CALL  write(2,0x7f7fff866cc0,6)

That last "write" is there (starting to write the "vipw: /usr/bin/vi" error message) on the real system is instead a __stat30() on the VMware system (I think a stat() of /etc/ptmp). It looks like vipw failed to write to /etc/ptmp, but of course "touch /etc/ptmp" works fine, so it's not a permissions problem. The binaries on both systems are identical, and have the same flags.

My hunch is that there is some issue with the path not getting inherited properly, since "tar" also exhibits strange behavior:

# tar ztvf /data/scotte/netbsd_build/oldbins.tgz
tar: End of archive volume 1 reached
tar: Sorry, unable to determine archive format.

Of course, ungziping the file and running 'tar' on it works fine, so the symptom is similar to 'tar' not being able to find the gzip binary.

Issue 3:
Since I can't login in multi-user, I figured I'd use the power button to nicely shutdown. That gave me:

login: Reader / writer lock error: lockdebug_wantlock: locking against myself

lock address : 0xffff800050789b58 type     :     sleep/adaptive
shared holds :                  1 exclusive:                  0
shares wanted:                  1 exclusive:                  0
current cpu  :                  1 last held:                  1
current lwp  : 0xffff800052470440 last held: 0xffff800052470440
last locked  : 0xffffffff8034aa05 unlocked : 0xffffffff8034aa43
initialized  : 0xffffffff8034b3ae
owner/count  : 0x0000000000000010 flags    : 0x0000000000000008

Turnstile chain at 0xffffffff805bc3e0.
=> No active turnstile for this lock.

panic: LOCKDEBUG
Stopped in pid 689.1 (powerd) at        netbsd:breakpoint+0x5:  leave
db{1}> bt
breakpoint() at netbsd:breakpoint+0x5
panic() at netbsd:panic+0x253
lockdebug_wantlock() at netbsd:lockdebug_wantlock
rw_vector_enter() at netbsd:rw_vector_enter+0x237
prop_dictionary_iterator() at netbsd:prop_dictionary_iterator+0x67
_prop_dictionary_externalize() at netbsd:_prop_dictionary_externalize+0xa2
prop_dictionary_externalize() at netbsd:prop_dictionary_externalize+0x30
_prop_object_copyout_ioctl() at netbsd:_prop_object_copyout_ioctl+0x121
sysmonioctl_power() at netbsd:sysmonioctl_power+0xf2
VOP_IOCTL() at netbsd:VOP_IOCTL+0x64
vn_ioctl() at netbsd:vn_ioctl+0x62
sys_ioctl() at netbsd:sys_ioctl+0x11e
syscall() at netbsd:syscall+0x8f
db{1}>

(Incidentally, that happens with the May 11th or the Feb 11th userland).

Issue 4:
While my RAIDFrame was rebuilding with the May 11th -current, it looks like swwdog didn't get tickled, and tried to reboot the system. Unfortunately it didn't make it all the way, and I was greeted with:

db{0}> bt
breakpoint() at netbsd:breakpoint+0x5
panic() at netbsd:panic+0x253
assert_sleepable() at netbsd:assert_sleepable+0x9a
pool_cache_get_paddr() at netbsd:pool_cache_get_paddr+0x1bb
vnalloc() at netbsd:vnalloc+0x23
ffs_sync() at netbsd:ffs_sync+0x4d
VFS_SYNC() at netbsd:VFS_SYNC+0x2c
sys_sync() at netbsd:sys_sync+0xe6
vfs_shutdown() at netbsd:vfs_shutdown+0x50
cpu_reboot() at netbsd:cpu_reboot+0x102
swwdog_setmode() at netbsd:swwdog_setmode
callout_softclock() at netbsd:callout_softclock+0x1ff
softint_dispatch() at netbsd:softint_dispatch+0xcd
DDB lost frame for netbsd:Xsoftintr+0x50, trying 0xffff80004ca2ed70
Xsoftintr() at netbsd:Xsoftintr+0x50
--- interrupt ---
0:

This *might* be normal (I haven't tried letting a watchdog expire with a debug kernel before), but it doesn't look like it.

All-in-all, I'm confused about the issues, seeing as how the same userland works fine on my VMWare box. Attached is a dmesg and my kernel configuration (nothing fancy, just removed all the stuff I didn't need).

I'm happy to send PR's about these things, I'm just not really keen on making PR's against -current (especially when it's moving so fast, as it has been of late).

If anyone has any ideas on how to debug any of these items, I'd love to hear them!

        ScottE
May  8 17:31:11 intrepid /netbsd: The NetBSD Foundation, Inc.  All rights 
reserved.
May  8 17:31:11 intrepid /netbsd: Copyright (c) 1982, 1986, 1989, 1991, 1993
May  8 17:31:11 intrepid /netbsd: The Regents of the University of California.  
All rights reserved.
May  8 17:31:11 intrepid /netbsd: 
May  8 17:31:11 intrepid /netbsd: NetBSD 4.99.62 (INTREPID.P5W.DEBUG) #0: Thu 
May  8 11:28:46 PDT 2008
May  8 17:31:11 intrepid /netbsd: 
scotte@intrepid:/nbu/source/netbsd/src/obj.amd64/nbu/source/netbsd/src/sys/arch/amd64/compile/INTREPID.P5W.DEBUG
May  8 17:31:11 intrepid /netbsd: total memory = 4095 MB
May  8 17:31:11 intrepid /netbsd: avail memory = 3953 MB
May  8 17:31:11 intrepid /netbsd: timecounter: Timecounters tick every 10.000 
msec
May  8 17:31:11 intrepid /netbsd: timecounter: Timecounter "i8254" frequency 
1193182 Hz quality 100
May  8 17:31:11 intrepid /netbsd: SMBIOS rev. 2.4 @ 0xf0690 (72 entries)
May  8 17:31:11 intrepid /netbsd: ASUSTEK COMPUTER INC P5W DH Deluxe (System 
Version)
May  8 17:31:11 intrepid /netbsd: mainbus0 (root)
May  8 17:31:11 intrepid /netbsd: cpu0 at mainbus0 apid 0: (boot processor)
May  8 17:31:11 intrepid /netbsd: cpu0: Intel(R) Core(TM)2 CPU          6600  @ 
2.40GHz, 2703.55 MHz
May  8 17:31:11 intrepid /netbsd: cpu0: features 
bffbfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR>
May  8 17:31:11 intrepid /netbsd: cpu0: features 
bffbfbff<PGE,MCA,CMOV,PAT,PSE36,CFLUSH,B20,DS,ACPI,MMX>
May  8 17:31:11 intrepid /netbsd: cpu0: features 
bffbfbff<FXSR,SSE,SSE2,SS,HTT,TM,SBF>
May  8 17:31:11 intrepid /netbsd: cpu0: features2 
e3bd<SSE3,DTES64,MONITOR,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM>
May  8 17:31:11 intrepid /netbsd: cpu0: features3 
bffbfbff<SYSCALL/SYSRET,XD,EM64T>
May  8 17:31:11 intrepid /netbsd: cpu0: L2 cache 4 MB 64B/line 16-way
May  8 17:31:11 intrepid /netbsd: cpu0: Initial APIC ID 0
May  8 17:31:11 intrepid /netbsd: cpu0: Cluster/Package ID 0
May  8 17:31:11 intrepid /netbsd: cpu0: Core ID 0
May  8 17:31:11 intrepid /netbsd: cpu0: calibrating local timer
May  8 17:31:11 intrepid /netbsd: cpu0: apic clock running at 300 MHz
May  8 17:31:11 intrepid /netbsd: cpu0: 64 page colors
May  8 17:31:11 intrepid /netbsd: cpu1 at mainbus0 apid 1: (application 
processor)
May  8 17:31:11 intrepid /netbsd: cpu1: Intel(R) Core(TM)2 CPU          6600  @ 
2.40GHz, 2703.64 MHz
May  8 17:31:11 intrepid /netbsd: cpu1: features 
bffbfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR>
May  8 17:31:11 intrepid /netbsd: cpu1: features 
bffbfbff<PGE,MCA,CMOV,PAT,PSE36,CFLUSH,B20,DS,ACPI,MMX>
May  8 17:31:11 intrepid /netbsd: cpu1: features 
bffbfbff<FXSR,SSE,SSE2,SS,HTT,TM,SBF>
May  8 17:31:11 intrepid /netbsd: cpu1: features2 
e3bd<SSE3,DTES64,MONITOR,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM>
May  8 17:31:11 intrepid /netbsd: cpu1: features3 
bffbfbff<SYSCALL/SYSRET,XD,EM64T>
May  8 17:31:11 intrepid /netbsd: cpu1: L2 cache 4 MB 64B/line 16-way
May  8 17:31:11 intrepid /netbsd: cpu1: Initial APIC ID 1
May  8 17:31:11 intrepid /netbsd: cpu1: Cluster/Package ID 0
May  8 17:31:11 intrepid /netbsd: cpu1: Core ID 1
May  8 17:31:11 intrepid /netbsd: ioapic0 at mainbus0 apid 2: pa 0xfec00000, 
version 20, 24 pins
May  8 17:31:11 intrepid /netbsd: acpi0 at mainbus0: Advanced Configuration and 
Power Interface
May  8 17:31:11 intrepid /netbsd: acpi0: using Intel ACPI CA subsystem version 
20080321
May  8 17:31:11 intrepid /netbsd: acpi0: X/RSDT: OemId <A_M_I_,OEMXSDT 
,03000820>, AslId <MSFT,00000097>
May  8 17:31:11 intrepid /netbsd: acpi0: SCI interrupting at int 9
May  8 17:31:11 intrepid /netbsd: acpi0: fixed-feature power button present
May  8 17:31:11 intrepid /netbsd: timecounter: Timecounter "ACPI-Fast" 
frequency 3579545 Hz quality 1000
May  8 17:31:11 intrepid /netbsd: ACPI-Fast 24-bit timer
May  8 17:31:11 intrepid /netbsd: CPU1 (ACPI Object Type 'Processor' [0x0c]) at 
acpi0 not configured
May  8 17:31:11 intrepid /netbsd: CPU2 (ACPI Object Type 'Processor' [0x0c]) at 
acpi0 not configured
May  8 17:31:11 intrepid /netbsd: CPU3 (ACPI Object Type 'Processor' [0x0c]) at 
acpi0 not configured
May  8 17:31:11 intrepid /netbsd: CPU4 (ACPI Object Type 'Processor' [0x0c]) at 
acpi0 not configured
May  8 17:31:11 intrepid /netbsd: PCI0 (PNP0A08) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: MCH (PNP0C01) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: PIC (PNP0000) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: DMAD (PNP0200) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: attimer0 at acpi0 (TMR, PNP0100): AT Timer
May  8 17:31:11 intrepid /netbsd: attimer0: io 0x40-0x43 irq 0
May  8 17:31:11 intrepid /netbsd: RTC0 (PNP0B00) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: pcppi0 at acpi0 (SPKR, PNP0800)
May  8 17:31:11 intrepid /netbsd: pcppi0: io 0x61
May  8 17:31:11 intrepid /netbsd: sysbeep0 at pcppi0
May  8 17:31:11 intrepid /netbsd: COPR (PNP0C04) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: fdc0 at acpi0 (FDC, PNP0700)
May  8 17:31:11 intrepid /netbsd: fdc0: io 0x3f0-0x3f5,0x3f7 irq 6 drq 2
May  8 17:31:11 intrepid /netbsd: fdc0: expected BUFFER, got 4
May  8 17:31:11 intrepid /netbsd: SIOR (PNP0C02) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: RMSC (PNP0C02) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: hpet0 at acpi0 (HPET, PNP0103)
May  8 17:31:11 intrepid /netbsd: hpet0: mem 0xfed00000-0xfed003ff
May  8 17:31:11 intrepid /netbsd: timecounter: Timecounter "hpet0" frequency 
14318179 Hz quality 2000
May  8 17:31:11 intrepid /netbsd: aiboost0 at acpi0 (ASOC, ATK0110-16843024)
May  8 17:31:11 intrepid /netbsd: aiboost0: ASUS AI Boost Hardware monitor
May  8 17:31:11 intrepid /netbsd: OMSC (PNP0C02) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: com0 at acpi0 (UAR1, PNP0501-1)
May  8 17:31:11 intrepid /netbsd: com0: io 0x3f8-0x3ff irq 4
May  8 17:31:11 intrepid /netbsd: com0: ns16550a, working fifo
May  8 17:31:11 intrepid /netbsd: com0: console
May  8 17:31:11 intrepid /netbsd: PCIE (PNP0C02) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: RMEM (PNP0C01) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: acpibut0 at acpi0 (PWRB, PNP0C0C-170): ACPI 
Power Button
May  8 17:31:11 intrepid /netbsd: LNKA (PNP0C0F) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: LNKB (PNP0C0F) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: LNKC (PNP0C0F) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: LNKD (PNP0C0F) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: LNKE (PNP0C0F) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: LNKG (PNP0C0F) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: LNKH (PNP0C0F) at acpi0 not configured
May  8 17:31:11 intrepid /netbsd: attimer0: attached to pcppi0
May  8 17:31:11 intrepid /netbsd: pci0 at mainbus0 bus 0: configuration mode 1
May  8 17:31:11 intrepid /netbsd: pci0: i/o space, memory space enabled, 
rd/line, rd/mult, wr/inv ok
May  8 17:31:11 intrepid /netbsd: pchb0 at pci0 dev 0 function 0
May  8 17:31:11 intrepid /netbsd: pchb0: vendor 0x8086 product 0x277c (rev. 
0xc0)
May  8 17:31:11 intrepid /netbsd: ppb0 at pci0 dev 1 function 0: vendor 0x8086 
product 0x277d (rev. 0xc0)
May  8 17:31:11 intrepid /netbsd: pci1 at ppb0 bus 5
May  8 17:31:11 intrepid /netbsd: pci1: i/o space, memory space enabled, 
rd/line, wr/inv ok
May  8 17:31:11 intrepid /netbsd: vendor 0x10de product 0x01d1 (VGA display, 
revision 0xa1) at pci1 dev 0 function 0 not configured
May  8 17:31:11 intrepid /netbsd: azalia0 at pci0 dev 27 function 0: Generic 
High Definition Audio Controller
May  8 17:31:11 intrepid /netbsd: azalia0: interrupting at ioapic0 pin 19 (irq 
11)
May  8 17:31:11 intrepid /netbsd: azalia0: host: 0x8086/0x27d8 (rev. 1)
May  8 17:31:11 intrepid /netbsd: azalia0: host: High Definition Audio rev. 1.0
May  8 17:31:11 intrepid /netbsd: ppb1 at pci0 dev 28 function 0: vendor 0x8086 
product 0x27d0 (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: pci2 at ppb1 bus 4
May  8 17:31:11 intrepid /netbsd: pci2: memory space enabled, rd/line, wr/inv ok
May  8 17:31:11 intrepid /netbsd: ppb2 at pci0 dev 28 function 3: vendor 0x8086 
product 0x27d6 (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: pci3 at ppb2 bus 3
May  8 17:31:11 intrepid /netbsd: pci3: i/o space, memory space enabled, 
rd/line, wr/inv ok
May  8 17:31:11 intrepid /netbsd: mskc0 at pci3 dev 0 function 0mskc0: 
interrupt moderation is 0 us
May  8 17:31:11 intrepid /netbsd: , Yukon-2 EC rev. A3 (0x2): ioapic0 pin 19 
(irq 11)
May  8 17:31:11 intrepid /netbsd: msk0 at mskc0 port A: Ethernet address 
00:1b:fc:03:ee:42
May  8 17:31:11 intrepid /netbsd: makphy0 at msk0 phy 0: Marvell 88E1111 
Gigabit PHY, rev. 2
May  8 17:31:11 intrepid /netbsd: makphy0: 10baseT, 10baseT-FDX, 100baseTX, 
100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto
May  8 17:31:11 intrepid /netbsd: ppb3 at pci0 dev 28 function 4: vendor 0x8086 
product 0x27e0 (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: pci4 at ppb3 bus 2
May  8 17:31:11 intrepid /netbsd: pci4: i/o space, memory space enabled, 
rd/line, wr/inv ok
May  8 17:31:11 intrepid /netbsd: mskc1 at pci4 dev 0 function 0mskc1: 
interrupt moderation is 0 us
May  8 17:31:11 intrepid /netbsd: , Yukon-2 EC rev. A3 (0x2): ioapic0 pin 16 
(irq 10)
May  8 17:31:11 intrepid /netbsd: msk1 at mskc1 port A: Ethernet address 
00:1b:fc:03:e3:60
May  8 17:31:11 intrepid /netbsd: makphy1 at msk1 phy 0: Marvell 88E1111 
Gigabit PHY, rev. 2
May  8 17:31:11 intrepid /netbsd: makphy1: 10baseT, 10baseT-FDX, 100baseTX, 
100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto
May  8 17:31:11 intrepid /netbsd: uhci0 at pci0 dev 29 function 0: vendor 
0x8086 product 0x27c8 (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: uhci0: interrupting at ioapic0 pin 20 (irq 5)
May  8 17:31:11 intrepid /netbsd: usb0 at uhci0: USB revision 1.0
May  8 17:31:11 intrepid /netbsd: uhci1 at pci0 dev 29 function 1: vendor 
0x8086 product 0x27c9 (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: uhci1: interrupting at ioapic0 pin 17 (irq 7)
May  8 17:31:11 intrepid /netbsd: usb1 at uhci1: USB revision 1.0
May  8 17:31:11 intrepid /netbsd: uhci2 at pci0 dev 29 function 2: vendor 
0x8086 product 0x27ca (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: uhci2: interrupting at ioapic0 pin 18 (irq 3)
May  8 17:31:11 intrepid /netbsd: usb2 at uhci2: USB revision 1.0
May  8 17:31:11 intrepid /netbsd: uhci3 at pci0 dev 29 function 3: vendor 
0x8086 product 0x27cb (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: uhci3: interrupting at ioapic0 pin 19 (irq 11)
May  8 17:31:11 intrepid /netbsd: usb3 at uhci3: USB revision 1.0
May  8 17:31:11 intrepid /netbsd: ehci0 at pci0 dev 29 function 7: vendor 
0x8086 product 0x27cc (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: ehci0: interrupting at ioapic0 pin 20 (irq 5)
May  8 17:31:11 intrepid /netbsd: ehci0: EHCI version 1.0
May  8 17:31:11 intrepid /netbsd: ehci0: companion controllers, 2 ports each: 
uhci0 uhci1 uhci2 uhci3
May  8 17:31:11 intrepid /netbsd: usb4 at ehci0: USB revision 2.0
May  8 17:31:11 intrepid /netbsd: ppb4 at pci0 dev 30 function 0: vendor 0x8086 
product 0x244e (rev. 0xe1)
May  8 17:31:11 intrepid /netbsd: pci5 at ppb4 bus 1
May  8 17:31:11 intrepid /netbsd: pci5: i/o space, memory space enabled
May  8 17:31:11 intrepid /netbsd: ex0 at pci5 dev 1 function 0: 3Com 3c905B-TX 
10/100 Ethernet (rev. 0x30)
May  8 17:31:11 intrepid /netbsd: ex0: interrupting at ioapic0 pin 22 (irq 11)
May  8 17:31:11 intrepid /netbsd: ex0: MAC address 00:50:04:78:77:9c
May  8 17:31:11 intrepid /netbsd: exphy0 at ex0 phy 24: 3Com internal media 
interface
May  8 17:31:11 intrepid /netbsd: exphy0: 10baseT, 10baseT-FDX, 100baseTX, 
100baseTX-FDX, auto
May  8 17:31:11 intrepid /netbsd: ichlpcib0 at pci0 dev 31 function 0
May  8 17:31:11 intrepid /netbsd: ichlpcib0: vendor 0x8086 product 0x27b8 (rev. 
0x01)
May  8 17:31:11 intrepid /netbsd: timecounter: Timecounter "ichlpcib0" 
frequency 3579545 Hz quality 1000
May  8 17:31:11 intrepid /netbsd: ichlpcib0: 24-bit timer
May  8 17:31:11 intrepid /netbsd: ichlpcib0: TCO (watchdog) timer configured.
May  8 17:31:11 intrepid /netbsd: piixide0 at pci0 dev 31 function 1
May  8 17:31:11 intrepid /netbsd: piixide0: Intel 82801GB/GR IDE Controller 
(ICH7) (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: piixide0: bus-master DMA support present
May  8 17:31:11 intrepid /netbsd: piixide0: primary channel configured to 
compatibility mode
May  8 17:31:11 intrepid /netbsd: piixide0: primary channel interrupting at 
ioapic0 pin 14 (irq 14)
May  8 17:31:11 intrepid /netbsd: atabus0 at piixide0 channel 0
May  8 17:31:11 intrepid /netbsd: piixide0: secondary channel configured to 
compatibility mode
May  8 17:31:11 intrepid /netbsd: piixide0: secondary channel interrupting at 
ioapic0 pin 15 (irq 15)
May  8 17:31:11 intrepid /netbsd: atabus1 at piixide0 channel 1
May  8 17:31:11 intrepid /netbsd: ahcisata0 at pci0 dev 31 function 2: vendor 
0x8086 product 0x27c1
May  8 17:31:11 intrepid /netbsd: ahcisata0: interrupting at ioapic0 pin 23 
(irq 10)
May  8 17:31:11 intrepid /netbsd: ahcisata0: AHCI revision 1.1, 4 ports, 32 
command slots, features 0xc720e000
May  8 17:31:11 intrepid /netbsd: atabus2 at ahcisata0 channel 0
May  8 17:31:11 intrepid /netbsd: atabus3 at ahcisata0 channel 1
May  8 17:31:11 intrepid /netbsd: atabus4 at ahcisata0 channel 2
May  8 17:31:11 intrepid /netbsd: atabus5 at ahcisata0 channel 3
May  8 17:31:11 intrepid /netbsd: ichsmb0 at pci0 dev 31 function 3: vendor 
0x8086 product 0x27da (rev. 0x01)
May  8 17:31:11 intrepid /netbsd: ichsmb0: interrupting at ioapic0 pin 23 (irq 
0)
May  8 17:31:11 intrepid /netbsd: iic0 at ichsmb0: I2C bus
May  8 17:31:11 intrepid /netbsd: spdmem0 at iic0 addr 0x50
May  8 17:31:11 intrepid /netbsd: spdmem0: DDR2 SDRAM memory, no parity or ECC, 
2048MB, 800MHz, PC2-6400
May  8 17:31:11 intrepid /netbsd: spdmem0: 14 rows, 10 cols, 2 ranks, 8 
banks/chip, 2.50ns cycle time
May  8 17:31:11 intrepid /netbsd: spdmem0: voltage SSTL 1.8V, refresh time 
7.8us (self-refreshing)
May  8 17:31:11 intrepid /netbsd: spdmem1 at iic0 addr 0x52
May  8 17:31:11 intrepid /netbsd: spdmem1: DDR2 SDRAM memory, no parity or ECC, 
2048MB, 800MHz, PC2-6400
May  8 17:31:11 intrepid /netbsd: spdmem1: 14 rows, 10 cols, 2 ranks, 8 
banks/chip, 2.50ns cycle time
May  8 17:31:11 intrepid /netbsd: spdmem1: voltage SSTL 1.8V, refresh time 
7.8us (self-refreshing)
May  8 17:31:11 intrepid /netbsd: isa0 at ichlpcib0
May  8 17:31:11 intrepid /netbsd: timecounter: Timecounter "TSC" frequency 
2703571380 Hz quality 800
May  8 17:31:11 intrepid /netbsd: timecounter: Timecounter "clockinterrupt" 
frequency 100 Hz quality 0
May  8 17:31:11 intrepid /netbsd: fd0 at fdc0 drive 0: 1.44MB, 80 cyl, 2 head, 
18 sec
May  8 17:31:11 intrepid /netbsd: fd1 at fdc0 drive 1: density unknown
May  8 17:31:11 intrepid /netbsd: azalia0: codec[0]: Realtek ALC882 (rev. 1.1)
May  8 17:31:11 intrepid /netbsd: azalia0: codec[0]: High Definition Audio rev. 
1.0
May  8 17:31:11 intrepid /netbsd: audio0 at azalia0: full duplex, independent
May  8 17:31:11 intrepid /netbsd: uhub0 at usb0: vendor 0x8086 UHCI root hub, 
class 9/0, rev 1.00/1.00, addr 1
May  8 17:31:11 intrepid /netbsd: uhub0: 2 ports with 2 removable, self powered
May  8 17:31:11 intrepid /netbsd: uhub1 at usb1: vendor 0x8086 UHCI root hub, 
class 9/0, rev 1.00/1.00, addr 1
May  8 17:31:11 intrepid /netbsd: uhub1: 2 ports with 2 removable, self powered
May  8 17:31:11 intrepid /netbsd: uhub2 at usb2: vendor 0x8086 UHCI root hub, 
class 9/0, rev 1.00/1.00, addr 1
May  8 17:31:11 intrepid /netbsd: uhub2: 2 ports with 2 removable, self powered
May  8 17:31:11 intrepid /netbsd: uhub3 at usb3: vendor 0x8086 UHCI root hub, 
class 9/0, rev 1.00/1.00, addr 1
May  8 17:31:11 intrepid /netbsd: uhub3: 2 ports with 2 removable, self powered
May  8 17:31:11 intrepid /netbsd: uhub4 at usb4: vendor 0x8086 EHCI root hub, 
class 9/0, rev 2.00/1.00, addr 1
May  8 17:31:11 intrepid /netbsd: uhub4: 8 ports with 8 removable, self powered
May  8 17:31:11 intrepid /netbsd: ahcisata0 port 0: device present, speed: 
3.0Gb/s
May  8 17:31:11 intrepid /netbsd: ahcisata0 port 2: device present, speed: 
3.0Gb/s
May  8 17:31:11 intrepid /netbsd: ahcisata0 port 3: device present, speed: 
3.0Gb/s
May  8 17:31:11 intrepid /netbsd: wd0 at atabus2 drive 0: <WDC WD5000YS-01MPB1>
May  8 17:31:11 intrepid /netbsd: wd0: drive supports 16-sector PIO transfers, 
LBA48 addressing
May  8 17:31:11 intrepid /netbsd: wd0: 465 GB, 969021 cyl, 16 head, 63 sec, 512 
bytes/sect x 976773168 sectors
May  8 17:31:11 intrepid /netbsd: wd0: drive supports PIO mode 4, DMA mode 2, 
Ultra-DMA mode 6 (Ultra/133)
May  8 17:31:11 intrepid /netbsd: wd0(ahcisata0:0:0): using PIO mode 4, DMA 
mode 2, Ultra-DMA mode 6 (Ultra/133) (using DMA)
May  8 17:31:11 intrepid /netbsd: ahcisata0 port 1: PHY offline
May  8 17:31:11 intrepid /netbsd: wd1 at atabus4 drive 0: <WDC WD5000YS-01MPB0>
May  8 17:31:11 intrepid /netbsd: wd1: drive supports 16-sector PIO transfers, 
LBA48 addressing
May  8 17:31:11 intrepid /netbsd: wd1: 465 GB, 969021 cyl, 16 head, 63 sec, 512 
bytes/sect x 976773168 sectors
May  8 17:31:11 intrepid /netbsd: wd1: drive supports PIO mode 4, DMA mode 2, 
Ultra-DMA mode 6 (Ultra/133)
May  8 17:31:11 intrepid /netbsd: wd1(ahcisata0:2:0): using PIO mode 4, DMA 
mode 2, Ultra-DMA mode 6 (Ultra/133) (using DMA)
May  8 17:31:11 intrepid /netbsd: wd2 at atabus5 drive 0: <WDC WD5000YS-01MPB1>
May  8 17:31:11 intrepid /netbsd: wd2: drive supports 16-sector PIO transfers, 
LBA48 addressing
May  8 17:31:11 intrepid /netbsd: wd2: 465 GB, 969021 cyl, 16 head, 63 sec, 512 
bytes/sect x 976773168 sectors
May  8 17:31:11 intrepid /netbsd: wd2: drive supports PIO mode 4, DMA mode 2, 
Ultra-DMA mode 6 (Ultra/133)
May  8 17:31:11 intrepid /netbsd: wd2(ahcisata0:3:0): using PIO mode 4, DMA 
mode 2, Ultra-DMA mode 6 (Ultra/133) (using DMA)
May  8 17:31:11 intrepid /netbsd: ehci0: handing over full speed device on port 
5 to uhci2
May  8 17:31:11 intrepid /netbsd: uhub4: port 5, device disappeared after reset
May  8 17:31:11 intrepid /netbsd: ehci0: handing over full speed device on port 
6 to uhci2
May  8 17:31:11 intrepid /netbsd: uhub4: port 6, device disappeared after reset
May  8 17:31:11 intrepid /netbsd: uplcom0 at uhub2 port 1
May  8 17:31:11 intrepid /netbsd: uplcom0: vendor 0x067b product 0x2303, rev 
1.10/2.02, addr 2
May  8 17:31:11 intrepid /netbsd: ucom0 at uplcom0
May  8 17:31:11 intrepid /netbsd: uhub5 at uhub4 port 7: vendor 0x05e3 USB2.0 
Hub, class 9/0, rev 2.00/7.02, addr 2
May  8 17:31:11 intrepid /netbsd: uhub5: single transaction translator
May  8 17:31:11 intrepid /netbsd: uhub5: 4 ports with 4 removable, self powered
May  8 17:31:11 intrepid /netbsd: uplcom1 at uhub2 port 2
May  8 17:31:11 intrepid /netbsd: uplcom1: vendor 0x067b product 0x2303, rev 
1.10/2.02, addr 3
May  8 17:31:11 intrepid /netbsd: ucom1 at uplcom1
May  8 17:31:11 intrepid /netbsd: usbd_get_string: getting lang failed, using 0
May  8 17:31:11 intrepid /netbsd: ugen0 at uhub5 port 3
May  8 17:31:11 intrepid /netbsd: ugen0: vendor 0x0bda RTL8187_Wireless, rev 
2.00/1.00, addr 3
May  8 17:31:11 intrepid /netbsd: raidattach: Asked for 2 units
May  8 17:31:11 intrepid /netbsd: Kernelized RAIDframe activated
May  8 17:31:11 intrepid /netbsd: swwdog0: software watchdog initialized
May  8 17:31:11 intrepid /netbsd: Searching for RAID components...
May  8 17:31:11 intrepid /netbsd: Component on: wd0a: 976773105
May  8 17:31:11 intrepid /netbsd: Row: 0 Column: 0 Num Rows: 1 Num Columns: 2
May  8 17:31:11 intrepid /netbsd: Version: 2 Serial Number: 2007101302 Mod 
Counter: 745
May  8 17:31:11 intrepid /netbsd: Clean: Yes Status: 0
May  8 17:31:11 intrepid /netbsd: sectPerSU: 64 SUsPerPU: 1 SUsPerRU: 1
May  8 17:31:11 intrepid /netbsd: RAID Level: 1  blocksize: 512 numBlocks: 
976772992
May  8 17:31:11 intrepid /netbsd: Autoconfig: Yes
May  8 17:31:11 intrepid /netbsd: Contains root partition: Yes
May  8 17:31:11 intrepid /netbsd: Last configured as: raid0
May  8 17:31:11 intrepid /netbsd: Component on: wd2a: 976773105
May  8 17:31:11 intrepid /netbsd: Row: 0 Column: 1 Num Rows: 1 Num Columns: 2
May  8 17:31:11 intrepid /netbsd: Version: 2 Serial Number: 2007101302 Mod 
Counter: 745
May  8 17:31:11 intrepid /netbsd: Clean: Yes Status: 0
May  8 17:31:11 intrepid /netbsd: sectPerSU: 64 SUsPerPU: 1 SUsPerRU: 1
May  8 17:31:11 intrepid /netbsd: RAID Level: 1  blocksize: 512 numBlocks: 
976772992
May  8 17:31:11 intrepid /netbsd: Autoconfig: Yes
May  8 17:31:11 intrepid /netbsd: Contains root partition: Yes
May  8 17:31:11 intrepid /netbsd: Last configured as: raid0
May  8 17:31:11 intrepid /netbsd: Found: wd0a at 0
May  8 17:31:11 intrepid /netbsd: Found: wd2a at 1
May  8 17:31:11 intrepid /netbsd: RAID autoconfigure
May  8 17:31:11 intrepid /netbsd: Configuring raid0:
May  8 17:31:11 intrepid /netbsd: Starting autoconfiguration of RAID set...
May  8 17:31:11 intrepid /netbsd: Looking for 0 in autoconfig
May  8 17:31:11 intrepid /netbsd: Found: wd0a at 0
May  8 17:31:11 intrepid /netbsd: Looking for 1 in autoconfig
May  8 17:31:11 intrepid /netbsd: Found: wd2a at 1
May  8 17:31:11 intrepid /netbsd: raid0: allocating 20 buffers of 32768 bytes.
May  8 17:31:11 intrepid /netbsd: raid0: RAID Level 1
May  8 17:31:11 intrepid /netbsd: raid0: Components: /dev/wd0a /dev/wd2a
May  8 17:31:11 intrepid /netbsd: raid0: Total Sectors: 976772992 (476939 MB)
May  8 17:31:11 intrepid /netbsd: raid0: configured ok
May  8 17:31:11 intrepid /netbsd: boot device: raid0
May  8 17:31:11 intrepid /netbsd: root on raid0a dumps on raid0b
May  8 17:31:11 intrepid /netbsd: mountroot: trying ffs...
May  8 17:31:11 intrepid /netbsd: root file system type: ffs
May  8 17:31:11 intrepid /netbsd: init: copying out path `/sbin/init' 11
May  8 17:31:11 intrepid /netbsd: mskc0: interrupt moderation is 1000 us
May  8 17:31:11 intrepid /netbsd: mskc1: interrupt moderation is 1000 us
May  8 17:31:11 intrepid ntpdate[131]: can't find host clepsydra.dec.com 
May  8 17:31:11 intrepid ntpdate[131]: can't find host clock.via.net 
May  8 17:31:11 intrepid ntpdate[131]: can't find host ntp.san.rr.com 
May  8 17:31:11 intrepid ntpdate[131]: no servers can be used, exiting
May  8 17:31:12 intrepid named[152]: starting BIND 9.4.1-P1 -u named -t 
/var/chroot/named
May  8 17:31:12 intrepid named[152]: found 2 CPUs, using 2 worker threads
May  8 17:31:12 intrepid named[152]: loading configuration from 
'/etc/named.conf'
May  8 17:31:12 intrepid named[152]: listening on IPv4 interface msk0, 
192.168.0.1#53
May  8 17:31:12 intrepid named[152]: listening on IPv4 interface msk1, 
192.168.1.1#53
May  8 17:31:12 intrepid named[152]: listening on IPv4 interface ex0, 
75.80.183.211#53
May  8 17:31:12 intrepid named[152]: listening on IPv4 interface lo0, 
127.0.0.1#53
May  8 17:31:12 intrepid named[152]: automatic empty zone: 127.IN-ADDR.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: 254.169.IN-ADDR.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: 2.0.192.IN-ADDR.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: 
255.255.255.255.IN-ADDR.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: 
0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: 
1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: D.F.IP6.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: 8.E.F.IP6.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: 9.E.F.IP6.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: A.E.F.IP6.ARPA
May  8 17:31:12 intrepid named[152]: automatic empty zone: B.E.F.IP6.ARPA
May  8 17:31:12 intrepid named[152]: none:0: open: /etc/rndc.key: file not found
May  8 17:31:12 intrepid named[152]: couldn't add command channel 
127.0.0.1#953: file not found
May  8 17:31:12 intrepid named[152]: db.127:3: no TTL specified; using SOA 
MINTTL instead
May  8 17:31:12 intrepid named[152]: zone 0.0.127.IN-ADDR.ARPA/IN: loaded 
serial 1999120100
May  8 17:31:12 intrepid named[152]: db.192.168.0:1: no TTL specified; using 
SOA MINTTL instead
May  8 17:31:12 intrepid named[152]: zone 0.168.192.in-addr.arpa/IN: loaded 
serial 2007120102
May  8 17:31:12 intrepid named[152]: db.192.168.1:1: no TTL specified; using 
SOA MINTTL instead
May  8 17:31:12 intrepid named[152]: zone 1.168.192.in-addr.arpa/IN: loaded 
serial 2008012802
May  8 17:31:12 intrepid named[152]: db.ellis:1: no TTL specified; using SOA 
MINTTL instead
May  8 17:31:12 intrepid named[152]: zone ellis.warped.com/IN: loaded serial 
2008012802
May  8 17:31:12 intrepid named[152]: running
May  8 17:31:13 intrepid dhcpd: Wrote 0 deleted host decls to leases file.
May  8 17:31:13 intrepid dhcpd: Wrote 0 new dynamic host decls to leases file.
May  8 17:31:13 intrepid dhcpd: Wrote 27 leases to leases file.
May  8 17:31:16 intrepid /netbsd: pid 292 (smbd), uid 0: exited on signal 11 
(core dumped)
May  8 17:31:16 intrepid /netbsd: pid 303 (nmbd), uid 0: exited on signal 11 
(core dumped)
May  8 17:31:16 intrepid clamd[308]: clamd daemon 0.93rc1 (OS: netbsd4.99.54, 
ARCH: x86_64, CPU: x86_64) 
May  8 17:31:16 intrepid clamd[308]: Log file size limited to 1048576 bytes. 
May  8 17:31:16 intrepid clamd[308]: Reading databases from 
/usr/local/etc/clamav 
May  8 17:31:16 intrepid clamd[308]: Not loading PUA signatures. 
May  8 17:31:25 intrepid clamd[308]: Loaded 280470 signatures. 
May  8 17:31:25 intrepid clamd[308]: LOCAL: Unix socket file 
/var/run/clamd.socket 
May  8 17:31:25 intrepid clamd[308]: LOCAL: Setting connection queue length to 
15 
May  8 17:31:25 intrepid clamd[594]: Limits: Global size limit set to 104857600 
bytes. 
May  8 17:31:25 intrepid clamd[594]: Limits: File size limit set to 26214400 
bytes. 
May  8 17:31:25 intrepid clamd[594]: Limits: Recursion level limit set to 16. 
May  8 17:31:25 intrepid clamd[594]: Limits: Files limit set to 10000. 
May  8 17:31:25 intrepid clamd[594]: Archive support enabled. 
May  8 17:31:25 intrepid clamd[594]: Algorithmic detection enabled. 
May  8 17:31:25 intrepid clamd[594]: Portable Executable support enabled. 
May  8 17:31:25 intrepid clamd[594]: ELF support enabled. 
May  8 17:31:25 intrepid clamd[594]: Mail files support enabled. 
May  8 17:31:25 intrepid clamd[594]: OLE2 support enabled. 
May  8 17:31:25 intrepid clamd[594]: PDF support disabled. 
May  8 17:31:25 intrepid clamd[594]: HTML support enabled. 
May  8 17:31:25 intrepid clamd[594]: Self checking every 1800 seconds. 
May  8 17:31:25 intrepid clamd[594]: Set stacksize to 2162688 
May  8 17:31:28 intrepid selcd: Serial port open
May  8 17:31:28 intrepid ntpd[690]: ntpd 4.2.4p2-o Mon Feb 11 18:06:05 GMT 2008 
(1)
May  8 17:31:28 intrepid ntpd[499]: precision = 0.628 usec
May  8 17:31:28 intrepid ntpd[499]: Listening on interface #0 wildcard, 
0.0.0.0#123 Disabled
May  8 17:31:28 intrepid ntpd[499]: Listening on interface #1 msk0, 
192.168.0.1#123 Enabled
May  8 17:31:28 intrepid ntpd[499]: Listening on interface #2 msk1, 
192.168.1.1#123 Enabled
May  8 17:31:28 intrepid ntpd[499]: Listening on interface #3 ex0, 
75.80.183.211#123 Enabled
May  8 17:31:28 intrepid ntpd[499]: Listening on interface #4 lo0, 
127.0.0.1#123 Enabled
May  8 17:31:28 intrepid ntpd[499]: Listening on routing socket on fd #25 for 
interface updates
May  8 17:31:28 intrepid ntpd[499]: kernel time sync status 2040
May  8 17:31:28 intrepid ntpd[499]: frequency initialized 24.029 PPM from 
/var/db/ntp.drift
May  8 17:31:29 intrepid ntpd[499]: running in unprivileged mode disables 
dynamic interface tracking
May  8 17:31:33 intrepid selcd: Starting display
May  8 17:32:54 intrepid ftp-proxy[429]: accepted connection from 
192.168.0.2:50064 to 192.168.0.1:21
May  8 17:34:43 intrepid ntpd[499]: time reset +0.697485 s
May  8 17:34:43 intrepid ntpd[499]: kernel time sync status change 2001
May  8 17:43:45 intrepid syslogd: restart
May  8 17:43:45 intrepid /netbsd: panic: LOCKDEBUG
May  8 17:43:45 intrepid /netbsd: syncing disks... ex0: uplistptr was 0
# Intrepid.warped.com
# ScottE 
#
# 09/12/04 - Initial version
# 11/19/04 - Removed ppbus, added COMPAT_BSDPTY, hard-coded root/dump
# 09/30/05 - Added ptyfs, tmpfs, ufsdirhash, vndcompresse.  
#            Removed nfsserver, sequencer, firewire, compat netbsd32
# 02/25/06 - Added ucycom, removed count from vnd and bpfilter
#            Added amdpm (experimental), added UDF
# 02/26/06 - Removed amdpm (not for K8VSE)
#            Removed ucycom (doesn't support 300 baud!)
#            Added uplcom
# 06/06/06 - Added Promise IDE controller (pdcide, pdcsata)
# 06/06/06 - Added "-O2 -march=k8" make options (GCC4 only, O3 causes a warning)
# 06/06/06 - Added RAIDFrame support, removed most commented items (not ppbus)
# 06/07/06 - Experiment with removing MPACPI_SCANPCI and PCI_INTR_FIXUP
# 06/07/06 - Removed pdcide, as only pdcsata is used
# 06/07/06 - Add LFS, remove twe and ld (Hardware RAID), add root on *
# 06/07/06 - Removed vlan support
# 06/08/06 - Changed RAIDFrame units to 2
# 07/09/06 - Removed MPACPI, adapted for FVDL ACPI changes on 7/3/06
# 07/09/06 - Removed LFS, commented out PRIOSCAN strategy, added lm0
# 07/12/06 - Removed UFS_DIRHASH due to comments about memory corruption
# 07/17/06 - Removed ulpt to prevent me from trying it! (Cause panic)
# 07/19/06 - Re-add UFS_DIRHASH, since it wasn't the culprit
# 08/06/06 - Added POWERNOW_K8
# 08/17/06 - Removed IPFilter, changed to PF
# 10/17/06 - Removed ACPI_SCANPCI, added PCI_INTR_FIXUP
# 11/13/06 - Added LFS
# 12/21/06 - Removed LFS (buggy), added PAX_ options
# 12/26/06 - Added Veriexec and Fileassoc (needed for PaX also)
# 02/21/07 - Added swwdog
# 04/02/07 - Added aiboost, updated uhub, added amdpcib/hpet/aapic
# 04/02/07 - Removed aiboost, amdpcib/hpet/aapic
# 05/06/07 - Added COMPAT_LINUX
# 05/10/07 - Added COMPAT_NETBSD32, COMPAT_LINUX32, EXEC_ELF32, removed COMPAT30
# 05/21/07 - Commented out VERIEXEC_ and the psuedo-device to work around crash
# 06/03/07 - Added COMPAT_40, removed COMPAT_30
# 06/29/07 - Re-added VERIEXEC_ and psuedo-device due to source fix
# 06/29/07 - Commented COMPAT_ items, since they aren't needed.  Removed LFS.
# 07/07/07 - Re-commented VERIEXEC_ and psuedo-device to check for pool prob.
# 07/14/07 - Re-added COMPAT_40 to catch mount() changes on install
# 09/24/07 - Removed PCI_INTR_FIXUP
# 10/11/07 - Modified devices for new Motherboard+CPU
# 10/13/07 - Added ucycom for internal Serial, made isa0 into isa*
# 10/15/07 - Removed PUFFS so DEBUG would build, added swwdog back, removed -O2
# 10/15/07 - Removed makeoptions for debugging, added SCHED_M2
# 10/19/07 - Removed ucycom (weird behavior)
# 10/25/07 - Re-added -O2 optimization, BUFQ_PRIOCSCAN
# 11/16/07 - Commented out SCHED_M2 for vmlocking test
# 11/21/07 - Added options CORETEMP for Core2 thermal diode
# 12/02/07 - Removed ulpt since the printer is on the printserver
# 01/24/08 - Re-added SCHED_M2, Added PAX_ASLR
# 05/08/08 - Removed MULTIPROCESSOR, as it's standard now, commented out jmide
#

include         "arch/amd64/conf/std.amd64"

makeoptions     COPTS="-O2 -march=nocona"

maxusers        16              # estimated number of users

# Standard system options
options         RTC_OFFSET=0    # hardware clock is this many mins. west of GMT
options         NTP             # NTP phase/frequency locked loop

options         KTRACE          # system call tracing via ktrace(1)
options         SYSTRACE        # system call vetting via systrace(1)

options         SYSVMSG         # System V-like message queues
options         SYSVSEM         # System V-like semaphores
options         SYSVSHM         # System V-like memory sharing
options         P1003_1B_SEMAPHORE      # p1003.1b semaphore support

# Compatibility options
#options         COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
options         COMPAT_40
#options        COMPAT_LINUX
#options        COMPAT_NETBSD32
#options        COMPAT_LINUX32  # req. COMPAT_LINUX and COMPAT_NETBSD32
#options        EXEC_ELF32

# Scheduler options
no options      SCHED_4BSD
options         SCHED_M2

# File systems
file-system     FFS             # UFS
file-system     MFS             # memory file system
file-system     CD9660          # ISO 9660 + Rock Ridge file system
file-system     MSDOSFS         # MS-DOS file system
file-system     PTYFS           # /dev/pts/N support
file-system     TMPFS           # experimental - Efficient memory file-system
file-system     UDF             # experimental - OSTA UDF CD/DVD file-system
#file-system    PUFFS           # experimental - Userspace file system support

#file-system    PROCFS          # /proc

# File system options
options         SOFTDEP         # FFS soft updates support.
options         UFS_DIRHASH     # UFS Large Directory Hashing - Experimental

# BufQ Strategy
options         BUFQ_PRIOCSCAN  # BufQ PRIOCSCAN

# Networking options
options         GATEWAY         # packet forwarding
options         INET            # IP + ICMP + TCP + UDP
options         PFIL_HOOKS      # pfil(9) packet filter hooks

# Debug options
options         DUMP_ON_PANIC=0 # Don't write a kernel dump on panic

# Intel Enhanced Speedstep for EM64T CPUs
options         ENHANCED_SPEEDSTEP
options         EST_FREQ_USERWRITE      # any user can set frequency

# Intel Core's on-die Thermal sensor
options         INTEL_CORETEMP

# Security options
options         PAX_MPROTECT=1
options         PAX_SEGVGUARD=0
options         PAX_ASLR=1      # PaX Address Space Layout Randomization
options         FILEASSOC       # fileassoc(9) - required for Veriexec
#options        VERIFIED_EXEC_FP_SHA256

# Kernel root file system and dump configuration.
config          netbsd  root on ? type ?

#
# Device configuration
#

mainbus0 at root

cpu*            at mainbus?
ioapic*         at mainbus? apid ?

# Basic Bus Support

# Advanced Control and Power Interface
acpi0           at mainbus0

# ACPI devices
acpibut*        at acpi?                # ACPI Button

# Mainboard devices
com*            at acpi?                # Serial communications interface
fdc*            at acpi?                # Floppy disk controller
pckbc*          at acpi?                # PC keyboard controller
attimer*        at acpi?                # AT Timer
pcppi*          at acpi?                # AT-style speaker sound
aiboost*        at acpi?                # ASUS AI Booster Hardware monitor
hpet*           at acpi?                # High Precision Event Timer

# PCI bus support
pci*    at mainbus? bus ?
pci*    at ppb? bus ?

# PCI bridges
pchb*   at pci? dev ? function ?        # PCI-Host bridges
pcib*   at pci? dev ? function ?        # PCI-ISA bridges
ppb*    at pci? dev ? function ?        # PCI-PCI bridges

ichlpcib* at pci? dev ? function ?      # Intel ICH PCI-ISA w/ timecounter,
                                        # watchdog and Speedstep support.

# ISA bus support
isa*    at pcib?
isa*    at mainbus?
isa*    at ichlpcib?

sysbeep0        at pcppi?

# Intel ICH SMBus controller
ichsmb* at pci? dev ? function ?
iic*    at ichsmb?

# Serial Presence Detect capable memory modules
spdmem* at iic? addr 0x50
spdmem* at iic? addr 0x51
spdmem* at iic? addr 0x52
spdmem* at iic? addr 0x53

# SCSI Controllers and Devices
# SCSI bus support
scsibus* at scsi?

# SCSI devices
sd*     at scsibus? target ? lun ?      # SCSI disk drives
cd*     at scsibus? target ? lun ?      # SCSI CD-ROM drives

# IDE and related devices
ahcisata*       at pci? dev ? function ?        # AHCI SATA controllers
#jmide*                 at pci? dev ? function ?        # JMicron PCI-e 
PATA/SATA controllers
#ahcisata*      at jmide?
piixide*        at pci? dev ? function ?        # Intel IDE controllers 

# ATA (IDE) bus support
atabus* at ata?

# IDE drives
wd*     at atabus? drive ? flags 0x0000

# ATAPI bus support
atapibus* at atapi?

# ATAPI devices
# flags have the same meaning as for IDE drives.
cd*     at atapibus? drive ? flags 0x0000       # ATAPI CD-ROM drives
sd*     at atapibus? drive ? flags 0x0000       # ATAPI disk drives

# Miscellaneous mass storage devices

# ISA floppy
fd*     at fdc? drive ?                 # the drives themselves

# Network Interfaces
# PCI network interfaces
ex*     at pci? dev ? function ?        # 3Com 90x[BC]
mskc*   at pci? dev ? function ?        # Marvell Yukon 2 Gigabit Ethernet
msk*    at mskc?                        # Marvell Yukon 2 Gigabit Ethernet

# MII/PHY support
exphy*  at mii? phy ?                   # 3Com internal PHYs
makphy* at mii? phy ?                   # Marvell Semiconductor 88E1000 PHYs

# PCI USB controllers
ehci*   at pci? dev ? function ?        # Enhanced Host Controller
uhci*   at pci? dev ? function ?        # Universal Host Controller (Intel)

# USB bus support
usb*    at ehci?
usb*    at uhci?

# USB Hubs
uhub*   at usb?
uhub*   at uhub? port ?

# USB HID device
uhidev* at uhub? port ? configuration ? interface ?

# USB Generic HID devices
uhid*   at uhidev? reportid ?

# USB serial adpater
uplcom* at uhub? port ?         # I/O DATA USB-RSAQ2 serial adapter
ucom*   at uplcom? portno ?

# USB Mass Storage
umass*  at uhub? port ? configuration ? interface ?
scsibus* at umass?
wd*     at umass?

# D-Link DSB-R100 USB radio
udsbr*  at uhub? port ?
radio*  at udsbr?

# USB Generic driver
ugen*   at uhub? port ?

# Audio Devices
# PCI audio devices
azalia* at pci? dev ? function ?        # High Definition Audio

# Audio support
audio*  at audiobus?

# Pseudo-Devices
# disk/mass storage pseudo-devices
pseudo-device   raid            2       # RAIDframe disk driver
options         RAID_AUTOCONFIG         # auto-configuration of RAID components
pseudo-device   vnd                     # disk-like interface to files
options         VND_COMPRESSION         # compressed vnd(4)
pseudo-device   fss             4       # file system snapshot device

# network pseudo-devices
pseudo-device   bpfilter                # Berkeley packet filter
pseudo-device   loop                    # network loopback
pseudo-device   pf                      # PF packet filter
pseudo-device   pflog                   # PF log if

# miscellaneous pseudo-devices
pseudo-device   pty                     # pseudo-terminals
pseudo-device   rnd                     # /dev/random and in-kernel generator
pseudo-device   clockctl                # user control of clock subsystem
pseudo-device   ksyms                   # /dev/ksyms

# a pseudo device needed for veriexec
#pseudo-device  veriexec        1

# software watchdog driver - swwdog(4)
pseudo-device   swwdog



Home | Main Index | Thread Index | Old Index