cortex-a53.mk 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #
  2. # Copyright (C) 2013-2016 OpenWrt.org
  3. # Copyright (C) 2016 Yousong Zhou
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. ifeq ($(SUBTARGET),cortexa53)
  9. define Device/sun50i-h5-nanopi-neo-plus2
  10. DEVICE_TITLE:=Nanopi NEO Plus2 (H5)
  11. SUPPORTED_DEVICES:=nanopi-neo-plus2
  12. SUNXI_DTS:=allwinner/sun50i-h5-nanopi-neo-plus2
  13. KERNEL_NAME := Image
  14. KERNEL := kernel-bin
  15. endef
  16. TARGET_DEVICES += sun50i-h5-nanopi-neo-plus2
  17. define Device/sun50i-h5-nanopi-neo2
  18. DEVICE_TITLE:=Nanopi NEO2 (H5)
  19. SUPPORTED_DEVICES:=nanopi-neo2
  20. SUNXI_DTS:=allwinner/sun50i-h5-nanopi-neo2
  21. KERNEL_NAME := Image
  22. KERNEL := kernel-bin
  23. endef
  24. TARGET_DEVICES += sun50i-h5-nanopi-neo2
  25. define Device/sun50i-a64-pine64-plus
  26. DEVICE_TITLE:=Pine64 Plus A64
  27. SUPPORTED_DEVICES:=pine64,pine64-plus
  28. SUNXI_DTS:=allwinner/sun50i-a64-pine64-plus
  29. KERNEL_NAME := Image
  30. KERNEL := kernel-bin
  31. endef
  32. TARGET_DEVICES += sun50i-a64-pine64-plus
  33. define Device/sun50i-a64-sopine-baseboard
  34. DEVICE_TITLE:=Pine64 Sopine
  35. SUPPORTED_DEVICES:=pine64,sopine-baseboard
  36. SUNXI_DTS:=allwinner/sun50i-a64-sopine-baseboard
  37. KERNEL_NAME := Image
  38. KERNEL := kernel-bin
  39. endef
  40. TARGET_DEVICES += sun50i-a64-sopine-baseboard
  41. define Device/sun50i-h5-orangepi-zero-plus
  42. DEVICE_TITLE:=Xunlong Orange Pi Zero Plus
  43. SUPPORTED_DEVICES:=xunlong,orangepi-zero-plus
  44. SUNXI_DTS:=allwinner/sun50i-h5-orangepi-zero-plus
  45. KERNEL_NAME := Image
  46. KERNEL := kernel-bin
  47. endef
  48. TARGET_DEVICES += sun50i-h5-orangepi-zero-plus
  49. define Device/sun50i-h5-orangepi-pc2
  50. DEVICE_TITLE:=Xunlong Orange Pi PC2
  51. SUPPORTED_DEVICES:=xunlong,orangepi-pc2
  52. SUNXI_DTS:=allwinner/sun50i-h5-orangepi-pc2
  53. KERNEL_NAME := Image
  54. KERNEL := kernel-bin
  55. endef
  56. TARGET_DEVICES += sun50i-h5-orangepi-pc2
  57. endif