https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 2edf3588768b8a4c86d45a6bec3255fe41418bad authored by nanomad on 10 September 2011, 00:10:53 UTC
We can now display a simple Hello World message on the screen
Tip revision: 2edf358
Makefile
#Makefile for an autoexec.bin able to run on all cameras

TOP_DIR=../..
include $(TOP_DIR)/Makefile.top

MODEL=550D.109.60D.110.600D.101

include  $(TOP_DIR)/Makefile.inc

autoexec-all: reboot-all.o
	$(call build,LD,$(LD) \
		-o autoexec-all \
		-nostdlib \
		-march=armv5te \
		-e _start \
		-Ttext 0x800000 \
		$^ \
	); \

ROMBASEADDR		= 0xFF010000

x: autoexec-all autoexec-all.bin
	cp autoexec-all.bin autoexec.bin
	stat -c "autoexec.bin: %s bytes" autoexec.bin; \

back to top