Openembedded Bitbake Development
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix for missing file checksums
@ 2014-04-07 14:01 Paul Eggleton
  2014-04-07 14:01 ` [PATCH 1/1] fetch2: avoid cache ignoring missing files Paul Eggleton
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Eggleton @ 2014-04-07 14:01 UTC (permalink / raw)
  To: bitbake-devel

The following change since commit f9416e76e272ba3249abff099f6f3a47fe82e03e:

  fetch2: Fix bug in file checksum generation (2014-04-06 11:31:18 +0100)

is available in the git repository at:

  git://git.yoctoproject.org/poky-contrib paule/checksumfix
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/checksumfix

Paul Eggleton (1):
  fetch2: avoid cache ignoring missing files

 lib/bb/fetch2/__init__.py | 1 -
 1 file changed, 1 deletion(-)

-- 
1.9.0



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] fetch2: avoid cache ignoring missing files
  2014-04-07 14:01 [PATCH 0/1] Fix for missing file checksums Paul Eggleton
@ 2014-04-07 14:01 ` Paul Eggleton
  0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggleton @ 2014-04-07 14:01 UTC (permalink / raw)
  To: bitbake-devel

Previously, if a file listed in SRC_URI was missing at the time of
parsing, and then was added and bitbake run again, it would not be
picked up because the recipe was cached without it. If we allow the file
to be added to the list of files to checksum, then it will be checked
for and found on the second run.

Fixes [YOCTO #4790].

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 lib/bb/fetch2/__init__.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index 8e5342f..150f864 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/lib/bb/fetch2/__init__.py
@@ -938,7 +938,6 @@ def get_checksum_file_list(d):
                     bb.warn("Getting checksum for %s SRC_URI entry %s: file not found except in DL_DIR" % (d.getVar('PN', True), os.path.basename(f)))
                 else:
                     bb.warn("Unable to get checksum for %s SRC_URI entry %s: file could not be found" % (d.getVar('PN', True), os.path.basename(f)))
-                    continue
             filelist.append(f)
 
     return " ".join(filelist)
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-04-07 14:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-07 14:01 [PATCH 0/1] Fix for missing file checksums Paul Eggleton
2014-04-07 14:01 ` [PATCH 1/1] fetch2: avoid cache ignoring missing files Paul Eggleton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox