tools: pack: Removed nosmp bootargs

This allows Linux Kernel to use all
smp cores available.

Signed-off-by: Gokul Sriram Palanisamy <gokulsri@codeaurora.org>
Change-Id: Id63c506d17eeb9cc15cc453adb89f77fa1cb4039
This commit is contained in:
Gokul Sriram Palanisamy 2020-03-16 21:39:06 +05:30
parent 5f9274fbec
commit a52bcaf919

View file

@ -1842,7 +1842,7 @@ def gen_kernelboot_img(parser):
cmd = [SKALES_DIR + "/mkbootimg",
"--kernel=" + TMP_DIR + "/Image.gz",
"--dt=" + TMP_DIR + "/qcom-" + BOARD_NAME + "-dt.img",
"--cmdline=\'rootfsname=rootfs rootwait nosmp\'",
"--cmdline=\'rootfsname=rootfs rootwait\'",
"--output=" + parser.images_dname + "/" + KERNEL_IMG_NAME,
"--base=" + BASE_ADDR]
ret = subprocess.call(cmd)