mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-25 19:25:43 +00:00
13 lines
494 B
Bash
Executable File
13 lines
494 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
# try loading the mtdram module to run our mtd tests
|
|
modprobe mtdram 2>&1 || true
|
|
sed "s,^DisabledPlugins=.*,DisabledPlugins=," -i /etc/fwupd/daemon.conf
|
|
sed "s,^VerboseDomains=.*,VerboseDomains=*," -i /etc/fwupd/daemon.conf
|
|
sed "s,^AllowEmulation=false,AllowEmulation=true," -i /etc/fwupd/daemon.conf
|
|
sed "s,ConditionVirtualization=.*,," \
|
|
/lib/systemd/system/fwupd.service > \
|
|
/etc/systemd/system/fwupd.service
|
|
systemctl daemon-reload
|
|
gnome-desktop-testing-runner fwupd
|