120-plug.mk 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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/SHEEVAPLUG
  8. NAME:=Globalscale Technologies SheevaPlug
  9. PACKAGES:= \
  10. kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
  11. kmod-i2c-core kmod-i2c-mv64xxx \
  12. kmod-ata-core
  13. endef
  14. define Profile/SHEEVAPLUG/Description
  15. Package set compatible with Globalscale Technologies SheevaPlug board.
  16. endef
  17. SHEEVAPLUG_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096"
  18. SHEEVAPLUG_UBI_OPTS:="-m 2048 -p 128KiB -s 512"
  19. $(eval $(call Profile,SHEEVAPLUG))
  20. define Profile/SHEEVAPLUGSATA
  21. NAME:=Globalscale Technologies eSATA SheevaPlug
  22. PACKAGES:= \
  23. kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
  24. kmod-i2c-core kmod-i2c-mv64xxx \
  25. kmod-ata-core kmod-ata-marvell-sata
  26. endef
  27. define Profile/SHEEVAPLUGSATA/Description
  28. Package set compatible with Globalscale Technologies eSATA SheevaPlug board.
  29. endef
  30. SHEEVAPLUGSATA_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096"
  31. SHEEVAPLUGSATA_UBI_OPTS:="-m 2048 -p 128KiB -s 512"
  32. $(eval $(call Profile,SHEEVAPLUGSATA))
  33. define Profile/GuruplugServerPlus
  34. NAME:=Globalscale Technologies Guruplug Server Plus
  35. PACKAGES:= \
  36. kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
  37. kmod-i2c-core kmod-i2c-mv64xxx \
  38. kmod-ata-core kmod-ata-marvell-sata \
  39. kmod-btmrvl kmod-btmrvl-sdio kmod-libertas kmod-libertas-sdio \
  40. wpad-mini
  41. endef
  42. define Profile/GuruplugServerPlus/Description
  43. Package set compatible with Globalscale Technologies Guruplug Server Plus board.
  44. endef
  45. GuruplugServerPlus_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096"
  46. GuruplugServerPlus_UBI_OPTS:="-m 2048 -p 128KiB -s 512"
  47. $(eval $(call Profile,GuruplugServerPlus))
  48. define Profile/Topkick1281P2
  49. NAME:=Univeral Scientific Industrial Co. Topkick-1281P2
  50. PACKAGES:= \
  51. kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
  52. kmod-i2c-core kmod-i2c-mv64xxx \
  53. kmod-ata-core kmod-ata-marvell-sata
  54. endef
  55. define Profile/Topkick1281P2/Description
  56. Package set compatible with Univeral Scientific Industrial Co. Topkick-1281P2 board.
  57. endef
  58. Topkick1281P2_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096"
  59. Topkick1281P2_UBI_OPTS:="-m 2048 -p 128KiB -s 512"
  60. $(eval $(call Profile,Topkick1281P2))