From 5d8a05811101f7d69994f4028ec620c4480f6da4 Mon Sep 17 00:00:00 2001 From: Darren Hart Date: Tue, 9 Oct 2012 15:07:14 -0700 Subject: Fix use of PRINC in meta-intel BSPs Replaces all uses of PRINC with the form: PRINC := "${@int(PRINC) + N}" Where N is the previously assigned value plus one to ensure a monotonically increasing PRINC value. Signed-off-by: Darren Hart Acked-by: Tom Zanussi CC: Saul Wold CC: Nitin Kamble --- meta-tlk/recipes-core/psplash/psplash_git.bbappend | 2 +- meta-tlk/recipes-kernel/linux/linux-yocto_tlk.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-tlk') diff --git a/meta-tlk/recipes-core/psplash/psplash_git.bbappend b/meta-tlk/recipes-core/psplash/psplash_git.bbappend index 6b5258ef..c0bf3dce 100644 --- a/meta-tlk/recipes-core/psplash/psplash_git.bbappend +++ b/meta-tlk/recipes-core/psplash/psplash_git.bbappend @@ -2,7 +2,7 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/files:" DEPENDS += "gdk-pixbuf-native" -PRINC = "6" +PRINC := "${@int(PRINC) + 7}" # NB: this is only for the main logo image; if you add multiple images here, # poky will build multiple psplash packages with 'outsuffix' in name for diff --git a/meta-tlk/recipes-kernel/linux/linux-yocto_tlk.inc b/meta-tlk/recipes-kernel/linux/linux-yocto_tlk.inc index b1cf8834..47d6ffd1 100644 --- a/meta-tlk/recipes-kernel/linux/linux-yocto_tlk.inc +++ b/meta-tlk/recipes-kernel/linux/linux-yocto_tlk.inc @@ -1,3 +1,3 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" SRC_URI_append = " file://time-limited-kernel.cfg" -PR .= ".2" +PRINC := "${@int(PRINC) + 1}" -- cgit v1.2.3-54-g00ecf