summary refs log tree commit diff
path: root/nixos/tests/installed-tests
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-10-27 07:29:44 +0100
committerJan Tojnar <jtojnar@gmail.com>2020-11-09 22:50:17 +0100
commit3a5ba30c138d18ab79edbb60fa06beab62366d55 (patch)
tree0e93bcd827ad8eb02370ec27866d7e9657c100f1 /nixos/tests/installed-tests
parent30b932e46b13a9ad6640c0429c97c2af20458228 (diff)
downloadnixpkgs-3a5ba30c138d18ab79edbb60fa06beab62366d55.tar
nixpkgs-3a5ba30c138d18ab79edbb60fa06beab62366d55.tar.gz
nixpkgs-3a5ba30c138d18ab79edbb60fa06beab62366d55.tar.bz2
nixpkgs-3a5ba30c138d18ab79edbb60fa06beab62366d55.tar.lz
nixpkgs-3a5ba30c138d18ab79edbb60fa06beab62366d55.tar.xz
nixpkgs-3a5ba30c138d18ab79edbb60fa06beab62366d55.tar.zst
nixpkgs-3a5ba30c138d18ab79edbb60fa06beab62366d55.zip
fwupd: 1.4.6 → 1.5.1
* https://github.com/fwupd/fwupd/releases/tag/1.5.0
* https://github.com/fwupd/fwupd/releases/tag/1.5.1

* The changelog mentions removed dependency on efivar but we still need the package because it also contains efiboot required dependency. https://github.com/fwupd/fwupd/pull/2485
* Blacklist options were renamed.
* Test firmware was moved to a separate repo. We need to install it or some tests will be skipped. https://github.com/fwupd/fwupd/pull/2330
* Initially, there was an option to configure dbx but in the end, it was removed in favour of bespoke dbxtool. https://github.com/fwupd/fwupd/pull/2061, https://github.com/fwupd/fwupd/pull/2318, https://github.com/fwupd/fwupd/pull/2329
* Fwupd now checks hashes of plug-ins and will complain loudly that it is tainted when “invalid” plug-in is loaded (during testing).
* Installed tests complain about not being able to access cdn, even though we are not setting CI_NETWORK env var. We need a patch to fix that.
Diffstat (limited to 'nixos/tests/installed-tests')
-rw-r--r--nixos/tests/installed-tests/fwupd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/installed-tests/fwupd.nix b/nixos/tests/installed-tests/fwupd.nix
index 6a0ceb57dda..a8a683a1af7 100644
--- a/nixos/tests/installed-tests/fwupd.nix
+++ b/nixos/tests/installed-tests/fwupd.nix
@@ -5,7 +5,7 @@ makeInstalledTest {
 
   testConfig = {
     services.fwupd.enable = true;
-    services.fwupd.blacklistPlugins = lib.mkForce []; # don't blacklist test plugin
+    services.fwupd.disabledPlugins = lib.mkForce []; # don't disable test plugin
     services.fwupd.enableTestRemote = true;
     virtualisation.memorySize = 768;
   };