30 lines
973 B
Text
30 lines
973 B
Text
# Template file for 'cubieboard2-base'
|
|
pkgname=cubieboard2-base
|
|
version=1.2
|
|
revision=1
|
|
build_style=meta
|
|
homepage="http://www.voidlinux.eu"
|
|
short_desc="Void Linux Cubieboard2 platform package"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Public Domain"
|
|
|
|
only_for_archs="armv7l"
|
|
makedepends="ntp?ntp-daemon dhcpcd openssh-server cubieboard2-uboot cubieboard2-kernel"
|
|
depends="${makedepends}"
|
|
|
|
# enable ntpd, dhcpcd and sshd by default.
|
|
systemd_services="
|
|
ntpdate.service on
|
|
ntpd.service on
|
|
dhcpcd.service on
|
|
sshd.service on"
|
|
|
|
do_install() {
|
|
# Load the sunxi-emac module by default.
|
|
vmkdir usr/lib/modules-load.d
|
|
echo sunxi-emac > ${DESTDIR}/usr/lib/modules-load.d/cubieboard2.conf
|
|
# Set proper perms to disp and cedar devices.
|
|
vmkdir usr/lib/udev/rules.d
|
|
echo 'KERNEL=="disp", MODE="0660", GROUP="video"' > ${DESTDIR}/usr/lib/udev/rules.d/50-disp.rules
|
|
echo 'KERNEL=="cedar_dev", MODE="0660", GROUP="video"' > ${DESTDIR}/usr/lib/udev/rules.d/50-cedar.rules
|
|
}
|