mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
synced 2024-12-18 13:15:32 +00:00
5cbed98238
Downstream commercial distributors need to distribute the source code as well as the binary. Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
12 lines
264 B
Makefile
12 lines
264 B
Makefile
CC = arm-linux-gnueabi-gcc
|
|
LD = arm-linux-gnueabi-ld
|
|
OBJCOPY = arm-linux-gnueabi-objcopy
|
|
|
|
bootcode.bin: Boot.S
|
|
$(CC) -mbig-endian -c Boot.S
|
|
$(LD) -Ttext 0x2c000000 -EB -o Boot Boot.o
|
|
$(OBJCOPY) -Obinary Boot bootcode.bin
|
|
|
|
clean:
|
|
rm -f Boot.o Boot bootcode.bin
|