diff --git a/odroid-c1/Makefile b/odroid-c1/Makefile new file mode 100644 index 0000000..2a93ca0 --- /dev/null +++ b/odroid-c1/Makefile @@ -0,0 +1,18 @@ +O ?= . +TMP ?= . +BL33 ?= + +.phony: clean distclean + +all: ${O}/u-boot.bin ${O}/bl1.bin.hardkernel + +clean: + : # no-op + +distclean: clean + +${O}/u-boot.bin: ${TMP}/ + cp u-boot.bin ${O}/u-boot.bin + +${O}/bl1.bin.hardkernel: ${TMP}/ + cp bl1.bin.hardkernel ${O}/u-boot.bin diff --git a/odroid-c1/bl1.bin.hardkernel b/odroid-c1/bl1.bin.hardkernel new file mode 100644 index 0000000..75be9b4 Binary files /dev/null and b/odroid-c1/bl1.bin.hardkernel differ diff --git a/odroid-c1/u-boot.bin b/odroid-c1/u-boot.bin new file mode 100644 index 0000000..3b49654 Binary files /dev/null and b/odroid-c1/u-boot.bin differ