| 12345678910111213141516171819202122232425262728 |
- include $(TOPDIR)/rules.mk
- include $(INCLUDE_DIR)/image.mk
- define Target/Description
- Build firmware images for EcoNet MIPS based boards.
- endef
- # tclinux-trx is the default format used in the SDK
- define Build/tclinux-trx
- ./tclinux-trx.sh --kernel $@ --rootfs $(IMAGE_ROOTFS) \
- --version $(VERSION_DIST)-$(REVISION) --endian $(TRX_ENDIAN) \
- $(if $(TRX_MODEL),--model $(TRX_MODEL)) > [email protected]
- mv [email protected] $@
- endef
- # tclinux bootloader requires LZMA, BUT only provides 7.5MB of space
- # to decompress into. So we use vmlinuz and decompress twice.
- define Device/Default
- DEVICE_DTS_DIR := ../dts
- KERNEL_SIZE := 7480k
- KERNEL_NAME := vmlinuz.bin
- KERNEL_LOADADDR := 0x80020000
- KERNEL := kernel-bin | append-dtb
- endef
- include $(SUBTARGET).mk
- $(eval $(call BuildImage))
|