diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-07-12 16:35:14 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-07-12 16:41:36 +0100 |
commit | 5b44cb159bbc2b46bcc9cd6b8612f7e05d4f3ae5 (patch) | |
tree | 67c6c78c548f35d44a77f444477f931f0e32abd8 /docs/maintain | |
parent | 6fb9ffefdd9cc64c08cf7627efd8a87a894b0419 (diff) | |
download | librebootfr-5b44cb159bbc2b46bcc9cd6b8612f7e05d4f3ae5.tar.gz librebootfr-5b44cb159bbc2b46bcc9cd6b8612f7e05d4f3ae5.zip |
download/coreboot: verify the checksums of downloaded files
Diffstat (limited to 'docs/maintain')
-rw-r--r-- | docs/maintain/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/maintain/index.html b/docs/maintain/index.html index add2ee9a..28a585d0 100644 --- a/docs/maintain/index.html +++ b/docs/maintain/index.html @@ -223,6 +223,18 @@ </p> <p> + Note: you will also need to replace the sha512 sums in + <i>resources/scripts/helpers/sha512sums/coreboot</i>. Do this with + an <i>unmodified</i> version of coreboot, from the commit that you are using, + and make sure that the files/directories beginning with <i>.git</i> do not + appear in the list of sha512 checksums. You must <i>also</i> run the deblob + script to remove the blobs, before generating this list of sha512 sums. + You can generate the list like so:<br/> + $ <b>rm -f ../resources/scripts/helpers/sha512sums/coreboot</b><br/> + $ <b>for i in $(find -type f); do sha512sum "${i}" >> ../resources/scripts/helpers/sha512sums/coreboot; done</b> + </p> + + <p> Download coreboot again, only this time, using the download script. The download script also applies custom patches to coreboot (see resources/scripts/helpers/download/coreboot); @@ -442,6 +454,7 @@ an <i>unmodified</i> version of GRUB, from the commit that you are using, and make sure that the files/directories beginning with <i>.git</i> do not appear in the list of sha512 checksums. You can generate the list like so:<br/> + $ <b>rm -f ../resources/scripts/helpers/sha512sums/grub</b><br/> $ <b>for i in $(find -type f); do sha512sum "${i}" >> ../resources/scripts/helpers/sha512sums/grub; done</b> </p> |