aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/obsolete/linux/linux-mtx-1_2.4.27.bb
blob: f5bd6ed0fa517d84d6edd32e30bb34268b4b9dd3 (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
DESCRIPTION = "Linux kernel for MTX-1 (MeshCube)"
HOMEPAGE = "http://meshcube.org/meshwiki/"
LICENSE = "GPLv2"
KV = "${PV}"
PR = "r12"
inherit module-base kernel

PROVIDES = "virtual/kernel"
RDEPENDS_${PN} = "mtd-utils"

SRC_URI = "cvs://cvs:cvs@ftp.linux-mips.org/home/cvs;module=linux;tag=linux_2_4_27 \
	file://01-mtd-2004-01-27.diff \
	file://02-mtd-mtx-1-map.diff \
	file://03-mtd-erase-compiler-bug.diff \
	file://04-mtx-1-board-reset.diff \
	file://05-mtx-1-pci-irq.diff \
	file://06-zboot-2.4.26.patch \
	file://07-zboot-zimage-flash-bin.diff \
	file://08-usb-nonpci-2.4.24.patch \
	file://09-au1000-eth-vlan.diff \
	file://10-iw-max-spy-32.diff \
	file://11-mtd-proc-partition-rw.diff \
	file://12-openswan-2.2.0-nat-t.diff \
	file://13-openswan-2.2.0.patch \
	file://14-au1000-eth-link-beat.diff \
	file://16-i2c.patch \
	file://17-lmsensors.2.8.8.patch \
	file://18-i2c-au1x00gpio.patch \
	file://19-kernel-make-depend.diff \
	file://20-au1x00_ethernet_tx_stats.diff \
	file://21-mtx-1-watchdog.diff \
	file://23-mtx-1_watchdog_autotrigger.patch \
	file://24-mtx-1_sysbtn.patch \
	file://25-mtx-sio2.diff \
	file://26-usbd-amd-pb1x00-kit-23may2003-update.diff \
	file://27-usbd-amd-pb1x00-kit-23may2003-usbd.diff \
	file://29-au1000-pci-config-clear-errors.diff \
	file://32-usbserial-stalled-hack.diff \
	file://33-usbserial-bulk_in_size-4096.diff \
	file://42-usb-ohci-fixes.patch \
	file://43-usbserial-27-32-backport.diff \
	file://45-acm-tty-and-sb2.patch \
	file://48-pptp.patch \
	file://49-bash4-configure.patch \
	file://defconfig-mtx-1"

S = "${WORKDIR}/linux"

inherit kernel

COMPATIBLE_MACHINE = "mtx-1"
COMPATIBLE_HOST = "mipsel.*-linux"
ARCH = "mips"
KERNEL_OUTPUT = "arch/mips/zboot/images/mtx-1.flash.bin"
KERNEL_IMAGETYPE = "zImage.flash"
KERNEL_IMAGEDEST = "tmp"

MTX_KERNEL_NON_PCI_OHCI = "yes"

do_configure_prepend() {
        install -m 0644 ${WORKDIR}/defconfig-mtx-1 ${S}/.config
	if [ "x${MTX_KERNEL_NON_PCI_OHCI}" = "xyes" ]; then
		echo "CONFIG_USB_NON_PCI_OHCI=y" >> ${S}/.config
	fi
}

pkg_postinst_kernel() {
if test "x$D" != "x"; then
	exit 1
else
	if test -e /tmp/zImage.flash-${KV}; then
		echo "*** flashing kernel ***"
		flashcp -v /tmp/zImage.flash-${KV} /dev/mtd/2
		echo "*** done. please reboot ***"
	fi
fi
}

FILES_kernel += " /tmp"

do_deploy() {
	install -d 0755 ${DEPLOY_DIR_IMAGE}
	install -m 0644 arch/mips/zboot/images/mtx-1.flash.bin ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_NAME}.flash.bin
        install -m 0644 arch/mips/zboot/images/mtx-1.flash.srec ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_NAME}.flash.srec
	install -m 0644 arch/mips/zboot/images/mtx-1.srec ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_NAME}.ram.srec
}