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
Fujitsu Esprimo P5710 - unlock [REQUEST]
Last Post: monkeywrench
Yesterday 12:30 PM
» Replies: 34
» Views: 722
Lenovo Z50-70: CPU update
Last Post: PedroFX
05-04-2024 07:20 PM
» Replies: 6
» Views: 189
My Gateway NV57h has an ACER in BIOS - c...
Last Post: drmrsolds
05-04-2024 05:42 PM
» Replies: 1
» Views: 2069
Z97-PRO(Wi-Fi ac)/USB 3.1
Last Post: Jedrek
05-04-2024 09:49 AM
» Replies: 4
» Views: 2299
[Request] Acer Aspire 3050 unlocked BIOS
Last Post: prowindows62
05-04-2024 07:43 AM
» Replies: 0
» Views: 132
HP H-IG41-uATX 45nm microcode update LGA...
Last Post: goldenhill
05-04-2024 04:49 AM
» Replies: 58
» Views: 56780
Asus h61m-d & xeon e3-1265l v2
Last Post: DeathBringer
05-03-2024 04:28 PM
» Replies: 3
» Views: 232
[REQUEST] - Acer Swift 3 SF314-41G bios ...
Last Post: ersan
05-03-2024 03:03 PM
» Replies: 1
» Views: 183
[REQUEST] Lenovo G780 advanced menu
Last Post: Dudu2002
05-03-2024 09:41 AM
» Replies: 43
» Views: 17093
[REQUEST] ThinkPad T14 Gen1 Intel BIOS W...
Last Post: SSV CHAOTIC
05-03-2024 05:19 AM
» Replies: 0
» Views: 181
[REQUEST] Lenovo Ideapad 100-14IBD & 100...
Last Post: Dudu2002
05-03-2024 03:48 AM
» Replies: 15
» Views: 7105
[REQUEST] Lenovo IdeaPad U310 & U410 (65...
Last Post: 5CarPileup
05-03-2024 02:04 AM
» Replies: 1767
» Views: 381253
HP Pro 3500: CPU Upgrade
Last Post: DeathBringer
05-03-2024 12:13 AM
» Replies: 20
» Views: 4621
[READ FIRST] Access Advanced settings th...
Last Post: Klinzah
05-02-2024 05:11 PM
» Replies: 424
» Views: 569826
[REQUEST] Asus eeepc 1025C
Last Post: sloseba123
05-02-2024 04:44 PM
» Replies: 87
» Views: 110588
HP EliteBook 840 g2 NVMe
Last Post: x86-64
05-02-2024 06:30 AM
» Replies: 0
» Views: 145
[Request] Dell 7400 2 in 1 Computrace/Ab...
Last Post: Lorand187
05-01-2024 10:34 PM
» Replies: 0
» Views: 195
[REQUEST] Gigabyte B75M-D3H BIOS Unlock
Last Post: topadefir
05-01-2024 12:56 PM
» Replies: 10
» Views: 4081
[REQUEST] Lenovo B590 (H9ETxxWW) Whiteli...
Last Post: samugarob
05-01-2024 10:08 AM
» Replies: 674
» Views: 169108
[REQUEST] Asus GL504GV BIOS Unlock
Last Post: merjeu
05-01-2024 09:28 AM
» Replies: 5
» Views: 1735

(UEFI) Dell XPS 15z L511z modded BIOS - and HOWTO
I think the last one has more potential since we may be able to run the efi files and debug them in a safe enviroment.
find
quote
(05-14-2012, 08:19 PM)dkinsano Wrote: I think the last one has more potential since we may be able to run the efi files and debug them in a safe enviroment.

Ok makes sense. So If I read this correctly this is what we have to do:

1) Create a Fedora environment (I'm doing this thru Virtualbox at the moment, but we can do this on a real partition as well)

2) Build EDK11 environment on Fedora

3) Move our Dell/Asus/anything Phoenix UEFI files into this build

4) Mod/Patch uefi firmware and verify using TianoCore environment

The point I'm not too sure on is (3) but let me start working on this and report back. Anyone else is free to try this as well and report any progress.

Good luck to all who try this!
find
quote
Ok - baby steps but we're getting there... Smile

1) Created a Mint (Ubuntu-variant) environment

2) Build EDK11 environment on Mint. Bl**dy painful process including development + build environments, but we've finally done it.

Now I need to figure out how to debug the existing Dell UEFI Bios under EDK11. If anyone has ever done this before - now's the time to help me Smile
find
quote
i am busy these days and i just read the last link, it is interesting.

step 3 seems possible but very difficult
the Phoenix tianocore would be compiled in ms vs
but now we compiling EDK using gcc

i have no experience about "combine" the binaries together from different platforms/compilers

is there any "standard interfaces" between UEFI modules? if any, maybe modules are compiler-awareless... I will ask my intel friends to finger it out tomorrow
find
quote
Starting to tackle step 3 now.
Can anyone kindly point out how I can debug any existing efi (no need for dxe right now, we'll do 64-bit later..) from my Dell bios under SecMain?
find
quote
The Intel(er) tells me that "efi files are pe32+ compatible", so are our dumped roms.
I tried to rename the rom file to exe or dll and it seems can be run under windows (rundll32 ***.efi DllEntryPoint)
but gives something like "memory protection" errors as expected:
the platform are totally different on cpu/memory managements to prevent further debug.

I also find that the .efi entry are different from Phoenix to Intel Tiano
the former is DllEntryPoint and the later is InitializeDriver
They(the Intel(er)) said they are working on "Binary Build" other than "SourceCode Build", however, it is still in progress.
in additional, their source build is only one way to "implementation",
They "concatenate" efi files to "FD" files and then "concatenate " "FD" files to the final rom file with the extension "FV" with some offset settings
i thinks the Phoenix way would be different. so the intel build detail would be useless

then, because "efi"s are "dll"s, I think may be we could try some way to load them dynamically
they said you can try run "load ***.efi" or just run it under the EFI shell as it is a PE32+.
I haven't build any uefi emulation environments yet, and i can't try it now.

as we already know, some "efi" files are "Application" while some are "Driver";
some "Driver"s runs at "DXE" phase while some are not
I think "Application" would be easier to run with higher possibility, but PlatformAdvancedSetupDxe.efi is a "Driver",
I don't know if we have a chance to run it or load it on an emulator.

PS: another idea, are there some Phoenix TianoCore ROMs "oem" unlocked the menus?
such as DELL poweredge server or other brands.
if any, we could compare the differents

PS2: there many versions bios for XPS Lx02x, are the menus identical from each other?
if not, maybe there are some clue..
find
quote
Good piece of info re: dell vs intel efi. Kind of explains why I was getting segmentation faults every time i tried to load a dell efi Smile

(05-18-2012, 05:12 AM)marstone Wrote: PS: another idea, are there some Phoenix TianoCore ROMs "oem" unlocked the menus?
such as DELL poweredge server or other brands.
if any, we could compare the differents

PS2: there many versions bios for XPS Lx02x, are the menus identical from each other?
if not, maybe there are some clue..

This is a really interesting thought. Does anyone out there have:

1) An original Phoenix UEFI BIOS from a Dell desktop/server which has some/all of the Advanced menus visible? We could compare the two

2) A difference in menu items between UEFI Bios versions (my 15z didn't have any bios changes from A01 to A10 unfortunately) that we could compare?
find
quote
Angry

I just realized how limited we are with this locked BIOS.

I just bought a caddy to move my main hdd in the DVD-Writers place and placed a SSD where my HDD was, I find myself unable to boot from the old drive, going with the logic that in the boot selection menu the CD/DVD Drive refers to the second sATA port, I was wrong, when I select that nothing happens.

I am a developer, I want to keep my data and a backup on hand all the time, so I created a disk image of my SSD, that I moved on the Second HDD, and burned a recovery ISO on a SD Card, obviously I can't boot it. (you might say that I could use a USB stick, read on)

Also I made a OSX installation on a partition from my second HDD which I can start up only with the before mentioned USB stick Smile.

So many things, so little flexibility, if I can help in any way with this, let me know!
find
quote
Any progress?

I flashed the current A10 file uploaded with great success, I was able to push my GT525M to 800MHz Core, 1600MHz Shader and 920MHz memory. Saw a large performance gain in skyrim, was able to bump the resolution up to 1920x1080 and play it lag-free. Thanks!
find
quote
(05-25-2012, 06:11 PM)jwhirl06 Wrote: Any progress?

I flashed the current A10 file uploaded with great success, I was able to push my GT525M to 800MHz Core, 1600MHz Shader and 920MHz memory. Saw a large performance gain in skyrim, was able to bump the resolution up to 1920x1080 and play it lag-free. Thanks!

That's great news - thanks for the feedback Smile which voltage bios did you use?

Guys I need some help here. Can anyone out there let me know if:

1) Someone has an original Phoenix UEFI Bios (even non-Dell) which has the advanced menu options available (CPU clock, voltage etc)

2) Someone has a Dell UEFI Bios which had different options on the next BIOS upgrade

3) Someone managed to build and run any of the PhoenixDell .efi files in their EDK (I could only run the original Intel ones)?

Much appreciated!
find
quote


Forum Jump:


Users browsing this thread: 10 Guest(s)