add fbset and terminus-font

This commit is contained in:
Tobias Powalowski 2023-01-18 09:04:50 +01:00
parent 152c0e0f43
commit d5f716f33d
3 changed files with 12 additions and 1 deletions

View file

@ -1,4 +1,9 @@
On the road to 2023.02
Highlights:
- Unified Kernel Images / UKI files are provided now
- grub 2:2.06.r415.g1a241e050-1
Environment changes:
- added fbset and terminus-font
---
2023.01 Highlights:
- linux 6.1.x

View file

@ -220,7 +220,7 @@ _clean_archboot() {
rm -rf "/usr/lib/firmware"
rm -rf "/usr/lib/modules"
rm -rf /usr/lib/{libicu*,libstdc++*}
_SHARE_DIRS="efitools grub hwdata kbd licenses lshw nmap nano nvim pacman refind systemd tc zoneinfo"
_SHARE_DIRS="efitools grub fonts fontconfig hwdata kbd licenses lshw nmap nano nvim pacman refind systemd tc zoneinfo"
for i in ${_SHARE_DIRS}; do
#shellcheck disable=SC2115
rm -rf "/usr/share/${i}"

View file

@ -9,6 +9,12 @@ build ()
map add_binary dumpkeys kbd_mode chvt deallocvt fgconsole getkeycodes kbdinfo kbdrate loadunimap mapscrn openvt psfaddtable psfgettable psfstriptable psfxtable setkeycodes setleds setmetamode setvtrgb showconsolefont showkey unicode_start unicode_stop vlock
# only add resizecons on x86_64
[[ "$(uname -m)" == "x86_64" ]] && add_binary resizecons
# add fbset
add_binary fbset
add_file /etc/fb.modes
# add terminus-font
map add_full_dir /usr/share/fonts /usr/share/fontconfig
add_file /usr/share/licenses/terminus-font/LICENSE
}
help ()