blob: 61836ac204e89bb35b89a76d25612fe919aaf83d (
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
|
# 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"
PR = "r4"
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_stage_append () {
#need ppc platforms includes + friends in order for external kernel modules to compile as headers as still split
install -d ${STAGING_KERNEL_DIR}/arch/
cp -pPR arch/ppc ${STAGING_KERNEL_DIR}/arch/
cp -pPR arch/powerpc ${STAGING_KERNEL_DIR}/arch/
cp -pPR include/asm-powerpc ${STAGING_KERNEL_DIR}/include/
cp -pPR include/asm-ppc ${STAGING_KERNEL_DIR}/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
}
|