diff --git a/CHANGELOG b/CHANGELOG index 6363f0e62..704f0f1e0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/usr/lib/archboot/update-installer/update-installer.sh b/usr/lib/archboot/update-installer/update-installer.sh index c9d7c7333..9267272b2 100644 --- a/usr/lib/archboot/update-installer/update-installer.sh +++ b/usr/lib/archboot/update-installer/update-installer.sh @@ -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}" diff --git a/usr/lib/initcpio/install/archboot_keymap b/usr/lib/initcpio/install/archboot_keymap index d847589ce..ba56b318f 100644 --- a/usr/lib/initcpio/install/archboot_keymap +++ b/usr/lib/initcpio/install/archboot_keymap @@ -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 ()