summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2019-11-11 16:49:56 -0800
committerPatrick Georgi <pgeorgi@google.com>2019-11-18 22:14:42 +0000
commit85b41445b5c4df5833eceb7e1602408dc6c68662 (patch)
tree1eac0474e09230fc9e365fbadfe75ebdd6e64324
parent4100c2a6e3d214dc679eb359de959de08b8d96f8 (diff)
downloadcoreboot-85b41445b5c4df5833eceb7e1602408dc6c68662.tar.gz
coreboot-85b41445b5c4df5833eceb7e1602408dc6c68662.tar.bz2
coreboot-85b41445b5c4df5833eceb7e1602408dc6c68662.zip
ipq40xx: Run python script without explicit 'python' call
This patch changes the ipq40xx Makefile.inc to follow established coreboot practice of calling Python scripts directly rather than invoking the 'python' interpreter explicitly. This has the added effect of honoring the scripts shebang (which in this case is set to 'python2'). Change-Id: If96e8313527c411ef1bb6386e03b6a209c750131 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36763 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-rw-r--r--src/soc/qualcomm/ipq40xx/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/qualcomm/ipq40xx/Makefile.inc b/src/soc/qualcomm/ipq40xx/Makefile.inc
index b20ae24d60b5..5a0529e119c1 100644
--- a/src/soc/qualcomm/ipq40xx/Makefile.inc
+++ b/src/soc/qualcomm/ipq40xx/Makefile.inc
@@ -62,7 +62,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"
- @python $(CONFIG_SBL_UTIL_PATH)/createxbl.py -f $(CONFIG_SBL_ELF) \
+ @$(CONFIG_SBL_UTIL_PATH)/createxbl.py -f $(CONFIG_SBL_ELF) \
-s $(objcbfs)/bootblock.elf -o $@ -a 32 -b 32
endif