lint: enforce max line length (MR 2097)

This commit is contained in:
BO41 2021-08-23 08:14:10 +02:00 committed by Oliver Smith
parent 51bfdc9784
commit 77d39ecdf1
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
5 changed files with 17 additions and 23 deletions

View file

@ -19,7 +19,8 @@ def generate_apkbuild(args, pkgname, deviceinfo, patches):
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS\""""
package = """
downstreamkernel_package "$builddir" "$pkgdir" "$_carch" "$_flavor" "$_outdir\""""
downstreamkernel_package "$builddir" "$pkgdir" "$_carch\" \\
"$_flavor" "$_outdir\""""
if deviceinfo["bootimg_qcdt"] == "true":
build += """\n
@ -36,9 +37,10 @@ def generate_apkbuild(args, pkgname, deviceinfo, patches):
elif soc_vendor == "exynos":
codename = "-".join(pkgname.split("-")[2:])
makedepends.append("dtbtool-exynos")
build += f"""
build += """
dtbTool-exynos -o "$_outdir/arch/$_carch/boot"/dt.img \\
$(find "$_outdir/arch/$_carch/boot/dts/" -name *{codename}*.dtb)"""
$(find "$_outdir/arch/$_carch/boot/dts/\""""
build += f" -name *{codename}*.dtb)"
else:
makedepends.append("dtbtool")
build += """