blob: fee1ff9cab6edd5514a9cb4498f39171402221ee (
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
56
57
58
59
|
# Copyright (C) 2007, Stelios Koroneos - Digital OPSiS, All Rights Reserved
# Released under the MIT license (see packages/COPYING)
require linux.inc
DESCRIPTION = "Linux kernel for DHT-Walnut (ppc) machine"
DEFAULT_PREFERENCE = "-1"
PR = "r0"
DEPENDS = "u-boot"
COMPATIBLE_MACHINE = "dht-walnut"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \
file://defconfig"
S = "${WORKDIR}/linux-${PV}"
FILES_kernel-image = "/boot/zImage.elf"
export OS = "Linux"
ARCH = "ppc"
do_install_append () {
#need ppc platforms includes + friends in order for external kernel modules to compile as headers as still split
install -d $kerneldir/arch/
cp -pPR arch/ppc $kerneldir/arch/
cp -pPR arch/powerpc $kerneldir/arch/
cp -pPR include/asm-powerpc $kerneldir/include/
cp -pPR include/asm-ppc $kerneldir/include/
}
do_install_append () {
install -d ${DEPLOY_DIR_IMAGE}
if [ -e arch/ppc/boot/images/zImage.elf ] ; then
cp -a arch/ppc/boot/images/zImage.elf arch/ppc/boot/images/zImage
install -m 0755 arch/ppc/boot/images/zImage.elf \
${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.elf
fi
install -m 0755 vmlinux ${DEPLOY_DIR_IMAGE}/
}
pkg_postinst_kernel () {
true
}
pkg_postrm_kernel () {
true
}
SRC_URI[md5sum] = "2cc2fd4d521dc5d7cfce0d8a9d1b3472"
SRC_URI[sha256sum] = "d4e67c0935ffb2a4158234bff92cc791b83177866009fc9b2214104e0038dbdb"
|