From 112fcb5110b4c33b85b2d5f72d088a8fa529ee6a Mon Sep 17 00:00:00 2001 From: Aster Boese Date: Mon, 27 Oct 2025 00:28:32 -0400 Subject: [PATCH] pine64-pinenote: workaround unnecessary error in grep ci check The modules-load.d and modprobe.d files come from the `etc/...` directories in the builddir, which causes in a false positive in the grep CI check. This works around that to prevent having to disable checking the entire device. [ci:ignore-count] Part-of: --- device/testing/device-pine64-pinenote/APKBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/device/testing/device-pine64-pinenote/APKBUILD b/device/testing/device-pine64-pinenote/APKBUILD index 3417b8dfb..027f64dad 100644 --- a/device/testing/device-pine64-pinenote/APKBUILD +++ b/device/testing/device-pine64-pinenote/APKBUILD @@ -2,7 +2,7 @@ pkgname=device-pine64-pinenote pkgdesc="Pine64 PineNote" pkgver=6 -pkgrel=0 +pkgrel=1 _commit="28d2c05ab4e80a7972611cd3188f3e8be4197f6a" url="https://postmarketos.org" license="GPL-3.0-only" @@ -71,10 +71,13 @@ package() { -t "$pkgdir"/etc/libinput # modprobe rules + # Hack to get around grep CI error since we don't want to exclude the whole file + cd "$builddir"/etc install -Dm644 \ - "$builddir"/etc/modprobe.d/rockchip_ebc.conf \ - "$builddir"/etc/modprobe.d/wifi.conf \ + modprobe.d/rockchip_ebc.conf \ + modprobe.d/wifi.conf \ -t "$pkgdir"/usr/lib/modprobe.d + cd "$builddir" # udev rules install -Dm644 \