diff options
author | Daniel Baumann <daniel@debian.org> | 2012-02-04 15:54:37 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-02-06 23:15:11 +0100 |
commit | 0b6d68ce73a88f0f0b3bdf04796478771e831559 (patch) | |
tree | 1f7f46060305b52b313306d24fe6ecee27513109 | |
parent | eff9c23843fb09114879635fbf6122d5f7138673 (diff) | |
download | vyos-live-build-0b6d68ce73a88f0f0b3bdf04796478771e831559.tar.gz vyos-live-build-0b6d68ce73a88f0f0b3bdf04796478771e831559.zip |
Adding note about 404 errors that are on purpose when fetching udebs in derivative mode.
-rwxr-xr-x | scripts/build/lb_binary_debian-installer | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer index 577fe9f79..2135b8c1e 100755 --- a/scripts/build/lb_binary_debian-installer +++ b/scripts/build/lb_binary_debian-installer @@ -523,7 +523,14 @@ then UDEBS="${UDEBS} $(awk '/Filename: / { print $2 }' Packages)" - # Downloading udebs + # Downloading udebs packages + Echo_message "Downloading udebs..." + + if [ "${LB_DERIVATIVE}" = "true" ] + then + Echo_message "Building in derivative mode in debian+ layout.. a lot of 404 errors are ok here." + fi + for UDEB in ${UDEBS} do if [ -f ../cache/packages_debian-installer.udeb/"$(basename ${UDEB})" ] |