build: bump vm-fdt from 956b5a5 to 2e4ebde

Signed-off-by: Henry Wang <Henry.Wang@arm.com>
This commit is contained in:
Henry Wang 2021-06-03 18:54:24 +08:00 committed by Sebastien Boeuf
parent 1b87f332b0
commit bcee2fbd2d
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1223,7 +1223,7 @@ dependencies = [
[[package]]
name = "vm-fdt"
version = "0.1.0"
source = "git+https://github.com/rust-vmm/vm-fdt?branch=master#956b5a5ea1d7b92026e82bef2aa6a85b0c2200b5"
source = "git+https://github.com/rust-vmm/vm-fdt?branch=master#2e4ebdeb27be5b450b51b79fdeeeee3750d42182"
[[package]]
name = "vm-memory"

View File

@ -79,7 +79,7 @@ pub fn create_fdt<T: DeviceInfoForFdt + Clone + Debug, S: ::std::hash::BuildHash
pci_space_address: &(u64, u64),
) -> FdtWriterResult<Vec<u8>> {
// Allocate stuff necessary for the holding the blob.
let mut fdt = FdtWriter::new(&[]);
let mut fdt = FdtWriter::new(&[]).unwrap();
// For an explanation why these nodes were introduced in the blob take a look at
// https://github.com/torvalds/linux/blob/master/Documentation/devicetree/booting-without-of.txt#L845