blob: c0c258f027a5ea4fcdb243884866458becf58833 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Linux 2.6.32 kernel for the SuperH-based Jornada 6xx"
SECTION = "kernel"
LICENSE = "GPLv2"
SRCREV = "${AUTOREV}"
COMPATIBLE_MACHINE = "jornada6xx"
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git;protocol=git;branch=v2.6.32-hpc"
S = "${WORKDIR}/git"
inherit kernel
ARCH = "sh"
FILES_kernel-image = "/boot/${KERNEL_IMAGETYPE}*"
do_configure_prepend() {
install -m 0644 ${S}/config-hp6xx ${S}/.config
}
|