Lakka-LibreELEC/packages/lakka/lakka_tools/rpi_disable_hdmi_service/package.mk
Tomáš Kelemen (vudiq) bdc8ca9533
Add support for Raspberry Pi Zero 2 W with GPICase
Co-authored-by: Cicirifu <54900043+Cicirifu@users.noreply.github.com>
2022-02-28 10:09:52 +01:00

13 lines
359 B
Makefile

PKG_NAME="rpi_disable_hdmi_service"
PKG_VERSION="1.0"
PKG_LICENSE="GPL"
PKG_SITE="https://www.lakka.tv"
PKG_DEPENDS_TARGET="systemd"
PKG_LONGDESC="Package to install a service"
PKG_TOOLCHAIN="manual"
post_install() {
if [ "${PROJECT}" = "RPi" ] && [ "${DEVICE}" = "GPICase" -o "${DEVICE}" = "Pi02GPi" ]; then
enable_service disable-hdmi.service
fi
}