fix efistub bootloader to use backslashes (#4231)
* fix efistub to use backslashes * comment * cf1 Co-authored-by: codefiles <11915375+codefiles@users.noreply.github.com> * cf2 Co-authored-by: codefiles <11915375+codefiles@users.noreply.github.com> --------- Co-authored-by: codefiles <11915375+codefiles@users.noreply.github.com>
This commit is contained in:
parent
3b6f7db942
commit
8148b1d9bf
|
|
@ -1618,9 +1618,9 @@ class Installer:
|
||||||
|
|
||||||
if not uki_enabled:
|
if not uki_enabled:
|
||||||
loader = '/vmlinuz-{kernel}'
|
loader = '/vmlinuz-{kernel}'
|
||||||
|
# EFI standards stipulate backslashes
|
||||||
entries = (
|
entries = (
|
||||||
'initrd=/initramfs-{kernel}.img',
|
r'initrd=\initramfs-{kernel}.img',
|
||||||
*self._get_kernel_params(root),
|
*self._get_kernel_params(root),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue