diff options
author | Koen Kooi <koen@openembedded.org> | 2009-11-02 15:23:23 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-11-02 15:23:23 +0100 |
commit | 15704b460bf5722b83b617e25a2f4d96cd755812 (patch) | |
tree | 4f3f63f7727308be6b79ec73bf84bef77794dc0d | |
parent | 00993186da6ba1da98aa52464288b15462381290 (diff) |
dsplink: remove reference to asm/page.h
-rw-r--r-- | recipes/ti/ti-dsplink-module_1.61.3.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/ti/ti-dsplink-module_1.61.3.bb b/recipes/ti/ti-dsplink-module_1.61.3.bb index c19ed7e8c7..2cdf1a8e28 100644 --- a/recipes/ti/ti-dsplink-module_1.61.3.bb +++ b/recipes/ti/ti-dsplink-module_1.61.3.bb @@ -8,7 +8,7 @@ DEPENDS += "virtual/kernel perl-native ti-dspbios-native ti-cgt6x-native update # tconf from xdctools dislikes '.' in pwd :/ #This is a kernel module, don't set PR directly -MACHINE_KERNEL_PR_append = "a" +MACHINE_KERNEL_PR_append = "b" PV = "1613" SRC_URI = "http://install.source.dir.local/dsplink_1_61_03.tar.gz \ @@ -40,6 +40,10 @@ STAGING_TI_XDCTOOL_INSTALL_DIR="${STAGING_DIR_NATIVE}/ti-xdctools-native" do_compile() { + # asm/page.h is gone with linux-libc-headers 2.6.31. + # We can safely sed it out since it has been empty for the past 2 years + sed -i /page.h/d ${S}/dsplink/gpp/src/api/Linux/drv_api.c + # Run perl script to create appropriate makefiles (v1.60 and up) ( cd ${DSPLINK} |