aboutsummaryrefslogtreecommitdiffstats
path: root/packages/linux/linux-storcenter_2.6.12.6.bb
blob: efbef7e937ba331b13663f23920c5a9e128c31ed (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
DESCRIPTION = "Linux Kernel for the Iomega storcenter platform"
SECTION = "kernel"
LICENSE = "GPL"
DEPENDS = "uboot-utils"
PR = "r0"

# notes on iom def kernel:
#
# can probably remove :
# BLK_DEV_RAM ?
# MD_RAID5
# QUOTA
# QFMT_V2
# DNOTIFY?
# MSDOS_FS, VFAT_FS, NTFS_FS?
#
# USB_GADGET? - USB_GADGET_NET2280, USB_ETH, USB_ETH_RNDIS
#
#
# should add:
#   EXT3_FS
#   PACKET_MMAP ?
#   i2c_chardev?
# usb audio:
#   USB_EMI62?
#   USB_EMI26?

COMPATIBLE_MACHINE = "storcenter"

SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \
	file://kernel.patch-${PV};patch=1 \
	file://10-command-line.patch;patch=1 \
	file://defconfig-${PV} "

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

inherit kernel

KERNEL_IMAGETYPE = "uImage"
KERNEL_OUTPUT = "arch/${ARCH}/boot/images/${KERNEL_IMAGETYPE}"

do_configure() {
		install -m 644 ${WORKDIR}/defconfig-${PV} ${S}/.config
		make ARCH=ppc oldconfig
}

do_deploy() {
        install -d ${DEPLOY_DIR_IMAGE}
        install -m 0644 arch/${ARCH}/boot/images/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}
}

#ppc build leaves the kernel in a different place
#do_movekernel() {
#
#}

do_deploy[dirs] = "${S}"

addtask deploy before do_build after do_compile