Compare commits

...

2 commits

Author SHA1 Message Date
Tobias Powalowski
0c9f504a88 update CHANGELOG 2023-07-02 08:44:19 +02:00
Tobias Powalowski
e3cd26e4fe trigger kernel module loading on -full-system 2023-07-02 08:27:26 +02:00
2 changed files with 12 additions and 2 deletions

View file

@ -1,4 +1,10 @@
On the road to 2023.07: On the road to 2023.07:
- kernel 6.4.x
- use blake2/b2sum instead of sha256sum
locale:
- fixed abort dialog
update:
- trigger kernel module loading on -full-system
--- ---
2023.06 Highlights: 2023.06 Highlights:
- New domain https://archboot.com with new w3c conform html layout - New domain https://archboot.com with new w3c conform html layout

View file

@ -451,12 +451,16 @@ _full_system() {
exit 0 exit 0
fi fi
echo -e "\e[1mInitializing full Arch Linux system...\e[m" echo -e "\e[1mInitializing full Arch Linux system...\e[m"
echo -e "\e[1mStep 1/2:\e[m Reinstalling packages and adding info/man-pages..." echo -e "\e[1mStep 1/3:\e[m Reinstalling packages and adding info/man-pages..."
echo " This will need some time..." echo " This will need some time..."
pacman -Sy >/dev/tty7 2>&1 || exit 1 pacman -Sy >/dev/tty7 2>&1 || exit 1
pacman -Qqn | pacman -S --noconfirm man-db man-pages texinfo - >/dev/tty7 2>&1 || exit 1 pacman -Qqn | pacman -S --noconfirm man-db man-pages texinfo - >/dev/tty7 2>&1 || exit 1
echo -e "\e[1mStep 2/2:\e[m Checking kernel version..." echo -e "\e[1mStep 2/3:\e[m Checking kernel version..."
_kernel_check _kernel_check
echo -e "\e[1mStep 3/3:\e[m Trigger kernel module loading..."
udevadm trigger --action=add --type=subsystems
udevadm trigger --action=add --type=devices
udevadm settle
echo -e "\e[1mFull Arch Linux system is ready now.\e[m" echo -e "\e[1mFull Arch Linux system is ready now.\e[m"
touch /.full_system touch /.full_system
} }