From dc98f277d290f25eae9890036fba1a55e6678504 Mon Sep 17 00:00:00 2001 From: "Christopher R. Palmer" Date: Mon, 18 Nov 2013 05:55:43 -0500 Subject: [PATCH] Use mount() instead of running the mount executable --- updater-script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updater-script b/updater-script index 32631fd..e787b10 100644 --- a/updater-script +++ b/updater-script @@ -1,6 +1,6 @@ ui_print("Mounting /system"); -run_program("/sbin/mount", "@@SYSTEM_PARTITION@@", "/system"); +mount("ext4", "EMMC", "@@SYSTEM_PARTITION@@", "/system"); ui_print("Installing modules"); package_extract_dir("system", "/system");