blob: ba775ff51146d162152059c31a53c5fb45c528b9 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
DESCRIPTION = "Alsa Drivers"
MAINTAINER = "Pigi"
SECTION = "base"
LICENSE = "GPL"
PR = "r3"
SRC_URI = "ftp://ftp.handhelds.org/packages/alsa-driver/alsa-driver-${PV}.tar.gz \
file://sound.p.patch;patch=1 \
file://sa11xx.patch;patch=1 \
file://adriver.h.patch;patch=1"
inherit autotools module
EXTRA_OECONF=" --with-sequencer=no \
--with-isapnp=no \
--with-oss=yes \
--with-kernel=${STAGING_KERNEL_DIR} \
--with-kernel-version=${KERNEL_VERSION}"
FILES_${PN} = "/lib/modules/*/misc/snd* \
${sysconfdir}/modutils/*"
do_configure() {
cards=
if egrep "CONFIG_SA1100_H3[168]00=y" "${STAGING_KERNEL_DIR}/.config" ; then
cards="$cards,sa11xx-uda1341"
familiar_arch=ipaqsa
fi
if grep "CONFIG_ARCH_H3900=y" "${STAGING_KERNEL_DIR}/.config" ; then
cards="$cards,pxa-uda1380,h5400-ak4535"
familiar_arch=ipaqpxa
fi
cards="$cards,bluez-sco,pdaudiocf"
oe_runconf --with-cards=${cards}
}
do_install() {
if egrep "CONFIG_SA1100_H3[168]00=y" "${STAGING_KERNEL_DIR}/.config" ; then
familiar_arch=ipaqsa
fi
if grep "CONFIG_ARCH_H3900=y" "${STAGING_KERNEL_DIR}/.config" ; then
familiar_arch=ipaqpxa
fi
extra_modules="snd-gus-synth.o snd-emu8000-synth.o snd-emux-synth.o \
snd-ainstr-fm.o snd-ainstr-gf1.o snd-ainstr-iw.o snd-ainstr-simple.o \
snd-seq-midi-emul.o snd-seq-midi-event.o snd-seq-midi.o snd-seq-virmidi.o snd-seq-oss.o"
fakeroot make -k NODEPMOD=yes DESTDIR=${D} install;
for i in ${extra_modules};
do rm -f ${D}/lib/modules/*/misc/$i;
done
if [ -d ${D}${sysconfdir}/modutils/ ] ; then
rm -r ${D}${sysconfdir}/modutils/ ;
fi
mkdir -p ${D}${sysconfdir}/modutils/
cp familiar/alsa-modules-${familiar_arch} ${D}${sysconfdir}/modutils/
}
|