diff --git a/SOURCES/0002-Add-support-for-setting-a-platform-module-ID.patch b/SOURCES/0002-Add-support-for-setting-a-platform-module-ID.patch new file mode 100644 index 0000000..ef0d380 --- /dev/null +++ b/SOURCES/0002-Add-support-for-setting-a-platform-module-ID.patch @@ -0,0 +1,52 @@ +From 4f9a7a0eda7b5d30a5697b07809fc1a93cb976d1 Mon Sep 17 00:00:00 2001 +From: Neal Gompa +Date: Fri, 20 Nov 2020 06:01:16 -0500 +Subject: [PATCH] Add support for setting a platform module ID + +Now that Micro DNF supports modularity, we need to be able to selectively +override what it detects as the platform module when working with +installroots that have modular content when they differ from the host. + +nsella +Note: the commit 7419ab465a04af525e39005e33ff869647c6bde2 was omitted +--- + dnf/dnf-main.c | 16 +++++++++++++++- + 1 file changed, 15 insertions(+), 1 deletion(-) + +diff --git a/dnf/dnf-main.c b/dnf/dnf-main.c +index 6cb8c0e..2ea3d76 100644 +--- a/dnf/dnf-main.c ++++ b/dnf/dnf-main.c +@@ -131,6 +131,20 @@ process_global_option (const gchar *option_name, + } + } + } ++ else if (strcmp (setopt[0], "module_platform_id") == 0) ++ { ++ const char *module_platform_id = setopt[1]; ++ if (module_platform_id[0] != '\0') ++ { ++ dnf_context_set_platform_module (ctx, module_platform_id); ++ } ++ else ++ { ++ local_error = g_error_new (G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, ++ "Empty value in: %s", value); ++ ret = FALSE; ++ } ++ } + else if (strcmp (setopt[0], "cachedir") == 0) + { + cachedir_used = TRUE; +@@ -212,7 +226,7 @@ static const GOptionEntry global_opts[] = { + { "refresh", '\0', G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE, &opt_refresh, "Set metadata as expired before running the command", NULL }, + { "releasever", '\0', G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK, process_global_option, "Override the value of $releasever in config and repo files", "RELEASEVER" }, + { "setopt", '\0', G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK, process_global_option, +- "Override a configuration option (install_weak_deps=0/1, cachedir=, reposdir=,,..., tsflags=nodocs/test, varsdir=,,...)", "