blob: 5473055b22bdf32e3a7f4b5110721fe0f86c7d48 (
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
|
DESCRIPTION = "Linux Kernel for the EFIKA dev platform"
SECTION = "kernel"
LICENSE = "GPLv2"
PR = "r3"
COMPATIBLE_MACHINE = "efika"
SRC_URI = "http://www.efika.de/download/linux-2.6.19-rc6_efika.tgz;name=kernel \
file://0001-sound-Add-support-for-the-MPC52xx-PSC-AC97-Link.txt;apply=yes \
file://0001-powerpc-Add-device-tree-fixup-for-the-EFIKA.txt;apply=yes \
file://defconfig \
"
# http://www.246tnt.com/files/0001-sound-Add-support-for-the-MPC52xx-PSC-AC97-Link.txt;apply=yes \
# http://lkml.org/lkml/2006/11/29/335;apply=yes \
S = "${WORKDIR}/linux-2.6.19-rc6_efika"
inherit kernel
export ARCH="powerpc"
do_configure() {
install -m 644 ${WORKDIR}/defconfig ${S}/.config
yes | make ARCH=${ARCH} oldconfig
}
SRC_URI[kernel.md5sum] = "86be8de763693746cabd5df2112d4665"
SRC_URI[kernel.sha256sum] = "5bb58ade3dd3c6ad910f67219d5f33381f7a948a8157f3578211a0d58e7d51d0"
|