010-Generic.mk 637 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Copyright (C) 2007 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/Generic
  8. NAME:=Generic (default)
  9. PACKAGES:=
  10. endef
  11. define Profile/Generic/Description
  12. Generic package set compatible with most boards.
  13. endef
  14. define Profile/EB-214A
  15. NAME:=Generic EB-214A
  16. PACKAGES:=-wpad-mini -admswconfig -kmod-usb-adm5120 -kmod-ledtrig-adm5120-switch -dnsmasq kmod-usb-uhci kmod-usb2
  17. endef
  18. define Profile/EB-214A/Description
  19. Package set optimized for generic EB-214A boards.
  20. endef
  21. $(eval $(call Profile,Generic))
  22. $(eval $(call Profile,EB-214A))