Makefile 612 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Copyright (C) 2016 Yousong Zhou <yszhou4tech@gmail.com>
  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. ARCH:=arm
  9. BOARD:=armvirt
  10. BOARDNAME:=QEMU ARM Virtual Machine
  11. FEATURES:=fpu pci rtc usb
  12. FEATURES+=cpiogz ext4 ramdisk squashfs targz
  13. CPU_TYPE:=cortex-a15
  14. CPU_SUBTYPE:=neon-vfpv4
  15. MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com>
  16. KERNEL_PATCHVER:=4.4
  17. define Target/Description
  18. Build images for QEMU ARM Virtual Machine
  19. endef
  20. include $(INCLUDE_DIR)/target.mk
  21. KERNELNAME:=zImage
  22. $(eval $(call BuildTarget))