我最近发现有一个BIOS更新版本F.28可用于我的(工作)笔记本,这是一个惠普ProBook 6560b与版本F.20引导。我希望这能修好那台机器里一直运行的风扇。
BIOS可作为SoftPaq下载如下:
根据BIOS,我应该在其中找到一个BIN和一个SIG文件,其名称与BIOS变量(根据dmidecode是68SCE
)相同。它应该放在HP_TOOLS
分区上,放到目录/Hewlett-Packard/BIOS/New
中,并且可以通过BIOS升级(如果HpBiosUpdate.efi
模块存在于/Hewlett-Packard/BIOSUpdate
中)。看起来一切都做好了准备:
# mount /dev/disk/by-label/HP_TOOLS /mnt/
# ls -lR /mnt/Hewlett-Packard/BIOS*
/mnt/Hewlett-Packard/BIOS:
total 12
drwxr-xr-x 2 root root 4096 Dec 21 2011 Current
drwxr-xr-x 2 root root 4096 Dec 21 2011 New
drwxr-xr-x 2 root root 4096 Dec 21 2011 Previous
/mnt/Hewlett-Packard/BIOS/Current:
total 2564
-rwxr-xr-x 1 root root 2621440 Dec 21 2011 68SCE.BIN
-rwxr-xr-x 1 root root 256 Dec 21 2011 68SCE.SIG
/mnt/Hewlett-Packard/BIOS/New:
total 0
/mnt/Hewlett-Packard/BIOS/Previous:
total 0
/mnt/Hewlett-Packard/BIOSUpdate:
total 2112
-r-xr-xr-x 1 root root 259072 Aug 31 2010 CryptRSA32.efi
-r-xr-xr-x 1 root root 443904 Aug 31 2010 CryptRSA.efi
-rwxr-xr-x 1 root root 706528 Mar 28 2011 HpBiosUpdate32.efi
-rwxr-xr-x 1 root root 256 Mar 28 2011 HpBiosUpdate32.s09
-rwxr-xr-x 1 root root 256 Mar 28 2011 HpBiosUpdate32.sig
-rwxr-xr-x 1 root root 722848 Mar 28 2011 HpBiosUpdate.efi
-rwxr-xr-x 1 root root 51 Dec 21 23:59 HpBiosUpdate.log
-rwxr-xr-x 1 root root 256 Mar 28 2011 HpBiosUpdate.s09
-rwxr-xr-x 1 root root 256 Mar 28 2011 HpBiosUpdate.sig
不幸的是,SoftPaq中没有BIN和SIG文件,只有一个CAB文件,其中包含的文件可能是正确的,但只是命名为Rom.*
。还有一个ROM.CAB
,它还包含一些Rom
-files:
# curl -O ftp://ftp.hp.com/pub/softpaq/sp59001-59500/sp59012.exe
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 22.0M 100 22.0M 0 0 529k 0 0:00:42 0:00:42 --:--:-- 355k
# 7za x -osp59012 sp59012.exe
7-Zip (A) [64] 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18
p7zip Version 9.20 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,4 CPUs)
Processing archive: sp59012.exe
Extracting /68SCE.CAB
Extracting /68SCF.CAB
Extracting /hpqflash/hpqRun.exe
Extracting /hpqflash/map.ini
Extracting /hpqflash/SP59012_E.exe
Extracting /hpqflash/SP59012_F.exe
Extracting /HPQFlash.exe
Extracting /hpqRun.exe
Extracting /map.ini
Extracting /ROM.CAB
Extracting /WSSP59012.rtf
Everything is Ok
Files: 11
Size: 25651054
Compressed: 23089672
# find sp59012 -name '*.CAB' | xargs -I_ cabextract -d _.d _
Extracting cabinet: sp59012/ROM.CAB
extracting sp59012/ROM.CAB.d/Rom.bin
extracting sp59012/ROM.CAB.d/Rom.sig
extracting sp59012/ROM.CAB.d/ver.txt
extracting sp59012/ROM.CAB.d/ver.sig
extracting sp59012/ROM.CAB.d/efibios.sig
All done, no errors.
Extracting cabinet: sp59012/68SCF.CAB
extracting sp59012/68SCF.CAB.d/Rom.bin
extracting sp59012/68SCF.CAB.d/Rom.sig
extracting sp59012/68SCF.CAB.d/ver.txt
extracting sp59012/68SCF.CAB.d/ver.sig
extracting sp59012/68SCF.CAB.d/efibios.sig
All done, no errors.
Extracting cabinet: sp59012/68SCE.CAB
extracting sp59012/68SCE.CAB.d/Rom.bin
extracting sp59012/68SCE.CAB.d/Rom.sig
extracting sp59012/68SCE.CAB.d/ver.txt
extracting sp59012/68SCE.CAB.d/ver.sig
extracting sp59012/68SCE.CAB.d/efibios.sig
All done, no errors.
# cat sp59012/map.ini
[SYSTEM_ID]
1619=hpqflash.exe -s -a -f68SCE.CAB -phpqssm.bin
1618=hpqflash.exe -s -a -f68SCF.CAB -phpqssm.bin
1621=hpqflash.exe -s -a -f68SCE.CAB -phpqssm.bin
161C=hpqflash.exe -s -a -f68SCF.CAB -phpqssm.bin
161D=hpqflash.exe -s -a -f68SCE.CAB -phpqssm.bin
1620=hpqflash.exe -s -a -f68SCF.CAB -phpqssm.bin
177C=hpqflash.exe -s -a -f68SCE.CAB -phpqssm.bin
map.ini
指向68SCE.CAB
(根据dmidecode,1619
是主板的Id )。我可以试试那个文件里的文件。但我不想把我的笔记本砖砌成砖。以前有人成功过吗?
发布于 2013-02-04 18:13:32
以下方法适用于HPProBook6460b。我使用了Virtualbox (WindowsXP来宾)并连接了USB闪存驱动器来执行以下步骤。
SP60365_E.exe
。SP60365_E.exe
和SP60365_F.exe
(取决于您的系统)的C:\SWSetup\SP60365\hpqflash
中找到了两个文件。你可以看到我的帖子在惠普论坛上的这个帖子里。
发布于 2017-01-05 20:35:40
更新ProBook 11 G2上的BIOS
spXXXX.exe
在/EFI/HP/BIOS/New
和/Hewlett-Packard/BIOS/New
中的提取/EFI/HP/BIOS/New/BIOSUpdate/*
在/EFI/HP/BIOSUpdate
和/Hewlett-Packard/BIOSUpdate
中https://askubuntu.com/questions/232206
复制相似问题