Move manifest to initrd
Supporting the manifest as part of FDT is problematic for testing
under the Android boot flow because it requires compiling and flashing
a different Hafnium image per test suite. Moving it back to the initrd
allows us to run different test suites against the same Hafnium image,
only by swapping the RAM disks.
Hafnium's one_time_init() routine will now expect to find the manifest
under "manifest.dtb".
Change-Id: Ifabffb50b06ffaba786046733d575adc9d43f4ad
diff --git a/inc/hf/boot_flow.h b/inc/hf/boot_flow.h
index 39d7060..9bf82c1 100644
--- a/inc/hf/boot_flow.h
+++ b/inc/hf/boot_flow.h
@@ -21,8 +21,8 @@
#include "hf/memiter.h"
#include "hf/mm.h"
-bool boot_flow_init(const struct fdt_node *fdt_root, struct manifest *manifest,
- struct boot_params *boot_params);
+bool boot_flow_get_params(struct boot_params *p,
+ const struct fdt_node *fdt_root);
bool boot_flow_update(struct mm_stage1_locked stage1_locked,
const struct manifest *manifest,