Re: HP Compaq 6005 hanging on boot

2010-06-21 Thread Epidemic SomeGuy
Hi, that is indeed the weirdest thing I've heard in a while :)
I just tried it on the computer that fails, but I'm testing this with
OpenBSD on a USB stick and when it detects a CD and I don't actually
boot from it, it just boots from the harddrive instead. (Not from the
USB which is next in the boot-order)
I will try to find time tomorrow, and install it on a harddive and try
this trick again.

FWIW I got a tip off-list about putting some debug info in
/usr/src/sys/arch/i386/stand/libsa/memprobe.c to try to figure out
where it stops, and it seems to be this chunk of code at line 75:

__asm __volatile(DOINT(0x15) ; setc %b1
: =a (sig), =d (rc), =b (off)
: 0 (0xE820), 1 (0x534d4150), b (off),
  c (sizeof(*mp)), D (((u_int)mp)  0xF)
: cc, memory);

I just put a printf() before and after this code and it prints the one
before it and then it just freezes.
(See diff below. This gives the output
probing: pc0 pci mem[Debug1Debug2
)

I don't know if this is helpful at all, but if someone have a diff
they want me to test or something I'll be happy to recompile boot
again and test it here.
Or maybe the bios is so badly broken that the real fix for this
would be in the form of a bios-update from HP?
I'll look for that too.

Thanks!


--- memprobe99.c~   Mon Jun 21 19:41:34 2010
+++ memprobe.c  Mon Jun 21 19:43:08 2010
@@ -68,17 +68,17 @@
 bios_E820(bios_memmap_t *mp)
 {
int rc, off = 0, sig, gotcha = 0;
-
+   printf(Debug1);
do {
BIOS_regs.biosr_es = ((u_int)(mp)  4);
-
+   printf(Debug2);
__asm __volatile(DOINT(0x15) ; setc %b1
: =a (sig), =d (rc), =b (off)
: 0 (0xE820), 1 (0x534d4150), b (off),
  c (sizeof(*mp)), D (((u_int)mp)  0xF)
: cc, memory);
off = BIOS_regs.biosr_bx;
-
+   printf(Debug3);
if (rc  0xff || sig != 0x534d4150)
break;
gotcha++;


On Mon, Jun 21, 2010 at 1:22 AM, Marco Peereboom sl...@peereboom.us wrote:
 On Sun, Jun 20, 2010 at 12:41:01PM -0500, Todd Alan Smith wrote:
 On Sun, Jun 20, 2010 at 7:55 AM, Marco Peereboom sl...@peereboom.us
wrote:
  This is most likely a bios issue and I hoped my little trick helped you
  past the bios boot part.

 Yeah, me too. I guess I'll have to look for a BIOS update, though I'm
 not very optimistic that one exists.

 By the way, I don't understand why your trick would work in any
 situation. I didn't think anything persists beyond a reboot. I am
 really puzzled that it works in some situations. Weird.

 The cd boot trick moves memory around enough.  You don't want to know
 how bios is written and this is one of those examples that proves how
 bad it really is.


  HP/compaq really know how to be incompatible.

 Yeah, no doubt.



Re: HP Compaq 6005 hanging on boot

2010-06-21 Thread Todd Alan Smith
On Mon, Jun 21, 2010 at 1:59 PM, Epidemic SomeGuy
epidemic.m...@gmail.com wrote:
snip
 Or maybe the bios is so badly broken that the real fix for this
 would be in the form of a bios-update from HP?
 I'll look for that too.

There is a BIOS update for the 786F6 systems (which is what I have):
http://preview.tinyurl.com/2gxtyu6

Intuitive update instructions are here:
http://preview.tinyurl.com/27gfryg

The thing is... it doesn't list a BIOS update for Linux. This must be
due to the linuxbios that bofh referred to, no? For Windows 7, it just
lists the Business Desktops BIOS Utilities (ver. 4.02 Rev. A). For
Windows XP Pro and all Windows Vista variations, it lists both the
Business Desktops BIOS Utilities (ver. 4.02 Rev. A) and the HP Compaq
Business Desktop System BIOS - 786F6 BIOS (ver. 3.10 Rev. A).  For
Windows 2000, it lists just the 3.10 update. My machine actually
shipped with Novell SuSE Linux Enterprise Desktop 10, with a BIOS
version of 01.09. I'm thinking I ought to try the 3.10 update.

Thoughts? Marco?



Re: HP Compaq 6005 hanging on boot

2010-06-21 Thread Marco Peereboom
Sure you install windows on it then install the bios then you blow away
wondows again.  I don't know the hp magic to update bios'.

On Mon, Jun 21, 2010 at 08:16:29PM -0500, Todd Alan Smith wrote:
 On Mon, Jun 21, 2010 at 1:59 PM, Epidemic SomeGuy
 epidemic.m...@gmail.com wrote:
 snip
  Or maybe the bios is so badly broken that the real fix for this
  would be in the form of a bios-update from HP?
  I'll look for that too.
 
 There is a BIOS update for the 786F6 systems (which is what I have):
 http://preview.tinyurl.com/2gxtyu6
 
 Intuitive update instructions are here:
 http://preview.tinyurl.com/27gfryg
 
 The thing is... it doesn't list a BIOS update for Linux. This must be
 due to the linuxbios that bofh referred to, no? For Windows 7, it just
 lists the Business Desktops BIOS Utilities (ver. 4.02 Rev. A). For
 Windows XP Pro and all Windows Vista variations, it lists both the
 Business Desktops BIOS Utilities (ver. 4.02 Rev. A) and the HP Compaq
 Business Desktop System BIOS - 786F6 BIOS (ver. 3.10 Rev. A).  For
 Windows 2000, it lists just the 3.10 update. My machine actually
 shipped with Novell SuSE Linux Enterprise Desktop 10, with a BIOS
 version of 01.09. I'm thinking I ought to try the 3.10 update.
 
 Thoughts? Marco?



Re: HP Compaq 6005 hanging on boot

2010-06-21 Thread Todd Alan Smith
On Mon, Jun 21, 2010 at 9:05 PM, Marco Peereboom sl...@peereboom.us wrote:
 Sure you install windows on it then install the bios then you blow away
 wondows again. B I don't know the hp magic to update bios'.

That's exactly what I was thinking of doing. (The BIOS update
instructions are on the HP website.) I'll update this thread
afterwards.

Thanks for your insight, Marco.



Re: HP Compaq 6005 hanging on boot

2010-06-20 Thread Marco Peereboom
This is most likely a bios issue and I hoped my little trick helped you
past the bios boot part.  I had a bootable windows vista cd in that
machine just to get it boot.  HP/compaq really know how to be
incompatible.

On Sat, Jun 19, 2010 at 10:22:37PM -0500, Todd Alan Smith wrote:
 On Sat, Jun 19, 2010 at 10:57 AM, Marco Peereboom sl...@peereboom.us wrote:
  This is going to be the weirdest thing you heard all week but here goes.
 
  Drop in a bootable cd (like windows) and boot. B When it asks for you to
  press the key to boot don't; just let it fall through and tada it boots
  afterward (maybe).
 
 Man, I _really_ wanted this to work, but it didn't. I'm having the
 exact same problem (booting to either the OpenBSD 4.7 i386 or amd64
 disc) on an HP Compaq dc5850 (currently running a basic/default
 installation of Fedora 12). It'll boot to a Slackware 13.1 disc and a
 Windows XP SP-1 disc, but not the aforementioned OpenBSD discs, nor a
 BSDanywhere 4.6 disc.
 
 For what it's worth, I've had this problem before (with the OpenBSD
 4.4 or 4.5 release) on an old Dell Dimension. If you really need its
 specs, I can dig it out of the closet.
 
 Here's the dmesg for the HP Compaq dc5850:
 
 Initializing cgroup subsys cpuset
 Initializing cgroup subsys cpu
 Linux version 2.6.32.14-127.fc12.x86_64
 (mockbu...@x86-03.phx2.fedoraproject.org) (gcc version 4.4.3 20100127
 (Red Hat 4.4.3-4) (GCC) ) #1 SMP Fri May 28 04:30:39 UTC 2010
 Command line: ro root=/dev/mapper/vg_tolstoy-lv_root  LANG=en_US.UTF-8
 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet
 KERNEL supported cpus:
   Intel GenuineIntel
   AMD AuthenticAMD
   Centaur CentaurHauls
 BIOS-provided physical RAM map:
  BIOS-e820:  - 0009fc00 (usable)
  BIOS-e820: 0009fc00 - 000a (reserved)
  BIOS-e820: 000e8000 - 0010 (reserved)
  BIOS-e820: 0010 - 7dfb6b00 (usable)
  BIOS-e820: 7dfb6b00 - 8000 (reserved)
  BIOS-e820: f400 - f800 (reserved)
  BIOS-e820: fec0 - fed4 (reserved)
  BIOS-e820: fed45000 - 0001 (reserved)
 DMI 2.5 present.
 last_pfn = 0x7dfb6 max_arch_pfn = 0x4
 MTRR default type: uncachable
 MTRR fixed ranges enabled:
   0-9 write-back
   A-B uncachable
   C-E3FFF write-protect
   E4000-E write-back
   F-F write-protect
 MTRR variable ranges enabled:
   0 base 00 mask FF8000 write-back
   1 base 007E00 mask FFFE00 uncachable
   2 disabled
   3 disabled
   4 disabled
   5 disabled
   6 disabled
   7 disabled
 x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
 original variable MTRRs
 reg 0, base: 0GB, range: 2GB, type WB
 reg 1, base: 2016MB, range: 32MB, type UC
 total RAM covered: 2016M
 Found optimal setting for mtrr clean up
  gran_size: 64K   chunk_size: 64M num_reg: 2  lose cover RAM: 
 0G
 New variable MTRRs
 reg 0, base: 0GB, range: 2GB, type WB
 reg 1, base: 2016MB, range: 32MB, type UC
 initial memory mapped : 0 - 2000
 init_memory_mapping: -7dfb6000
  00 - 007de0 page 2M
  007de0 - 007dfb6000 page 4k
 kernel direct mapping tables up to 7dfb6000 @ 8000-c000
 RAMDISK: 3745f000 - 37fef9e3
 ACPI: RSDP 000e6c10 00014 (v00 COMPAQ)
 ACPI: RSDT 7dfc6b40 00040 (v01 HPQOEM SLIC-BPC 20080409
 )
 ACPI: FACP 7dfc6be8 00074 (v01 COMPAQ HP_RS780 0001
 )
 ACPI: DSDT 7dfc6f5f 0971A (v01 COMPAQ DSDT_PRJ 0001 MSFT
 010E)
 ACPI: FACS 7dfc6b00 00040
 ACPI: APIC 7dfc6c5c 00084 (v01 COMPAQ HP_RS780 0001
 )
 ACPI: ASF! 7dfc6ce0 00063 (v32 COMPAQ HP_RS780 0001
 )
 ACPI: MCFG 7dfc6d43 0003C (v01 COMPAQ HP_RS780 0001
 )
 ACPI: TCPA 7dfc6d7f 00032 (v01 COMPAQ HP_RS780 0001
 )
 ACPI: SLIC 7dfc6db1 00176 (v01 HPQOEM SLIC-BPC 0001
 )
 ACPI: HPET 7dfc6f27 00038 (v01 COMPAQ HP_RS780 0001
 )
 ACPI: Local APIC address 0xfee0
 Scanning NUMA topology in Northbridge 24
 No NUMA configuration found
 Faking a node at -7dfb6000
 Bootmem setup node 0 -7dfb6000
   NODE_DATA [a000 - 0001]
   bootmap [0002 -  0002fbf7] pages 10
 (7 early reservations) == bootmem [00 - 007dfb6000]
   #0 [00 - 001000]   BIOS data page == [00 - 001000]
   #1 [006000 - 008000]   TRAMPOLINE == [006000 - 008000]
   #2 [000100 - 0001a56ee8]TEXT DATA BSS == [000100 - 0001a56ee8]
   #3 [003745f000 - 0037fef9e3]  RAMDISK == [003745f000 - 0037fef9e3]
   #4 [09fc00 - 10]BIOS reserved == [09fc00 - 10]
   #5 [0001a57000 - 0001a57134]  BRK == [0001a57000 - 0001a57134]
   #6 [008000 - 00a000]  

Re: HP Compaq 6005 hanging on boot

2010-06-20 Thread Todd Alan Smith
On Sun, Jun 20, 2010 at 7:55 AM, Marco Peereboom sl...@peereboom.us wrote:
 This is most likely a bios issue and I hoped my little trick helped you
 past the bios boot part.

Yeah, me too. I guess I'll have to look for a BIOS update, though I'm
not very optimistic that one exists.

By the way, I don't understand why your trick would work in any
situation. I didn't think anything persists beyond a reboot. I am
really puzzled that it works in some situations. Weird.

 HP/compaq really know how to be incompatible.

Yeah, no doubt.



Re: HP Compaq 6005 hanging on boot

2010-06-20 Thread Marco Peereboom
On Sun, Jun 20, 2010 at 12:41:01PM -0500, Todd Alan Smith wrote:
 On Sun, Jun 20, 2010 at 7:55 AM, Marco Peereboom sl...@peereboom.us wrote:
  This is most likely a bios issue and I hoped my little trick helped you
  past the bios boot part.
 
 Yeah, me too. I guess I'll have to look for a BIOS update, though I'm
 not very optimistic that one exists.
 
 By the way, I don't understand why your trick would work in any
 situation. I didn't think anything persists beyond a reboot. I am
 really puzzled that it works in some situations. Weird.

The cd boot trick moves memory around enough.  You don't want to know
how bios is written and this is one of those examples that proves how
bad it really is.

 
  HP/compaq really know how to be incompatible.
 
 Yeah, no doubt.



Re: HP Compaq 6005 hanging on boot

2010-06-20 Thread bofh
One of the reasons for linuxbios.  At least you can see how *that*
particular sausage is made...

On 6/20/10, Marco Peereboom sl...@peereboom.us wrote:
 On Sun, Jun 20, 2010 at 12:41:01PM -0500, Todd Alan Smith wrote:
 On Sun, Jun 20, 2010 at 7:55 AM, Marco Peereboom sl...@peereboom.us
 wrote:
  This is most likely a bios issue and I hoped my little trick helped you
  past the bios boot part.

 Yeah, me too. I guess I'll have to look for a BIOS update, though I'm
 not very optimistic that one exists.

 By the way, I don't understand why your trick would work in any
 situation. I didn't think anything persists beyond a reboot. I am
 really puzzled that it works in some situations. Weird.

 The cd boot trick moves memory around enough.  You don't want to know
 how bios is written and this is one of those examples that proves how
 bad it really is.


  HP/compaq really know how to be incompatible.

 Yeah, no doubt.



-- 
Sent from my mobile device

http://www.glumbert.com/media/shift
http://www.youtube.com/watch?v=tGvHNNOLnCk
This officer's men seem to follow him merely out of idle curiosity.
-- Sandhurst officer cadet evaluation.
Securing an environment of Windows platforms from abuse - external or
internal - is akin to trying to install sprinklers in a fireworks
factory where smoking on the job is permitted.  -- Gene Spafford
learn french:  http://www.youtube.com/watch?v=30v_g83VHK4



Re: HP Compaq 6005 hanging on boot

2010-06-20 Thread Marco Peereboom
Too bad it leaves out the hundreds of errata and generally doesn't  
work. It ain't sausage son.


On Jun 20, 2010, at 7:06 PM, bofh goodb...@gmail.com wrote:


One of the reasons for linuxbios.  At least you can see how *that*
particular sausage is made...

On 6/20/10, Marco Peereboom sl...@peereboom.us wrote:

On Sun, Jun 20, 2010 at 12:41:01PM -0500, Todd Alan Smith wrote:
On Sun, Jun 20, 2010 at 7:55 AM, Marco Peereboom  
sl...@peereboom.us

wrote:
This is most likely a bios issue and I hoped my little trick  
helped you

past the bios boot part.


Yeah, me too. I guess I'll have to look for a BIOS update, though  
I'm

not very optimistic that one exists.

By the way, I don't understand why your trick would work in any
situation. I didn't think anything persists beyond a reboot. I am
really puzzled that it works in some situations. Weird.


The cd boot trick moves memory around enough.  You don't want to know
how bios is written and this is one of those examples that proves how
bad it really is.




HP/compaq really know how to be incompatible.


Yeah, no doubt.





--
Sent from my mobile device

http://www.glumbert.com/media/shift
http://www.youtube.com/watch?v=tGvHNNOLnCk
This officer's men seem to follow him merely out of idle curiosity.
-- Sandhurst officer cadet evaluation.
Securing an environment of Windows platforms from abuse - external or
internal - is akin to trying to install sprinklers in a fireworks
factory where smoking on the job is permitted.  -- Gene Spafford
learn french:  http://www.youtube.com/watch?v=30v_g83VHK4




Re: HP Compaq 6005 hanging on boot

2010-06-20 Thread Nick Holland
On 05/06/10 12:57, Rafael R Obelheiro wrote:
 Hello,
 
 I tried to install OpenBSD on an HP Compaq 6005 machine, but it's not
 booting OpenBSD from a CD-ROM. It prints the following messages:
 
   CD-ROM: 9F
   Loading /4.7/I386/CDBOOT
   probing: pc0 com0 pci mem[
 
 and then simply hangs. 
 
 I've tried the latest 4.7 snapshot (both i386 and amd64) and 4.6/i386, all
 with the same results.
 
 The same machine runs Linux (Ubuntu 9.10, FWIW) just fine. I'm not sure it
 helps, but I've appended a Linux dmesg below (no OpenBSD dmesg since the 
 thing won't boot).
 
 Any hints on how to solve the problem?
 
 Cheers,
 Rafael

have you tried the floppy emulation CDROM images?
IF the problem is the CDBOOT code, the image i386/cdemu47.iso may let
you bootstrap the system.  Even if you want to run amd64, once you
have i386 installed, you could then boot off bsd.rd from amd64 and
install there.

No promises.  A large part of me hopes it doesn't work, hopefully few
people need cdemu*.iso...but if you are one of 'em, might be worth trying.

(disclaimer: I'm not promising there isn't a flaw in my logic that
makes the above suggestion totally stupid.  it's been a long weekend...)

Nick.



Re: HP Compaq 6005 hanging on boot

2010-06-19 Thread Marco Peereboom
This is going to be the weirdest thing you heard all week but here goes.

Drop in a bootable cd (like windows) and boot.  When it asks for you to
press the key to boot don't; just let it fall through and tada it boots
afterward (maybe).

I have an HP laptop that needs this trick.

On Wed, Jun 02, 2010 at 06:50:43PM +0200, Epidemic SomeGuy wrote:
 I have the same problem (i think) on a HP dc5850.
 In my test I've installed OpenBSD 4.7 on a USB drive and have
 sucessfully testet OpenBSD on several computers :)
 But when I try it on the dc5850:
 
   Attempting Boot From USB Device
   Using drive 0, partition 3.
   Loading...
   probing: pc0 pci mem[
 
 it hangs.
 
 I also tried to start it with the 4.7 CD's (I tried both i386 and the
 amd64 cd) with the same result.
 
 I tried setting the Integrated Graphics Memory Size to a fixed size
 (64 MB) because I noticed that it hangs on mem[, but I really have
 no idea if this could possibly be related to IGM, I am troubleshooting
 blindly here :S
 
 Any pointers on what man pages to look at, bios settings, anything at
 all really, would be nice.
 
 If you need more information to be able to help, please let me know.
 
 Thanks!
 
 
 Hello,
 
 I tried to install OpenBSD on an HP Compaq 6005 machine, but it's not
 booting OpenBSD from a CD-ROM. It prints the following messages:
 
  CD-ROM: 9F
   Loading /4.7/I386/CDBOOT
  probing: pc0 com0 pci mem[
 
 and then simply hangs.
 
 I've tried the latest 4.7 snapshot (both i386 and amd64) and 4.6/i386, all
 with the same results.
 
 The same machine runs Linux (Ubuntu 9.10, FWIW) just fine. I'm not sure it
 helps, but I've appended a Linux dmesg below (no OpenBSD dmesg since the
 thing won't boot).
 
 Any hints on how to solve the problem?
 
 Cheers,
 Rafael



Re: HP Compaq 6005 hanging on boot

2010-06-19 Thread Todd Alan Smith
On Sat, Jun 19, 2010 at 10:57 AM, Marco Peereboom sl...@peereboom.us wrote:
 This is going to be the weirdest thing you heard all week but here goes.

 Drop in a bootable cd (like windows) and boot. B When it asks for you to
 press the key to boot don't; just let it fall through and tada it boots
 afterward (maybe).

Man, I _really_ wanted this to work, but it didn't. I'm having the
exact same problem (booting to either the OpenBSD 4.7 i386 or amd64
disc) on an HP Compaq dc5850 (currently running a basic/default
installation of Fedora 12). It'll boot to a Slackware 13.1 disc and a
Windows XP SP-1 disc, but not the aforementioned OpenBSD discs, nor a
BSDanywhere 4.6 disc.

For what it's worth, I've had this problem before (with the OpenBSD
4.4 or 4.5 release) on an old Dell Dimension. If you really need its
specs, I can dig it out of the closet.

Here's the dmesg for the HP Compaq dc5850:

Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 2.6.32.14-127.fc12.x86_64
(mockbu...@x86-03.phx2.fedoraproject.org) (gcc version 4.4.3 20100127
(Red Hat 4.4.3-4) (GCC) ) #1 SMP Fri May 28 04:30:39 UTC 2010
Command line: ro root=/dev/mapper/vg_tolstoy-lv_root  LANG=en_US.UTF-8
SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet
KERNEL supported cpus:
  Intel GenuineIntel
  AMD AuthenticAMD
  Centaur CentaurHauls
BIOS-provided physical RAM map:
 BIOS-e820:  - 0009fc00 (usable)
 BIOS-e820: 0009fc00 - 000a (reserved)
 BIOS-e820: 000e8000 - 0010 (reserved)
 BIOS-e820: 0010 - 7dfb6b00 (usable)
 BIOS-e820: 7dfb6b00 - 8000 (reserved)
 BIOS-e820: f400 - f800 (reserved)
 BIOS-e820: fec0 - fed4 (reserved)
 BIOS-e820: fed45000 - 0001 (reserved)
DMI 2.5 present.
last_pfn = 0x7dfb6 max_arch_pfn = 0x4
MTRR default type: uncachable
MTRR fixed ranges enabled:
  0-9 write-back
  A-B uncachable
  C-E3FFF write-protect
  E4000-E write-back
  F-F write-protect
MTRR variable ranges enabled:
  0 base 00 mask FF8000 write-back
  1 base 007E00 mask FFFE00 uncachable
  2 disabled
  3 disabled
  4 disabled
  5 disabled
  6 disabled
  7 disabled
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
original variable MTRRs
reg 0, base: 0GB, range: 2GB, type WB
reg 1, base: 2016MB, range: 32MB, type UC
total RAM covered: 2016M
Found optimal setting for mtrr clean up
 gran_size: 64K chunk_size: 64M num_reg: 2  lose cover RAM: 
0G
New variable MTRRs
reg 0, base: 0GB, range: 2GB, type WB
reg 1, base: 2016MB, range: 32MB, type UC
initial memory mapped : 0 - 2000
init_memory_mapping: -7dfb6000
 00 - 007de0 page 2M
 007de0 - 007dfb6000 page 4k
kernel direct mapping tables up to 7dfb6000 @ 8000-c000
RAMDISK: 3745f000 - 37fef9e3
ACPI: RSDP 000e6c10 00014 (v00 COMPAQ)
ACPI: RSDT 7dfc6b40 00040 (v01 HPQOEM SLIC-BPC 20080409
)
ACPI: FACP 7dfc6be8 00074 (v01 COMPAQ HP_RS780 0001
)
ACPI: DSDT 7dfc6f5f 0971A (v01 COMPAQ DSDT_PRJ 0001 MSFT
010E)
ACPI: FACS 7dfc6b00 00040
ACPI: APIC 7dfc6c5c 00084 (v01 COMPAQ HP_RS780 0001
)
ACPI: ASF! 7dfc6ce0 00063 (v32 COMPAQ HP_RS780 0001
)
ACPI: MCFG 7dfc6d43 0003C (v01 COMPAQ HP_RS780 0001
)
ACPI: TCPA 7dfc6d7f 00032 (v01 COMPAQ HP_RS780 0001
)
ACPI: SLIC 7dfc6db1 00176 (v01 HPQOEM SLIC-BPC 0001
)
ACPI: HPET 7dfc6f27 00038 (v01 COMPAQ HP_RS780 0001
)
ACPI: Local APIC address 0xfee0
Scanning NUMA topology in Northbridge 24
No NUMA configuration found
Faking a node at -7dfb6000
Bootmem setup node 0 -7dfb6000
  NODE_DATA [a000 - 0001]
  bootmap [0002 -  0002fbf7] pages 10
(7 early reservations) == bootmem [00 - 007dfb6000]
  #0 [00 - 001000]   BIOS data page == [00 - 001000]
  #1 [006000 - 008000]   TRAMPOLINE == [006000 - 008000]
  #2 [000100 - 0001a56ee8]TEXT DATA BSS == [000100 - 0001a56ee8]
  #3 [003745f000 - 0037fef9e3]  RAMDISK == [003745f000 - 0037fef9e3]
  #4 [09fc00 - 10]BIOS reserved == [09fc00 - 10]
  #5 [0001a57000 - 0001a57134]  BRK == [0001a57000 - 0001a57134]
  #6 [008000 - 00a000]  PGTABLE == [008000 - 00a000]
 [ea00-ea0001bf] PMD -
[88000200-880003bf] on node 0
Zone PFN ranges:
  DMA  0x - 0x1000
  DMA320x1000 - 0x0010
  Normal   0x0010 - 0x0010
Movable zone start PFN for each node
early_node_map[2] active PFN ranges
0: 0x - 0x009f
0: 0x0100 - 0x0007dfb6
On node 

Re: HP Compaq 6005 hanging on boot

2010-06-02 Thread Epidemic SomeGuy
I have the same problem (i think) on a HP dc5850.
In my test I've installed OpenBSD 4.7 on a USB drive and have
sucessfully testet OpenBSD on several computers :)
But when I try it on the dc5850:

  Attempting Boot From USB Device
  Using drive 0, partition 3.
  Loading...
  probing: pc0 pci mem[

it hangs.

I also tried to start it with the 4.7 CD's (I tried both i386 and the
amd64 cd) with the same result.

I tried setting the Integrated Graphics Memory Size to a fixed size
(64 MB) because I noticed that it hangs on mem[, but I really have
no idea if this could possibly be related to IGM, I am troubleshooting
blindly here :S

Any pointers on what man pages to look at, bios settings, anything at
all really, would be nice.

If you need more information to be able to help, please let me know.

Thanks!


Hello,

I tried to install OpenBSD on an HP Compaq 6005 machine, but it's not
booting OpenBSD from a CD-ROM. It prints the following messages:

 CD-ROM: 9F
  Loading /4.7/I386/CDBOOT
 probing: pc0 com0 pci mem[

and then simply hangs.

I've tried the latest 4.7 snapshot (both i386 and amd64) and 4.6/i386, all
with the same results.

The same machine runs Linux (Ubuntu 9.10, FWIW) just fine. I'm not sure it
helps, but I've appended a Linux dmesg below (no OpenBSD dmesg since the
thing won't boot).

Any hints on how to solve the problem?

Cheers,
Rafael



HP Compaq 6005 hanging on boot

2010-05-06 Thread Rafael R Obelheiro
Hello,

I tried to install OpenBSD on an HP Compaq 6005 machine, but it's not
booting OpenBSD from a CD-ROM. It prints the following messages:

  CD-ROM: 9F
  Loading /4.7/I386/CDBOOT
  probing: pc0 com0 pci mem[

and then simply hangs. 

I've tried the latest 4.7 snapshot (both i386 and amd64) and 4.6/i386, all
with the same results.

The same machine runs Linux (Ubuntu 9.10, FWIW) just fine. I'm not sure it
helps, but I've appended a Linux dmesg below (no OpenBSD dmesg since the 
thing won't boot).

Any hints on how to solve the problem?

Cheers,
Rafael


 Linux dmesg starts here 

[0.00] Initializing cgroup subsys cpuset
[0.00] Initializing cgroup subsys cpu
[0.00] Linux version 2.6.31-21-generic-pae (bui...@rothera) (gcc 
version 4.4.1 (Ubuntu 4.4.1-4ubuntu9) ) #59-Ubuntu SMP Wed Mar 24 08:47:55 UTC 
2010 (Ubuntu 2.6.31-21.59-generic-pae)
[0.00] KERNEL supported cpus:
[0.00]   Intel GenuineIntel
[0.00]   AMD AuthenticAMD
[0.00]   NSC Geode by NSC
[0.00]   Cyrix CyrixInstead
[0.00]   Centaur CentaurHauls
[0.00]   Transmeta GenuineTMx86
[0.00]   Transmeta TransmetaCPU
[0.00]   UMC UMC UMC UMC
[0.00] BIOS-provided physical RAM map:
[0.00]  BIOS-e820:  - 0009f800 (usable)
[0.00]  BIOS-e820: 0009f800 - 000a (reserved)
[0.00]  BIOS-e820: 000e8000 - 0010 (reserved)
[0.00]  BIOS-e820: 0010 - dfbc6b00 (usable)
[0.00]  BIOS-e820: dfbc6b00 - e000 (reserved)
[0.00]  BIOS-e820: f400 - f800 (reserved)
[0.00]  BIOS-e820: fec0 - fed4 (reserved)
[0.00]  BIOS-e820: fed45000 - 0001 (reserved)
[0.00]  BIOS-e820: 0001 - 00012000 (usable)
[0.00] DMI 2.6 present.
[0.00] last_pfn = 0x12 max_arch_pfn = 0x100
[0.00] MTRR default type: uncachable
[0.00] MTRR fixed ranges enabled:
[0.00]   0-9 write-back
[0.00]   A-B uncachable
[0.00]   C-E3FFF write-protect
[0.00]   E4000-E write-back
[0.00]   F-F write-protect
[0.00] MTRR variable ranges enabled:
[0.00]   0 base  mask  write-back
[0.00]   1 base E000 mask E000 uncachable
[0.00]   2 base 0001 mask E000 write-back
[0.00]   3 disabled
[0.00]   4 disabled
[0.00]   5 disabled
[0.00]   6 disabled
[0.00]   7 disabled
[0.00] TOM2: 00012000 aka 4608M
[0.00] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[0.00] e820 update range: e000 - 0001 (usable) 
== (reserved)
[0.00] e820 update range: 2000 - 6000 (usable) 
== (reserved)
[0.00] Scanning 1 areas for low memory corruption
[0.00] modified physical RAM map:
[0.00]  modified:  - 2000 (usable)
[0.00]  modified: 2000 - 6000 (reserved)
[0.00]  modified: 6000 - 0009f800 (usable)
[0.00]  modified: 0009f800 - 000a (reserved)
[0.00]  modified: 000e8000 - 0010 (reserved)
[0.00]  modified: 0010 - dfbc6b00 (usable)
[0.00]  modified: dfbc6b00 - e000 (reserved)
[0.00]  modified: f400 - f800 (reserved)
[0.00]  modified: fec0 - fed4 (reserved)
[0.00]  modified: fed45000 - 0001 (reserved)
[0.00]  modified: 0001 - 00012000 (usable)
[0.00] initial memory mapped : 0 - 00e0
[0.00] init_memory_mapping: -379fe000
[0.00] NX (Execute Disable) protection: active
[0.00]  00 - 20 page 4k
[0.00]  20 - 003780 page 2M
[0.00]  003780 - 00379fe000 page 4k
[0.00] kernel direct mapping tables up to 379fe000 @ 7000-d000
[0.00] RAMDISK: 3789c000 - 37fef334
[0.00] Allocated new RAMDISK: 008f5000 - 01048334
[0.00] Move RAMDISK from 3789c000 - 37fef333 to 
008f5000 - 01048333
[0.00] ACPI: RSDP 000e5e10 00014 (v00 COMPAQ)
[0.00] ACPI: RSDT dfbd6b40 00040 (v01 HPQOEM SLIC-BPC 20090825  
)
[0.00] ACPI: FACP dfbd6be8 00074 (v01 COMPAQ HP_RS880 0001  
)
[0.00] ACPI: DSDT dfbd6f5f 09709 (v01 COMPAQ DSDT_PRJ 0001 MSFT 
010E)
[0.00] ACPI: FACS dfbd6b00 00040
[0.00] ACPI: APIC dfbd6c5c 00084 (v01 COMPAQ HP_RS880 0001  
)
[0.00] ACPI: ASF! dfbd6ce0 00063 (v32 COMPAQ HP_RS880