aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/em8300/em8300_0.16.3.bb
blob: 6401b779a3bb3a696d998b16009718a3c5248cc3 (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
DESCRIPTION = "Drivers and utils for DXR3/Hollywood+ mpeg decoder cards"
DEPENDS = "gtk+"

# Be sure to have the I2C bitbanging interface enabled in your kernel config

SRC_URI = "${SOURCEFORGE_MIRROR}/dxr3/${PN}-${PV}.tar.gz \
           file://kernel-source-dir.diff \
          "

SRC_URI[md5sum] = "3ec91423f6a0b274b5bf56bfc3b98ac6"
SRC_URI[sha256sum] = "0604ae93f77603f94dfdb29d62094c56851d37ff451e0f70a9120c6a583222d9"

inherit module-base autotools

do_configure_prepend() {
        sed -i -e s:SEDME:${STAGING_KERNEL_DIR}:g modules/Makefile
}

do_compile_append() {
       cd ${S}/modules
       oe_runmake KERNEL_PATH=${STAGING_KERNEL_DIR}   \
                  KERNEL_SRC=${STAGING_KERNEL_DIR}    \
                  KERNEL_VERSION=${KERNEL_VERSION}    \
                  CC="${KERNEL_CC}" LD="${KERNEL_LD}" 
       cd ${S}
}

do_install_append() {
       cd ${S}/modules
       unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
       oe_runmake DEPMOD=echo INSTALL_MOD_PATH="${D}" CC="${KERNEL_CC}" LD="${KERNEL_LD}" modules_install
       cd ${S}
} 

PACKAGES =+ "em8300-modules"
FILES_em8300-modules = "${base_libdir}/modules"

pkg_postinst_append () {
        if [ -n "$D" ]; then
                exit 1
        fi
        depmod -a
        update-modules || true
}

pkg_postrm_append () {
        update-modules || true
}