From d99fcb75f9908cdb8d2d6984f4b3a0a53ff4a1e1 Mon Sep 17 00:00:00 2001 From: Gokul Sriram Palanisamy Date: Tue, 18 Feb 2020 11:48:24 +0530 Subject: [PATCH] pack.py: Updated bootargs for IPQ40xx Bootargs with rootwait wasn't effective. Added rootdelay to fix rootmount issue. Change-Id: I4dbc94902dce49f916846a26beadef8663e02822 Signed-off-by: Gokul Sriram Palanisamy --- tools/pack_legacy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pack_legacy.py b/tools/pack_legacy.py index 35dc0a6ca3..281aa49b3d 100755 --- a/tools/pack_legacy.py +++ b/tools/pack_legacy.py @@ -720,7 +720,7 @@ class Pack(object): if "ipq40xx" in KERNEL_IMG_NAME: DTB = "qcom-ipq4019-ap.dk04.1-c1.dtb" BASE_ADDR = "0x80200000" - BOOT_ARGS = "\'console=ttyMSM0,115200 root=/dev/mmcblk0p12 rootwait\'" + BOOT_ARGS = "\'rootfsname=rootfs rootdelay=1\'" elif "ipq806x" in KERNEL_IMG_NAME: DTB = "qcom-ipq8064-ap145.dtb" BASE_ADDR = "0x42200000"