mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 13:15:21 +00:00
fix: headers not installing
This commit is contained in:
parent
5878f4dbf0
commit
200a449243
|
@ -15,15 +15,18 @@ installWaydroid() {
|
|||
case "$PACKAGER" in
|
||||
pacman)
|
||||
"$AUR_HELPER" -S --needed --noconfirm waydroid
|
||||
|
||||
if ! command_exists dkms; then
|
||||
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm dkms
|
||||
fi
|
||||
|
||||
installed_kernels=$("$PACKAGER" -Q | grep -E '^linux(| |-rt|-rt-lts|-hardened|-zen|-lts)[^-headers]' | cut -d ' ' -f 1)
|
||||
for kernel in $installed_kernels; do
|
||||
header="${kernel}-headers"
|
||||
printf "%b\n" "${CYAN}Installing headers for $kernel...${RC}"
|
||||
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm "$header"
|
||||
done
|
||||
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm dkms
|
||||
fi
|
||||
|
||||
"$AUR_HELPER" -S --needed --noconfirm binder_linux-dkms
|
||||
"$ESCALATION_TOOL" modprobe binder-linux device=binder,hwbinder,vndbinder
|
||||
;;
|
||||
|
@ -32,7 +35,7 @@ installWaydroid() {
|
|||
"$ESCALATION_TOOL" "$PACKAGER" install -y waydroid
|
||||
if command_exists dkms; then
|
||||
"$ESCALATION_TOOL" "$PACKAGER" install -y git
|
||||
mkdir -p "$HOME/.local/share/" # only create it if it doesnt exist
|
||||
mkdir -p "$HOME/.local/share/"
|
||||
git clone https://github.com/choff/anbox-modules.git "$HOME/.local/share/anbox-modules"
|
||||
cd "$HOME/.local/share/anbox-modules"
|
||||
"$ESCALATION_TOOL" cp anbox.conf /etc/modules-load.d/
|
||||
|
@ -47,7 +50,7 @@ installWaydroid() {
|
|||
"$ESCALATION_TOOL" "$PACKAGER" install -y waydroid
|
||||
if command_exists dkms; then
|
||||
"$ESCALATION_TOOL" "$PACKAGER" install -y git
|
||||
mkdir -p "$HOME/.local/share/" # only create it if it doesnt exist
|
||||
mkdir -p "$HOME/.local/share/"
|
||||
git clone https://github.com/choff/anbox-modules.git "$HOME/.local/share/anbox-modules"
|
||||
cd "$HOME/.local/share/anbox-modules"
|
||||
"$ESCALATION_TOOL" cp anbox.conf /etc/modules-load.d/
|
||||
|
|
Loading…
Reference in New Issue
Block a user