pub fn write_dt(
buffer: &mut [u8],
partition_info: &PartitionInfo,
reserved_memory: &[(MemoryRange, ReservedMemoryType)],
accepted_ranges: impl IntoIterator<Item = MemoryRange>,
initrd: Range<u64>,
cmdline: &ArrayString<COMMAND_LINE_SIZE>,
sidecar: Option<&SidecarConfig<'_>>,
boot_times: Option<BootTimes>,
) -> Result<(), DtError>
Expand description
Writes the device tree blob into buffer
.