diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-04-08 20:37:16 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-04-23 11:20:35 -0700 |
commit | 4e908d9934f988c01782b7d4fa8cd9bfa8853efa (patch) | |
tree | 76d5307e4249817808937418eb8c2aa0ba42694e /etc | |
parent | catalyst: Add read/write_lock contextmanagers (diff) | |
download | catalyst-4e908d9934f988c01782b7d4fa8cd9bfa8853efa.tar.gz catalyst-4e908d9934f988c01782b7d4fa8cd9bfa8853efa.tar.bz2 catalyst-4e908d9934f988c01782b7d4fa8cd9bfa8853efa.zip |
catalyst: Remove snapcache support
Among the problems with snapcache were broken locking, and still needing
to pack and unpack snapshot tarballs. In a few commits, I'm going to
replace it with something significantly better.
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/catalyst.conf | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/etc/catalyst.conf b/etc/catalyst.conf index 6d530a39..6a499038 100644 --- a/etc/catalyst.conf +++ b/etc/catalyst.conf @@ -42,9 +42,6 @@ envscript="/etc/catalyst/catalystrc" # (used on installcd-stage2 and stage4 targets) # seedcache = use the build output of a previous target if it exists to speed up # the copy -# snapcache = cache the snapshot so that it can be bind-mounted into the chroot. -# WARNING: moving parts of the portage tree from within fsscript *will* break -# your cache. The cache is unlinked before any empty or rm processing, though. # sticky-config = enables the code that will keep any internal 'catalyst_use' flags # added to the USE= for building the stage. These are usually added for legal # or specific needs in building the the early stage. Mostly it is the @@ -53,7 +50,7 @@ envscript="/etc/catalyst/catalystrc" # files or directories. # # (These options can be used together) -options="autoresume bindist kerncache pkgcache seedcache snapcache" +options="autoresume bindist kerncache pkgcache seedcache" # Source portdir specifies the source portage tree used by the snapshot target. portdir="/var/db/repos/gentoo" |