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

Commit dd9bd3a9 authored by Vijay Navnath Kamble's avatar Vijay Navnath Kamble Committed by Gerrit - the friendly Code Review server
Browse files

ARM: dts: msm: Mount system, vendor from fstab for apq8053 hw platforms



Mount system and vendor partitions from fstab for apq8053 hw
platforms which do not have A/B support enabled.

Change-Id: If8f3f26b5885a29db217760a65e899d2bc813d28
Signed-off-by: default avatarVijay Navnath Kamble <vkambl@codeaurora.org>
parent 32173ed1
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
@@ -548,3 +548,28 @@
		status = "disabled";
	};
};

&firmware {
	android {
		compatible = "android,firmware";
		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";
				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";
				status = "ok";
			};
		};
	};
};
+26 −1
Original line number Diff line number Diff line
/*
 * Copyright (c) 2017, The Linux Foundation. All rights reserved.
 * Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -118,3 +118,28 @@
		};
	};
};

&firmware {
	android {
		compatible = "android,firmware";
		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";
				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";
				status = "ok";
			};
		};
	};
};