diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-15 15:04:03 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-15 15:04:03 -0600 |
| commit | 26a20f3df2a0d566c3d696032991987ddb518d8e (patch) | |
| tree | a985e28d76d3c3efdcd66e5edbd0576d045525bf /archsetup | |
| parent | 947f1c386ab2bd955f9ed6f3d16d5b19f6799ef7 (diff) | |
feat(archsetup): add firmware management and console font configuration
- Install mkinitcpio-firmware to silence firmware warnings during upgrades
- Configure lat0-16 console font for better TTY readability
- Add firmware cleanup task to TODO.org (Method 3: System Hygiene)
- Remove old archsetup log file
Changes:
- archsetup:589 - Add mkinitcpio-firmware AUR package installation
- archsetup:963-964 - Configure console font in boot_ux function
- TODO.org:419-441 - Add task to remove unnecessary firmware (~600MB savings)
Technical details:
- Framework laptop only needs intel and atheros firmware packages
- mkinitcpio-firmware provides enterprise hardware firmware
- lat0-16 font chosen for 2256x1504 high-res display
- Eliminates firmware and consolefont warnings during mkinitcpio
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'archsetup')
| -rwxr-xr-x | archsetup | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -586,6 +586,7 @@ desktop_environment() { aur_install downgrade aur_install duf aur_install inxi + aur_install mkinitcpio-firmware # suppresses missing firmware warnings during mkinitcpio # File Associations @@ -959,6 +960,9 @@ boot_ux() { (echo "kernel.printk = 3 3 3 3" >/etc/sysctl.d/20-quiet-printk.conf) || \ error "error" "$action" "$?" + action="configuring console font" && display "task" "$action" + (echo "FONT=lat0-16" >>/etc/vconsole.conf) || error "error" "$action" "$?" + action="delegating fsck messages from udev to systemd" && display "task" "$action" sed -i "s/.*HOOKS=(base udev autodetect keyboard keymap modconf block filesystems fsck).*/HOOKS=(base systemd autodetect keyboard keymap modconf block filesystems fsck)/" /etc/mkinitcpio.conf || error "error" "running sed on mkinitcpio.conf to hide fsck messages" "$?" mkinitcpio -P >> "$logfile" 2>&1 || error "error" "running mkinitcpio -P to silence fsck messages" "$?" |
