diff options
Diffstat (limited to 'packages/linux/linux-titan-sh4_2.6.17.bb')
-rw-r--r-- | packages/linux/linux-titan-sh4_2.6.17.bb | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/packages/linux/linux-titan-sh4_2.6.17.bb b/packages/linux/linux-titan-sh4_2.6.17.bb deleted file mode 100644 index 55e55929a5..0000000000 --- a/packages/linux/linux-titan-sh4_2.6.17.bb +++ /dev/null @@ -1,51 +0,0 @@ -SECTION = "kernel" -DESCRIPTION = "Linux kernel for SH4 based TITAN router appliance" -LICENSE = "GPL" -PR = "r2" - -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ - cvs://anonymous@linuxsh.cvs.sourceforge.net/cvsroot/linuxsh;module=linux;date=20060726 \ - file://titan-flash.patch;patch=1 \ - file://titan-pcibios-scan-update.patch;patch=1 \ - file://titan-config" -S = "${WORKDIR}/linux-${PV}" - -COMPATIBLE_HOST = 'sh4.*-linux' -COMPATIBLE_MACHINE = "titan" - -inherit kernel - -ARCH = "sh" -KERNEL_IMAGETYPE = "zImage" -KERNEL_OUTPUT = "arch/${ARCH}/boot/${KERNEL_IMAGETYPE}" - -# Fix up kernel version - sh kernels get -sh added automatically -KERNEL_RELEASE = "${KERNEL_VERSION}" - -# -# The linux-sh cvs tree is a "drop in source tree" and needs to be copied -# over the top of the normal linux source since it only includes modified -# files. -# -do_unpack_extra(){ - cp -pPR ${WORKDIR}/linux/* ${S} -} -addtask unpack_extra after do_unpack before do_patch - -# -# Use an updated defconfig which includes the flash driver -# The flash driver quality doesn't allow it to be a part of the main kernel -# -do_configure_prepend() { - install -m 0644 ${WORKDIR}/titan-config ${S}/arch/sh/configs/titan_defconfig - yes '' | oe_runmake titan_defconfig -} - -# -# Should I make the nfs boot image? -# -#do_deploy_titan() { -# To NFS boot you need to objcopy the image... -# ${HOST_PREFIX}objcopy -O binary -R .note -R .comment -S arch/sh/boot/compressed/vmlinux ${DEPLOY_DIR}/linux.bin -#} -#addtask deploy before do_build after do_compile |