From f97f2b064a3f994742436566e793d7f03ab31c9d Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 7 Sep 2015 19:45:04 +0200 Subject: [PATCH] rpi-base: handle armv6l-musl and get rid of linux-firmware-network. By default the Raspberry Pi does not need linux-firmware to have network connectivity. Install it if you use any USB eth/wifi dongle. --- srcpkgs/rpi-base/template | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/srcpkgs/rpi-base/template b/srcpkgs/rpi-base/template index 57a29b4a754..70eee38e588 100644 --- a/srcpkgs/rpi-base/template +++ b/srcpkgs/rpi-base/template @@ -1,6 +1,6 @@ # Template file for 'rpi-base' pkgname=rpi-base -version=2.4 +version=2.5 revision=1 homepage="http://www.voidlinux.eu" short_desc="Void Linux RaspberryPi base files" @@ -8,14 +8,16 @@ maintainer="Juan RP " license="Public Domain" only_for_archs="armv6l armv6l-musl armv7l armv7l-musl" -depends="virtual?ntp-daemon rpi-firmware rpi-kernel linux-firmware-network" +depends="virtual?ntp-daemon rpi-firmware rpi-kernel" do_install() { - if [ "$XBPS_TARGET_MACHINE" = "armv6l" ]; then + 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 - fi + ;; + esac # Fix permissions for the vchiq device. vmkdir usr/lib/udev/rules.d echo 'SUBSYSTEM=="vchiq", GROUP="video", MODE="0660"' > \