summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2018-04-09 11:16:07 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-04-13 16:58:06 +0100
commit9cdfe60127bec6ed0d23594f778c5a7ebc58d881 (patch)
treeae3bc602ff77b9526ae50a0408b132bd21386243 /meta
parenta7265ef9d60836768e9c0764e78447d92981416e (diff)
downloadpoky-9cdfe60127bec6ed0d23594f778c5a7ebc58d881.tar.gz
linux-yocto/4.14/4.15: deterministic srcversion
Author: Juro Bystricky <juro.bystricky@intel.com> Date: Fri Mar 30 10:14:05 2018 -0700 modpost: srcversion sometimes incorrect "srcversion" field inserted into module modinfo section contains a sum of the source files which made it. However, this field can be incorrect. Building the same module can end up having inconsistent srcversion field eventhough the sources remain the same. This can be reproduced by building modules in a deeply nested directory, but other factors contribute as well. The reason for incorrect srcversion is that some source files can be simply silently skipped from the checksum calculation due to limited buffer space for line parsing. This patch addresses two issues: 1. Allocates a larger line buffer (32k vs 4k). 2. Issues a warning if a line length exceeds the line buffer. Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> (From OE-Core rev: 7d92ed3dcd8c4b5f7cde2f521569c792d55fae65) Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-rt_4.14.bb4
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb4
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-tiny_4.14.bb4
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-tiny_4.15.bb2
-rw-r--r--meta/recipes-kernel/linux/linux-yocto_4.14.bb18
-rw-r--r--meta/recipes-kernel/linux/linux-yocto_4.15.bb18
6 files changed, 25 insertions, 25 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_4.14.bb b/meta/recipes-kernel/linux/linux-yocto-rt_4.14.bb
index 85f8542851..81306a9842 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_4.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_4.14.bb
@@ -11,8 +11,8 @@ python () {
11 raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it") 11 raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
12} 12}
13 13
14SRCREV_machine ?= "620ed070a13e614e8e550998fae123318eeb881a" 14SRCREV_machine ?= "7272e9132fdaaf0dd78bc94e9f297aaf73452982"
15SRCREV_meta ?= "f8232ce8e9f759b961e4e3836472de54e96b50da" 15SRCREV_meta ?= "ea9330894eea727bd1655569b16f338976b72563"
16 16
17SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine \ 17SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine \
18 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.14;destsuffix=${KMETA}" 18 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.14;destsuffix=${KMETA}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb b/meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb
index 19c07ddf1d..c5d3ee03fd 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb
@@ -11,8 +11,8 @@ python () {
11 raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it") 11 raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
12} 12}
13 13
14SRCREV_machine ?= "f73fd8783a3e7529902366ba75aafb81c19ec3c9" 14SRCREV_machine ?= "91084d030bc841c483c31e8664289c7940aa5506"
15SRCREV_meta ?= "6918258c9e46ad8471210354159eb42f127c7374" 15SRCREV_meta ?= "939d935b0c992c6f1e51a7a1c9e4fbe6ef3c3174"
16 16
17SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine \ 17SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine \
18 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.15;destsuffix=${KMETA}" 18 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.15;destsuffix=${KMETA}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_4.14.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_4.14.bb
index 942579795f..34bee0949f 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_4.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_4.14.bb
@@ -12,8 +12,8 @@ DEPENDS += "openssl-native util-linux-native"
12KMETA = "kernel-meta" 12KMETA = "kernel-meta"
13KCONF_BSP_AUDIT_LEVEL = "2" 13KCONF_BSP_AUDIT_LEVEL = "2"
14 14
15SRCREV_machine ?= "40adf66d7c45b8252a1d3f904b5027a495e41725" 15SRCREV_machine ?= "ad31896630f8bf6a459164263adc0a8faf984d9e"
16SRCREV_meta ?= "f8232ce8e9f759b961e4e3836472de54e96b50da" 16SRCREV_meta ?= "ea9330894eea727bd1655569b16f338976b72563"
17 17
18PV = "${LINUX_VERSION}+git${SRCPV}" 18PV = "${LINUX_VERSION}+git${SRCPV}"
19 19
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_4.15.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_4.15.bb
index 9054f18621..05b9ca38b2 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_4.15.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_4.15.bb
@@ -9,7 +9,7 @@ LINUX_VERSION ?= "4.15.13"
9KMETA = "kernel-meta" 9KMETA = "kernel-meta"
10KCONF_BSP_AUDIT_LEVEL = "2" 10KCONF_BSP_AUDIT_LEVEL = "2"
11 11
12SRCREV_machine ?= "f73fd8783a3e7529902366ba75aafb81c19ec3c9" 12SRCREV_machine ?= "91084d030bc841c483c31e8664289c7940aa5506"
13SRCREV_meta ?= "939d935b0c992c6f1e51a7a1c9e4fbe6ef3c3174" 13SRCREV_meta ?= "939d935b0c992c6f1e51a7a1c9e4fbe6ef3c3174"
14 14
15PV = "${LINUX_VERSION}+git${SRCPV}" 15PV = "${LINUX_VERSION}+git${SRCPV}"
diff --git a/meta/recipes-kernel/linux/linux-yocto_4.14.bb b/meta/recipes-kernel/linux/linux-yocto_4.14.bb
index bfc4de02f2..16142f8ceb 100644
--- a/meta/recipes-kernel/linux/linux-yocto_4.14.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_4.14.bb
@@ -11,15 +11,15 @@ KBRANCH_qemux86 ?= "v4.14/standard/base"
11KBRANCH_qemux86-64 ?= "v4.14/standard/base" 11KBRANCH_qemux86-64 ?= "v4.14/standard/base"
12KBRANCH_qemumips64 ?= "v4.14/standard/mti-malta64" 12KBRANCH_qemumips64 ?= "v4.14/standard/mti-malta64"
13 13
14SRCREV_machine_qemuarm ?= "73815e83e4f6bc22e88f4eb3bd4ee5483198ff0d" 14SRCREV_machine_qemuarm ?= "d6268fc3460d3904fd49087f7a822efbaab9bfe8"
15SRCREV_machine_qemuarm64 ?= "b0bf285405cf0369ecc7e0b923d776138b0bcf84" 15SRCREV_machine_qemuarm64 ?= "c94189843b8ad62cafe9a307e7f7d60741690505"
16SRCREV_machine_qemumips ?= "47b99cfeaf68526ab28e657ac8fa681b0c78103a" 16SRCREV_machine_qemumips ?= "4afd92347b2b35dc8e0006712f8fa00ac57f2a36"
17SRCREV_machine_qemuppc ?= "2219819c5473dd238913e4c0ca077798d531eaf4" 17SRCREV_machine_qemuppc ?= "e8af5c9b65c5187d148ecd11bd7979489460ca64"
18SRCREV_machine_qemux86 ?= "1d50ce210b0536eb9a66d1e56ae215f92176444a" 18SRCREV_machine_qemux86 ?= "74f6cd2b6976e37491779fcb1bc4966d3a61492c"
19SRCREV_machine_qemux86-64 ?= "1d50ce210b0536eb9a66d1e56ae215f92176444a" 19SRCREV_machine_qemux86-64 ?= "74f6cd2b6976e37491779fcb1bc4966d3a61492c"
20SRCREV_machine_qemumips64 ?= "37b40335aa0cd149c7664fe6d9b0d63b5c34e150" 20SRCREV_machine_qemumips64 ?= "9863b327e770b42b8c18da3e0cfaf06e8f99ae97"
21SRCREV_machine ?= "1d50ce210b0536eb9a66d1e56ae215f92176444a" 21SRCREV_machine ?= "74f6cd2b6976e37491779fcb1bc4966d3a61492c"
22SRCREV_meta ?= "f8232ce8e9f759b961e4e3836472de54e96b50da" 22SRCREV_meta ?= "ea9330894eea727bd1655569b16f338976b72563"
23 23
24SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \ 24SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \
25 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.14;destsuffix=${KMETA}" 25 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.14;destsuffix=${KMETA}"
diff --git a/meta/recipes-kernel/linux/linux-yocto_4.15.bb b/meta/recipes-kernel/linux/linux-yocto_4.15.bb
index 7e25a3d58d..70bd7118bd 100644
--- a/meta/recipes-kernel/linux/linux-yocto_4.15.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_4.15.bb
@@ -11,15 +11,15 @@ KBRANCH_qemux86 ?= "v4.15/standard/base"
11KBRANCH_qemux86-64 ?= "v4.15/standard/base" 11KBRANCH_qemux86-64 ?= "v4.15/standard/base"
12KBRANCH_qemumips64 ?= "v4.15/standard/mti-malta64" 12KBRANCH_qemumips64 ?= "v4.15/standard/mti-malta64"
13 13
14SRCREV_machine_qemuarm ?= "e98391b2cf78ebdc41c229359d35d9e6ca96dde3" 14SRCREV_machine_qemuarm ?= "4b6902b42f47593928117b2ff0900cd965cf6443"
15SRCREV_machine_qemuarm64 ?= "f73fd8783a3e7529902366ba75aafb81c19ec3c9" 15SRCREV_machine_qemuarm64 ?= "91084d030bc841c483c31e8664289c7940aa5506"
16SRCREV_machine_qemumips ?= "e99c1fc0e84dba772531ba02373a28350056211a" 16SRCREV_machine_qemumips ?= "19ba2d843750ff65d8fe590acdfc99aea6153945"
17SRCREV_machine_qemuppc ?= "f73fd8783a3e7529902366ba75aafb81c19ec3c9" 17SRCREV_machine_qemuppc ?= "91084d030bc841c483c31e8664289c7940aa5506"
18SRCREV_machine_qemux86 ?= "f73fd8783a3e7529902366ba75aafb81c19ec3c9" 18SRCREV_machine_qemux86 ?= "91084d030bc841c483c31e8664289c7940aa5506"
19SRCREV_machine_qemux86-64 ?= "f73fd8783a3e7529902366ba75aafb81c19ec3c9" 19SRCREV_machine_qemux86-64 ?= "91084d030bc841c483c31e8664289c7940aa5506"
20SRCREV_machine_qemumips64 ?= "0789d1f7734d5408de3130f9305f2ca4abc93025" 20SRCREV_machine_qemumips64 ?= "97000c3f4664643bac7828bbdc048f7ec216cc31"
21SRCREV_machine ?= "f73fd8783a3e7529902366ba75aafb81c19ec3c9" 21SRCREV_machine ?= "91084d030bc841c483c31e8664289c7940aa5506"
22SRCREV_meta ?= "6918258c9e46ad8471210354159eb42f127c7374" 22SRCREV_meta ?= "939d935b0c992c6f1e51a7a1c9e4fbe6ef3c3174"
23 23
24SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \ 24SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \
25 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.15;destsuffix=${KMETA}" 25 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.15;destsuffix=${KMETA}"