blob: 2c79a94e10d10d29b06181b436904fd0c4223efd (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Copyright (C) 2007, Stelios Koroneos - Digital OPSiS, All Rights Reserved
# Released under the MIT license (see packages/COPYING)
SECTION = "kernel"
DESCRIPTION = "Linux kernel for Magicbox ver 1.1 and 2.0 router boards"
LICENSE = "GPL"
PR = "r3"
DEPENDS = "u-boot"
COMPATIBLE_MACHINE = "magicbox"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \
file://001-squashfs.patch;patch=1 \
file://002-lzma_decompress.patch;patch=1 \
file://003-squashfs_lzma.patch;patch=1 \
file://004-extra_optimization.patch;patch=1 \
file://006-gcc4_inline_fix.patch;patch=1 \
file://007-samsung_flash.patch;patch=1 \
file://009-revert_intel_flash_breakage.patch;patch=1 \
file://010-disable_old_squashfs_compatibility.patch;patch=1 \
file://011-mips_boot.patch;patch=1 \
file://012-mips_cpu_tlb.patch;patch=1 \
file://050-mtdpart_redboot_partition_truncate.patch;patch=1 \
file://060-rootfs_split.patch;patch=1 \
file://100-netfilter_layer7_2.8.patch;patch=1 \
file://101-netfilter_layer7_pktmatch.patch;patch=1 \
file://110-ipp2p_0.8.1rc1.patch;patch=1 \
file://120-openswan-2.4.0.kernel-2.6-natt.patch;patch=1 \
file://130-netfilter-ipset.patch;patch=1 \
file://140-netfilter_time.patch;patch=1 \
file://150-netfilter_imq.patch;patch=1 \
file://160-netfilter_route.patch;patch=1 \
file://170-netfilter_chaostables.patch;patch=1 \
file://200-sched_esfq.patch;patch=1 \
file://201-multiple_default_gateways.patch;patch=1 \
file://202-mips-freestanding.patch;patch=1 \
file://204-jffs2_eofdetect.patch;patch=1 \
file://207-powerpc_asm_segment_h.patch;patch=1 \
file://210-d80211_compat.patch;patch=1 \
file://211-no_block2mtd_readahead.patch;patch=1 \
file://212-block2mtd_erase_scan.patch;patch=1 \
file://510-Yaffs.patch;patch=1 \
file://600-x86_lzma.patch;patch=1 \
file://700-airprime.patch;patch=1 \
file://900-headers_type_and_time.patch;patch=1 \
file://901-asm_bitops_include.patch;patch=1 \
file://902-darwin_scripts_include.patch;patch=1 \
file://903-stddef_include.patch;patch=1 \
file://904-ls_time_locale.patch;patch=1 \
file://001-magicbox_support.patch;patch=1 \
file://002-flash_map.patch;patch=1 \
file://100-cf_slot.patch;patch=1 \
file://config-magicbox2\
"
S = "${WORKDIR}/linux-${PV}"
inherit kernel
FILES_kernel-image = "/boot/zImage.elf"
export OS = "Linux"
ARCH = "ppc"
KERNEL_OUTPUT = "arch/ppc/boot/images/zImage.elf"
do_configure_prepend() {
install -m 0644 ${WORKDIR}/config-magicbox2 ${S}/.config
}
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}
install -m 0755 arch/ppc/boot/images/zImage.elf ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.elf
install -m 0755 vmlinux ${DEPLOY_DIR_IMAGE}/
powerpc${TARGET_VENDOR}-${TARGET_OS}-objcopy -O binary -R .note -R .comment -S ${DEPLOY_DIR_IMAGE}/vmlinux \
${DEPLOY_DIR_IMAGE}/linux.bin
gzip -f -9 ${DEPLOY_DIR_IMAGE}/linux.bin
cp -pPR ${DEPLOY_DIR_IMAGE}/linux.bin.gz ${DEPLOY_DIR_IMAGE}/linux-${PV}-${MACHINE}-${DATETIME}.bin.gz
mkimage -A ppc -O linux -T kernel -C gzip -a 00000000 -e 00000000 -n "magicbox"-${PV} \
-d ${DEPLOY_DIR_IMAGE}/linux.bin.gz ${DEPLOY_DIR_IMAGE}/uImage-${PV}-${MACHINE}-${DATETIME}.bin
rm ${DEPLOY_DIR_IMAGE}/vmlinux
rm ${DEPLOY_DIR_IMAGE}/linux.bin.gz
}
pkg_postinst_kernel () {
true
}
pkg_postrm_kernel () {
true
}
|