bump: 202510

This commit is contained in:
ange 2025-10-03 10:10:06 +00:00
parent fa579eba0b
commit b0add9b2cd
Signed by: ange
GPG key ID: 9E0C4157BB7BEB1D
20 changed files with 75 additions and 98 deletions

View file

@ -2,17 +2,16 @@
#shellcheck disable=SC2154
case "$(lscpu)" in
*AMD*) echo amd-ucode >> pkglist.txt ;;
*Intel*) echo intel-ucode >> pkglist.txt ;;
*) ;;
*AMD*) printf '%s\n' amd-ucode >> pkglist.txt ;;
*Intel*) printf '%s\n' intel-ucode >> pkglist.txt ;;
esac
if [ -d /sys/class/power_supply/BAT0 ]; then
echo tlp >> pkglist.txt
printf '%s\n' tlp >> pkglist.txt
fi
echo "$shell" >> pkglist.txt
printf '%s\n' "$shell" >> pkglist.txt
pacstrap -C rootfs/etc/pacman.conf -K /mnt \
base linux{,-lts,-firmware} efibootmgr sbctl - < pkglist.txt
linux{,-lts,-firmware} efibootmgr sbctl pacman archlinux-keyring - < pkglist.txt
find /mnt/etc/ -name '*.pacnew' -delete