From 558907989ba98d77021dc830c83a12059ab74c9f Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Sat, 28 Mar 2020 21:51:00 -0400 Subject: [PATCH] systems/u-boot: Fix eval with release.nix The "default" output was missing. --- modules/system-types/u-boot.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/system-types/u-boot.nix b/modules/system-types/u-boot.nix index 1d30625e..71aebd8a 100644 --- a/modules/system-types/u-boot.nix +++ b/modules/system-types/u-boot.nix @@ -191,6 +191,7 @@ in inherit boot-partition; disk-image = withBootloader; u-boot = cfg.package; + default = system.build.disk-image; }; }) ];