Skip to content

Commit

Permalink
fix aarch64 kernel copy
Browse files Browse the repository at this point in the history
  • Loading branch information
cleverca22 committed Feb 24, 2019
1 parent d55aa5c commit 27fd595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ with lib;
system.build.dist = pkgs.runCommand "not-os-dist" {} ''
mkdir $out
cp ${config.system.build.squashfs} $out/root.squashfs
cp ${config.system.build.kernel}/*zImage $out/kernel
cp ${config.system.build.kernel}/*Image $out/kernel
cp ${config.system.build.initialRamdisk}/initrd $out/initrd
echo "${builtins.unsafeDiscardStringContext (toString config.boot.kernelParams)}" > $out/command-line
'';

system.activationScripts.users = ''
# dummy to make setup-etc happy
'';
Expand Down

0 comments on commit 27fd595

Please sign in to comment.