PortValhalla/scripts/Arch/Devices/Surface/install.sh

55 lines
1.2 KiB
Bash
Raw Normal View History

#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
. "../../Software/yay/install.sh";
curl -s https://raw.githubusercontent.com/linux-surface/linux-surface/master/pkg/keys/surface.asc \
| sudo pacman-key --add -;
sudo pacman-key --finger 56C464BAAC421453;
sudo pacman-key --lsign-key 56C464BAAC421453;
pacmanConf="/etc/pacman.conf";
2023-05-23 06:43:51 +00:00
retry() {
retryCount="$1";
command="${@:2}";
exitCode=0;
for i in $(seq 1 $retryCount);
do
eval "$command" && {
exitCode=0;
break;
};
exitCode="$?";
done;
}
if ! grep "^\[linux-surface\]$" "$pacmanConf"
2023-04-06 11:40:43 +00:00
then
{
echo "";
echo "[linux-surface]";
echo "Server = https://pkg.surfacelinux.com/arch/";
} | sudo tee -a "$pacmanConf" > /dev/null;
fi;
2023-05-23 06:43:51 +00:00
retry 5 sudo pacman --noconfirm -Syu;
2023-05-23 06:43:51 +00:00
retry 5 sudo pacman --noconfirm -Sy \
intel-ucode \
linux-surface \
linux-surface-headers \
2023-05-06 23:36:04 +00:00
linux-surface-secureboot-mok \
iptsd \
intel-ucode \
linux-firmware-marvell;
sudo grub-mkconfig -o /boot/grub/grub.cfg;
2023-04-07 00:10:45 +00:00
yes | yay --answerclean=None --answerdiff=None -Syu libwacom-surface;
. "./camera.sh";
2023-05-03 19:44:40 +00:00
popd > /dev/null;