diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-01-06 21:32:39 +0100 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-01-06 21:32:39 +0100 |
commit | b2a6f7304b70600e5c9b131c353b81346b82158d (patch) | |
tree | 4c355cc06586aece4351f2cc586f81e5e79d03ed /recipes/linux/linux-kirkwood_2.6.33-rc1.bb | |
parent | c7ed94a12cdcc4b8e98698683022ac1bd328ef0c (diff) |
linux-kirkwood: moved kernel to 2.6.33-rc1
added patches for video and audio for openrd client
made some configuration changes in defconfig to support those
Diffstat (limited to 'recipes/linux/linux-kirkwood_2.6.33-rc1.bb')
-rw-r--r-- | recipes/linux/linux-kirkwood_2.6.33-rc1.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes/linux/linux-kirkwood_2.6.33-rc1.bb b/recipes/linux/linux-kirkwood_2.6.33-rc1.bb new file mode 100644 index 0000000000..fa2bb3536b --- /dev/null +++ b/recipes/linux/linux-kirkwood_2.6.33-rc1.bb @@ -0,0 +1,39 @@ +DESCRIPTION = "Linux Kernel for Marvell Kirkwood based devices" +SECTION = "kernel" +LICENSE = "GPL" + +COMPATIBLE_MACHINE = "openrd-base|openrd-client|sheevaplug" + +require linux.inc + +# Change MACHINE_KERNEL_PR in conf/machine/include/kirkwood.inc +PV = "2.6.33-rc1" + +SRCREV = "58c19e3ea75a629c3d38a4490f96a65cf2f36a11" + +SRC_URI = "git://repo.or.cz/linux-2.6/linux-2.6-openrd.git;protocol=git \ + file://defconfig" + +SRC_URI_append_openrd-base += \ + "file"//openrd-base/openrd-base-enable-pcie.patch;patch=1" + +SRC_URI_append_openrd-client += \ + "file://0001-OpenRD-Client-PCIe-Initialize-PCI-express-and-i2c.patch;patch=1 \ + file://0002-OpenRD-Client-Volari-Z11-driver-added.patch;patch=1 \ + file://0003-ARM-Kirkwood-Sound-Sound-driver-added.patch;patch=1 \ + " + +# update machine types list for ARM architecture, only for machines that need it +do_arm_mach_types() { +# if test ${MACHINE} == openrd-base || test ${MACHINE} == openrd-client; then + curl -o mach-types "http://www.arm.linux.org.uk/developer/machines/download.php" && \ + cp mach-types arch/arm/tools/mach-types +# fi +} + +addtask arm_mach_types after do_patch before do_configure + +S = "${WORKDIR}/git" + +KERNEL_IMAGETYPE ?= "uImage" + |