Displaying 5 results from an estimated 5 matches for "boot_efi".
2019 Jul 18
2
cryptsetup
On a just-built C 7 box, I've got this: boot, boot_efi, /, swap, and
export. Now, the last three are encrypted. For /, I'm trying to add an
escrow key. df -h shows me that / is /dev/dm-1. However, when I use
cryptsetup luksAddKey /dev/dm-1, it just comes back, without prompting me
for a password.
What am I missing?
mark
2016 Mar 20
0
[PATCH 0/1] EFI image booting capabilities
...Loading %s... ", kernel_name);
> + if (loadfile(kernel_name, &kernel_data, &kernel_len)) {
> + printf("failed: ");
> + goto bail;
> + }
> + printf("ok\n");
> +
> +
> + /* This should not return... */
> + syslinux_boot_efi(kernel_data, kernel_len, cmdline, cmdline_len);
> + printf("Booting efi image failed: ");
> +
> +bail:
> + if(cmdline)
> + free(cmdline);
> + printf("%s\n", strerror(errno));
> + return 1;
> +}
Body. Needs some styling.
> diff -upr...
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
...else
+ cmdline_len=0;
+
+
+ printf("Loading %s... ", kernel_name);
+ if (loadfile(kernel_name, &kernel_data, &kernel_len)) {
+ printf("failed: ");
+ goto bail;
+ }
+ printf("ok\n");
+
+
+ /* This should not return... */
+ syslinux_boot_efi(kernel_data, kernel_len, cmdline, cmdline_len);
+ printf("Booting efi image failed: ");
+
+bail:
+ if(cmdline)
+ free(cmdline);
+ printf("%s\n", strerror(errno));
+ return 1;
+}
diff -uprN a/com32/elflink/ldlinux/ldlinux.c b/com32/elflink/ldlinux/ldlinux.c
--- a/com3...
2016 Mar 20
3
[PATCH 0/1] EFI image booting capabilities
...lp, feel
free to email me privately.
<<<
I posted this code time ago, there were some changes, I have tried removing
the ones not really related to the EFI boot capability.
(at that moment they were needed; if not SL was not working.)
see here:
https://github.com/ppatpat/syslinux/tree/boot_efi
Please consider:
1)I've copied the source from my work repository but I have no tested
the just uploaded github sources.
2) This code was only tested on PXE boot scenarios.
3) The easiest way to test this code would be something like
kernel = /Shell.efi
append = -nomap -nostartup
&g...
2016 Mar 25
0
[PATCH 0/1] EFI image booting capabilities
...; <<<
>
> I posted this code time ago, there were some changes, I have tried removing
>
> the ones not really related to the EFI boot capability.
> (at that moment they were needed; if not SL was not working.)
>
> see here:
> https://github.com/ppatpat/syslinux/tree/boot_efi
> Please consider:
>
> 1)I've copied the source from my work repository but I have no tested
> the just uploaded github sources.
> 2) This code was only tested on PXE boot scenarios.
> 3) The easiest way to test this code would be something like
>
> kernel = /Shell.ef...