mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-01 10:21:22 +00:00
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Andre Przywara <andre.przywara@arm.com>
|
|
Date: Wed, 18 Nov 2020 17:32:04 +0000
|
|
Subject: [PATCH] sunxi: Use mkimage for SPL boot image generation
|
|
|
|
Switch the SPL boot image generation from using mksunxiboot to the new
|
|
sunxi_egon format of mkimage.
|
|
|
|
Verified to create identical results for all 152 Allwinner boards.
|
|
|
|
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
|
|
Reviewed-by: Simon Glass <sjg@chromium.org>
|
|
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
|
|
---
|
|
scripts/Makefile.spl | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- a/scripts/Makefile.spl
|
|
+++ b/scripts/Makefile.spl
|
|
@@ -382,11 +382,11 @@ endif
|
|
$(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE
|
|
$(call if_changed,mkimage)
|
|
|
|
-quiet_cmd_mksunxiboot = MKSUNXI $@
|
|
-cmd_mksunxiboot = $(objtree)/tools/mksunxiboot \
|
|
- --default-dt $(CONFIG_DEFAULT_DEVICE_TREE) $< $@
|
|
+MKIMAGEFLAGS_sunxi-spl.bin = -T sunxi_egon \
|
|
+ -n $(CONFIG_DEFAULT_DEVICE_TREE)
|
|
+
|
|
$(obj)/sunxi-spl.bin: $(obj)/$(SPL_BIN).bin FORCE
|
|
- $(call if_changed,mksunxiboot)
|
|
+ $(call if_changed,mkimage)
|
|
|
|
quiet_cmd_sunxi_spl_image_builder = SUNXI_SPL_IMAGE_BUILDER $@
|
|
cmd_sunxi_spl_image_builder = $(objtree)/tools/sunxi-spl-image-builder \
|