summaryrefslogtreecommitdiff
path: root/packages/alsa/alsa-state.bb
blob: d49aa3231b838cdcb075a5ae1d2eeba85b426bc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#! /bin/sh
#
# 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
# Date: 20070308 (YMD)

DESCRIPTION = "Default ALSA configuration"
MAINTAINER = "Matthias 'CoreDump' Hentges <oe@hentges.net>"
HOMEPAGE = "<homepage>"
LICENSE = "GPL"

######################################################################################

PV = "0.0.1"
PR = "r0"

######################################################################################

SRC_URI = "file://asound.state"

FILES_${PN} = "/etc/*"

######################################################################################

do_install() {
	install -d ${D}${sysconfdir}
	
	install -m 0644 ${WORKDIR}/asound.state ${D}${sysconfdir}
}


pkg_postinst_${PN}() {
	if test -x /usr/sbin/alsactl
	then
		/usr/sbin/alsactl -f ${sysconfdir}/asound.state restore
	fi
}