diff options
author | Luka Perkov <luka@openwrt.org> | 2014-12-17 08:33:55 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-12-17 08:33:55 +0000 |
commit | 6d4c768801022bb367134f5434b5e9509b4f3d85 (patch) | |
tree | 207ab744b5180bfdc92ce8437174e429bc2fc3b1 /target/linux/kirkwood/profiles/120-plug.mk | |
parent | 740a5b967811d19990f785ed4b214dd3b445bd2c (diff) | |
download | upstream-6d4c768801022bb367134f5434b5e9509b4f3d85.tar.gz upstream-6d4c768801022bb367134f5434b5e9509b4f3d85.tar.bz2 upstream-6d4c768801022bb367134f5434b5e9509b4f3d85.zip |
kirkwood: add sheevaplug and derivatives
Add kirkwood FDT:
- SheevaPlug
- SheevaPlug with eSATA
- GuruplugServerPlus
- Topkick1281P2
Signed-off-by: GĂ©rald Kerma <drEagle@doukki.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43735 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/kirkwood/profiles/120-plug.mk')
-rw-r--r-- | target/linux/kirkwood/profiles/120-plug.mk | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/target/linux/kirkwood/profiles/120-plug.mk b/target/linux/kirkwood/profiles/120-plug.mk new file mode 100644 index 0000000000..cca703f445 --- /dev/null +++ b/target/linux/kirkwood/profiles/120-plug.mk @@ -0,0 +1,78 @@ +# +# Copyright (C) 2014 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/SHEEVAPLUG + NAME:=Globalscale Technologies SheevaPlug + PACKAGES:= \ + kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \ + kmod-of-i2c kmod-i2c-core kmod-i2c-mv64xxx \ + kmod-ata-core uboot-envtools +endef + +define Profile/SHEEVAPLUG/Description + Package set compatible with Globalscale Technologies SheevaPlug board. +endef + +SHEEVAPLUG_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096" +SHEEVAPLUG_UBI_OPTS:="-m 2048 -p 128KiB -s 512" + +$(eval $(call Profile,SHEEVAPLUG)) + +define Profile/SHEEVAPLUGSATA + NAME:=Globalscale Technologies eSATA SheevaPlug + PACKAGES:= \ + kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \ + kmod-of-i2c kmod-i2c-core kmod-i2c-mv64xxx \ + kmod-ata-core kmod-ata-marvell-sata \ + uboot-envtools +endef + +define Profile/SHEEVAPLUGSATA/Description + Package set compatible with Globalscale Technologies eSATA SheevaPlug board. +endef + +SHEEVAPLUGSATA_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096" +SHEEVAPLUGSATA_UBI_OPTS:="-m 2048 -p 128KiB -s 512" + +$(eval $(call Profile,SHEEVAPLUGSATA)) + +define Profile/GuruplugServerPlus + NAME:=Globalscale Technologies Guruplug Server Plus + PACKAGES:= \ + kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \ + kmod-of-i2c kmod-i2c-core kmod-i2c-mv64xxx \ + kmod-ata-core kmod-ata-marvell-sata \ + kmod-btmrvl kmod-btmrvl-sdio kmod-libertas kmod-libertas-sdio \ + uboot-envtools +endef + +define Profile/GuruplugServerPlus/Description + Package set compatible with Globalscale Technologies Guruplug Server Plus board. +endef + +GuruplugServerPlus_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096" +GuruplugServerPlus_UBI_OPTS:="-m 2048 -p 128KiB -s 512" + +$(eval $(call Profile,GuruplugServerPlus)) + +define Profile/Topkick1281P2 + NAME:=Univeral Scientific Industrial Co. Topkick-1281P2 + PACKAGES:= \ + kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \ + kmod-of-i2c kmod-i2c-core kmod-i2c-mv64xxx \ + kmod-ata-core kmod-ata-marvell-sata \ + uboot-envtools +endef + +define Profile/Topkick1281P2/Description + Package set compatible with Univeral Scientific Industrial Co. Topkick-1281P2 board. +endef + +Topkick1281P2_UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096" +Topkick1281P2_UBI_OPTS:="-m 2048 -p 128KiB -s 512" + +$(eval $(call Profile,Topkick1281P2)) |