Forum RSS Feed Follow @ Twitter Follow On Facebook

Thread Rating:
  • 11 Vote(s) - 4.64 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[-]
Welcome
You have to register before you can post on our site.

Username:


Password:





[-]
Latest Threads
[REQUEST] Lenovo G780 (5ECNxxWW) Whiteli...
Last Post: Dudu2002
Today 12:49 PM
» Replies: 888
» Views: 560123
[REQUEST] Lenovo G770 (40CNxxWW) Whiteli...
Last Post: Akled
Today 06:24 AM
» Replies: 25
» Views: 19346
ACER Aspire 7736ZG BIOS microcode update...
Last Post: JoH
Today 12:29 AM
» Replies: 12
» Views: 858
[REQUEST] Sony Vaio VGN-NR260E (R1101J9)...
Last Post: JustHaven
Yesterday 01:19 AM
» Replies: 0
» Views: 144
HP Pro 3300 & 3400 (H61): Upgrade to Ivy...
Last Post: Hooper
03-09-2026 10:50 PM
» Replies: 142
» Views: 146883
[REQUEST] Lenovo IdeaPad P400, P500, Z40...
Last Post: asko87
03-09-2026 11:40 AM
» Replies: 80
» Views: 66322
Acer Aspire 7540G { Unlocked BIOS in pos...
Last Post: jose678
03-08-2026 03:51 PM
» Replies: 35
» Views: 42720
[REQUEST] Acer Predator Helios 300 PH315...
Last Post: yusuferkan
03-08-2026 08:50 AM
» Replies: 49
» Views: 25268
Lenovo v470c phoenix BIOS advanced setti...
Last Post: lolvatveo
03-08-2026 07:51 AM
» Replies: 1
» Views: 1547
Optiplex 7050 8th gen support
Last Post: exe127
03-07-2026 07:28 PM
» Replies: 10
» Views: 877
[REQUEST] Lenovo G50-70 (9ACNxxWW) White...
Last Post: zuzu_ion
03-07-2026 11:23 AM
» Replies: 254
» Views: 150303
[Request] Dell Optiplex 3040M 7th Gen CP...
Last Post: DeathBringer
03-07-2026 10:58 AM
» Replies: 6
» Views: 3320
delete whitelist for thinkpad l460
Last Post: andromedych007
03-05-2026 07:25 PM
» Replies: 0
» Views: 267
[Request] Enabling PCI-E bifurcation on ...
Last Post: fenomena6909
03-05-2026 05:03 AM
» Replies: 3
» Views: 4467
Asus Zephyrus G16 GU605CR request for bi...
Last Post: FlorikDT
03-05-2026 04:42 AM
» Replies: 0
» Views: 218
[REQUEST] Lenovo G700 (7ACNxxWW) Whiteli...
Last Post: Duh-bm
03-04-2026 07:57 PM
» Replies: 165
» Views: 108028
[REQUEST] Lenovo Thinkpad X240 (GIETxxWW...
Last Post: Defekt2008
03-03-2026 02:18 PM
» Replies: 344
» Views: 227523
Lenovo ThinkPad Edge E530: I'm trying to...
Last Post: MadBerry
03-03-2026 01:53 PM
» Replies: 1
» Views: 314
Request to unlock advance features in Ac...
Last Post: napsteronly
03-03-2026 07:57 AM
» Replies: 71
» Views: 94297
[Request] Unlocking BIOS for iMedia D361...
Last Post: SplatPie
03-03-2026 04:20 AM
» Replies: 0
» Views: 216

(UEFI) Dell XPS 15z L511z modded BIOS - and HOWTO
(07-02-2012, 06:49 AM)jkbuha Wrote: Yes, except that I cannot find any of the GUID files that are referenced from the push statement Smile

for instance, push 73 B7 41 E5....8F
I can't find a 73B7....ROM, or a B773....ROM, or any combination, big or little-endian.
Do you know how variables in the stack are dimensioned (single byte, double, quad etc)?

They're not necessarily file GUIDs. They are more likely to be the GUID of the protocols published by the modules while they're executing. You'll have to search contents of the main .rom files (the ones starting with MZ).


Accoding to the PEI and DXE spec, the structure is dword-word[2]-byte[8]. So only the first part would be little endianed, while the last 8 would be big-endianed.

If so {000a010b-020c-030d-040e-101a121b131c} would be stored as

0b 01 0a 00, then 0c 02 and 0d 03, and finally 04 0e 10 1a 12 1b 13 1c
find
quote
Ok let's see if I understand this properly, and please let me know if I haven't.

The setup browser utility module is CFEF94C4-4167-466A-8893-8779459DFA86(_1_xxxx.ROM). The _2_xxxx.ROM doesn't have any GUID calls (neither does the _0_). In theory then, it shouldn't have any GUID dependencies itself, but it may actually publish some itself in the main module (_1_). Seeing as the only publishing in the module appears to be the GUID of the file itself (CFEF94C4-4167-466A-8893-8779459DFA86) I then did a cross reference in all the rom dump files to find any other module that accesses this dependency (search C494EFCF dword) but the only module that comes up is the setup browser utility itself! Is this reasoning correct, that the setup browser has no dependencies, and no other modules depend on the setup browser?
find
quote
How did you deduce that the only publishing done in the program was the file's GUID?

BTW, I'm learning this as I go. So don't take what I say as solid fact, only as it being the way I understand what I'm reading from the specifications and finding in the dumped files. So I may be totally off in left field on any or all of this.
find
quote
Quite simple. I used this method.

1) Take a module which publishes only one dependency - eg: 0c7f41a9-0a6f-43f6-a0d9-1e2d01dbd7be_2_xxxx.ROM
2) Extract the dependency: 02 (12 4c ce 96 e4 55 1c 4a bb f3 73 a5 05 5f b3 64) 08 - corresponds to 96ce4c12-55e4-4a1c-bbf373a5055fb364
3) Search through all the roms which have a call for this dependency - there are 7 modules which reference this depex

So the above process works. You were right about depex publishing.

Now verifying for main bios module:

1) Check to see if main bios module has similar depexs (in _0_, _2_ ROMS - nothing)
2) Search through bios module to see if any depexs are referenced (using IDA) - only one: CFEF94C4-4167-466A-8893-8779459DFA86
3) Search all modules for this (dword-double-endian) GUID, only 1 module: CFEF94C4-4167-466A-8893-8779459DFA86
find
quote
Ok, bear with me here. I work nights and it's now almost 12pm where I am, so I'm getting a bit slow.

What do you mean by "main bios module"?
find
quote
(07-02-2012, 11:07 AM)ryan_975 Wrote: Ok, bear with me here. I work nights and it's now almost 12pm where I am, so I'm getting a bit slow.

What do you mean by "main bios module"?

Sorry - my untechnical english.

I meant the setup browser utility (SBU) module - CFEF94C4-4167-466A-8893-8779459DFA86(_1_xxxx.ROM). So the SBU module appears to be publishing only one depex in its main code, that is only referenced by itself, unlike, say 0c7f41a9-0a6f-43f6-a0d9-1e2d01dbd7be_2_xxxx.ROM, which publishes a depex that is used by 7 other modules.
find
quote
oops.. I just made a dumb move. My laptop's going to be dead for a couple days now... At least now I know ONE of those Dell DXE's are required to boot. Smile
find
quote
oh bad luck dude Sad what did you do??
how do you intend to bring it back - replacement or do you have a bios recovery method?
find
quote
I removed all the Dell named DXE modules to see if maybe there was some default drivers that were being blocked by Dell's. The laptop still boots.. to a point. but I'm guessing one of those modules contain the OS boot handoff. So it just sits there with a blank screen. (It does access my USB drive, and tests the hard drive. Plus Ctrl-Alt-Del resets the system. So it's not completely dead, just confused. Big Grin

As for recovery, I'm going to take the backup battery out to see if maybe there's some residual configuration settings causing it to hang, if that doesn't work, and no other known recovery method works, I'll have Dell overnight me a new motherboard thanks to their expensive Accidental Damage program Big Grin I
find
quote
hmmm - sorry to hear that ryan.
I heard you can put the original BIOS.WPH file on a bootable USB and PhoenixDell will read it on bootup, but I've never managed to activate this function successfully. You might have better luck Smile

Good luck with the replacement/recovery!
find
quote


Forum Jump:


Users browsing this thread: 24 Guest(s)