mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-31 10:48:59 +00:00

Shim has had a hard time with loading updates from arguments in the most recent release and this isn't the first time that happened. Give distros and users an escape hatch that will allow using GRUB instead.
12 lines
287 B
Bash
Executable File
12 lines
287 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
#activation via systemd
|
|
systemctl stop fwupd-activate
|
|
systemctl disable fwupd-activate
|
|
rm /etc/systemd/system/fwupd-activate.service -f
|
|
systemctl daemon-reload
|
|
#msr module
|
|
rm /usr/lib/modules-load.d/fwupd-msr.conf -f
|
|
#optional grub configuration
|
|
rm /etc/grub.d/35_fwupd -f
|