mirror of
https://gitlab.com/kernel-firmware/linux-firmware.git
synced 2025-12-10 07:44:48 +01:00
Some small amount of postprocessing is required after assembling bootstrap.asm with a56. Add a script and makefile for this. Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
6 lines
166 B
Makefile
6 lines
166 B
Makefile
bootstrap.bin: bootstrap.asm concat-bootstrap.pl
|
|
a56 bootstrap.asm >/dev/null
|
|
perl concat-bootstrap.pl <a56.out >bootstrap.bin
|
|
|
|
clean:
|
|
rm -f a56.out bootstrap.bin
|