115-router.mk 684 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # Copyright (C) 2014 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/AUDI
  8. NAME:=Linksys EA3500 (Audi)
  9. PACKAGES:= \
  10. kmod-mwl8k kmod-usb2 kmod-usb-storage \
  11. swconfig wpad-mini
  12. endef
  13. define Profile/AUDI/Description
  14. Package set compatible with Linksys EA3500 board.
  15. endef
  16. $(eval $(call Profile,AUDI))
  17. define Profile/VIPER
  18. NAME:=Linksys E4200v2 / EA4500 (Viper)
  19. PACKAGES:= \
  20. kmod-mwl8k kmod-usb2 kmod-usb-storage \
  21. swconfig wpad-mini
  22. endef
  23. define Profile/VIPER/Description
  24. Package set compatible with Linksys E4200v2 and EA4500 boards.
  25. endef
  26. $(eval $(call Profile,VIPER))