summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStelios Koroneos <skoroneos@digital-opsis.com>2007-08-22 15:40:40 +0000
committerStelios Koroneos <skoroneos@digital-opsis.com>2007-08-22 15:40:40 +0000
commit8acf95f705c2c4ef5af86bf68abacf5589bdcb0b (patch)
tree1ffb8bda81ee9ed6999318b577391eff28f66489
parent46a07820304c1f03851e903c30387d29fdd17903 (diff)
packages/linux/linux-ml403-slab-2.6.x_git.bb : Make sure git-native builds before the
ml403 kernel fetcher kicks in
-rw-r--r--packages/linux/linux-ml403-slab-2.6.x_git.bb15
1 files changed, 13 insertions, 2 deletions
diff --git a/packages/linux/linux-ml403-slab-2.6.x_git.bb b/packages/linux/linux-ml403-slab-2.6.x_git.bb
index bdaeb39526..75233492eb 100644
--- a/packages/linux/linux-ml403-slab-2.6.x_git.bb
+++ b/packages/linux/linux-ml403-slab-2.6.x_git.bb
@@ -4,8 +4,7 @@
SECTION = "kernel"
DESCRIPTION = "Linux kernel for Xilinx ML403 Virtex 4 fpga board"
LICENSE = "GPL"
-DEPENDS = "git-native"
-PR = "r1"
+PR = "r2"
PV = "2.6+git${SRCDATE}"
COMPATIBLE_MACHINE = "xilinx-ml403"
@@ -24,6 +23,18 @@ ARCH = "ppc"
KERNEL_IMAGETYPE = "zImage"
KERNEL_OUTPUT = "arch/ppc/boot/images/zImage.elf"
+#make sure git-native gets build before as
+python __anonymous () {
+
+ import bb
+
+
+ depends = bb.data.getVarFlag('do_fetch', 'depends', d) or ""
+ depends = depends + " git-native:do_populate_staging"
+ bb.data.setVarFlag('do_fetch', 'depends', depends, d)
+
+}
+
do_fetch () {