GoVanguard / karmbian

GoVanguard fork of Armbian with complete Kali 2020 support
GNU General Public License v2.0
20 stars 4 forks source link

Error function download_and_verify #8

Open rascapac opened 3 years ago

rascapac commented 3 years ago

Hi,

I'm trying to build a nanopi-r2s, but I got an issue: [ error ] ERROR in function download_and_verify [ general.sh:1355 ]. I think that the links for the toolchain tools are down, but even when I replace them, I got the error.

sscottgvit commented 3 years ago

It is indeed related to parts of the toolchains not being found. This results in some flow errors in the build even if they're already present on the system. We're building out own infrastructure now to eliminate these outside dependancies.

alphaDev23 commented 3 years ago

Same issue. Any way to add those checksums to 1.02 given that building from source is not an option?

alphaDev23 commented 3 years ago

Any update on posting the checksums given that building from source is not an option?

DaveyDarko commented 3 years ago

Any update on posting the checksums given that building from source is not an option?

I'm interested in this info as well.

alphaDev23 commented 3 years ago

@sscottgvit If all the files are in the same directory, the following executed from that directory using bash will create a text file of the sha512 checksums:

for filename in *; do sha512sum ${filename} >> checksums.txt; done

alphaDev23 commented 3 years ago

@sscottgvit Any update on providing the checksums? There are some that can use the images straightaway and the bash script only will take a few minutes to run. The checksum.txt mentioned above can be uploaded to this post if convenient.

alphaDev23 commented 3 years ago

@sscottgvit It's been another 2 weeks. Is this project active? It will only take a few minutes to run the bash script (which I created) to provide the checksums. Here is the full bash script:

!/bin/bash

for filename in *; do sha512sum ${filename} >> checksums.txt; done

rascapac commented 3 years ago

There is still issues with unction download_and_verify [ general.sh:1355 ]