linux-n1200: Fixup to use the right KERNEL_OUTPUT and use linux.inc
authorTim 'timtim' Ellis <tim.ellis@foonas.org>
Fri, 23 Jan 2009 18:15:57 +0000 (18:15 +0000)
committerTim 'timtim' Ellis <tim.ellis@foonas.org>
Fri, 23 Jan 2009 18:15:57 +0000 (18:15 +0000)
packages/linux/linux-n1200_2.6.27-rc9+git.bb

index 7378f09..c6ff65c 100644 (file)
@@ -1,8 +1,7 @@
 DESCRIPTION = "Linux Kernel for the Thecus n1200"
 SECTION = "kernel"
 LICENSE = "GPL"
-PR = "r0"
-
+PR = "r1"
 DEPENDS = "u-boot-mkimage-native"
 COMPATIBLE_MACHINE = "n1200"
 
@@ -11,22 +10,14 @@ SRC_URI = "http://downloads.thecus.nas-central.org/N1200/Kernels/linux-2.6.27-fo
            file://defconfig"
 S = "${WORKDIR}/linux-2.6.27-foonas-git"
 
-inherit kernel
-
 export ARCH="powerpc"
 
-KERNEL_IMAGETYPE = "zImage"
+# Bootloader is not device tree aware
+KERNEL_OUTPUT = "${S}/arch/powerpc/boot/cuImage.thecus_n1200"
+
+require linux.inc
 
 do_configure() {
         install -m 0644 ${WORKDIR}/defconfig ${S}/.config
         ARCH=${ARCH} oe_runmake oldconfig
 }
-
-do_deploy() {
-        install -d ${DEPLOY_DIR_IMAGE}
-        install -m 0644 ${S}/arch/powerpc/boot/cuImage.thecus_n1200 ${DEPLOY_DIR_IMAGE}/zImage
-}
-
-do_deploy[dirs] = "${S}"
-
-addtask deploy before do_package after do_install