diff options
author | Lauro Ramos Venancio <lauro.venancio@indt.org.br> | 2008-09-02 19:01:43 -0300 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@openbossa.org> | 2008-10-23 18:04:33 -0300 |
commit | a3542f265dbbe71c797ae28bdebcf0f179c31db5 (patch) | |
tree | 6a6c6cdbad6af7b678781d91ccca9d03d46847ab | |
parent | df0eefb3ba9e2089b164e794631d25124f33c09e (diff) |
cx3110x-chinooke: Make cx3110x-chinooke use the chinooke's kernel source.
-rw-r--r-- | packages/mamona/cx3110x-chinooke_2.0.15.bb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/mamona/cx3110x-chinooke_2.0.15.bb b/packages/mamona/cx3110x-chinooke_2.0.15.bb index ed991ddb9e..50de7460fe 100644 --- a/packages/mamona/cx3110x-chinooke_2.0.15.bb +++ b/packages/mamona/cx3110x-chinooke_2.0.15.bb @@ -5,7 +5,7 @@ KERVER = "2.6.21" COMPATIBLE_MACHINE = "(nokia800|nokia810)"
S = "${WORKDIR}/cx3110x-module-src-2.0.15"
-SKERNEL = "${WORKDIR}/kernel-source-diablo-${KERVER}/kernel-source"
+SKERNEL = "${WORKDIR}/kernel-source-rx-34-2.6.21.0"
# The following require must be after S{S}, ${SKERNEL}, ${KERVER}
require cx3110x.inc
@@ -13,13 +13,19 @@ require cx3110x.inc SRC_URI += "\
http://repository.maemo.org/pool/maemo4.1/free/c/cx3110x-module-src/cx3110x-module-src_2.0.15-1.tar.gz \
http://www.codesourcery.com/public/gnu_toolchain/arm-none-eabi/arm-2005q3-2-arm-none-eabi-i686-pc-linux-gnu.tar.bz2 \
- http://repository.maemo.org/pool/maemo4.1/free/k/kernel-source-diablo/kernel-source-diablo_2.6.21-200823maemo6.tar.gz \
+ http://repository.maemo.org/pool/chinook/free/k/kernel-source-rx-34/kernel-source-rx-34_2.6.21.0.orig.tar.gz \
+ http://repository.maemo.org/pool/chinook/free/k/kernel-source-rx-34/kernel-source-rx-34_2.6.21.0-osso71.diff.gz \
file://cx3110x.patch;patch=1 \
file://create_sysfs_link_for_wlan0.patch;patch=1 \
file://fix_old_include.patch;patch=1 \
"
do_compile() {
+ cd ${SKERNEL}
+ patch -p1 < ${WORKDIR}/kernel-source-rx-34_2.6.21.0-osso71.diff
+ cd ${S}
PATH=${WORKDIR}/bin/:$PATH make -C ${SKERNEL} CROSS_COMPILE=arm-none-eabi- nokia_2420_defconfig prepare scripts
KERNEL_SRC_DIR=${SKERNEL} PATH=${WORKDIR}/bin/:$PATH CROSS_COMPILE=arm-none-eabi- make modules
}
+
+
|