summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/shanlingq1/boot.make
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-11-15 11:42:28 +0000
committerAidan MacDonald <amachronic@protonmail.com>2021-11-18 14:14:54 -0500
commit701d4ba77e61984a71ddbf552193e5567be4e3af (patch)
treec54de2854815fa010b13b9c686715f7fea2ce7ec /firmware/target/mips/ingenic_x1000/shanlingq1/boot.make
parent6e61e6f0c882ae4f6797b6a8c3ae92bb41e82893 (diff)
downloadrockbox-701d4ba77e61984a71ddbf552193e5567be4e3af.tar.gz
rockbox-701d4ba77e61984a71ddbf552193e5567be4e3af.zip
x1000: Merge makefiles used for the bootloader
All three X1000 native targets turned out to have a very similar boot configuration and used a nearly identical makefile. Eliminate this duplication by moving the logic into the main makefile. Change-Id: I13044b9675c0abd605b8accdb2fee4f54549b020
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/shanlingq1/boot.make')
-rw-r--r--firmware/target/mips/ingenic_x1000/shanlingq1/boot.make31
1 files changed, 0 insertions, 31 deletions
diff --git a/firmware/target/mips/ingenic_x1000/shanlingq1/boot.make b/firmware/target/mips/ingenic_x1000/shanlingq1/boot.make
deleted file mode 100644
index 639f570ea3..0000000000
--- a/firmware/target/mips/ingenic_x1000/shanlingq1/boot.make
+++ /dev/null
@@ -1,31 +0,0 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10include $(ROOTDIR)/lib/microtar/microtar.make
11
12.SECONDEXPANSION:
13
14# FIXME(q1): verify NAND parameters
15$(BUILDDIR)/spl.q1: $(BUILDDIR)/spl.bin
16 $(call PRINTS,MKSPL $(@F))$(TOOLSDIR)/mkspl-x1000 -type=nand -ppb=2 -bpp=2 $< $@
17
18$(BUILDDIR)/bootloader.ucl: $(BUILDDIR)/bootloader.bin
19 $(call PRINTS,UCLPACK $(@F))$(TOOLSDIR)/uclpack --nrv2e -9 $< $@ >/dev/null
20
21.PHONY: $(BUILDDIR)/bootloader-info.txt
22$(BUILDDIR)/bootloader-info.txt:
23 $(call PRINTS,GEN $(@F))echo $(SVNVERSION) > $@
24
25$(BUILDDIR)/$(BINARY): $(BUILDDIR)/spl.q1 \
26 $(BUILDDIR)/bootloader.ucl \
27 $(BUILDDIR)/bootloader-info.txt
28 $(call PRINTS,TAR $(@F))tar -C $(BUILDDIR) \
29 --numeric-owner --no-acls --no-xattrs --no-selinux \
30 --mode=0644 --owner=0 --group=0 \
31 -cf $@ $(call full_path_subst,$(BUILDDIR)/%,%,$^)