diff --git a/alarm/kodi-rpi-legacy/PKGBUILD b/alarm/kodi-rpi-legacy/PKGBUILD index b8d8dda08..afe544b27 100644 --- a/alarm/kodi-rpi-legacy/PKGBUILD +++ b/alarm/kodi-rpi-legacy/PKGBUILD @@ -109,12 +109,14 @@ build() { # the build system expects to find /usr/include/drm/drm_fourcc.h however we provide this # in /usr/lib/modules/x.y.z-1-ARCH/build/include/uapi/drm/drm_fourcc.h + # and with the release of 19.1, videodev2.h is required # # credit to Kevin for the following hack: _kernel_release="$(pacman -Q linux-raspberrypi4-headers | grep -Eo "[^\ ]+$")-ARCH" - mkdir -p "$srcdir/uapi/drm" - ln -s /usr/lib/modules/$_kernel_release/build/include/uapi/drm/drm_fourcc.h "$srcdir/uapi/drm" + mkdir -p "$srcdir/uapi/drm" "$srcdir/uapi/linux" + ln -s /usr/lib/modules/"$_kernel_release"/build/include/uapi/drm/drm_fourcc.h "$srcdir/uapi/drm" + ln -s /usr/lib/modules/"$_kernel_release"/build/include/uapi/linux/videodev2.h "$srcdir/uapi/linux" export CPPFLAGS+=" -I$srcdir/uapi" # -march= defined in /etc/makepkg.conf will override the value for -mcpu we @@ -195,7 +197,7 @@ package_kodi-rpi-legacy() { # setup video drivers for kodi-gbm install -Dm0644 "$srcdir/kodi.config.txt" "$pkgdir/boot/kodi.config.txt" - + # rpi2 wants 384 MB of memory sed -i 's/@@@/384/' "$pkgdir/boot/kodi.config.txt"