Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2f463a6 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Simon Horman
Browse files

ARM: shmobile: Mount root file systems in r/w mode for all DT platforms



The shmobile DT files available in the kernel are reference
implementations intended to be used as sample code, as well as for
development. As such, it makes sense to mount the root file system in
read/write mode by default.

Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
parent c95ebbb2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
	compatible = "renesas,ape6evm-reference", "renesas,r8a73a4";

	chosen {
		bootargs = "console=ttySC0,115200 ignore_loglevel";
		bootargs = "console=ttySC0,115200 ignore_loglevel rw";
	};

	memory@40000000 {
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
	compatible = "renesas,ape6evm", "renesas,r8a73a4";

	chosen {
		bootargs = "console=ttySC0,115200 ignore_loglevel root=/dev/nfs ip=dhcp";
		bootargs = "console=ttySC0,115200 ignore_loglevel root=/dev/nfs ip=dhcp rw";
	};

	memory@40000000 {
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
	compatible = "renesas,bockw-reference", "renesas,r8a7778";

	chosen {
		bootargs = "console=ttySC0,115200 ignore_loglevel";
		bootargs = "console=ttySC0,115200 ignore_loglevel rw";
	};

	memory {
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
	compatible = "renesas,bockw", "renesas,r8a7778";

	chosen {
		bootargs = "console=ttySC0,115200 ignore_loglevel ip=dhcp root=/dev/nfs";
		bootargs = "console=ttySC0,115200 ignore_loglevel ip=dhcp root=/dev/nfs rw";
	};

	memory {
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
	compatible = "renesas,marzen-reference", "renesas,r8a7779";

	chosen {
		bootargs = "console=ttySC2,115200 earlyprintk=sh-sci.2,115200 ignore_loglevel root=/dev/nfs ip=on";
		bootargs = "console=ttySC2,115200 earlyprintk=sh-sci.2,115200 ignore_loglevel root=/dev/nfs ip=on rw";
	};

	memory {
Loading