f97f2b064a
By default the Raspberry Pi does not need linux-firmware to have network connectivity. Install it if you use any USB eth/wifi dongle.
25 lines
734 B
Bash
25 lines
734 B
Bash
# Template file for 'rpi-base'
|
|
pkgname=rpi-base
|
|
version=2.5
|
|
revision=1
|
|
homepage="http://www.voidlinux.eu"
|
|
short_desc="Void Linux RaspberryPi base files"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="Public Domain"
|
|
|
|
only_for_archs="armv6l armv6l-musl armv7l armv7l-musl"
|
|
depends="virtual?ntp-daemon rpi-firmware rpi-kernel"
|
|
|
|
do_install() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
armv6l*)
|
|
# 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
|
|
;;
|
|
esac
|
|
# 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
|
|
}
|