diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/qualcomm/ipq40xx/Kconfig | 8 | ||||
-rw-r--r-- | src/soc/qualcomm/ipq40xx/Makefile.inc | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/soc/qualcomm/ipq40xx/Kconfig b/src/soc/qualcomm/ipq40xx/Kconfig index 86db09b8e5..37046cae70 100644 --- a/src/soc/qualcomm/ipq40xx/Kconfig +++ b/src/soc/qualcomm/ipq40xx/Kconfig @@ -42,4 +42,12 @@ config SBL_ELF The path and filename of the binary blob containing ipq40xx early initialization code, as supplied by the vendor. + +config SBL_UTIL_PATH + depends on USE_BLOBS + string "Path for utils to combine SBL_ELF and bootblock" + default "util/ipqheader" + help + Path for utils to combine SBL_ELF and bootblock + endif diff --git a/src/soc/qualcomm/ipq40xx/Makefile.inc b/src/soc/qualcomm/ipq40xx/Makefile.inc index a8d9b1bcc2..511cd1188b 100644 --- a/src/soc/qualcomm/ipq40xx/Makefile.inc +++ b/src/soc/qualcomm/ipq40xx/Makefile.inc @@ -55,7 +55,7 @@ ifeq ($(CONFIG_USE_BLOBS),y) $(objcbfs)/bootblock.bin: $(call strip_quotes,$(CONFIG_SBL_ELF)) \ $(objcbfs)/bootblock.elf @printf " CRXBL $(subst $(obj)/,,$(^)) $(subst $(obj)/,,$(@))\n" - @util/ipqheader/createxbl.py -f $(CONFIG_SBL_ELF) -s $(objcbfs)/bootblock.elf -o $@ -a 32 -b 32 + @$(CONFIG_SBL_UTIL_PATH)/createxbl.py -f $(CONFIG_SBL_ELF) -s $(objcbfs)/bootblock.elf -o $@ -a 32 -b 32 endif |