aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/patches-4.3/0104-fix_bootargs_handling.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-03-07 17:56:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2016-03-07 17:56:53 +0000
commit1e91df0491af50d6bb3872bf1951e47c31694f3d (patch)
treefeb1e217b182e8c5b30d910a506e4b9f07f7e780 /target/linux/ramips/patches-4.3/0104-fix_bootargs_handling.patch
parent95cd00b31eea8f61158c2b2f05698688321a0ccd (diff)
downloadmaster-187ad058-1e91df0491af50d6bb3872bf1951e47c31694f3d.tar.gz
master-187ad058-1e91df0491af50d6bb3872bf1951e47c31694f3d.tar.bz2
master-187ad058-1e91df0491af50d6bb3872bf1951e47c31694f3d.zip
ramips: convert the remaining subtargets to 4.4
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48954 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/patches-4.3/0104-fix_bootargs_handling.patch')
-rw-r--r--target/linux/ramips/patches-4.3/0104-fix_bootargs_handling.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/target/linux/ramips/patches-4.3/0104-fix_bootargs_handling.patch b/target/linux/ramips/patches-4.3/0104-fix_bootargs_handling.patch
deleted file mode 100644
index 5095d68df4..0000000000
--- a/target/linux/ramips/patches-4.3/0104-fix_bootargs_handling.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- a/arch/mips/ralink/of.c
-+++ b/arch/mips/ralink/of.c
-@@ -3,7 +3,7 @@
- * under the terms of the GNU General Public License version 2 as published
- * by the Free Software Foundation.
- *
-- * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
-+ * Copyright (C) 2008-2014 Imre Kaloz <kaloz@openwrt.org>
- * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
- * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
- */
-@@ -66,6 +66,17 @@ static int __init early_init_dt_find_mem
- return 0;
- }
-
-+static int chosen_dtb;
-+
-+static int __init early_init_dt_find_chosen(unsigned long node, const char *uname,
-+ int depth, void *data)
-+{
-+ if (depth == 1 && !strcmp(uname, "chosen"))
-+ chosen_dtb = 1;
-+
-+ return 0;
-+}
-+
- extern struct boot_param_header __image_dtb;
-
- void __init plat_mem_setup(void)
-@@ -78,7 +89,9 @@ void __init plat_mem_setup(void)
- */
- __dt_setup_arch(&__image_dtb);
-
-- strlcpy(arcs_cmdline, boot_command_line, COMMAND_LINE_SIZE);
-+ of_scan_flat_dt(early_init_dt_find_chosen, NULL);
-+ if (chosen_dtb)
-+ strlcpy(arcs_cmdline, boot_command_line, COMMAND_LINE_SIZE);
-
- strlcpy(arcs_cmdline, boot_command_line, COMMAND_LINE_SIZE);
-