DaemonForums  

Go Back   DaemonForums > OpenBSD > OpenBSD Installation and Upgrading

OpenBSD Installation and Upgrading Installing and upgrading OpenBSD.

Reply
 
Thread Tools Display Modes
Old 8th March 2016
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,983
Default

No significant change - only USB 3.0 has been discovered and attached.

I looked through the OpenBSD mailing list archives and the public dmesg database maintained at nycbug.org, and do not see any dmesgs posted with the same "F11" August 2015 American Megatrends BIOS.

If you post this dmesg to the misc@ mailing list with your symptoms and the make/model of the system or motherboard , it is possible that someone has the same hardware, if not the same exact BIOS, and may be able to provide further guidance.
Reply With Quote
Old 8th March 2016
J65nko J65nko is offline
Administrator
 
Join Date: May 2008
Location: Budel - the Netherlands
Posts: 4,131
Default

What is the output of # usbdevs -dv?
__________________
You don't need to be a genius to debug a pf.conf firewall ruleset, you just need the guts to run tcpdump
Reply With Quote
Old 9th March 2016
betweendayandnight betweendayandnight is offline
friendly
 
Join Date: Jul 2015
Posts: 67
Default

Quote:
Originally Posted by J65nko View Post
What is the output of # usbdevs -dv?
During the installation of the OS or post-installation?

Anyway below's the output, post-installation, of #usbdevs -dv:

Code:
Controller /dev/usb0:
addr 1: super speed, self powered, config 1, xHCI root hub(0x0000), Intel(0x8086), rev 1.00
  uhub0
 port 1 disabled
 port 2 disabled
 port 3 disabled
 port 4 disabled
 port 5 addr 2: low speed, power 100 mA, config 1, USB Optical Mouse(0xc05a), Logitech(0x046d), rev 63.00
   uhidev0
 port 6 addr 3: low speed, power 90 mA, config 1, USB Keyboard(0xc31d), Logitech(0x046d), rev 66.01
   uhidev1
   uhidev2
 port 7 disabled
 port 8 disabled
 port 9 disabled
 port 10 disabled
 port 11 disabled
 port 12 disabled
 port 13 disabled
 port 14 disabled
 port 15 disabled
 port 16 disabled
addr 4: super speed, power 224 mA, config 1, DT HyperX 3.0(0x162b), Kingston(0x0951), rev 1.10, iSerialNumber 9E3A65D6BF250D10C1D20035
  umass0
Reply With Quote
Old 9th March 2016
J65nko J65nko is offline
Administrator
 
Join Date: May 2008
Location: Budel - the Netherlands
Posts: 4,131
Default

That output shows that you have a single USB 3.0 (superspeed) controller chip, or that OpenBSD only recognizes that one.

Your mouse (port 5 addr2) and keyboard (port6 addr 3) are USB 1.x devices (low speed) . Your Kingston USB stick is USB 3.0 (superspeed).

On my older amd64 box I only have USB 2.0 (high speed) and USB 1.x (low/full speed):
Code:
$ usbdevs -dv

Controller /dev/usb0:
addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), VIA(0x1106), rev 1.00
  uhub0
 port 1 powered
 port 2 powered
 port 3 powered
 port 4 powered
 port 5 addr 2: high speed, power 100 mA, config 1, DataTraveler 2.0(0x1665), Kingston(0x0951), rev 1.00, iSerialNumber C86000BDBE4EFD710A1A241E
   umass0
 port 6 powered
 port 7 powered
 port 8 powered

[snip]

$ usbdevs -dv | grep speed

addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), VIA(0x1106), rev 1.00
 port 5 addr 2: high speed, power 100 mA, config 1, DataTraveler 2.0(0x1665), Kingston(0x0951), rev 1.00, iSerialNumber C86000BDBE4EFD710A1A241E
addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x1106), rev 1.00
addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x1106), rev 1.00
addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x1106), rev 1.00
addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x1106), rev 1.00
 port 1 addr 2: low speed, power 100 mA, config 1, USB Optical Mouse(0xa100), Darfon(0x0d62), rev 3.00
__________________
You don't need to be a genius to debug a pf.conf firewall ruleset, you just need the guts to run tcpdump
Reply With Quote
Old 9th March 2016
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,983
Default

Per the dmesg files betweendayandnight attached and the follow-on discussion, the kernel probe only discovered a single USB 3.0 controller. The dmesg does not report any unrecognised hardware components, and the only device without a kernel driver ("not configured") is the Intel MEI.
Reply With Quote
Old 9th March 2016
betweendayandnight betweendayandnight is offline
friendly
 
Join Date: Jul 2015
Posts: 67
Default

Quote:
Originally Posted by J65nko View Post
That output shows that you have a single USB 3.0 (superspeed) controller chip, or that OpenBSD only recognizes that one.
Am I right to assume that the single USB 3.0 (superspeed) controller chip is backward compatible with USB 1.xx and USB 2.0 devices?
Reply With Quote
Old 9th March 2016
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,983
Default

It's not what I would expect in a dmesg, which is why I recommended:
  1. Checking BIOS settings - you reported an attempt above.
  2. Making an informal problem report to the OpenBSD misc@ mailing list, describing your hardware, posting your dmesg, showing the USB disconnects.
The latter may help because:
  • It is a much larger audience -- there are 4600+ subscribers at the moment.
  • Someone may have the same hardware, and have guidance for you.
  • About half of the developers follow that list.
http://www.openbsd.org/mail.html
Reply With Quote
Old 9th March 2016
J65nko J65nko is offline
Administrator
 
Join Date: May 2008
Location: Budel - the Netherlands
Posts: 4,131
Default

Quote:
Originally Posted by betweendayandnight View Post
Am I right to assume that the single USB 3.0 (superspeed) controller chip is backward compatible with USB 1.xx and USB 2.0 devices?
Yes, it is supposed to be backward compatible. That is why your USB 1.xx gear like USB mouse and USB keyboard is listed in that usbdevs -dv output.

Also see the man page of the xhci driver: xhci(4)
__________________
You don't need to be a genius to debug a pf.conf firewall ruleset, you just need the guts to run tcpdump
Reply With Quote
Old 9th March 2016
betweendayandnight betweendayandnight is offline
friendly
 
Join Date: Jul 2015
Posts: 67
Default

I have a further question.

Suppose I boot into the RAMDISK kernel and reach the stage where the following message appears:

Code:
(I)nstall, (U)pgrade, (A)utoinstall or (S)hell?
I type s to get a shell prompt.

As an example I do the following stuff like:

Code:
#cd /dev
#sh MAKEDEV sd1
#mount /dev/sd1i /mnt
#dmesg > /mnt/my.dmesg
#umount
How do I get back to

Code:
(I)nstall, (U)pgrade, (A)utoinstall or (S)hell?
so that I can type i for (I)nstall to proceed with the OS installation?
Reply With Quote
Old 9th March 2016
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,983
Default

# exit

Or

# install

Either will work.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
/var/log disappeared after upgrade acampbell OpenBSD Installation and Upgrading 6 25th November 2015 09:14 AM
External USB Drive suddenly Read only kerasi OpenBSD General 8 17th March 2015 01:12 PM
suddenly no applications reach internet, but ping does so. spermwhale_warrior OpenBSD Packages and Ports 8 20th July 2014 10:26 PM
soud suddenly stopped working Brainfsck NetBSD General 0 25th August 2011 07:00 PM
Power Supply Fan Suddenly Stopped IdOp General Hardware 16 26th June 2010 08:36 PM


All times are GMT. The time now is 06:31 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content copyright © 2007-2010, the authors
Daemon image copyright ©1988, Marshall Kirk McKusick