Makefile.win would only create uboot images for ARM. MIPS support also needed.

This commit is contained in:
Lwazi Dube 2017-07-16 09:23:03 -06:00 committed by Gregory Nutt
parent cb88af0082
commit 4a9ef0225a

View File

@ -438,7 +438,7 @@ ifeq ($(CONFIG_RAW_BINARY),y)
endif endif
ifeq ($(CONFIG_UBOOT_UIMAGE),y) ifeq ($(CONFIG_UBOOT_UIMAGE),y)
@echo "MKIMAGE: uImage" @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 -e $(CONFIG_UIMAGE_ENTRY_POINT) -n $(BIN) -d $(NUTTXNAME).bin uImage
$(Q) if [ -w /tftpboot ] ; then \ $(Q) if [ -w /tftpboot ] ; then \
cp -f uImage /tftpboot/uImage; \ cp -f uImage /tftpboot/uImage; \