cortex-a53.mk 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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/friendlyarm_nanopi-neo-plus2
  10. DEVICE_VENDOR := FriendlyARM
  11. DEVICE_MODEL := NanoPi NEO Plus2
  12. SUPPORTED_DEVICES:=nanopi-neo-plus2
  13. SUNXI_DTS_DIR := allwinner/
  14. SOC := sun50i-h5
  15. KERNEL_NAME := Image
  16. KERNEL := kernel-bin
  17. endef
  18. TARGET_DEVICES += friendlyarm_nanopi-neo-plus2
  19. define Device/friendlyarm_nanopi-neo2
  20. DEVICE_VENDOR := FriendlyARM
  21. DEVICE_MODEL := NanoPi NEO2
  22. SUPPORTED_DEVICES:=nanopi-neo2
  23. SUNXI_DTS_DIR := allwinner/
  24. SOC := sun50i-h5
  25. KERNEL_NAME := Image
  26. KERNEL := kernel-bin
  27. endef
  28. TARGET_DEVICES += friendlyarm_nanopi-neo2
  29. define Device/pine64_pine64-plus
  30. DEVICE_VENDOR := Pine64
  31. DEVICE_MODEL := Pine64+
  32. SUNXI_DTS_DIR := allwinner/
  33. SOC := sun50i-a64
  34. KERNEL_NAME := Image
  35. KERNEL := kernel-bin
  36. endef
  37. TARGET_DEVICES += pine64_pine64-plus
  38. define Device/pine64_sopine-baseboard
  39. DEVICE_VENDOR := Pine64
  40. DEVICE_MODEL := SoPine
  41. SUNXI_DTS_DIR := allwinner/
  42. SOC := sun50i-a64
  43. KERNEL_NAME := Image
  44. KERNEL := kernel-bin
  45. endef
  46. TARGET_DEVICES += pine64_sopine-baseboard
  47. define Device/xunlong_orangepi-zero-plus
  48. DEVICE_VENDOR := Xunlong
  49. DEVICE_MODEL := Orange Pi Zero Plus
  50. SUNXI_DTS_DIR := allwinner/
  51. SOC := sun50i-h5
  52. KERNEL_NAME := Image
  53. KERNEL := kernel-bin
  54. endef
  55. TARGET_DEVICES += xunlong_orangepi-zero-plus
  56. define Device/xunlong_orangepi-pc2
  57. DEVICE_VENDOR := Xunlong
  58. DEVICE_MODEL := Orange Pi PC 2
  59. SUNXI_DTS_DIR := allwinner/
  60. SOC := sun50i-h5
  61. KERNEL_NAME := Image
  62. KERNEL := kernel-bin
  63. endef
  64. TARGET_DEVICES += xunlong_orangepi-pc2
  65. endif