From 9a4855bc7fea2a3d7fd72b86abb1a1411cc00333 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 21 Jan 2014 09:58:21 +0000 Subject: bitbake: fetch2/wget: Check downloaded file isn't zero size I can't think of a reason we'd download zero sized files however there are reasons zero length files can accidently make it onto source mirrors. This check allows us to ignore the broken files and switch to another mirror rather than fail with odd checksum failures. (Bitbake rev: 300cba2e1a720dba4b83b0c76208ea93c608c1de) Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/wget.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bitbake/lib/bb/fetch2/wget.py') diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index 00732019ed..7cd25a508c 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py @@ -91,6 +91,10 @@ class Wget(FetchMethod): if not os.path.exists(ud.localpath) and not checkonly: raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (uri, ud.localpath), uri) + if not checkonly and os.path.getsize(ud.localpath) == 0: + os.remove(ud.localpath) + raise FetchError("The fetch of %s resulted in a zero size file?! Deleting and failing since this isn't right." % (uri), uri) + return True def checkstatus(self, ud, d): -- cgit v1.2.3-54-g00ecf