tools-{musl,systemd,uclibc}: switch to nightheron

Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
This commit is contained in:
Anthony G. Basile 2020-02-09 12:32:06 -05:00
parent c8b2d3368e
commit f80a68d359
No known key found for this signature in database
GPG key ID: 9384FA6EF52D4BBA
11 changed files with 109 additions and 9 deletions

View file

@ -0,0 +1,31 @@
# Custom catalyst.conf file
digests="sha512 whirlpool"
contents="auto"
distdir="/release/tmp/distfiles"
envscript="/etc/catalyst/catalystrc"
hash_function="crc32"
#options="autoresume bindist kerncache pkgcache seedcache snapcache"
options="autoresume bindist kerncache pkgcache seedcache"
portdir="/usr/portage"
repo_basedir="/usr"
repo_name="portage"
target_distdir="/usr/portage/distfiles"
target_pkgdir="/usr/portage/packages"
sharedir="/usr/share/catalyst"
shdir="%(sharedir)s/targets"
snapshot_cache="/release/buildroot/alt-dev/snapshot_cache"
storedir="/release/buildroot/alt-dev"
source_matching="strict"

View file

@ -1,6 +1,6 @@
#!/bin/bash
source /etc/catalyst/catalyst.conf
source $(pwd)/catalyst.conf.local
mydate=`date +%Y%m%d`
@ -42,7 +42,8 @@ do_stages() {
fi
banner ${s} ${arch} ${flavor}
catalyst -f stage${s}-${arch}-musl-${flavor}.conf \
catalyst -c $(pwd)/catalyst.conf.local \
-f stage${s}-${arch}-musl-${flavor}.conf \
| tee -a zzz.log \
> stage${s}-${arch}-musl-${flavor}.log \
2> stage${s}-${arch}-musl-${flavor}.err

View file

@ -49,7 +49,7 @@ main() {
undo_grsec
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
catalyst -c $(pwd)/catalyst.conf.local -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
for arch in amd64 i686; do
for flavor in hardened vanilla; do

3
tools-systemd/.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
*log
*err
stage*.conf

View file

@ -0,0 +1,31 @@
# Custom catalyst.conf file
digests="sha512 whirlpool"
contents="auto"
distdir="/release/tmp/distfiles"
envscript="/etc/catalyst/catalystrc"
hash_function="crc32"
#options="autoresume bindist kerncache pkgcache seedcache snapcache"
options="autoresume bindist kerncache pkgcache seedcache"
portdir="/usr/portage"
repo_basedir="/usr"
repo_name="portage"
target_distdir="/usr/portage/distfiles"
target_pkgdir="/usr/portage/packages"
sharedir="/usr/share/catalyst"
shdir="%(sharedir)s/targets"
snapshot_cache="/release/buildroot/alt-dev/snapshot_cache"
storedir="/release/buildroot/alt-dev"
source_matching="strict"

View file

@ -1,6 +1,6 @@
#!/bin/bash
source /etc/catalyst/catalyst.conf
source $(pwd)/catalyst.conf.local
mydate=$(date +%Y%m%d)
@ -40,7 +40,8 @@ do_stages() {
fi
banner ${s} ${arch}
catalyst -f stage${s}-${arch}-systemd.conf \
catalyst -c $(pwd)/catalyst.conf.local \
-f stage${s}-${arch}-systemd.conf \
| tee -a zzz.log \
> stage${s}-${arch}-systemd.log \
2> stage${s}-${arch}-systemd.err

View file

@ -42,7 +42,7 @@ main() {
undo_grsec
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
catalyst -c $(pwd)/catalyst.conf.local -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
for arch in amd64 i686; do
prepare_confs ${arch}

View file

@ -1,2 +1,3 @@
*log
*err
stage*.conf

View file

@ -0,0 +1,31 @@
# Custom catalyst.conf file
digests="sha512 whirlpool"
contents="auto"
distdir="/release/tmp/distfiles"
envscript="/etc/catalyst/catalystrc"
hash_function="crc32"
#options="autoresume bindist kerncache pkgcache seedcache snapcache"
options="autoresume bindist kerncache pkgcache seedcache"
portdir="/usr/portage"
repo_basedir="/usr"
repo_name="portage"
target_distdir="/usr/portage/distfiles"
target_pkgdir="/usr/portage/packages"
sharedir="/usr/share/catalyst"
shdir="%(sharedir)s/targets"
snapshot_cache="/release/buildroot/alt-dev/snapshot_cache"
storedir="/release/buildroot/alt-dev"
source_matching="strict"

View file

@ -1,6 +1,6 @@
#!/bin/bash
source /etc/catalyst/catalyst.conf
source $(pwd)/catalyst.conf.local
mydate=`date +%Y%m%d`
@ -42,7 +42,8 @@ do_stages() {
fi
banner ${s} ${arch} ${flavor}
catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \
catalyst -c $(pwd)/catalyst.conf.local \
-f stage${s}-${arch}-uclibc-${flavor}.conf \
| tee -a zzz.log \
> stage${s}-${arch}-uclibc-${flavor}.log \
2> stage${s}-${arch}-uclibc-${flavor}.err

View file

@ -45,7 +45,7 @@ main() {
# undo_grsec
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
catalyst -c $(pwd)/catalyst.conf.local -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
for arch in amd64 i686; do
for flavor in hardened vanilla; do