aboutsummaryrefslogtreecommitdiffstats
path: root/packages/linux/linux-titan-sh4_2.6.17.bb
blob: ac98115c27d590210b931498f2637091cc3f6abf (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
SECTION = "kernel"
DESCRIPTION = "Linux kernel for SH4 based TITAN router appliance"
LICENSE = "GPL"
PR = "r2"

SRC_URI = "ftp://ftp.kernel.org/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