From 788169586f68da4998657067f91d3b9feb3ba542 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Wed, 1 Jan 2025 12:29:25 +0000 Subject: [PATCH] /boot is a directory, copy files instead of replacing it with symlink for the record, u-boot doesn't like having /boot/fit -> ../nix/store/..../fit symlinks so we don't use symlinks inside /boot either --- pkgs/systemconfig/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/systemconfig/default.nix b/pkgs/systemconfig/default.nix index 37ad3ea..1610d38 100644 --- a/pkgs/systemconfig/default.nix +++ b/pkgs/systemconfig/default.nix @@ -99,8 +99,10 @@ in attrset: cp -v -fP \$src/bin/* \$src/etc/* \$dest ${if attrset ? boot then '' (cd \$dest - if test -e boot ; then rm boot ; fi - ln -sf ${lib.strings.removePrefix "/" attrset.boot.target} ./boot + test -d boot || mkdir boot + cd boot + cp ../${lib.strings.removePrefix "/" attrset.boot.target}/* . + sync; sync ) '' else ""} EOF