add emmc variants to FIT image (#4521)

This commit is contained in:
Derek
2022-12-07 15:26:59 -05:00
committed by GitHub
parent 8d153c008b
commit e0dbc8def9

View File

@@ -52,6 +52,30 @@
algo = "sha1";
};
};
fdtv5-emmc {
description = "Flattened Device Tree ebinv5 with eMMC";
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin-emmc.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x06f00000>;
entry = <0x06f00000>;
hash {
algo = "sha1";
};
};
fdtv7-emmc {
description = "Flattened Device Tree ebinv7";
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin-v7-emmc.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x06f00000>;
entry = <0x06f00000>;
hash {
algo = "sha1";
};
};
};
configurations {
@@ -74,5 +98,23 @@
algo = "sha1";
};
};
v5-emmc {
description = "Standard Boot ebinv5 with emmc";
kernel = "kernel";
ramdisk = "ramdisk";
fdt = "fdtv5-emmc";
hash {
algo = "sha1";
};
};
v7 {
description = "Standard Boot ebinv7 with emmc";
kernel = "kernel";
ramdisk = "ramdisk";
fdt = "fdtv7-emmc";
hash {
algo = "sha1";
};
};
};
};