On Tue, Jan 21, 2014 at 03:52:23PM +1100, Rod Whitworth wrote:

> I had a short run-up of the first 5.5 i386 snap install and it
> looked pretty much as expected but a more recent one showed up and I
> grabbed it and loaded it onto my little Shuttle.
> 
> The dmesg is below but I'll make some observations first.
> 
> Unlike the earlier snap the screen does not get entirely covered
> when the boot reaches the point where it changes to the higher
> resolution. It now is 33 lines by 83 columns with a great lump of
> black screen below.
> 
> I haven't gone hunting for all the nitty-gritty of the new time
> keeping but I did a bit of playing with date -r to see what
> wonderful years we have ahead of us. 8-)
> 
> I'm not sure that giving date -r 65555555555555599 is likely to ever
> be used but it works.
> Sadly it coredumps somewhere above that number. I'm not sure where
> exactly but if you change the leading 6 to a 7 it crashes..
> 
> I feel that date should spit out an error message rather than crash
> even if it only happens when some idiot plays with the numbers.

Right. what happens is that localtime(3) returns NULL, because the
year is not representable as an int. struct tm.tm_year must be an int
according to posix. 

The diff below catches the case. But it does not solve that 64-bit
time_t can represent years that do not fit into the int sized tm_year. 

And there's probably a lot of code that does not check the return
value of localtime(). I see that our man pages lacks to mention that
it can return NULL. 

        -Otto

Index: date.c
===================================================================
RCS file: /cvs/src/bin/date/date.c,v
retrieving revision 1.42
diff -u -p -r1.42 date.c
--- date.c      5 Jan 2014 05:27:44 -0000       1.42
+++ date.c      21 Jan 2014 07:29:10 -0000
@@ -60,6 +60,7 @@ int
 main(int argc, char *argv[])
 {
        struct timezone tz;
+       struct tm *tp;
        int ch, rflag;
        char *format, buf[1024], *outzone = NULL;
 
@@ -139,7 +140,10 @@ main(int argc, char *argv[])
        if (outzone)
                setenv("TZ", outzone, 1);
 
-       (void)strftime(buf, sizeof(buf), format, localtime(&tval));
+       tp = localtime(&tval);
+       if (tp == NULL)
+               errx(1, "conversion error");
+       (void)strftime(buf, sizeof(buf), format, tp);
        (void)printf("%s\n", buf);
        exit(0);
 }

> 
> DMESG:
> OpenBSD 5.5-beta (GENERIC.MP) #219: Fri Jan 17 16:08:39 MST 2014
> t...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC.MP
> cpu0: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel"
> 686-class) 1.80 GHz
> cpu0: 
> FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF,PERF
> real mem  = 2137223168 (2038MB)
> avail mem = 2090397696 (1993MB)
> mainbus0 at root
> bios0 at mainbus0: AT/286+ BIOS, date 06/23/11, BIOS32 rev. 0 @
> 0xf0010, SMBIOS rev. 2.6 @ 0xfc8b0 (23 entries)
> bios0: vendor American Megatrends Inc. version "080015" date
> 06/23/2011
> bios0: Standard XS35
> acpi0 at bios0: rev 2
> acpi0: sleep states S0 S3 S4 S5
> acpi0: tables DSDT FACP APIC MCFG SLIC OEMB HPET GSCI
> acpi0: wakeup devices P0P1(S4) AZAL(S3) P0P4(S4) P0P5(S4) JLAN(S3)
> P0P6(S4) P0P7(S4) P0P8(S4) P0P9(S4) USB0(S3) USB1(S3) USB2(S3)
> USB3(S3) EUSB(S3)
> acpitimer0 at acpi0: 3579545 Hz, 24 bits
> acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
> cpu0 at mainbus0: apid 0 (boot processor)
> mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
> cpu0: apic clock running at 199MHz
> cpu0: mwait min=64, max=64, C-substates=0.1.0.0.0, IBE
> cpu1 at mainbus0: apid 2 (application processor)
> cpu1: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel"
> 686-class) 1.84 GHz
> cpu1: 
> FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF,PERF
> cpu2 at mainbus0: apid 1 (application processor)
> cpu2: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel"
> 686-class) 1.87 GHz
> cpu2: 
> FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF,PERF
> cpu3 at mainbus0: apid 3 (application processor)
> cpu3: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel"
> 686-class) 1.84 GHz
> cpu3: 
> FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF,PERF
> ioapic0 at mainbus0: apid 4 pa 0xfec00000, version 20, 24 pins
> ioapic0: misconfigured as apic 3, remapped to apid 4
> acpimcfg0 at acpi0 addr 0xe0000000, bus 0-255
> acpihpet0 at acpi0: 14318179 Hz
> acpiprt0 at acpi0: bus 0 (PCI0)
> acpiprt1 at acpi0: bus 3 (P0P1)
> acpiprt2 at acpi0: bus 1 (P0P4)
> acpiprt3 at acpi0: bus 2 (P0P5)
> acpiprt4 at acpi0: bus -1 (P0P6)
> acpiprt5 at acpi0: bus -1 (P0P7)
> acpiprt6 at acpi0: bus -1 (P0P8)
> acpiprt7 at acpi0: bus -1 (P0P9)
> acpiec0 at acpi0
> acpicpu0 at acpi0
> acpicpu1 at acpi0
> acpicpu2 at acpi0
> acpicpu3 at acpi0
> acpitz0 at acpi0: critical temperature is 104 degC
> acpibtn0 at acpi0: SLPB
> acpibtn1 at acpi0: PWRB
> acpivideo0 at acpi0: GFX0
> acpivout0 at acpivideo0: LCD_
> bios0: ROM list: 0xc0000/0xda00! 0xce000/0x1800! 0xcf800/0x1000
> pci0 at mainbus0 bus 0: configuration mode 1 (bios)
> 0:31:2: mem address conflict 0xfc00/0x400
> pchb0 at pci0 dev 0 function 0 "Intel Pineview DMI" rev 0x02
> vga1 at pci0 dev 2 function 0 "Intel Pineview Video" rev 0x02
> intagp0 at vga1
> agp0 at intagp0: aperture at 0xd0000000, size 0x10000000
> inteldrm0 at vga1
> drm0 at inteldrm0
> inteldrm0: 1024x768
> wsdisplay0 at vga1 mux 1: console (std, vt100 emulation)
> wsdisplay0: screen 1-5 added (std, vt100 emulation)
> "Intel Pineview Video" rev 0x02 at pci0 dev 2 function 1 not
> configured
> azalia0 at pci0 dev 27 function 0 "Intel 82801GB HD Audio" rev 0x02:
> msi
> azalia0: codecs: IDT 92HD81B1X
> audio0 at azalia0
> ppb0 at pci0 dev 28 function 0 "Intel 82801GB PCIE" rev 0x02: apic 4
> int 16
> pci1 at ppb0 bus 1
> ppb1 at pci0 dev 28 function 1 "Intel 82801GB PCIE" rev 0x02: apic 4
> int 17
> pci2 at ppb1 bus 2
> "JMicron SD/MMC" rev 0x80 at pci2 dev 0 function 0 not configured
> sdhc0 at pci2 dev 0 function 2 "JMicron SD Host Controller" rev
> 0x80: apic 4 int 18
> sdmmc0 at sdhc0
> "JMicron Memory Stick" rev 0x80 at pci2 dev 0 function 3 not
> configured
> jme0 at pci2 dev 0 function 5 "JMicron JMC250" rev 0x03: msi,
> address 80:ee:73:28:4b:69
> jmphy0 at jme0 phy 1: JMP211 10/100/1000 PHY, rev. 1
> uhci0 at pci0 dev 29 function 0 "Intel 82801GB USB" rev 0x02: apic 4
> int 23
> uhci1 at pci0 dev 29 function 1 "Intel 82801GB USB" rev 0x02: apic 4
> int 19
> uhci2 at pci0 dev 29 function 2 "Intel 82801GB USB" rev 0x02: apic 4
> int 18
> uhci3 at pci0 dev 29 function 3 "Intel 82801GB USB" rev 0x02: apic 4
> int 16
> ehci0 at pci0 dev 29 function 7 "Intel 82801GB USB" rev 0x02: apic 4
> int 23
> usb0 at ehci0: USB revision 2.0
> uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
> ppb2 at pci0 dev 30 function 0 "Intel 82801BAM Hub-to-PCI" rev 0xe2
> pci3 at ppb2 bus 3
> pcib0 at pci0 dev 31 function 0 "Intel NM10 LPC" rev 0x02
> pciide0 at pci0 dev 31 function 2 "Intel 82801GB SATA" rev 0x02:
> DMA, channel 0 configured to native-PCI, channel 1 configured to
> native-PCI
> pciide0: using apic 4 int 19 for native-PCI interrupt
> wd0 at pciide0 channel 0 drive 0: <WDC WD3200BEVT-00A23T0>
> wd0: 16-sector PIO, LBA48, 305245MB, 625142448 sectors
> wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 6
> atapiscsi0 at pciide0 channel 1 drive 0
> scsibus0 at atapiscsi0: 2 targets
> cd0 at scsibus0 targ 0 lun 0: <TSSTcorp, CDDVDW SN-208AB, TC00>
> ATAPI 5/cdrom removable
> cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 5
> ichiic0 at pci0 dev 31 function 3 "Intel 82801GB SMBus" rev 0x02:
> apic 4 int 19
> iic0 at ichiic0
> spdmem0 at iic0 addr 0x50: 2GB DDR3 SDRAM PC3-12800 SO-DIMM
> usb1 at uhci0: USB revision 1.0
> uhub1 at usb1 "Intel UHCI root hub" rev 1.00/1.00 addr 1
> usb2 at uhci1: USB revision 1.0
> uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1
> usb3 at uhci2: USB revision 1.0
> uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1
> usb4 at uhci3: USB revision 1.0
> uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1
> isa0 at pcib0
> isadma0 at isa0
> pckbc0 at isa0 port 0x60/5
> pckbd0 at pckbc0 (kbd slot)
> pckbc0: using irq 1 for kbd slot
> wskbd0 at pckbd0: console keyboard, using wsdisplay0
> pcppi0 at isa0 port 0x61
> spkr0 at pcppi0
> npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
> uhidev0 at uhub3 port 1 configuration 1 interface 0 "vendor 0x0b38
> product 0x0010" rev 1.10/1.02 addr 2
> uhidev0: iclass 3/1
> ukbd0 at uhidev0: 8 variable keys, 6 key codes
> wskbd1 at ukbd0 mux 1
> wskbd1: connecting to wsdisplay0
> uhidev1 at uhub3 port 1 configuration 1 interface 1 "vendor 0x0b38
> product 0x0010" rev 1.10/1.02 addr 2
> uhidev1: iclass 3/0, 2 report ids
> uhid0 at uhidev1 reportid 1: input=2, output=0, feature=0
> uhid1 at uhidev1 reportid 2: input=1, output=0, feature=0
> vscsi0 at root
> scsibus1 at vscsi0: 256 targets
> softraid0 at root
> scsibus2 at softraid0: 256 targets
> root on wd0a (ab32b213082ff7f4.a) swap on wd0b dump on wd0b
> syncing disks... done
> OpenBSD 5.5-beta (GENERIC.MP) #219: Fri Jan 17 16:08:39 MST 2014
> t...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC.MP
> cpu0: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel"
> 686-class) 1.80 GHz
> cpu0: 
> FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF,PERF
> real mem  = 2137223168 (2038MB)
> avail mem = 2090397696 (1993MB)
> mainbus0 at root
> bios0 at mainbus0: AT/286+ BIOS, date 06/23/11, BIOS32 rev. 0 @
> 0xf0010, SMBIOS rev. 2.6 @ 0xfc8b0 (23 entries)
> bios0: vendor American Megatrends Inc. version "080015" date
> 06/23/2011
> bios0: Standard XS35
> acpi0 at bios0: rev 2
> acpi0: sleep states S0 S3 S4 S5
> acpi0: tables DSDT FACP APIC MCFG SLIC OEMB HPET GSCI
> acpi0: wakeup devices P0P1(S4) AZAL(S3) P0P4(S4) P0P5(S4) JLAN(S3)
> P0P6(S4) P0P7(S4) P0P8(S4) P0P9(S4) USB0(S3) USB1(S3) USB2(S3)
> USB3(S3) EUSB(S3)
> acpitimer0 at acpi0: 3579545 Hz, 24 bits
> acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
> cpu0 at mainbus0: apid 0 (boot processor)
> mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
> cpu0: apic clock running at 199MHz
> cpu0: mwait min=64, max=64, C-substates=0.1.0.0.0, IBE
> cpu1 at mainbus0: apid 2 (application processor)
> cpu1: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel"
> 686-class) 1.80 GHz
> cpu1: 
> FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF,PERF
> cpu2 at mainbus0: apid 1 (application processor)
> cpu2: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel"
> 686-class) 1.80 GHz
> cpu2: 
> FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF,PERF
> cpu3 at mainbus0: apid 3 (application processor)
> cpu3: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel"
> 686-class) 1.80 GHz
> cpu3: 
> FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF,PERF
> ioapic0 at mainbus0: apid 4 pa 0xfec00000, version 20, 24 pins
> ioapic0: misconfigured as apic 3, remapped to apid 4
> acpimcfg0 at acpi0 addr 0xe0000000, bus 0-255
> acpihpet0 at acpi0: 14318179 Hz
> acpiprt0 at acpi0: bus 0 (PCI0)
> acpiprt1 at acpi0: bus 3 (P0P1)
> acpiprt2 at acpi0: bus 1 (P0P4)
> acpiprt3 at acpi0: bus 2 (P0P5)
> acpiprt4 at acpi0: bus -1 (P0P6)
> acpiprt5 at acpi0: bus -1 (P0P7)
> acpiprt6 at acpi0: bus -1 (P0P8)
> acpiprt7 at acpi0: bus -1 (P0P9)
> acpiec0 at acpi0
> acpicpu0 at acpi0
> acpicpu1 at acpi0
> acpicpu2 at acpi0
> acpicpu3 at acpi0
> acpitz0 at acpi0: critical temperature is 104 degC
> acpibtn0 at acpi0: SLPB
> acpibtn1 at acpi0: PWRB
> acpivideo0 at acpi0: GFX0
> acpivout0 at acpivideo0: LCD_
> bios0: ROM list: 0xc0000/0xda00! 0xce000/0x1800! 0xcf800/0x1000
> pci0 at mainbus0 bus 0: configuration mode 1 (bios)
> 0:31:2: mem address conflict 0xfc00/0x400
> pchb0 at pci0 dev 0 function 0 "Intel Pineview DMI" rev 0x02
> vga1 at pci0 dev 2 function 0 "Intel Pineview Video" rev 0x02
> intagp0 at vga1
> agp0 at intagp0: aperture at 0xd0000000, size 0x10000000
> inteldrm0 at vga1
> drm0 at inteldrm0
> inteldrm0: 1024x768
> wsdisplay0 at vga1 mux 1: console (std, vt100 emulation)
> wsdisplay0: screen 1-5 added (std, vt100 emulation)
> "Intel Pineview Video" rev 0x02 at pci0 dev 2 function 1 not
> configured
> azalia0 at pci0 dev 27 function 0 "Intel 82801GB HD Audio" rev 0x02:
> msi
> azalia0: codecs: IDT 92HD81B1X
> audio0 at azalia0
> ppb0 at pci0 dev 28 function 0 "Intel 82801GB PCIE" rev 0x02: apic 4
> int 16
> pci1 at ppb0 bus 1
> ppb1 at pci0 dev 28 function 1 "Intel 82801GB PCIE" rev 0x02: apic 4
> int 17
> pci2 at ppb1 bus 2
> "JMicron SD/MMC" rev 0x80 at pci2 dev 0 function 0 not configured
> sdhc0 at pci2 dev 0 function 2 "JMicron SD Host Controller" rev
> 0x80: apic 4 int 18
> sdmmc0 at sdhc0
> "JMicron Memory Stick" rev 0x80 at pci2 dev 0 function 3 not
> configured
> jme0 at pci2 dev 0 function 5 "JMicron JMC250" rev 0x03: msi,
> address 80:ee:73:28:4b:69
> jmphy0 at jme0 phy 1: JMP211 10/100/1000 PHY, rev. 1
> uhci0 at pci0 dev 29 function 0 "Intel 82801GB USB" rev 0x02: apic 4
> int 23
> uhci1 at pci0 dev 29 function 1 "Intel 82801GB USB" rev 0x02: apic 4
> int 19
> uhci2 at pci0 dev 29 function 2 "Intel 82801GB USB" rev 0x02: apic 4
> int 18
> uhci3 at pci0 dev 29 function 3 "Intel 82801GB USB" rev 0x02: apic 4
> int 16
> ehci0 at pci0 dev 29 function 7 "Intel 82801GB USB" rev 0x02: apic 4
> int 23
> usb0 at ehci0: USB revision 2.0
> uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
> ppb2 at pci0 dev 30 function 0 "Intel 82801BAM Hub-to-PCI" rev 0xe2
> pci3 at ppb2 bus 3
> pcib0 at pci0 dev 31 function 0 "Intel NM10 LPC" rev 0x02
> pciide0 at pci0 dev 31 function 2 "Intel 82801GB SATA" rev 0x02:
> DMA, channel 0 configured to native-PCI, channel 1 configured to
> native-PCI
> pciide0: using apic 4 int 19 for native-PCI interrupt
> wd0 at pciide0 channel 0 drive 0: <WDC WD3200BEVT-00A23T0>
> wd0: 16-sector PIO, LBA48, 305245MB, 625142448 sectors
> wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 6
> atapiscsi0 at pciide0 channel 1 drive 0
> scsibus0 at atapiscsi0: 2 targets
> cd0 at scsibus0 targ 0 lun 0: <TSSTcorp, CDDVDW SN-208AB, TC00>
> ATAPI 5/cdrom removable
> cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 5
> ichiic0 at pci0 dev 31 function 3 "Intel 82801GB SMBus" rev 0x02:
> apic 4 int 19
> iic0 at ichiic0
> spdmem0 at iic0 addr 0x50: 2GB DDR3 SDRAM PC3-12800 SO-DIMM
> usb1 at uhci0: USB revision 1.0
> uhub1 at usb1 "Intel UHCI root hub" rev 1.00/1.00 addr 1
> usb2 at uhci1: USB revision 1.0
> uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1
> usb3 at uhci2: USB revision 1.0
> uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1
> usb4 at uhci3: USB revision 1.0
> uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1
> isa0 at pcib0
> isadma0 at isa0
> pckbc0 at isa0 port 0x60/5
> pckbd0 at pckbc0 (kbd slot)
> pckbc0: using irq 1 for kbd slot
> wskbd0 at pckbd0: console keyboard, using wsdisplay0
> pcppi0 at isa0 port 0x61
> spkr0 at pcppi0
> npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
> uhidev0 at uhub2 port 2 configuration 1 interface 0 "PixArt USB
> Optical Mouse" rev 1.10/1.00 addr 2
> uhidev0: iclass 3/1
> ums0 at uhidev0: 3 buttons, Z dir
> wsmouse0 at ums0 mux 0
> uhidev1 at uhub3 port 1 configuration 1 interface 0 "vendor 0x0b38
> product 0x0010" rev 1.10/1.02 addr 2
> uhidev1: iclass 3/1
> ukbd0 at uhidev1: 8 variable keys, 6 key codes
> wskbd1 at ukbd0 mux 1
> wskbd1: connecting to wsdisplay0
> uhidev2 at uhub3 port 1 configuration 1 interface 1 "vendor 0x0b38
> product 0x0010" rev 1.10/1.02 addr 2
> uhidev2: iclass 3/0, 2 report ids
> uhid0 at uhidev2 reportid 1: input=2, output=0, feature=0
> uhid1 at uhidev2 reportid 2: input=1, output=0, feature=0
> vscsi0 at root
> scsibus1 at vscsi0: 256 targets
> softraid0 at root
> scsibus2 at softraid0: 256 targets
> root on wd0a (ab32b213082ff7f4.a) swap on wd0b dump on wd0b
> umass0 at uhub0 port 6 configuration 1 interface 0 "General USB
> Flash Disk" rev 2.00/11.00 addr 2
> umass0: using SCSI over Bulk-Only
> scsibus3 at umass0: 2 targets, initiator 0
> sd0 at scsibus3 targ 1 lun 0: <General, USB Flash Disk, 1100> SCSI2
> 0/direct removable serial.090c1000500000004193
> sd0: 30685MB, 512 bytes/sector, 62844672 sectors
> sd0 detached
> scsibus3 detached
> umass0 detached
> umass0 at uhub0 port 6 configuration 1 interface 0 "General USB
> Flash Disk" rev 2.00/11.00 addr 2
> umass0: using SCSI over Bulk-Only
> scsibus3 at umass0: 2 targets, initiator 0
> sd0 at scsibus3 targ 1 lun 0: <General, USB Flash Disk, 1100> SCSI2
> 0/direct removable serial.090c1000500000004193
> sd0: 30685MB, 512 bytes/sector, 62844672 sectors
> sd0 detached
> scsibus3 detached
> umass0 detached
> umass0 at uhub0 port 6 configuration 1 interface 0 "General USB
> Flash Disk" rev 2.00/11.00 addr 2
> umass0: using SCSI over Bulk-Only
> scsibus3 at umass0: 2 targets, initiator 0
> sd0 at scsibus3 targ 1 lun 0: <General, USB Flash Disk, 1100> SCSI2
> 0/direct removable serial.090c1000500000004193
> sd0: 30685MB, 512 bytes/sector, 62844672 sectors
> wsmouse0 detached
> ums0 detached
> uhidev0 detached
> uhidev0 at uhub2 port 2 configuration 1 interface 0 "PixArt USB
> Optical Mouse" rev 1.10/1.00 addr 2
> uhidev0: iclass 3/1
> ums0 at uhidev0: 3 buttons, Z dir
> wsmouse0 at ums0 mux 0
> <EOF>

Reply via email to