diff options
Diffstat (limited to 'recipes/linux/linux-mini2440_2.6.30+git.bb')
-rw-r--r-- | recipes/linux/linux-mini2440_2.6.30+git.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/linux/linux-mini2440_2.6.30+git.bb b/recipes/linux/linux-mini2440_2.6.30+git.bb new file mode 100644 index 0000000000..5d96f0ac0d --- /dev/null +++ b/recipes/linux/linux-mini2440_2.6.30+git.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Linux Kernel for mini2440 development board" +SECTION = "kernel" +LICENSE = "GPL" +PR = "r0" + +GGSRC = "http://www.xora.org.uk/oe/patches/" + +SRCREV = "${AUTOREV}" + +SRC_URI = "git://repo.or.cz/linux-2.6/mini2440.git;protocol=git;branch=mini2440-dev \ + file://defconfig-mini2440" + +S = "${WORKDIR}/git" + +inherit kernel + +COMPATIBLE_HOST = "arm.*-linux" +COMPATIBLE_MACHINE = "mini2440" + +do_configure() { + install ${WORKDIR}/defconfig-mini2440 ${S}/.config + oe_runmake oldconfig +} + +KERNEL_RELEASE = "2.6.29" |