From: Srinuvasan A <Srinuvasan_A@mentor.com>
To: <isar-users@googlegroups.com>
Cc: <jan.kiszka@siemens.com>, Srinuvasan A <srinuvasan_a@mentor.com>
Subject: [RFC PATCH] classes/deb-dl-dir.bbclass: Download src with retry mechanism
Date: Tue, 23 Nov 2021 15:50:40 +0530 [thread overview]
Message-ID: <20211123102040.1495052-1-Srinuvasan_A@mentor.com> (raw)
From: Srinuvasan A <srinuvasan_a@mentor.com>
Sometime the source packages are not downloaded successfully due to
the low speed network, hence the builds get fails with timeout issue
Added a mechanism to attempt multiple try till the download get success.
Signed-off-by: Srinuvasan A <srinuvasan_a@mentor.com>
---
meta/classes/deb-dl-dir.bbclass | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/meta/classes/deb-dl-dir.bbclass b/meta/classes/deb-dl-dir.bbclass
index 29bf45b..e335feb 100644
--- a/meta/classes/deb-dl-dir.bbclass
+++ b/meta/classes/deb-dl-dir.bbclass
@@ -55,7 +55,14 @@ debsrc_download() {
[ -n "$dscfile" ] && continue
sudo -E chroot --userspec=$( id -u ):$( id -g ) ${rootfs} \
- sh -c ' mkdir -p "/deb-src/${1}/${2}" && cd "/deb-src/${1}/${2}" && apt-get -y --download-only --only-source source "$2"="$3" ' download-src "${rootfs_distro}" "${src}" "${version}"
+ sh -c ' mkdir -p "/deb-src/${1}/${2}" && cd "/deb-src/${1}/${2}" &&
+ download_src="apt-get -y --download-only --only-source source "$2"="$3""
+ download_status=1
+ while[ $download_status != 0 ]
+ do
+ $download_src
+ download_status=$?
+ done ' download-src "${rootfs_distro}" "${src}" "${version}"
done
) 9>"${DEBSRCDIR}/${rootfs_distro}.lock"
--
2.25.1
next reply other threads:[~2021-11-23 10:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-23 10:20 Srinuvasan A [this message]
2021-11-23 11:02 ` Jan Kiszka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211123102040.1495052-1-Srinuvasan_A@mentor.com \
--to=srinuvasan_a@mentor.com \
--cc=isar-users@googlegroups.com \
--cc=jan.kiszka@siemens.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox