summaryrefslogtreecommitdiff
path: root/recipes/linux/linux-nokia800.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/linux/linux-nokia800.inc')
-rw-r--r--recipes/linux/linux-nokia800.inc31
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes/linux/linux-nokia800.inc b/recipes/linux/linux-nokia800.inc
new file mode 100644
index 0000000000..0fc4740a94
--- /dev/null
+++ b/recipes/linux/linux-nokia800.inc
@@ -0,0 +1,31 @@
+SECTION = "kernel"
+DESCRIPTION = "Linux kernel for Nokia 770/800"
+LICENSE = "GPL"
+
+inherit kernel
+
+RPROVIDES_kernel-image = "hostap-modules"
+
+COMPATIBLE_MACHINE = "nokia770|nokia800"
+
+RPSRC = "http://www.rpsys.net/openzaurus/patches/archive"
+
+do_configure_prepend() {
+
+ rm -f ${S}/.config || true
+
+ if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then
+ echo "CONFIG_AEABI=y" >> ${S}/.config
+ echo "CONFIG_OABI_COMPAT=y" >> ${S}/.config
+ else
+ echo "# CONFIG_AEABI is not set" >> ${S}/.config
+ echo "# CONFIG_OABI_COMPAT is not set" >> ${S}/.config
+ fi
+
+ sed -e '/CONFIG_AEABI/d' \
+ -e '/CONFIG_OABI_COMPAT=/d' \
+ '${WORKDIR}/defconfig' >>'${S}/.config'
+
+ yes '' | oe_runmake oldconfig
+
+}