File 0003-cmdline-Provide-cmdline-functions-as-module.patch of Package grub2.37159

From 85aba9d85daae70277d27835d42f4ffbaa5609fe Mon Sep 17 00:00:00 2001
From: Michael Chang <mchang@suse.com>
Date: Mon, 17 Aug 2020 17:25:56 +0800
Subject: [PATCH 3/4] 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(-)

diff --git a/grub-core/Makefile.core.def b/grub-core/Makefile.core.def
index cfc15287f..51aeb4559 100644
--- a/grub-core/Makefile.core.def
+++ b/grub-core/Makefile.core.def
@@ -1696,7 +1696,6 @@ module = {
   arm64 = loader/arm64/linux.c;
   emu = loader/emu/linux.c;
   common = loader/linux.c;
-  common = lib/cmdline.c;
 };
 
 module = {
@@ -2414,3 +2413,8 @@ module = {
   enable = i386_pc;
   enable = efi;
 };
+
+module = {
+  name = cmdline;
+  common = lib/cmdline.c;
+};
diff --git a/grub-core/lib/cmdline.c b/grub-core/lib/cmdline.c
index 3791f3aa9..9ef1bb46b 100644
--- a/grub-core/lib/cmdline.c
+++ b/grub-core/lib/cmdline.c
@@ -20,6 +20,9 @@
 #include <grub/lib/cmdline.h>
 #include <grub/misc.h>
 #include <grub/tpm.h>
+#include <grub/dl.h>
+
+GRUB_MOD_LICENSE ("GPLv3+");
 
 static unsigned int check_arg (char *c, int *has_space)
 {
-- 
2.35.3

openSUSE Build Service is sponsored by