Compare commits

..

5 Commits

Author SHA1 Message Date
985d8bc7b9 Fixed ping. 2025-07-18 15:04:32 -04:00
856c794637 Fixed ping. 2025-07-18 15:03:57 -04:00
1257eb31ab Battling with repository still. 2025-07-17 18:35:10 -04:00
adfc259d0f Fixes to the aarch64 stormux repository. 2025-07-17 18:17:08 -04:00
4c8de812ba Fixes to the aarch64 stormux repository. 2025-07-17 18:16:48 -04:00

View File

@ -69,7 +69,7 @@ add_stormux_repo() {
echo "" >> "$temp_conf"
echo "[stormux]" >> "$temp_conf"
echo "SigLevel = Required" >> "$temp_conf"
echo "Server = https://aarch64.stormux.org/" >> "$temp_conf"
echo "Server = https://aarch64.stormux.org/\$repo-\$arch" >> "$temp_conf"
fi
# Replace the original pacman.conf
@ -95,7 +95,7 @@ install_xlibre() {
yay --sudoflags "${sudoFlags[@]}" --sudoloop --noconfirm -Syu
# Check if we have internet connectivity
if ! ping -c 1 aarch64.stormux.org &>/dev/null; then
if ! ping -c1 stormux.org &>/dev/null; then
msgbox "No internet connection detected. X11Libre installation requires internet access."
return 1
fi
@ -112,18 +112,18 @@ install_xlibre() {
# Install X11Libre packages from StormUX repository
infobox "Installing X11Libre server and drivers..."
if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm xlibre-server-common-git xlibre-server-devel-git; then
if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm xlibre-server-common xlibre-server-devel; then
msgbox "Failed to install X11Libre server components."
return 1
fi
if ! sudo "${sudoFlags[@]}" pacman -Sdd --noconfirm xlibre-server-git; then
if ! sudo "${sudoFlags[@]}" pacman -Sdd --noconfirm xlibre-server; then
msgbox "Failed to install X11Libre server main package."
return 1
fi
# Install input and video drivers from StormUX repository
if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm stormux/xf86-input-libinput-xlibre stormux/xf86-video-dummy-with-vt stormux/xf86-video-fbdev; then
if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm xlibre-input-libinput xlibre-video-dummy-with-vt xlibre-video-fbdev; then
msgbox "Failed to install X11Libre input and video drivers."
return 1
fi