diff options
| author | Darren Hart <dvhart@linux.intel.com> | 2012-10-09 15:07:14 -0700 |
|---|---|---|
| committer | Darren Hart <dvhart@linux.intel.com> | 2012-10-09 16:04:30 -0700 |
| commit | 5d8a05811101f7d69994f4028ec620c4480f6da4 (patch) | |
| tree | c5dec998685430d40649dbea636ad7567c712492 /meta-tlk | |
| parent | 2bd31135bdcdda19dabdf69706d9a38d5872e1fe (diff) | |
| download | meta-intel-5d8a05811101f7d69994f4028ec620c4480f6da4.tar.gz | |
Fix use of PRINC in meta-intel BSPs1.3_M5.rc4
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 <dvhart@linux.intel.com>
Acked-by: Tom Zanussi <tom.zanussi@intel.com>
CC: Saul Wold <sgw@linux.intel.com>
CC: Nitin Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta-tlk')
| -rw-r--r-- | meta-tlk/recipes-core/psplash/psplash_git.bbappend | 2 | ||||
| -rw-r--r-- | meta-tlk/recipes-kernel/linux/linux-yocto_tlk.inc | 2 |
2 files changed, 2 insertions, 2 deletions
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:" | |||
| 2 | 2 | ||
| 3 | DEPENDS += "gdk-pixbuf-native" | 3 | DEPENDS += "gdk-pixbuf-native" |
| 4 | 4 | ||
| 5 | PRINC = "6" | 5 | PRINC := "${@int(PRINC) + 7}" |
| 6 | 6 | ||
| 7 | # NB: this is only for the main logo image; if you add multiple images here, | 7 | # NB: this is only for the main logo image; if you add multiple images here, |
| 8 | # poky will build multiple psplash packages with 'outsuffix' in name for | 8 | # 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 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" |
| 2 | SRC_URI_append = " file://time-limited-kernel.cfg" | 2 | SRC_URI_append = " file://time-limited-kernel.cfg" |
| 3 | PR .= ".2" | 3 | PRINC := "${@int(PRINC) + 1}" |
