diff options
author | 2020-04-16 23:38:14 -0700 | |
---|---|---|
committer | 2020-04-17 10:03:47 -0700 | |
commit | 45edc6510ce9cbf9cbe9ab5d2b7b8cd9f65f84cb (patch) | |
tree | 9cb9b5e3832958ddb0db3cbb29143c0011fe40bf /etc | |
parent | catalyst: Remove 'contents' config option (diff) | |
download | catalyst-45edc6510ce9cbf9cbe9ab5d2b7b8cd9f65f84cb.tar.gz catalyst-45edc6510ce9cbf9cbe9ab5d2b7b8cd9f65f84cb.tar.bz2 catalyst-45edc6510ce9cbf9cbe9ab5d2b7b8cd9f65f84cb.zip |
catalyst: Remove the 'hash_function' config option
Switch to SHA1, which is plenty fast. The next commit switches from the
external shash/b2sum tools to Python's hashlib, and the removal of this
config option will simplify that since the crc32 hash is in a different
python module (zlib).
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/catalyst.conf | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/etc/catalyst.conf b/etc/catalyst.conf index a3c22049..4c4d491e 100644 --- a/etc/catalyst.conf +++ b/etc/catalyst.conf @@ -24,16 +24,6 @@ distdir="/var/cache/distfiles" # export FOO="bar" envscript="/etc/catalyst/catalystrc" -# Internal hash function catalyst should use for things like autoresume, -# seedcache, etc. The default and fastest is crc32. You should not ever need -# to change this unless your OS does not support it. -# Supported hashes: -# adler32, blake2, crc32, crc32b, gost, haval128, haval160, haval192, haval224, -# haval256, md2, md4, md5, ripemd128, ripemd160, ripemd256, ripemd320, sha1, -# sha224, sha256, sha384, sha512, snefru128, snefru256, tiger, tiger128, -# tiger160, whirlpool -hash_function="crc32" - # options set different build-time options for catalyst. Some examples are: # autoresume = Attempt to resume a failed build, clear the autoresume flags with # the -a option to the catalyst cmdline. -p will clear the autoresume flags |