blob: f00bcce381353375db75521681208c813ab66b32 (
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
41
42
|
require cornucopia.inc
inherit fso-plugin
DEPENDS += "alsa-lib libcanberra libfsoresource android-rpc"
RDEPENDS_${PN} += "libcanberra-alsa"
# Included in fsodeviced itself now
# RRECOMMENDS_${PN} += "fso-alsa-data"
RPROVIDES_${PN} = "openmoko-alsa-scenarios virtual/alsa-scenarios"
SRCREV = "cbd57abf8afaa95f78d22cf593577794ce9ed5b6"
SRCREV = "${FSO_CORNUCOPIA_SRCREV}"
PV = "0.9.4+gitr${SRCPV}"
PE = "2"
PR = "${INC_PR}.15"
EXTRA_OECONF = "\
--enable-kernel26-rfkill \
--enable-player-canberra \
--enable-htcdream-powercontrol \
"
inherit update-rc.d
INITSCRIPT_NAME = "fsodeviced"
INITSCRIPT_PARAMS = "defaults 27"
SRC_URI += "file://fsodeviced"
CONFFILES_${PN} = "${sysconfdir}/freesmartphone/conf/openmoko_gta/fsodeviced.conf \
${sysconfdir}/freesmartphone/conf/palm_pre/fsodeviced.conf \
${sysconfdir}/freesmartphone/conf/htc_qualcomm_dream/fsodeviced.conf \
${sysconfdir}/freesmartphone/conf/htc_qualcomm_msm/fsodeviced.conf \
"
do_install_append() {
install -d ${D}${sysconfdir}/init.d/
install -m 0755 ${WORKDIR}/fsodeviced ${D}${sysconfdir}/init.d/
}
pkg_preinst_${PN} () {
# work-arround for opkg complaining that it cannot replace alsa-default dir (leftover from older fsodeviced) with new alsa-default symlink
rm -rf ${sysconfdir}/freesmartphone/conf/openmoko_gta/alsa-default/
}
|