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] Asus GL504GV BIOS Unlock
Last Post: qasam.jan
Today 12:46 AM
» Replies: 7
» Views: 1711
[REQUEST] HP Gaming Pavilion 15-cx0xxx B...
Last Post: kurt.itdev
Yesterday 09:46 PM
» Replies: 11
» Views: 1667
[REQUEST] Lenovo Ideapad 100-14IBD & 100...
Last Post: michel874
Yesterday 09:00 PM
» Replies: 16
» Views: 6852
[REQUEST] Asus eeepc 1025C
Last Post: sium
Yesterday 08:59 PM
» Replies: 88
» Views: 110446
[READ FIRST] Access Advanced settings th...
Last Post: krzysiek01027
Yesterday 08:26 PM
» Replies: 425
» Views: 568828
Fujitsu Esprimo P5710 - unlock [REQUEST]
Last Post: monkeywrench
Yesterday 05:31 PM
» Replies: 15
» Views: 423
Asus h61m-d & xeon e3-1265l v2
Last Post: DeathBringer
Yesterday 04:28 PM
» Replies: 3
» Views: 112
[REQUEST] - Acer Swift 3 SF314-41G bios ...
Last Post: ersan
Yesterday 03:03 PM
» Replies: 1
» Views: 109
[REQUEST] Lenovo G780 advanced menu
Last Post: Dudu2002
Yesterday 09:41 AM
» Replies: 43
» Views: 17008
[REQUEST] ThinkPad T14 Gen1 Intel BIOS W...
Last Post: SSV CHAOTIC
Yesterday 05:19 AM
» Replies: 0
» Views: 93
[REQUEST] Lenovo IdeaPad U310 & U410 (65...
Last Post: 5CarPileup
Yesterday 02:04 AM
» Replies: 1767
» Views: 379899
HP Pro 3500: CPU Upgrade
Last Post: DeathBringer
Yesterday 12:13 AM
» Replies: 20
» Views: 4522
HP EliteBook 840 g2 NVMe
Last Post: x86-64
05-02-2024 06:30 AM
» Replies: 0
» Views: 107
[Request] Dell 7400 2 in 1 Computrace/Ab...
Last Post: Lorand187
05-01-2024 10:34 PM
» Replies: 0
» Views: 152
[REQUEST] Gigabyte B75M-D3H BIOS Unlock
Last Post: topadefir
05-01-2024 12:56 PM
» Replies: 10
» Views: 4043
[REQUEST] Lenovo B590 (H9ETxxWW) Whiteli...
Last Post: samugarob
05-01-2024 10:08 AM
» Replies: 674
» Views: 168600
[REQUEST] Asus ROG Strix GL702ZC BIOS Un...
Last Post: George205
05-01-2024 09:22 AM
» Replies: 167
» Views: 68703
[REQUEST] Gigabyte G5 KC Unlock BIOS
Last Post: Dudu2002
05-01-2024 04:06 AM
» Replies: 6
» Views: 2334
[REQUEST] M920q BIOS unlock
Last Post: d3vf0x
04-30-2024 04:50 PM
» Replies: 0
» Views: 183
[REQUEST] Lenovo G500 (78CNxxWW) Whiteli...
Last Post: MAVARACOMPLEX
04-30-2024 02:15 PM
» Replies: 1186
» Views: 269067

(UEFI) Dell XPS 15z L511z modded BIOS - and HOWTO
lol good luck mate. if you manage to set up UDK to cross compile for Dell then share the VM with me - need to try out a few interesting efis meself :
happy hacking Smile
find
quote
Would one be able to make these options stick when booting to windows and ubuntu at 3.4 GHz?
find
quote
mmm, I has been trying some stuff with clover on a fat32 usb stick.

[Image: dsc0071ql.jpg]
[Image: dsc0072fi.jpg]
[Image: dsc0073kfa.jpg]
[Image: dsc0074cs.jpg]
[Image: dsc0075vy.jpg]
[Image: dsc0076ps.jpg]


It seems to include a 1.2 mb uefi64 shell, it seems to have more stuff than the one timewalker send to me, if someone is interested I can upload it.

it also seems to to run in higher resolution.

well, about overclocking options, I didnt was able to modify anything via that menu, I edited some stuff at a config file, thats why it ask 2300 mhz instead 2100, but I supose that just text reading and not real Overclock

I also get stuck at the last loading screen, it is unable to load windows when I select any of the drives.

did you got able to run windows from this loader jkbuha?
find
quote
Clover is meant as an alternative bootloader targeted at booting OS X. For most of the people it won't load legacy Windows, since our BIOS is pretty much identical and I wasn't able to boot my legacy installation (and I'm already familiar with Clover ad other DUET-based bootloaders for some time ..), but UEFI Windows installation can be booted just fine I highly doubt you will succeeds. Besides the OC feature is just an illusion, it can crank up Turbo as an extra multiplier or even lock on the turbo multi .. but for your i3 it won't do anything.

Also, are you booting in a regular (boot) mode or UEFI mode (renaming CLOVERX64.efi as bootx64.efi ? )

The shell is v2.31 and it fails at some commands, like drivers, ls and some other for example. So even though it may seem like it has more options, our EFI 2.0 only supports Shell 2.0 properly.

I was able to setup UDK environment and successfully compile DUET and NT32, unfortunately I cannot provide any VM images because I had set it on my primary OS, not in a virtual machine environment. I had compiled BiosVideo.efi, but .. all I saw was a black screen, since the drivers has probably been altered by Phoenix/DELL to support nVidia Optimus/AMD SwitchableGraphics . It appears that only 3 default modes are allowed for screen resolution in preboot if no EDID data is found during the preboot phase.. even though VBIOS holds tons of resolutions
http://pastie.org/5089197
... the secondary part is meant for external displays only (VGA/HDMI) .. altering the mode data gives absolutely nothing because SystemVgaDxe controls what screen resolution to set...
Code:
//
    // Select a reasonable mode to be set for current display mode
    //
    ModeFound = FALSE;

    if (BiosVideoPrivate->VbeModeInformationBlock->XResolution == 1024 &&
        BiosVideoPrivate->VbeModeInformationBlock->YResolution == 768
        ) {
      ModeFound = TRUE;
    }
    if (BiosVideoPrivate->VbeModeInformationBlock->XResolution == 800 &&
        BiosVideoPrivate->VbeModeInformationBlock->YResolution == 600
        ) {
      ModeFound = TRUE;
      PreferMode = ModeNumber;
    }
    if (BiosVideoPrivate->VbeModeInformationBlock->XResolution == 640 &&
        BiosVideoPrivate->VbeModeInformationBlock->YResolution == 480
        ) {
      ModeFound = TRUE;
    }
    if ((!EdidFound) && (!ModeFound)) {
      //
      // When no EDID exist, only select three possible resolutions, i.e. 1024x768, 800x600, 640x480
      //
      continue;
    }
Snooping around for 00 04 00 03 in SystemVgaDxe had no positive results .. means VESA res of 1024x768 in bootloaders is what we are stuck with.
find
quote
I've been keeping an eye on this thread since I got my XPS 15z, and all the recent activity is really exciting! Great work you guys!

I really hope you guys can figure out how to disable the integrated graphics or switch which graphics card gets used. I really want to use FreeBSD on this laptop, but the system just overheats by having both cards running at the same time.

I'm in med school right now, so I probably won't be attempting any flashing until you guys are a little further along, but if there's anything I can help with, I'd definitely try.
find
quote
(10-20-2012, 01:16 PM)TimeWalker Wrote: Clover is meant as an alternative bootloader targeted at booting OS X. For most of the people it won't load legacy Windows, since our BIOS is pretty much identical and I wasn't able to boot my legacy installation (and I'm already familiar with Clover ad other DUET-based bootloaders for some time ..), but UEFI Windows installation can be booted just fine I highly doubt you will succeeds. Besides the OC feature is just an illusion, it can crank up Turbo as an extra multiplier or even lock on the turbo multi .. but for your i3 it won't do anything.

Also, are you booting in a regular (boot) mode or UEFI mode (renaming CLOVERX64.efi as bootx64.efi ? )

The shell is v2.31 and it fails at some commands, like drivers, ls and some other for example. So even though it may seem like it has more options, our EFI 2.0 only supports Shell 2.0 properly.

I was able to setup UDK environment and successfully compile DUET and NT32, unfortunately I cannot provide any VM images because I had set it on my primary OS, not in a virtual machine environment. I had compiled BiosVideo.efi, but .. all I saw was a black screen, since the drivers has probably been altered by Phoenix/DELL to support nVidia Optimus/AMD SwitchableGraphics . It appears that only 3 default modes are allowed for screen resolution in preboot if no EDID data is found during the preboot phase.. even though VBIOS holds tons of resolutions
http://pastie.org/5089197
... the secondary part is meant for external displays only (VGA/HDMI) .. altering the mode data gives absolutely nothing because SystemVgaDxe controls what screen resolution to set...
Code:
//
// Select a reasonable mode to be set for current display mode
//
ModeFound = FALSE;

if (BiosVideoPrivate->VbeModeInformationBlock->XResolution == 1024 &&
BiosVideoPrivate->VbeModeInformationBlock->YResolution == 768
) {
ModeFound = TRUE;
}
if (BiosVideoPrivate->VbeModeInformationBlock->XResolution == 800 &&
BiosVideoPrivate->VbeModeInformationBlock->YResolution == 600
) {
ModeFound = TRUE;
PreferMode = ModeNumber;
}
if (BiosVideoPrivate->VbeModeInformationBlock->XResolution == 640 &&
BiosVideoPrivate->VbeModeInformationBlock->YResolution == 480
) {
ModeFound = TRUE;
}
if ((!EdidFound) && (!ModeFound)) {
//
// When no EDID exist, only select three possible resolutions, i.e. 1024x768, 800x600, 640x480
//
continue;
}
Snooping around for 00 04 00 03 in SystemVgaDxe had no positive results .. means VESA res of 1024x768 in bootloaders is what we are stuck with.

About the OC part. I don't think it's an illusion, when i used Clover with a pumped up Bus Speed my geekbench score increased with around 3K, plus the time was reduced by roughly 15 seconds. This is the SS i took back then: http://i.imgur.com/C6ZHl.png and this is a recent one with Chameleon boot loader: http://dl.getdropbox.com/u/16173714/cham...active.png
Of course windows was not affected by it since clover loaded the defaults.

About the VESA resolution: in the case of L502x, A06 bios allows bootloader resolutions up to 1920x1080 (if you're screen supports it) after A06 it's stuck to 1366x768, which also breaks waking up from sleep. From what debugging i did a long time ago the culprit seemed to be the graphics, they would simply die/froze.
find
quote
Hey DoiX,
I do realize that OC is somewhat working for OS X, but since kasar was trying to load up Windows -> no benefit in terms of OC.
And then again .. you have an i7 with a head room of turbo multipliers.

The sleep issue is definitely caused by EDK changes in S3Resume module, for Vostro 3450 it even breaks hibernate for Windows 8 - "System resumes from hibernate automatically", so they will have to release a new bios version to fix this. Similar changes presumably had been made to the L502x bios because it says the following in their summary - "System flashes a white screen when resuming from hibernate".

My laptop support only LVDS screens with a resolution of 1366x768, only 1024x768 for LVDS are found in VBIOS of HD3000... mind taking a peak at yours?
find
quote
I used UEFI boot.

it seems that having an i3 its the main bootleneck for my system, also its a shame I cant OC for windows

it would be nice to OC at least a little the BCLK or the bus speed but since I think we already unlocked most or all of the advanced setup module stuff not sure if we can do this.

arrrggg, I want to oc so badly, on dolphin emulator (wich is almost only CPU performance related) I got arround 90-95% speed percent in some games, its almost there!, but it isnt yet ^^

mmm, another thing wich came to my mind is following.

one user posted on my other bioses topic and said if is posible to mod this bios in order to make this sandy bridge laptop to support ivy bridge proccesors.

theorically the bios is the only wall because the socket and chipset shouldnt be a issue.

I guess how we can do this, I saw older bios mods asking about cpu microcode update, is that the right way? or its something harder?
find
quote
Yes, it's the microcode update that is required .. but having a non-reversible module with such a crappy bios is a VERY limiting factor.
Basically we need donor bios which support Ivy bridge.. there is a new series of Vostro 3X60 which come with Ivy Bridge and HM77 chipset, but i highly doubt it will be Phoenix as well. Because from the vostro 3x50 range only 3450 and 3750 use Phoenix Tiano .. whereas 3350 and 3550 use AMI Aptio.
find
quote
what about the L521X?

it is the new xps 15 (ivy bridge succesor of the l502x wich is sandy bridge)

if we could get a L521X bios, we may be able to get the stuff we need to mod the bios cpu microcode
find
quote


Forum Jump:


Users browsing this thread: 30 Guest(s)