Makefile 545 B

12345678910111213141516171819202122232425
  1. #
  2. # Copyright (C) 2018 Jianhui Zhao <[email protected]>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. include $(INCLUDE_DIR)/image.mk
  9. KERNEL_LOADADDR := 0x20008000
  10. define Device/Default
  11. PROFILES = Default
  12. KERNEL_NAME := zImage
  13. KERNEL := kernel-bin | append-dtb | uImage none
  14. endef
  15. define Device/tq210
  16. DEVICE_DTS_DIR := ../dts
  17. DEVICE_DTS := TQ210
  18. DEVICE_TITLE := TQ210
  19. endef
  20. TARGET_DEVICES += tq210
  21. $(eval $(call BuildImage))