linksys.mk 758 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #
  2. # Copyright (C) 2009 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/WRT160NL
  8. NAME:=Linksys WRT160NL
  9. PACKAGES:=kmod-usb-core kmod-usb2
  10. endef
  11. define Profile/WRT160NL/Description
  12. Package set optimized for the Linksys WRT160NL.
  13. endef
  14. define Profile/E2100L
  15. NAME:=Linksys E2100L
  16. PACKAGES:=kmod-usb-core kmod-usb2
  17. endef
  18. define Profile/E2100L/Description
  19. Package set optimized for the Linksys E2100L
  20. endef
  21. define Profile/WRT400N
  22. NAME:=Linksys WRT400N
  23. PACKAGES:=
  24. endef
  25. define Profile/WRT400N/Description
  26. Package set optimized for the Linksys WRT400N.
  27. endef
  28. $(eval $(call Profile,WRT160NL))
  29. $(eval $(call Profile,E2100L))
  30. $(eval $(call Profile,WRT400N))