summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@intel.com>2011-03-03 15:39:53 -0600
committerTom Zanussi <tom.zanussi@intel.com>2011-03-03 15:39:53 -0600
commit9497c977021d7cf76b129f5baeac0ea0b9f10e22 (patch)
tree333c698b54e0aa22b43d7504a8dcc6d90af2d44b
parent2c360328c1da9e5be6f1b0f79b989ac7e0fdee2b (diff)
downloadmeta-intel-bernard-5.0rc2.tar.gz
meta-n450: compile fixesbernard-5.0rc2
- changed RDPENDS from amixer to alsa-utils-amixer - fix typo in LIC_FILES_CHECKSUM - fix audiofix init.d ln Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
-rw-r--r--meta-n450/recipes-bsp/audiofix/audiofix.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-n450/recipes-bsp/audiofix/audiofix.bb b/meta-n450/recipes-bsp/audiofix/audiofix.bb
index 846d59ee..3b1d2723 100644
--- a/meta-n450/recipes-bsp/audiofix/audiofix.bb
+++ b/meta-n450/recipes-bsp/audiofix/audiofix.bb
@@ -2,10 +2,10 @@ SUMMARY = "Provide a basic init script to enable audio"
2DESCRIPTION = "This package provides an init script which enables the audio on startup via the amixer command. It address a problem with the development board that has the audio muted on power on." 2DESCRIPTION = "This package provides an init script which enables the audio on startup via the amixer command. It address a problem with the development board that has the audio muted on power on."
3SECTION = "base" 3SECTION = "base"
4LICENSE = "MIT" 4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://${POKYBASE}/LICENSE;md5=md5=3f40d7994397109285ec7b81fdeb3b58" 5LIC_FILES_CHKSUM = "file://${POKYBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
6 6
7PR = "r2" 7PR = "r2"
8RDEPENDS = "amixer" 8RDEPENDS = "alsa-utils-amixer"
9 9
10SRC_URI = "file://n450_audiofix" 10SRC_URI = "file://n450_audiofix"
11 11
@@ -13,5 +13,5 @@ do_install () {
13 install -d ${D}${sysconfdir}/init.d 13 install -d ${D}${sysconfdir}/init.d
14 install -d ${D}${sysconfdir}/rc5.d 14 install -d ${D}${sysconfdir}/rc5.d
15 install -m 0755 ${WORKDIR}/n450_audiofix ${D}${sysconfdir}/init.d 15 install -m 0755 ${WORKDIR}/n450_audiofix ${D}${sysconfdir}/init.d
16 ln -sf ../init.d/n450_audiofix ${D}/sysconfdir/rc5.d/S91n450_audiofix 16 ln -sf ${D}${sysconfdir}/init.d/n450_audiofix ${D}/${sysconfdir}/rc5.d/S91n450_audiofix
17} 17}