Compare commits

..

No commits in common. "0c9f504a880216d9817acbd451290e1fc719ca06" and "9803c988e93edafd9178f700ac40665431d770ca" have entirely different histories.

2 changed files with 2 additions and 12 deletions

View file

@ -1,10 +1,4 @@
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,16 +451,12 @@ _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/3:\e[m Reinstalling packages and adding info/man-pages..." echo -e "\e[1mStep 1/2:\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/3:\e[m Checking kernel version..." echo -e "\e[1mStep 2/2:\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
} }