diff options
author | Adrian Alonso <aalonso00@gmail.com> | 2010-03-05 13:15:15 +0000 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2010-03-16 19:57:50 +0100 |
commit | 9315ae1513d03c229a6c44727054ecce36600c2e (patch) | |
tree | 5dabff232160589dd29f260dd98462c3a3e17cb5 /recipes | |
parent | f66859bd44bfbe638b9b0a98bb9d27cdace17d7e (diff) | |
download | openembedded-9315ae1513d03c229a6c44727054ecce36600c2e.tar.gz |
linux-xilinx-ml507_git: new kernel recipe for xilinx ml507
* Based on the oficial xilinx repo since not all drivers are in the
* mainline kernel tree
* Make use off the xilinx-bsp bbclass to override device tree descriptor
Signed-off-by: Adrian Alonso <aalonso00@gmail.com>
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/linux/linux-xilinx-ml507_git.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes/linux/linux-xilinx-ml507_git.bb b/recipes/linux/linux-xilinx-ml507_git.bb new file mode 100644 index 0000000000..ec9de1cd49 --- /dev/null +++ b/recipes/linux/linux-xilinx-ml507_git.bb @@ -0,0 +1,23 @@ +require linux.inc + +DESCRIPTION = "Linux kernel for Xilinx ml507 platform" +KERNEL_RELEASE = "2.6.32+git" + +COMPATIBLE_MACHINE = "xilinx-ml507" +DEFAULT_PREFERENCE = "-1" +DEFAULT_PREFERENCE_xilinx-ml507 = "1" + +PV = "${KERNEL_RELEASE}" +PR = "r0" + +SRCREV = "dc53725d22405e384b984d222542f526eaa9b829" +SRC_URI = "git://git.xilinx.com/linux-2.6-xlnx.git;protocol=git \ + file://defconfig" + +inherit kernel xilinx-bsp + +S = "${WORKDIR}/git" + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/defconfig ${S}/.config +} |