d108ec594a
- Introduces a new package, grub2-x86_64-efi-bls, which includes a straightforward grubbls.efi file. This file can be copied to the EFI System Partition (ESP) along with boot fragments in the Boot Loader Specification (BLS) format * 0001-Streamline-BLS-and-improve-PCR-stability.patch - Fix crash in bli module (bsc#1226497) * 0001-bli-Fix-crash-in-get_part_uuid.patch - Rework package dependencies: grub2-common now includes common userland utilities and is required by grub2 platform packages. grub2 is now a meta package that pulls in the default platform package. OBS-URL: https://build.opensuse.org/request/show/1196023 OBS-URL: https://build.opensuse.org/package/show/Base:System/grub2?expand=0&rev=512
48 lines
1.3 KiB
Diff
48 lines
1.3 KiB
Diff
From 42cb0ebbffd660608612f9e32150a6596c6933c4 Mon Sep 17 00:00:00 2001
|
|
From: Michael Chang <mchang@suse.com>
|
|
Date: Mon, 17 Aug 2020 17:25:56 +0800
|
|
Subject: [PATCH 2/2] cmdline: Provide cmdline functions as module
|
|
|
|
The command line processing is needed by many loader modules, hence we should
|
|
make it a sharable one rather than belonging to linux loader. This can cut the
|
|
dependency to linux module among multiple loaders like multiboot linuxefi and
|
|
so on to make custom boot image much more flexible to compose.
|
|
|
|
Signed-off-by: Michael Chang <mchang@suse.com>
|
|
---
|
|
grub-core/Makefile.core.def | 6 +++++-
|
|
grub-core/lib/cmdline.c | 3 +++
|
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
|
|
|
--- a/grub-core/Makefile.core.def
|
|
+++ b/grub-core/Makefile.core.def
|
|
@@ -1860,7 +1860,6 @@
|
|
x86_64_efi = loader/efi/linux.c;
|
|
emu = loader/emu/linux.c;
|
|
common = loader/linux.c;
|
|
- common = lib/cmdline.c;
|
|
};
|
|
|
|
module = {
|
|
@@ -2611,3 +2610,8 @@
|
|
efi = commands/bli.c;
|
|
enable = efi;
|
|
};
|
|
+
|
|
+module = {
|
|
+ name = cmdline;
|
|
+ common = lib/cmdline.c;
|
|
+};
|
|
--- a/grub-core/lib/cmdline.c
|
|
+++ b/grub-core/lib/cmdline.c
|
|
@@ -19,6 +19,9 @@
|
|
|
|
#include <grub/lib/cmdline.h>
|
|
#include <grub/misc.h>
|
|
+#include <grub/dl.h>
|
|
+
|
|
+GRUB_MOD_LICENSE ("GPLv3+");
|
|
|
|
static unsigned int check_arg (char *c, int *has_space)
|
|
{
|