115-router.mk 815 B

1234567891011121314151617181920212223242526272829303132333435363738
  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/EA3500
  8. NAME:=Linksys EA3500
  9. PACKAGES:= \
  10. kmod-mwl8k kmod-usb2 kmod-usb-storage \
  11. swconfig
  12. endef
  13. define Profile/EA3500/Description
  14. Package set compatible with Linksys EA3500 board.
  15. endef
  16. EA3500_UBIFS_OPTS:="-m 512 -e 15872 -c 4096"
  17. EA3500_UBI_OPTS:="-m 512 -p 16384 -s 256"
  18. $(eval $(call Profile,EA3500))
  19. define Profile/EA4500
  20. NAME:=Linksys EA4500
  21. PACKAGES:= \
  22. kmod-mwl8k kmod-usb2 kmod-usb-storage \
  23. swconfig
  24. endef
  25. define Profile/EA4500/Description
  26. Package set compatible with Linksys EA4500 board.
  27. endef
  28. EA4500_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096"
  29. EA4500_UBI_OPTS:="-m 2048 -p 128KiB -s 512"
  30. $(eval $(call Profile,EA4500))