aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVignesh Raghavendra2021-02-10 06:24:26 -0600
committerDave Gerlach2021-02-15 13:04:13 -0600
commitd882ca2bfcef8a9f07eefe0edc231711f0df036f (patch)
treeee7bb469a807cd52cf1d44ba1aeeb05780a15e9d /Makefile
parent8412cbddc19c75a2ab2711ae169c3818dc65e4ba (diff)
downloadk3-image-gen-d882ca2bfcef8a9f07eefe0edc231711f0df036f.tar.gz
k3-image-gen-d882ca2bfcef8a9f07eefe0edc231711f0df036f.tar.xz
k3-image-gen-d882ca2bfcef8a9f07eefe0edc231711f0df036f.zip
Makefile: Append RM and PM board cfgs to TIFS in combined img boot flow
TIFS needs RM board config to be sent in order to validate UDMA firewall configuration requests from DM. This means PM cfg also to be present. Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 18853379b..bf1c22757 100644
--- a/Makefile
+++ b/Makefile
@@ -178,7 +178,7 @@ $(COMBINED_SYSFW_BRDCFG): $(SOC_BINS)
178 python3 ./scripts/sysfw_boardcfg_blob_creator.py -b $(soc_objroot)/board-cfg.bin -s $(soc_objroot)/sec-cfg.bin -p $(soc_objroot)/pm-cfg.bin -r $(soc_objroot)/rm-cfg.bin -o $@ 178 python3 ./scripts/sysfw_boardcfg_blob_creator.py -b $(soc_objroot)/board-cfg.bin -s $(soc_objroot)/sec-cfg.bin -p $(soc_objroot)/pm-cfg.bin -r $(soc_objroot)/rm-cfg.bin -o $@
179 179
180$(COMBINED_TIFS_BRDCFG): $(SOC_BINS) 180$(COMBINED_TIFS_BRDCFG): $(SOC_BINS)
181 python3 ./scripts/sysfw_boardcfg_blob_creator.py -b $(soc_objroot)/board-cfg.bin -s $(soc_objroot)/sec-cfg.bin -o $@ 181 python3 ./scripts/sysfw_boardcfg_blob_creator.py -b $(soc_objroot)/board-cfg.bin -s $(soc_objroot)/sec-cfg.bin -p $(soc_objroot)/pm-cfg.bin -r $(soc_objroot)/rm-cfg.bin -o $@
182 182
183$(COMBINED_DM_BRDCFG): $(SOC_BINS) 183$(COMBINED_DM_BRDCFG): $(SOC_BINS)
184 python3 ./scripts/sysfw_boardcfg_blob_creator.py -p $(soc_objroot)/pm-cfg.bin -r $(soc_objroot)/rm-cfg.bin -o $@ 184 python3 ./scripts/sysfw_boardcfg_blob_creator.py -p $(soc_objroot)/pm-cfg.bin -r $(soc_objroot)/rm-cfg.bin -o $@