From 4a9ef0225abb9f779d5900f5ec6bb9d1a197725d Mon Sep 17 00:00:00 2001 From: Lwazi Dube Date: Sun, 16 Jul 2017 09:23:03 -0600 Subject: [PATCH] Makefile.win would only create uboot images for ARM. MIPS support also needed. --- Makefile.unix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.unix b/Makefile.unix index 467f9f8ed4..fbbb258afb 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -438,7 +438,7 @@ ifeq ($(CONFIG_RAW_BINARY),y) endif ifeq ($(CONFIG_UBOOT_UIMAGE),y) @echo "MKIMAGE: uImage" - $(Q) mkimage -A arm -O linux -C none -T kernel -a $(CONFIG_UIMAGE_LOAD_ADDRESS) \ + $(Q) mkimage -A $(CONFIG_ARCH) -O linux -C none -T kernel -a $(CONFIG_UIMAGE_LOAD_ADDRESS) \ -e $(CONFIG_UIMAGE_ENTRY_POINT) -n $(BIN) -d $(NUTTXNAME).bin uImage $(Q) if [ -w /tftpboot ] ; then \ cp -f uImage /tftpboot/uImage; \