You are not logged in.
Pages: 1
Once i was finally able to install EFI + GRUB2 + GPT, i thought my troubles were over ...
But I was wrong. Linux failed to boot, the only thing I saw was a black screen (no kernel oops, nothing).
Although with "noefi" boot option (but i think it's not a good idea) it started successfuly.
System: Dell Latitude E4310
GRUB2:
insmod part_gpt
insmod efi_gop
insmod font
if load ${prefix}/unicode.pf2
then
insmod gfxterm
set gfxmode=auto
set gfxpayload=keep
terminal_output gfxterm
fi
set timeout=5
set default=0
menuentry "Arch Linux" {
set root=(hd0,gpt4)
linux /vmlinuz26 root=/dev/sda2 ro
initrd /kernel26.img
}
UEFI:
shell> ver
EFI Specification Revision : 2.0
EFI Vendor : American Megatrends
EFI Revision : 4.632
Does anybody had such problem? Any help/suggestion would be really appreciated
Offline
if load ${prefix}/unicode.pf2
It should be
if loadfont ${prefix}/unicode.pf2
UEFI:
shell> ver EFI Specification Revision : 2.0 EFI Vendor : American Megatrends EFI Revision : 4.632
Does anybody had such problem? Any help/suggestion would be really appreciated
Rest of the config looks fine to me.
But not using 'noefi' is unrelated to boot messages not being shown on screen. I guess the system boots successfully even without 'noefi' . Otherwise post any errors you get from the boot messages without the 'noefi' option.
Last edited by skodabenz (2011-04-18 12:52:33)
My new forum user/nick name is "the.ridikulus.rat" .
Offline
I has "loadfont" it was typo, sorry.
The main problem is that i am unable to look at what kernel prints to terminal ...
Offline
I has "loadfont" it was typo, sorry.
The main problem is that i am unable to look at what kernel prints to terminal ...
Meaning you are still not getting boot messages? Try
insmod efi_uga
instead of efi_gop module.
My new forum user/nick name is "the.ridikulus.rat" .
Offline
MaggotBrain wrote:I has "loadfont" it was typo, sorry.
The main problem is that i am unable to look at what kernel prints to terminal ...Meaning you are still not getting boot messages? Try
I mean if I choose not to use "noefi" kernel options the only thing i see is a black screen
insmod efi_uga
instead of efi_gop module.
with efi_gop:
Booting a command list
|
arrow had been blinking for a while then it stopped (I guess it hanged)
Offline
Can you try compiling grub2 with this patch https://github.com/skodabenz/Misc_Linux … ment.patch ? Although this seemed to be a problem with grub2, i guess grub2 passes wring uefi related info to the kernel.
'noefi' prevents the kernel from accessing EFI Runtime Services. So either grub2 passes incorrect efi info to the kernel or the firmware itself is a problem.
My new forum user/nick name is "the.ridikulus.rat" .
Offline
I have found that this patch already in trunk. I have tried grub-efi-bzr version but effect is the same (just a black screen). I'v also tried to load linux manulay i.e via grub consle, but it hanged after i entered "boot"... I guess kernel wasn't even started ...
Last edited by MaggotBrain (2011-04-18 15:41:02)
Offline
I have found that this patch already in trunk. I have tried grub-efi-bzr version but effect is the same (just a black screen). I'v also tried to load linux manulay i.e via grub consle, but it hanged after i entered "boot"... I guess kernel wasn't even started ...
Most definitely a bug in the firmware. Ask in edk2-devel mailing list about this. For now use 'noefi' option. No other way.
My new forum user/nick name is "the.ridikulus.rat" .
Offline
Once i was finally able to install EFI + GRUB2 + GPT, i thought my troubles were over ...
But I was wrong. Linux failed to boot, the only thing I saw was a black screen (no kernel oops, nothing).
Although with "noefi" boot option (but i think it's not a good idea) it started successfuly.Does anybody had such problem? Any help/suggestion would be really appreciated
Same thing happens here but i use Mac,
the problem is the kenel only allocate limited RAM to EFI firmware which might not be enough,
you need the patch "Run EFI in physical mode" ,
Search google and refer this: http://grub.enbug.org/TestingOnUEFI .
找个明媚的日子,出去乞讨吧...
Offline
I haven't found this patch for 2.6.38 kernel ...
Is it possible to upgrade UEFI firmware or its a kernel's bug?
Offline
My new forum user/nick name is "the.ridikulus.rat" .
Offline
Pages: 1