Refreshed all patches Dropped upstreamed patches: 522-PCI-aardvark-fix-logic-in-PCI-configuration-read-write-functions.patch 523-PCI-aardvark-set-PIO_ADDR_LS-correctly-in-advk_pcie_rd_conf.patch 525-PCI-aardvark-use-isr1-instead-of-isr0-interrupt-in-legacy-irq-mode.patch 527-PCI-aardvark-fix-PCIe-max-read-request-size-setting.patch updated patches: 524-PCI-aardvark-set-host-and-device-to-the-same-MAX-payload-size.patch 030-USB-serial-option-fix-dwm-158-3g-modem-interface.patch Added new ARM64 symbol: CONFIG_ARM64_ERRATUM_1024718 Compile-tested on: cns3xxx, imx6, mvebu (arm64), x86_64 Runtime-tested on: cns3xxx, imx6, x86_64 Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 5813b729eb9fe91fcf895a5c2f30bf34fbd46379 Mon Sep 17 00:00:00 2001
 | 
						|
From: Linus Walleij <linus.walleij@linaro.org>
 | 
						|
Date: Wed, 2 May 2018 09:17:25 +0200
 | 
						|
Subject: [PATCH] ARM: dts: Fix bootargs for Gemini D-Link devices
 | 
						|
 | 
						|
These machines need to be booted from very specific harddisk
 | 
						|
partitions (as the D-Link DNS-313 boots specifically from
 | 
						|
partition 4). Add the proper bootargs so that everything works
 | 
						|
smoothly.
 | 
						|
 | 
						|
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
 | 
						|
---
 | 
						|
 arch/arm/boot/dts/gemini-dlink-dir-685.dts | 3 ++-
 | 
						|
 arch/arm/boot/dts/gemini-dlink-dns-313.dts | 1 +
 | 
						|
 2 files changed, 3 insertions(+), 1 deletion(-)
 | 
						|
 | 
						|
--- a/arch/arm/boot/dts/gemini-dlink-dir-685.dts
 | 
						|
+++ b/arch/arm/boot/dts/gemini-dlink-dir-685.dts
 | 
						|
@@ -20,7 +20,8 @@
 | 
						|
 	};
 | 
						|
 
 | 
						|
 	chosen {
 | 
						|
-		stdout-path = "uart0:115200n8";
 | 
						|
+		bootargs = "console=ttyS0,19200n8 root=/dev/sda1 rw rootwait";
 | 
						|
+		stdout-path = "uart0:19200n8";
 | 
						|
 	};
 | 
						|
 
 | 
						|
 	gpio_keys {
 | 
						|
--- a/arch/arm/boot/dts/gemini-dlink-dns-313.dts
 | 
						|
+++ b/arch/arm/boot/dts/gemini-dlink-dns-313.dts
 | 
						|
@@ -26,6 +26,7 @@
 | 
						|
 	};
 | 
						|
 
 | 
						|
 	chosen {
 | 
						|
+		bootargs = "console=ttyS0,19200n8 root=/dev/sda4 rw rootwait";
 | 
						|
 		stdout-path = "uart0:19200n8";
 | 
						|
 	};
 | 
						|
 
 |