BSD Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOperating SystemsBSD Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old June 6th, 2002, 09:49 PM
0biwan 0biwan is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 2 0biwan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Unhappy OpenBSD 3.1 install hangs on 'makedev all'

[crossposted in desperation from BSDforums.org]

Guys,
I'm stuck and need some help. I received the OpenBSD 3.1 a couple days ago, and was going to install it on a box, but find myself banging my head against it. The box is a Compaq Presario 4160 (150 MHz Pentium, 128 MB RAM, 8 GB HD). Boots fine from CD, runs though install, finds NICs (an NE2000 found as dc0 and a 3Com 309, both PCI). However, after entering the timezone it hangs on making the devices. I disabled onboard sound, APM, VGA palette snoop, left PCI bus mastering on. The two NICs are the only cards. I boot bsd with -c and disable isapnp, pcibios, apm, usb, uhub. But all to no avail. It still hangs on the device make. It prints three dots and sits there.
If anyone has any suggestions, please let me know....
Thanks,
Frank

Reply With Quote
  #2  
Old June 7th, 2002, 08:54 AM
freebsd freebsd is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Posts: 5 freebsd User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
1) How big is your HD, 8GB or 2GB? Make sure it's a clean drive (low formatted)
2) Do not boot -c and disable things. Instead, disable things you don't need in CMOS setup
3) Do not disable pcibios

Better yet, just enter CMOS setup again and load the default settings then proceed to reinstall OpenBSD. You can toggle them one at a time at postinstall.

PS. Since you are installing from CD, therefore the NICs are not needed during initial install.

Reply With Quote
  #3  
Old June 7th, 2002, 01:21 PM
0biwan 0biwan is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 2 0biwan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
The drive is 8 GB (sorry, I posted the wrong size on the other board), and yes, the drive has been wiped clean.

Everything in CMOS is disabled, except for one serial port, the video, and the two NIC's. Stuff like sounds, apm, printer port, game port, etc are all disabled.

The pcibios thing was a recommendation by someone else. Didn't make a differen though Both FreeBSD and NetBSD can find and make all devices just fine, it's only OpenBSD that hangs .....

I have already tried to install it without any NIC's in it, didn't make a different. I'm at a loss... any other suggestions?

Frank

Reply With Quote
  #4  
Old June 7th, 2002, 03:45 PM
Werpon Werpon is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 3 Werpon User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 28 sec
Reputation Power: 0
Get another CD, maybe yours is scratched or has corrupt files.

I had a similar problem years ago, I downloaded it again and it worked.

Hope this helps...

Reply With Quote
  #5  
Old June 8th, 2002, 12:25 AM
freebsd freebsd is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Posts: 5 freebsd User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
>> Get another CD, maybe yours is scratched or has corrupt files

makedev probably has nothing to do with the CD itself, likely a dirty disk.

>> the drive has been wiped clean

Do it again with the best universal disk manager, go get it from ontrack.com.

>> The pcibios thing was a recommendation by someone else

Not a recommendation but a REQUIRED device. Here's part of the dmesg of my OpenBSD boxes:
Code:
bios0 at mainbus0: AT/286+(00) BIOS, date 11/10/95, BIOS32 rev. 0 @ 0xfd8a0
pcibios0 at bios0: rev. 2.1 @ 0xf0000/0x10000
pcibios0: PCI BIOS has 5 Interrupt Routing table entries
pcibios0: PCI Interrupt Router at 000:07:0 (vendor 0x8086 product 0x122e rev 0x00)
pcibios0: PCI bus #0 is the last bus

Code:
bios0 at mainbus0: AT/286+(a1) BIOS, date 07/22/97, BIOS32 rev. 0 @ 0xfb180
pcibios0 at bios0: rev. 2.1 @ 0xf0000/0xb648
pcibios0: PCI BIOS has 6 Interrupt Routing table entries
pcibios0: PCI Exclusive IRQs: 10 11
pcibios0: PCI Interrupt Router at 000:07:0 (vendor 0x8086 product 0x7000 rev 0x00)
pcibios0: PCI bus #0 is the last bus

Reply With Quote
  #6  
Old June 28th, 2002, 07:53 PM
maxentropic maxentropic is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 1 maxentropic User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I had the same problem on a Compaq 6000 (166 MHz Pentium). I'm not really sure what causes it, but I have a workaround.

First, when you get the "Install, Upgrade, or Shell" prompt, choose shell. Then do the following:

# ed install.sub
,s/sh MAKEDEV all/sh/g
w
q
# (Ctrl-D to exit shell)

You will get an error about /etc/rc, then you will get the "Install, Upgrade, or Shell" prompt again; choose install or upgrade as required.

The install will proceed normally, until you get to the makedev step; you will get a shell prompt instead. Type the following:

# eo='echo'; export eo
# ./MAKEDEV all > md.sh
# sh md.sh
# (Ctrl-D to exit shell)

The install will then proceed again normally.

I am not sure why this happens. The install went great on my old Gateway 133 Pentium, but on this Compaq and another Compaq 4000, I had this problem.

Reply With Quote
Reply

Viewing: Dev Shed ForumsOperating SystemsBSD Help > OpenBSD 3.1 install hangs on 'makedev all'


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway