mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
We've been removing PR values from recipes at upgrade time for a while. In general anyone maintaining a binary distro would end up having to curate these themselves so the values in OE-Core aren't really that useful anymore. In many ways it makes sense to clear out the remaining ones (which are mostly for 'config' recipes that are unlikely to increase in PV) and leave a clean slate for anyone implementing a binary distro config. References are left in meta-selftest since the tests there do involve them and their removal upon upgrade. (From OE-Core rev: d4c346e8ab8f3cae25d1b01c7331ed9f6d4f96ef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
71 lines
2.2 KiB
BlitzBasic
71 lines
2.2 KiB
BlitzBasic
# Copyright Matthias Hentges <devel@hentges.net> (c) 2007
|
|
# License: MIT (see http://www.opensource.org/licenses/mit-license.php
|
|
# for a copy of the license)
|
|
#
|
|
# Filename: alsa-state.bb
|
|
|
|
SUMMARY = "Alsa scenario files to enable alsa state restoration"
|
|
HOMEPAGE = "http://www.alsa-project.org/"
|
|
DESCRIPTION = "Alsa Scenario Files - an init script and state files to restore \
|
|
sound state at system boot and save it at system shut down."
|
|
LICENSE = "MIT & GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420 \
|
|
file://alsa-state-init;beginline=3;endline=4;md5=3ff7ecbf534d7d503941abe8e268ef50 \
|
|
"
|
|
PV = "0.2.0"
|
|
|
|
SRC_URI = "\
|
|
file://asound.conf \
|
|
file://asound.state \
|
|
file://alsa-state-init \
|
|
"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
# As the recipe doesn't inherit systemd.bbclass, we need to set this variable
|
|
# manually to avoid unnecessary postinst/preinst generated.
|
|
python __anonymous() {
|
|
if not bb.utils.contains('DISTRO_FEATURES', 'sysvinit', True, False, d):
|
|
d.setVar("INHIBIT_UPDATERCD_BBCLASS", "1")
|
|
}
|
|
|
|
inherit update-rc.d
|
|
|
|
INITSCRIPT_NAME = "alsa-state"
|
|
INITSCRIPT_PARAMS = "start 39 S . stop 31 0 6 ."
|
|
|
|
do_install() {
|
|
# Only install the init script when 'sysvinit' is in DISTRO_FEATURES.
|
|
if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)}; then
|
|
sed -i -e "s:#STATEDIR#:${localstatedir}/lib/alsa:g" ${WORKDIR}/alsa-state-init
|
|
install -d ${D}${sysconfdir}/init.d
|
|
install -m 0755 ${WORKDIR}/alsa-state-init ${D}${sysconfdir}/init.d/alsa-state
|
|
fi
|
|
|
|
install -d ${D}/${localstatedir}/lib/alsa
|
|
install -d ${D}${sysconfdir}
|
|
install -m 0644 ${WORKDIR}/asound.conf ${D}${sysconfdir}
|
|
install -m 0644 ${WORKDIR}/*.state ${D}${localstatedir}/lib/alsa
|
|
}
|
|
|
|
PACKAGES += "alsa-states"
|
|
|
|
RRECOMMENDS:alsa-state = "alsa-states"
|
|
|
|
RDEPENDS:${PN} = "alsa-utils-alsactl"
|
|
FILES:${PN} = "${sysconfdir}/init.d ${sysconfdir}/asound.conf"
|
|
CONFFILES:${PN} = "${sysconfdir}/asound.conf"
|
|
|
|
FILES:alsa-states = "${localstatedir}/lib/alsa/*.state"
|
|
|
|
pkg_postinst:${PN}() {
|
|
if test -z "$D"
|
|
then
|
|
if test -x ${sbindir}/alsactl
|
|
then
|
|
${sbindir}/alsactl -g -f ${localstatedir}/lib/alsa/asound.state restore
|
|
fi
|
|
fi
|
|
}
|