blob: 17bb1f4412353463eec6d3c7a8c247b5315fbaf6 (
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
|
PR = "r0"
KERVER = "2.6.21"
COMPATIBLE_MACHINE = "(nokia800|nokia810)"
S = "${WORKDIR}/cx3110x-module-src-2.0.15"
SKERNEL = "${WORKDIR}/kernel-source-diablo-${KERVER}/kernel-source"
# The following require must be after S{S}, ${SKERNEL}, ${KERVER}
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 \
file://cx3110x.patch;patch=1 \
file://create_sysfs_link_for_wlan0.patch;patch=1 \
file://fix_old_include.patch;patch=1 \
"
do_compile() {
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
}
|