blob: 53d898d030101c9f06d8cfe589e43ed5a54915ca (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# needs a gcc4 fix
BROKEN = "1"
COMPATIBLE_MACHINE = "(h3600|h3900)"
DESCRIPTION = "Alsa Drivers"
SECTION = "base"
LICENSE = "GPL"
PR = "r6"
DEPENDS += "fakeroot-native"
SRC_URI = "ftp://ftp.handhelds.org/packages/alsa-driver/alsa-driver-${PV}.tar.gz \
file://sound.p.patch;patch=1 \
file://h5400.patch;patch=1 \
file://sa11xx.patch;patch=1 \
file://adriver.h.patch;patch=1"
inherit autotools module
EXTRA_OECONF = "--with-sequencer=yes \
--with-isapnp=no \
--with-oss=yes \
--with-kernel=${STAGING_KERNEL_DIR} \
--with-kernel-version=${KERNEL_VERSION}"
PACKAGES =+ "${PN}-midi ${PN}-misc"
FILES_${PN} = "/lib/modules/*/misc/snd* \
${sysconfdir}/modutils/*"
midi_modules = "snd-seq-midi-emul.o \
snd-seq-midi-event.o \
snd-seq-midi.o \
snd-seq-virmidi.o \
snd-seq-oss.o"
FILES_${PN}-midi = "${@' '.join(map ((lambda x: '/lib/modules/*/misc/%s' % x), bb.data.getVar('midi_modules', d).split()))}"
misc_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"
FILES_${PN}-misc = "${@' '.join(map ((lambda x: '/lib/modules/*/misc/%s' % x), bb.data.getVar('misc_modules', d).split()))}"
# put in-kernel headers first in the include search path.
# without this all configure checks fail
CFLAGS =+ "-I${STAGING_KERNEL_DIR}/include"
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
fakeroot make -k NODEPMOD=yes DESTDIR=${D} install;
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/
}
|