diff options
author | Koen Kooi <koen@openembedded.org> | 2009-01-02 20:27:23 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-01-02 20:27:23 +0100 |
commit | 5ac01b1aa855e8a83d64300d02cc14e574a86d88 (patch) | |
tree | 8b28f400c19e87d8956533dc7d83a35f9483ed1c /packages/dsplink/dsplink-module_1.60.bb | |
parent | f9c60f769454e951aea93102728515eb376ac850 (diff) |
dsplink, codec-engine: put include files in one include and change build depending on source layout
Diffstat (limited to 'packages/dsplink/dsplink-module_1.60.bb')
-rw-r--r-- | packages/dsplink/dsplink-module_1.60.bb | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/packages/dsplink/dsplink-module_1.60.bb b/packages/dsplink/dsplink-module_1.60.bb deleted file mode 100644 index 232ac1bec8..0000000000 --- a/packages/dsplink/dsplink-module_1.60.bb +++ /dev/null @@ -1,48 +0,0 @@ -# The tconf tool breaks if there is a '.' in your pwd -PR = "r5" -PE = "1" -PV = "160" - -# Get dsplink tarball from TI website, place in sources and calculate -# md5sum -# Look for tarball at https://www-a.ti.com/downloads/sds_support/targetcontent/link/link_1_60/index.html - -SRC_URI = "http://install.tarball.in.source.dir/dsplink_1_60.tar.gz \ - file://Makefile.dsplink \ - file://Makefile-dsplink-kbuild \ -" - -S = "${WORKDIR}/dsplink_1_60/dsplink" - -# Needed for buildscripts -export DSPLINK="${S}" - -inherit module -require ti-paths.inc - -do_configure() { - # Run perl script to create appropriate makefiles (v1.60 and up) - perl config/bin/dsplinkcfg.pl --platform=${DSPLINKPLATFORM} --nodsp=1 --dspcfg_0=${DSPCFG} --dspos_0=DSPBIOS5XX --gppos=${GPPOS} --comps=ponslrm - - mkdir -p ${S}/dsplink-kbuild-test - cp ${WORKDIR}/Makefile-dsplink-kbuild ${S}/dsplink-kbuild-test/Makefile - - if [ $(echo ${KERNEL_VERSION} | cut -c5,6) -gt 26 ] ; then - sed -i -e s:asm/semaphore:linux/semaphore: ${S}/gpp/src/osal/Linux/user.c - sed -i -e s:asm/semaphore:linux/semaphore: ${S}/gpp/src/osal/Linux/2.6.18/sync.c - fi -} - -do_compile_prepend() { - cd ${S}/dsplink-kbuild-test/ -} - -do_install() { - install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/dsp - cp ${S}/dsplink-kbuild-test/dsplinkk.ko ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/dsp/ -} - -INHIBIT_PACKAGE_STRIP = "1" - - - |