2022-10-06 23:19:29 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
stdenv,
|
|
|
|
dtc,
|
|
|
|
lib,
|
|
|
|
runCommand,
|
|
|
|
writeText,
|
2022-10-06 23:19:29 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
dts,
|
|
|
|
includes,
|
|
|
|
commandLine,
|
|
|
|
}:
|
|
|
|
let
|
2022-10-06 23:19:29 +00:00
|
|
|
cppDtSearchFlags = builtins.concatStringsSep " " (map (f: "-I${f}") includes);
|
|
|
|
dtcSearchFlags = builtins.concatStringsSep " " (map (f: "-i${f}") includes);
|
2023-03-02 23:01:26 +00:00
|
|
|
cmdline = lib.concatStringsSep " " commandLine;
|
2024-12-17 20:36:14 +00:00
|
|
|
chosen = writeText "chosen.dtsi" "/{ chosen { bootargs = ${builtins.toJSON cmdline}; }; };";
|
2025-02-10 21:55:08 +00:00
|
|
|
combined = writeText "combined-dts-fragments" (
|
|
|
|
lib.concatStrings (builtins.map (f: "#include \"${f}\"\n") (dts ++ [ chosen ]))
|
|
|
|
);
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2022-10-06 23:19:29 +00:00
|
|
|
name = "dtb";
|
|
|
|
phases = [ "buildPhase" ];
|
|
|
|
nativeBuildInputs = [ dtc ];
|
|
|
|
buildPhase = ''
|
2024-12-17 20:36:14 +00:00
|
|
|
${stdenv.cc.targetPrefix}cpp -nostdinc -x assembler-with-cpp ${cppDtSearchFlags} -undef -D__DTS__ -o dtb.tmp ${combined}
|
2022-10-06 23:19:29 +00:00
|
|
|
dtc ${dtcSearchFlags} -I dts -O dtb -o $out dtb.tmp
|
2024-12-17 20:36:14 +00:00
|
|
|
# dtc -I dtb -O dts $out
|
2022-10-06 23:19:29 +00:00
|
|
|
test -e $out
|
|
|
|
'';
|
|
|
|
}
|