0079d8d94f
With the latest runit-void pkg, there's no etc/runit/runsvdir/default directory anymore, until the pkg is configured. So create the dir inconditionally to enable the services.
23 lines
706 B
Text
23 lines
706 B
Text
# Template file for 'rpi-base'
|
|
pkgname=rpi-base
|
|
version=2.1
|
|
revision=1
|
|
homepage="http://www.voidlinux.eu"
|
|
short_desc="Void Linux RaspberryPi base files"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Public Domain"
|
|
|
|
only_for_archs="armv6l armv7l"
|
|
depends="virtual?ntp-daemon rpi-firmware rpi-kernel"
|
|
|
|
do_install() {
|
|
if [ "$XBPS_TARGET_MACHINE" = "armv6l" ]; then
|
|
# Load the audio module by default on RPi.
|
|
vmkdir usr/lib/modules-load.d
|
|
echo snd-bcm2835 > ${DESTDIR}/usr/lib/modules-load.d/snd_bcm2835.conf
|
|
fi
|
|
# Fix permissions for the vchiq device.
|
|
vmkdir usr/lib/udev/rules.d
|
|
echo 'SUBSYSTEM=="vchiq", GROUP="video", MODE="0660"' > \
|
|
${DESTDIR}/usr/lib/udev/rules.d/71-raspberrypi.rules
|
|
}
|