generic: 5.15: move CMDLINE_OVERRIDE patch to generic generic-cmdline-override
authorChristian Marangi <ansuelsmth@gmail.com>
Mon, 24 Oct 2022 20:10:33 +0000 (22:10 +0200)
committerChristian Marangi <ansuelsmth@gmail.com>
Mon, 24 Oct 2022 23:31:28 +0000 (01:31 +0200)
3 different target (ipq806x, mpc85xx and mediatek) require the very same
patch. This is a good candidate of moving this to generic dir.

While at it also refactor to be more generilized and drop the patches
from the subtarget.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
target/linux/generic/config-5.15
target/linux/generic/pending-5.15/921-sh-add-CONFIG_CMDLINE_OVERRIDE-option.patch [new file with mode: 0644]
target/linux/ipq806x/patches-5.15/900-arm-add-cmdline-override.patch [deleted file]
target/linux/mediatek/patches-5.15/901-arm-add-cmdline-override.patch [deleted file]
target/linux/mpc85xx/patches-5.15/102-powerpc-add-cmdline-override.patch [deleted file]

index e8b0b3a168f74f025b417d122a98d31464a39545..9de0439802007ca85a482601abfef53a2a296c6c 100644 (file)
@@ -948,6 +948,7 @@ CONFIG_CMDLINE=""
 # CONFIG_CMDLINE_EXTEND is not set
 # CONFIG_CMDLINE_FORCE is not set
 # CONFIG_CMDLINE_FROM_BOOTLOADER is not set
+# CONFIG_CMDLINE_OVERRIDE is not set
 # CONFIG_CMDLINE_PARTITION is not set
 # CONFIG_CNIC is not set
 # CONFIG_CODA_FS is not set
diff --git a/target/linux/generic/pending-5.15/921-sh-add-CONFIG_CMDLINE_OVERRIDE-option.patch b/target/linux/generic/pending-5.15/921-sh-add-CONFIG_CMDLINE_OVERRIDE-option.patch
new file mode 100644 (file)
index 0000000..6f0c770
--- /dev/null
@@ -0,0 +1,53 @@
+From a6c8149af3aa2094fcaceaa38fb333a2f10f2a98 Mon Sep 17 00:00:00 2001
+From: Christian Marangi <ansuelsmth@gmail.com>
+Date: Mon, 24 Oct 2022 22:13:30 +0200
+Subject: [PATCH] sh: add CONFIG_CMDLINE_OVERRIDE option
+
+Some bootloaders may have uneditable bootargs. While CMDLINE_FORCE can
+be used, this is not a good option for kernels that are shared across
+devices. This setting enables using "chosen/cmdline-override" binding
+as the cmdline if it exists in the device tree.
+
+Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
+---
+ arch/sh/Kconfig  |  8 ++++++++
+ drivers/of/fdt.c | 11 +++++++++++
+ 2 files changed, 19 insertions(+)
+
+--- a/arch/sh/Kconfig
++++ b/arch/sh/Kconfig
+@@ -765,6 +765,14 @@ config CMDLINE
+       depends on CMDLINE_OVERWRITE || CMDLINE_EXTEND
+       default "console=ttySC1,115200"
++config CMDLINE_OVERRIDE
++    bool "Use alternative cmdline from device tree"
++    help
++      Some bootloaders may have uneditable bootargs. While CMDLINE_FORCE can
++      be used, this is not a good option for kernels that are shared across
++      devices. This setting enables using "chosen/cmdline-override" as the
++      cmdline if it exists in the device tree.
++
+ endmenu
+ menu "Bus options"
+--- a/drivers/of/fdt.c
++++ b/drivers/of/fdt.c
+@@ -1159,6 +1159,17 @@ int __init early_init_dt_scan_chosen(uns
+       if (p != NULL && l > 0)
+               strlcpy(data, p, min(l, COMMAND_LINE_SIZE));
++    /* CONFIG_CMDLINE_OVERRIDE is used to fallback to a different
++     * device tree option of chosen/bootargs-override. This is
++     * helpful on boards where u-boot sets bootargs, and is unable
++     * to be modified.
++     */
++#ifdef CONFIG_CMDLINE_OVERRIDE
++      p = of_get_flat_dt_prop(node, "bootargs-override", &l);
++      if (p != NULL && l > 0)
++              strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE));
++#endif
++
+       /*
+        * CONFIG_CMDLINE is meant to be a default in case nothing else
+        * managed to set the command line, unless CONFIG_CMDLINE_FORCE
diff --git a/target/linux/ipq806x/patches-5.15/900-arm-add-cmdline-override.patch b/target/linux/ipq806x/patches-5.15/900-arm-add-cmdline-override.patch
deleted file mode 100644 (file)
index 23cec10..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
---- a/arch/arm/Kconfig
-+++ b/arch/arm/Kconfig
-@@ -1740,6 +1740,14 @@ config ARM_ATAG_DTB_COMPAT_CMDLINE_MANGL
- endchoice
-+config CMDLINE_OVERRIDE
-+      bool "Use alternative cmdline from device tree"
-+      help
-+        Some bootloaders may have uneditable bootargs. While CMDLINE_FORCE can
-+        be used, this is not a good option for kernels that are shared across
-+        devices. This setting enables using "chosen/cmdline-override" as the
-+        cmdline if it exists in the device tree.
-+
- config CMDLINE
-       string "Default kernel command string"
-       default ""
---- a/drivers/of/fdt.c
-+++ b/drivers/of/fdt.c
-@@ -1162,6 +1162,17 @@ int __init early_init_dt_scan_chosen(uns
-       if (p != NULL && l > 0)
-               strlcat(data, p, min_t(int, strlen(data) + (int)l, COMMAND_LINE_SIZE));
-+    /* CONFIG_CMDLINE_OVERRIDE is used to fallback to a different
-+     * device tree option of chosen/bootargs-override. This is
-+     * helpful on boards where u-boot sets bootargs, and is unable
-+     * to be modified.
-+     */
-+#ifdef CONFIG_CMDLINE_OVERRIDE
-+      p = of_get_flat_dt_prop(node, "bootargs-override", &l);
-+      if (p != NULL && l > 0)
-+              strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE));
-+#endif
-+
-       /*
-        * CONFIG_CMDLINE is meant to be a default in case nothing else
-        * managed to set the command line, unless CONFIG_CMDLINE_FORCE
diff --git a/target/linux/mediatek/patches-5.15/901-arm-add-cmdline-override.patch b/target/linux/mediatek/patches-5.15/901-arm-add-cmdline-override.patch
deleted file mode 100644 (file)
index acbb190..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
---- a/arch/arm/Kconfig
-+++ b/arch/arm/Kconfig
-@@ -1729,6 +1729,14 @@ config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEN
- endchoice
-+config CMDLINE_OVERRIDE
-+      bool "Use alternative cmdline from device tree"
-+      help
-+        Some bootloaders may have uneditable bootargs. While CMDLINE_FORCE can
-+        be used, this is not a good option for kernels that are shared across
-+        devices. This setting enables using "chosen/cmdline-override" as the
-+        cmdline if it exists in the device tree.
-+
- config CMDLINE
-       string "Default kernel command string"
-       default ""
---- a/drivers/of/fdt.c
-+++ b/drivers/of/fdt.c
-@@ -1162,6 +1162,17 @@ int __init early_init_dt_scan_chosen(uns
-       if (p != NULL && l > 0)
-               strlcat(data, p, min_t(int, strlen(data) + (int)l, COMMAND_LINE_SIZE));
-+      /* CONFIG_CMDLINE_OVERRIDE is used to fallback to a different
-+       * device tree option of chosen/bootargs-override. This is
-+       * helpful on boards where u-boot sets bootargs, and is unable
-+       * to be modified.
-+       */
-+#ifdef CONFIG_CMDLINE_OVERRIDE
-+      p = of_get_flat_dt_prop(node, "bootargs-override", &l);
-+      if (p != NULL && l > 0)
-+              strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE));
-+#endif
-+
-       /*
-        * CONFIG_CMDLINE is meant to be a default in case nothing else
-        * managed to set the command line, unless CONFIG_CMDLINE_FORCE
diff --git a/target/linux/mpc85xx/patches-5.15/102-powerpc-add-cmdline-override.patch b/target/linux/mpc85xx/patches-5.15/102-powerpc-add-cmdline-override.patch
deleted file mode 100644 (file)
index 0d26dc8..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
---- a/arch/powerpc/Kconfig
-+++ b/arch/powerpc/Kconfig
-@@ -915,6 +915,14 @@ config CMDLINE_FORCE
- endchoice
-+config CMDLINE_OVERRIDE
-+    bool "Use alternative cmdline from device tree"
-+    help
-+      Some bootloaders may have uneditable bootargs. While CMDLINE_FORCE can
-+      be used, this is not a good option for kernels that are shared across
-+      devices. This setting enables using "chosen/cmdline-override" as the
-+      cmdline if it exists in the device tree.
-+
- config EXTRA_TARGETS
-       string "Additional default image types"
-       help
---- a/drivers/of/fdt.c
-+++ b/drivers/of/fdt.c
-@@ -1162,6 +1162,17 @@ int __init early_init_dt_scan_chosen(uns
-       if (p != NULL && l > 0)
-               strlcat(data, p, min_t(int, strlen(data) + (int)l, COMMAND_LINE_SIZE));
-+    /* CONFIG_CMDLINE_OVERRIDE is used to fallback to a different
-+     * device tree option of chosen/bootargs-override. This is
-+     * helpful on boards where u-boot sets bootargs, and is unable
-+     * to be modified.
-+     */
-+#ifdef CONFIG_CMDLINE_OVERRIDE
-+      p = of_get_flat_dt_prop(node, "bootargs-override", &l);
-+      if (p != NULL && l > 0)
-+              strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE));
-+#endif
-+
-       /*
-        * CONFIG_CMDLINE is meant to be a default in case nothing else
-        * managed to set the command line, unless CONFIG_CMDLINE_FORCE