mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-05 00:38:35 +00:00

it's optional as tests can be skipped, if mtdram module isn't there Signed-off-by: Lukas Märdian <slyon@ubuntu.com>
12 lines
417 B
Bash
Executable File
12 lines
417 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,ConditionVirtualization=.*,," \
|
|
/lib/systemd/system/fwupd.service > \
|
|
/etc/systemd/system/fwupd.service
|
|
systemctl daemon-reload
|
|
gnome-desktop-testing-runner fwupd
|