openmesh.mk 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #
  2. # Copyright (C) 2011-2012 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. define Profile/OM5P
  8. NAME:=OpenMesh OM5P/OM5P-AN
  9. PACKAGES:=kmod-ath9k om-watchdog
  10. endef
  11. define Profile/OM5P/Description
  12. Package set optimized for the OpenMesh OM5P/OM5P-AN.
  13. endef
  14. $(eval $(call Profile,OM5P))
  15. define Profile/OM5PAC
  16. NAME:=OpenMesh OM5P-AC/OM5P-ACv2
  17. PACKAGES:=kmod-ath9k kmod-ath10k om-watchdog
  18. endef
  19. define Profile/OM5PAC/Description
  20. Package set optimized for the OpenMesh OM5P-AC/OM5P-ACv2.
  21. endef
  22. $(eval $(call Profile,OM5PAC))
  23. define Profile/MR600
  24. NAME:=OpenMesh MR600
  25. PACKAGES:=kmod-ath9k om-watchdog
  26. endef
  27. define Profile/MR600/Description
  28. Package set optimized for the OpenMesh MR600.
  29. endef
  30. $(eval $(call Profile,MR600))
  31. define Profile/MR900
  32. NAME:=OpenMesh MR900/MR900v2
  33. PACKAGES:=kmod-ath9k om-watchdog
  34. endef
  35. define Profile/MR900/Description
  36. Package set optimized for the OpenMesh MR900/MR900v2.
  37. endef
  38. $(eval $(call Profile,MR900))
  39. define Profile/MR1750
  40. NAME:=OpenMesh MR1750/MR1750v2
  41. PACKAGES:=kmod-ath9k kmod-ath10k
  42. endef
  43. define Profile/MR1750/Description
  44. Package set optimized for the OpenMesh MR1750/MR1750v2.
  45. endef
  46. $(eval $(call Profile,MR1750))
  47. define Profile/OPENMESH
  48. NAME:=OpenMesh products
  49. PACKAGES:=kmod-ath9k kmod-ath10k om-watchdog
  50. endef
  51. define Profile/OPENMESH/Description
  52. Build images for all OpenMesh products.
  53. endef
  54. $(eval $(call Profile,OPENMESH))