diff options
author | Aidan MacDonald <amachronic@protonmail.com> | 2021-11-15 11:42:28 +0000 |
---|---|---|
committer | Aidan MacDonald <amachronic@protonmail.com> | 2021-11-18 14:14:54 -0500 |
commit | 701d4ba77e61984a71ddbf552193e5567be4e3af (patch) | |
tree | c54de2854815fa010b13b9c686715f7fea2ce7ec /tools | |
parent | 6e61e6f0c882ae4f6797b6a8c3ae92bb41e82893 (diff) | |
download | rockbox-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 'tools')
-rwxr-xr-x | tools/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure index 3e66785af4..67c0b6a418 100755 --- a/tools/configure +++ b/tools/configure @@ -4054,7 +4054,7 @@ fi appextra="recorder:gui" plugins="yes" tool="$rootdir/tools/scramble -add=fiiom3k " - boottool="" # not used + boottool="$rootdir/tools/mkspl-x1000 -type=nand -ppb=2 -bpp=2 " output="rockbox.m3k" bootoutput="bootloader.m3k" sysfontbl="16-Terminus" @@ -4078,7 +4078,7 @@ fi appextra="recorder:gui" plugins="yes" tool="$rootdir/tools/scramble -add=shq1 " - boottool="" # not used + boottool="$rootdir/tools/mkspl-x1000 -type=nand -ppb=2 -bpp=2 " output="rockbox.q1" bootoutput="bootloader.q1" sysfontbl="16-Terminus" @@ -4102,7 +4102,7 @@ fi appextra="recorder:gui" plugins="yes" tool="$rootdir/tools/scramble -add=erosqnative " - boottool="" # not used + boottool="$rootdir/tools/mkspl-x1000 -type=nand -ppb=2 -bpp=2 " output="rockbox.erosq" bootoutput="bootloader.erosq" sysfontbl="16-Terminus" |