update CHANGELOG and comment

This commit is contained in:
Tobias Powalowski 2023-06-21 12:08:31 +02:00
parent ba7d18037d
commit d0e489afda
2 changed files with 11 additions and 5 deletions

View file

@ -11,9 +11,13 @@ Environment Changes:
- disabled lastlog login message
- made systemd initrd-switch-root routine bullet proof
- fixed /run/nouser leftovers
- disabled/masked systemd mounts: fuse, debugfs, configfs, tmp and tracefs
- disabled/masked systemd mounts:
fuse, debugfs, configfs, tmp and tracefs
- disabled/masked systemd targets:
swap, cryptsetup, integritysetup and veritysetup
cryptsetup first-boot-complete integritysetup swap veritysetup
- disabled/masked systemd services:
hwdb-update firstboot machine-id-commit pcrmachine binfmt boot-random-seed
repart pcrphase pcrphase-sysinit
- disabled/masked nfs3 support:
rpcbind.service, rpcbind.socket, rpcbind.target and nfs-server.service
- switch to default.target -> graphical.target

View file

@ -145,12 +145,14 @@ build ()
done
### disable systemd targets:
# swap cryptsetup integritysetup veritysetup
for i in cryptsetup integritysetup swap veritysetup; do
for i in cryptsetup first-boot-complete integritysetup swap veritysetup; do
add_symlink "/etc/systemd/system/${i}.target" "/dev/null"
done
### disable systemd services:
for i in firstboot machine-id-commit pcrmachine binfmt boot-random-seed repart; do
add_symlink "/etc/systemd/system/sytem-${i}.service" "/dev/null"
# hwdb-update firstboot machine-id-commit pcrmachine binfmt
# boot-random-seed repart pcrphase pcrphase-sysinit
for i in hwdb-update firstboot machine-id-commit pcrmachine binfmt boot-random-seed repart pcrphase pcrphase-sysinit; do
add_symlink "/etc/systemd/system/systemd-${i}.service" "/dev/null"
done
# remove multi-user.target.wants
rm -rf ${BUILDROOT}/etc/systemd/system/multi-user.target.wants