martinlink, on 12 February 2012 - 01:24 PM, said:
The package contained the standard HP usb disk formatting tool which ran just fine, and a special program which was meant to put the boot files onto the formatted drive.
I got the latter to "finish" the process of making the usb stick bootable once after about 30 failed tries. But when I tried booting from it afterwards, there was just a white _ blinking on a black screen and nothing happened for 5 minutes...
I guess the program isn't compatible with my computer setup. It is meant for servers as the document on HP's page said, after all.
I'm using an Asus P5QL-Pro motherboard with the standard SATA controller if that matters.
From what you say there must be some issue with making the USB stick bootable, and/or in the copying of the files.
The blinking cursoer is typical of a "wrong" setttings in the bootsector, (wrong CHS values) and this can in some case be a fault of the HP USB utility.
Can you try making the stick bootable with RMPREPUSB with grub4dos, verify it boots on your machine and then try running the "special program" on it?
It doesn't make sense that it doesn't boot, the thingy should work (to create the bootable stick) oon *any* machine, not necessarily on the intended targeted server.
jaclaz
P.S.: EDIT:
out of curiosity I did a quick check.
The thingy I got contains a "plain" .iso image of a Linux system.
I managed to run it in QEMU allright, not by directly loading the .iso, but using a grub4dos boot floppy with this menu.lst entry (parameters got from isolinux.cfg):
title stupid HP
root (cd)
kernel /SYSTEM/VMLINUZ media=cdrom rw root=/dev/ram0 ramdisk_size=121260 init=/bin/init loglevel=3 ide=nodma ide=noraid pnpbios=off usrramfs=1 splash=silent showopts
initrd /SYSTEM/INITRD.IMG
boot
I presume you can do the same on USB stick using the settings in syslinux.cfg.
Then it seemingly hangs on udevd, after having printed "this is not a supported server", and It takes
forever to load (several minutes), but eventually you have an option to run the update for EITHER:
Flash SATA drive models - GB0250C8045, GB0500C8046, GB0750C8047
Flash SATA drive models - GB0250EAFKF, GB0500EAFJH, GB0750EAFJK, GB1000EAFJL
Tthe first choice seemingly runs CP010461.scexe
and second CP010456.scexe
(these are files that are in the .iso under COMPONENTS)
BTW the documentation says:
Quote
NOTE: the fwutil.iso file must be mounted as a windows driver letter or burned to CD media. The USB key utility will not correctly with an .iso file.
and that the HD controller has to be set as "IDE" and NOT to "SATA" or raid.
I guess you need to find a friend with some Linux knowledge and understand if these files can be run from a "plainer" Linux or if the firmware can be extracted form those .scexe files.

Good hints are here:
http://lackof.org/ma...iant-Guide.html
Most probably the good guys at HP ask you to download a huge installer only to have it execute the 4 (four) batch lines in usbcreator.cmd:
xcopy %1\*.* %2\ /e /k
move %2\system\initrd.img %2\
move %2\system\vmlinuz %2\
move %2\usb\syslinux.cfg %2\
that should equate to:
copy whole contents of CD to USB stick (in root or possibly in a folder \boot\) then move to the same (root or folder) initrd.img, vmlinuz and syslinux.cfg.
This post has been edited by jaclaz: 12 February 2012 - 05:20 PM