netbookpro-kernel: add WIP 2.6.17 kernel for the netbook-pro
authorKoen Kooi <koen@openembedded.org>
Wed, 26 Jul 2006 12:33:30 +0000 (12:33 +0000)
committerKoen Kooi <koen@openembedded.org>
Wed, 26 Jul 2006 12:33:30 +0000 (12:33 +0000)
packages/linux/netbookpro-kernel_2.6.17.bb [new file with mode: 0644]

diff --git a/packages/linux/netbookpro-kernel_2.6.17.bb b/packages/linux/netbookpro-kernel_2.6.17.bb
new file mode 100644 (file)
index 0000000..2f15091
--- /dev/null
@@ -0,0 +1,56 @@
+DESCRIPTION = "Linux Kernel for Psion/Teklogix netbookpro  compatible machines"
+SECTION = "kernel"
+MAINTAINER = "Koen Kooi <koen@dominion.kabel.utwente.nl>"
+LICENSE = "GPL"
+PR = "r0"
+
+COMPATIBLE_MACHINE = "netbook-pro"
+
+SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.tar.bz2 \
+       http://linuxtogo.org/~koen/netbook-base-r0.patch;patch=1 \
+       http://linuxtogo.org/~koen/defconfig \
+                  "
+
+S = "${WORKDIR}/linux-2.6.17"
+
+inherit kernel
+
+KERNEL_IMAGETYPE = "zImage"
+
+
+
+do_configure() {
+        rm -f ${S}/.config
+        
+        if [ ! -e ${WORKDIR}/defconfig ]; then
+                die "No default configuration for ${MACHINE} available."
+        fi
+
+        
+        if [ "${TARGET_OS}" == "linux-gnueabi" ]; 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
+
+
+}
+
+do_deploy() {
+        install -d ${DEPLOY_DIR_IMAGE}
+        install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}
+}
+
+do_deploy[dirs] = "${S}"
+
+addtask deploy before do_build after do_compile
+
+