From c524926295aa569032ed8b27eb39a07d7095d297 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sun, 5 Sep 2021 15:52:55 +0200 Subject: [PATCH] pmb.aportgen: rm -p scripts/dtc arg from dtbTool cmd (MR 2107) The python variant of dtbTool, that we currently use, does not use this arg as it does not run dtc in a shell. I suppose the argument was added only for compatibility with other dtbtools. --- pmb/aportgen/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/aportgen/linux.py b/pmb/aportgen/linux.py index b494d934..75ad8b19 100644 --- a/pmb/aportgen/linux.py +++ b/pmb/aportgen/linux.py @@ -42,7 +42,7 @@ def generate_apkbuild(args, pkgname, deviceinfo, patches): else: makedepends.append("dtbtool") build += """ - dtbTool -p scripts/dtc/ -o "$_outdir/arch/$_carch/boot"/dt.img \\ + dtbTool -o "$_outdir/arch/$_carch/boot"/dt.img \\ "$_outdir/arch/$_carch/boot/\"""" package += """ install -Dm644 "$_outdir/arch/$_carch/boot"/dt.img \\