blob: 8bf8f80e21cdab63caa74eb67b93fff502bb5237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
DESCRIPTION = "Machine specific alsa state files"
SECTION = "base"
LICENSE = "MIT"
PR = "r1"
SRC_URI = "file://*.state"
do_install () {
install -d ${D}${sysconfdir}/alsa
install -m 0644 ${WORKDIR}/*.state ${D}${sysconfdir}/alsa
}
ALLOW_EMPTY = "1"
FILES_${PN} += "${sysconfdir}/alsa/*"
|