summaryrefslogtreecommitdiff
path: root/packages/linux/compulab-pxa270_2.6.20.bb
blob: 4d83dad0d266a04c5d98dc1ddc31c608d3999649 (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
52
53
54
55
require linux.inc

SECTION = "kernel"
DESCRIPTION = "Linux kernel for the Compulab PXA270 system"
LICENSE = "GPL"
PR = "r0"

SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.20.tar.bz2 \
	file://0001-gitignore.patch;patch=1 \
	file://0002-cm-x270-base.patch;patch=1 \
	file://0003-ramdisk_load.patch;patch=1 \
	file://0004-nand-driver.patch;patch=1 \
	file://0005-mmcsd_large_cards-r0.patch;patch=1 \
	file://0006-mmcsd_no_scr_check-r0.patch;patch=1 \
        file://defconfig \
	"

# Note, for 2.6.20, we are no longer using the compulab binary
# flash driver -- use JFFS2 instead


S = "${WORKDIR}/linux-2.6.20"

COMPATIBLE_HOST = 'arm.*-linux'

inherit kernel
inherit package

ARCH = "arm"
KERNEL_IMAGETYPE = "zImage"

FILES_kernel-image = ""

do_deploy_append() {
	KNAME=${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}.bin
        install -d ${DEPLOY_DIR_IMAGE}
        install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${KNAME}
	# Create an image file that has the size prepended (used by cm-x270 BL)
	# The following can only be done on a little endian machine
	# note, the following does not work on all machines as it requires a 
	# recent version of coreutils (>= 6.0).  The correct solution is to code
	# the following in Python instead
	#size=$(stat --printf=%s ${KNAME})
	#size_=$(printf '\%03o'\
	#$((size & 0x000000FF))\
	#$((size>>8 & 0x000000FF))\
	#$((size>>16 & 0x000000FF))\
	#$((size>>24 & 0x000000FF)))
	#size_=${size_}'\c'
	#echo -e $size_ > ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.img
	#cat ${KNAME} >> ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.img
}

COMPATIBLE_MACHINE = "compulab-pxa270"