diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2022-11-29 18:23:08 +0100 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2022-12-01 16:08:18 +0100 |
commit | e346bebbd36b1576a3335331fed61bb48c6d8823 (patch) | |
tree | b3e57a5ca57eeb9bc5fb8d29b7e561f841b0b838 /include/linux/pe.h | |
parent | a89474aaf7cf27f2299e0a00fb64c94b6ad338a9 (diff) | |
download | lwn-e346bebbd36b1576a3335331fed61bb48c6d8823.tar.gz lwn-e346bebbd36b1576a3335331fed61bb48c6d8823.zip |
efi: libstub: Always enable initrd command line loader and bump version
In preparation for setting a cross-architecture baseline for EFI boot
support, remove the Kconfig option that permits the command line initrd
loader to be disabled. Also, bump the minor version so that any image
built with the new version can be identified as supporting this.
Acked-by: Leif Lindholm <quic_llindhol@quicinc.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'include/linux/pe.h')
-rw-r--r-- | include/linux/pe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pe.h b/include/linux/pe.h index 1d3836ef9d92..056a1762de90 100644 --- a/include/linux/pe.h +++ b/include/linux/pe.h @@ -29,7 +29,7 @@ * handover_offset and xloadflags fields in the bootparams structure. */ #define LINUX_EFISTUB_MAJOR_VERSION 0x1 -#define LINUX_EFISTUB_MINOR_VERSION 0x0 +#define LINUX_EFISTUB_MINOR_VERSION 0x1 #define MZ_MAGIC 0x5a4d /* "MZ" */ |