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

Commit 43ccf68e authored by Baochu Xu's avatar Baochu Xu
Browse files

ARM: dts: add system fstab node to SDW2700 dts



Add system fstab node to SDW2700 dts.This node
is removed for System-As-Root feature on Android P.

Change-Id: Ifc9d804e3aaca771e21052d5abe9fafe2ffcaac4
Signed-off-by: default avatarBaochu Xu <bxu@codeaurora.org>
parent 5043f9f9
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
@@ -16,3 +16,33 @@
&mdss_dsi0 {
	qcom,dsi-pref-prim-pan = <&dsi_hx8399c_hd_vid>;
};


&firmware {
	android {
		compatible = "android,firmware";
		vbmeta {
			compatible = "android,vbmeta";
			parts = "vbmeta,boot,system,vendor,dtbo,recovery";
		};
		fstab {
			compatible = "android,fstab";
			vendor {
				compatible = "android,vendor";
				dev = "/dev/block/platform/soc/7824900.sdhci/by-name/vendor";
				type = "ext4";
				mnt_flags = "ro,barrier=1,discard";
				fsmgr_flags = "wait,avb";
				status = "ok";
			};
			system {
				compatible = "android,system";
				dev = "/dev/block/platform/soc/7824900.sdhci/by-name/system";
				type = "ext4";
				mnt_flags = "ro,barrier=1,discard";
				fsmgr_flags = "wait,avb";
				status = "ok";
			};
		};
	};
};