2022-10-06 23:19:29 +00:00
|
|
|
{
|
|
|
|
stdenv
|
|
|
|
, dtc
|
2023-03-02 23:01:26 +00:00
|
|
|
, lib
|
2024-12-17 20:36:14 +00:00
|
|
|
, runCommand
|
|
|
|
, writeText
|
2022-10-06 23:19:29 +00:00
|
|
|
}:
|
|
|
|
{ dts
|
2022-10-19 16:34:22 +00:00
|
|
|
, includes
|
2023-03-02 23:01:26 +00:00
|
|
|
, commandLine
|
2022-10-06 23:19:29 +00:00
|
|
|
}:let
|
|
|
|
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}; }; };";
|
|
|
|
combined = writeText "combined-dts-fragments"
|
|
|
|
(lib.concatStrings
|
|
|
|
(builtins.map
|
|
|
|
(f: "#include \"${f}\"\n")
|
|
|
|
(dts ++ [ chosen ])));
|
2022-10-06 23:19:29 +00:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
}
|