Hallo,
wie kann ich denn Folgendes durchführen?
Linux Kernel Configuration for UEFI
In case of linux, kernel support for EFI is very important. The required kernel configurations for UEFI systems are :
Important UEFI related options -
CONFIG_EFI=y
CONFIG_RELOCATABLE=y
CONFIG_FB_EFI=y
CONFIG_FRAMEBUFFER_CONSOLE=y
GUID Partition Table config option - very important for UEFI
CONFIG_EFI_PARTITION=y
UEFI Runtime Services Support - 'efivars' kernel module - optional but 'm' recommended since it can cause booting in some Sandy Bridge UEFI systems if compiled in the kernel image itself.
CONFIG_EFI_VARS=m or y
Retrieved from
http://kernel.org/doc/Documentation/x86/x86_64/uefi.txt .
Note 1: For Linux to access UEFI Runtime Services, the UEFI Firmware processor architecture and the Linux kernel processor architecture must match. This is independent of the bootloader used and its compiled processor architecture.
Note 2: If the UEFI Firmware arch and Linux Kernel arch are different, then the "noefi" kernel parameter must be used to avoid the kernel panic and boot successfully. The "noefi" option instructs the kernel not to access the UEFI Runtime Services.
(
https://wiki.archlinux.org/index.php/Unified_Extensible_Firmware_Interface#Linux_Kernel_Configuration_for_UEFI)
Lg