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
Bios MOD Lenovo L390/ Wifi support MacOS
Last Post: DennisWeaver
04-03-2025 10:50 PM
» Replies: 1
» Views: 848
[REQUEST] Acer Nitro 5 AN515-54 BIOS Unl...
Last Post: help_seeker
04-03-2025 01:23 PM
» Replies: 129
» Views: 53908
[REQUEST] Lenovo ThinkCentre M93p Tiny (...
Last Post: sairos
04-03-2025 10:23 AM
» Replies: 60
» Views: 47071
[REQUEST] Lenovo Thinkpad T440p (GLETxxW...
Last Post: uncle_Fedya
04-02-2025 03:54 PM
» Replies: 524
» Views: 222177
[REQUEST] Lenovo T440(S) (GJETxxWW) Whit...
Last Post: Dudu2002
04-02-2025 01:56 PM
» Replies: 497
» Views: 207947
[REQUEST] Gigabyte G5 KF BIOS unlock
Last Post: Dudu2002
04-02-2025 01:55 PM
» Replies: 3
» Views: 358
[REQUEST] Lenovo Legion 5 (EFCNxxWW) BIO...
Last Post: Dudu2002
04-02-2025 03:32 AM
» Replies: 44
» Views: 21163
Gigabyte b650e aorus master F33b
Last Post: Anem
04-01-2025 11:59 PM
» Replies: 0
» Views: 245
Xeon E5 2699 V3 (turbo Unlock) for Bios-...
Last Post: xlr8r
04-01-2025 11:42 AM
» Replies: 0
» Views: 346
[REQUEST] Lenovo Thinkpad X1 Carbon Gen3...
Last Post: Dudu2002
04-01-2025 08:50 AM
» Replies: 38
» Views: 18051
HP Probook 640 G2 bricked BIOS
Last Post: Milovanovic1992
04-01-2025 08:13 AM
» Replies: 0
» Views: 275
Dell Optiplex 3060 add 9th Gen CPU suppo...
Last Post: nickedasy
04-01-2025 03:31 AM
» Replies: 18
» Views: 1472
AM3 support for a Compaq
Last Post: DeathBringer
04-01-2025 01:01 AM
» Replies: 1
» Views: 352
Bios modding to support more RAM (Pegatr...
Last Post: DeathBringer
03-31-2025 01:33 PM
» Replies: 1
» Views: 481
[Request] ASUS X93SV (Whitelist Removal)
Last Post: Supercharger
03-30-2025 05:48 AM
» Replies: 1
» Views: 2336
Downgrade bios for Acer Aspire E1-571(G)...
Last Post: Rodrigowbs
03-29-2025 11:18 PM
» Replies: 24
» Views: 21712
[Request] Samsung Series 7 Slate PC
Last Post: SwCore
03-29-2025 10:23 PM
» Replies: 16
» Views: 17364
[Request] Alienware M18 R1 AMD(version) ...
Last Post: 009drmq
03-29-2025 09:20 AM
» Replies: 0
» Views: 513
Acer nitro an16-41 device bios is corrup...
Last Post: Serwintes
03-29-2025 07:25 AM
» Replies: 0
» Views: 390
[REQUEST] Lenovo G710 BIOS Whitelist Rem...
Last Post: Sonnnnnni Sid
03-29-2025 06:41 AM
» Replies: 485
» Views: 191371

(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: 21 Guest(s)