-
Notifications
You must be signed in to change notification settings - Fork 1
/
hotfix-end.bash
104 lines (91 loc) · 2.69 KB
/
hotfix-end.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/bin/bash
#
# Hotfixes for the ISOs that can be used after releasing the ISO.
# This file is meant for fixes that need to be done at the end of running calamares.
Main() {
local progname="$(basename "$0")"
source /usr/share/endeavouros/scripts/eos-script-lib-yad || return 1
local ISO_VERSION="$(IsoVersion)"
local DE="$(eos_GetDeOrWm)"
# Add hotfixes below:
# - For ISO version specific hotfixes: use the $ISO_VERSION variable.
# - For DE/WM specific hotfixes: use the $DE variable (all upper case letters).
# - Make sure execution does NOT stop (e.g. to ask a password) nor EXIT!
case "$ISO_VERSION" in
2021.11.30 | 2021.12.*) # for "Atlantis" and "Atlantis neo"
HotMsg "hotfixes after ISO $ISO_VERSION."
Hotfix_sway_ly
Remove_packages pcurses
;;
2022.04.08)
HotMsg "hotfixes after ISO $ISO_VERSION."
Install_packages endeavouros-keyring
if [ -n "$(lspci -k | grep "Ethernet controller: Marvell Technology" | grep -w "wireless")" ] ; then
Install_packages linux-firmware-marvell
fi
;;
"")
HotMsg "ISO version not found." warning
;;
*)
HotMsg "no hotfixes for ISO version $ISO_VERSION."
;;
esac
}
Hotfix_sway_ly() {
case "$DE" in
SWAY)
Install_packages ly
HotMsg "sway: enabling ly service"
systemctl --force enable ly
;;
esac
}
#### Common services:
HotMsg() {
local msg="$1"
local type="$2"
[ -n "$type" ] || type=info
echo "==> $progname: $type: $msg"
}
IsoVersion() {
local VERSION=""
local file=/usr/lib/endeavouros-release
LANG=C source $file || return
echo "$VERSION"
}
PackageVersion() {
local pkgname="$1"
pacman -Q "$pkgname" | awk '{print $2}'
}
FetchFile() {
local remote="$1"
local local="$2"
curl --fail -Lsm 60 -o "$local" "$remote" || HotMsg "fetching new '$local' failed" warning
}
Install_packages() { # parameters: package names
local pkg pkgs=()
for pkg in "$@" ; do
if ! pacman -Q $pkg >& /dev/null ; then
pkgs+=("$pkg")
fi
done
if [ -n "$pkgs" ] ; then
HotMsg "$DE: installing ${pkgs[*]}"
pacman -Syu --noconfirm "${pkgs[@]}"
fi
}
Remove_packages() { # parameters: package names
local pkg pkgs=()
for pkg in "$@" ; do
if pacman -Q $pkg >& /dev/null ; then
pkgs+=("$pkg")
fi
done
if [ -n "$pkgs" ] ; then
HotMsg "$DE: uninstalling ${pkgs[*]}"
pacman -R --noconfirm "${pkgs[@]}"
fi
}
#### Execution starts here
Main "$@"