diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-11-02 17:48:54 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-03 08:21:12 +0000 |
| commit | 1d9c874a91c105e636b785d37094bf6bc38d76ab (patch) | |
| tree | 91b824af7ccb9dbb583333aca299069f605389bf /meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.4.bb | |
| parent | 68faa826df86082918bbad2c4fbca562e8afbbcd (diff) | |
| download | poky-1d9c874a91c105e636b785d37094bf6bc38d76ab.tar.gz | |
alsa: upgrade 1.2.3 -> 1.2.4
Backport a patch to fix musl builds.
(From OE-Core rev: 5cafc3721cbe0193fb444adba4cc82a820f3f33f)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.4.bb')
| -rw-r--r-- | meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.4.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.4.bb b/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.4.bb new file mode 100644 index 0000000000..048fef68a5 --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.4.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | require alsa-utils.inc | ||
| 2 | |||
| 3 | SUMMARY = "Shell scripts that show help info and create ALSA configuration files" | ||
| 4 | PROVIDES = "alsa-utils-alsaconf" | ||
| 5 | |||
| 6 | FILESEXTRAPATHS_prepend := "${THISDIR}/alsa-utils:" | ||
| 7 | |||
| 8 | PACKAGES = "${PN}" | ||
| 9 | RDEPENDS_${PN} += "bash" | ||
| 10 | |||
| 11 | FILES_${PN} = "${sbindir}/alsaconf \ | ||
| 12 | ${sbindir}/alsa-info.sh \ | ||
| 13 | ${sbindir}/alsabat-test.sh \ | ||
| 14 | " | ||
| 15 | |||
| 16 | S = "${WORKDIR}/alsa-utils-${PV}" | ||
| 17 | |||
| 18 | do_install() { | ||
| 19 | install -d ${D}${sbindir} | ||
| 20 | install -m 0755 ${B}/alsaconf/alsaconf ${D}${sbindir}/ | ||
| 21 | install -m 0755 ${S}/alsa-info/alsa-info.sh ${D}${sbindir}/ | ||
| 22 | if ${@bb.utils.contains('PACKAGECONFIG', 'bat', 'true', 'false', d)}; then | ||
| 23 | install -m 0755 ${S}/bat/alsabat-test.sh ${D}${sbindir}/ | ||
| 24 | fi | ||
| 25 | } | ||
