blob: 5ab78853fdcc70cfa3e167e0fb7862cf7415e1b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Linux 2.6.32 kernel for the ben nanonote"
SECTION = "kernel"
LICENSE = "GPLv2"
SRCREV = "${AUTOREV}"
DEFAULT_PREFERENCE_ben-nanonote = "1"
COMPATIBLE_MACHINE = "ben-nanonote"
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 = "mips"
FILES_kernel-image = "/boot/${KERNEL_IMAGETYPE}*"
do_configure_prepend() {
install -m 0644 ${S}/config-bennanonote ${S}/.config
}
|