bee52ee579
Image generation (and mtd partition) part of support for PowerCloud CAP324 Cloud AP. The CAP324 Cloud AP is a device sold by PowerCloud Systems who's stock firmware (CloudCommand) provides 'cloud' based managment of large numbers of access points. The CAP324 is a dual-band 802.11n wireless access point with 16MB flash and 128MB RAM and single gigabit ethernet port. It can be powered via PoE or a power adaptor. Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com> SVN-Revision: 47941
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
# Copyright (C) 2012 PowerCloud Systems
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define Profile/UBDEV01
|
|
NAME:=PowerCloud Systems ubdev01 model
|
|
PACKAGES:=
|
|
endef
|
|
|
|
define Profile/UBDEV01/Description
|
|
Package set optimized for the PowerCloud Systems ubdev01 board.
|
|
endef
|
|
|
|
$(eval $(call Profile,UBDEV01))
|
|
|
|
define Profile/DLRTDEV01
|
|
NAME:=PowerCloud Systems dlrtdev01 model
|
|
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev
|
|
endef
|
|
|
|
define Profile/DLRTDEV01/Description
|
|
Package set optimized for the PowerCloud Systems dlrtdev01 board.
|
|
endef
|
|
|
|
$(eval $(call Profile,DLRTDEV01))
|
|
|
|
define Profile/CAP324
|
|
NAME:=PowerCloud CAP324 Cloud AP
|
|
PACKAGES:=uboot-envtools
|
|
endef
|
|
|
|
define Profile/CAP324/Description
|
|
Package set optimized for the PowerCloud Systems CAP324 Cloud AP
|
|
|
|
The CAP324 Cloud AP is a device sold by PowerCloud Systems
|
|
who's stock firmware (CloudCommand) provides 'cloud' based
|
|
managment of large numbers of access points.
|
|
|
|
The CAP324 is a dual-band 802.11n wireless access point with 16MB
|
|
flash and 128MB RAM and single gigabit ethernet port. It can be
|
|
powered via PoE or a wall wart.
|
|
endef
|
|
|
|
$(eval $(call Profile,CAP324))
|
|
|