57e614c179
This patch: * fixes wrong indentation * fixes wrong names and descriptions (ex. Dlink -> D-Link) * changes filenames to manufacturer names * moves oem/unknown manufacturers boards to misc.mk profiles * combines profiles for boards from the same manufacturers in one file (ex. Olimex) * fix profile files structure (keep the same convention as in other targets, ex. ar71xx) in various .mk profiles, in ramips target. Signed-off-by: Piotr Dymacz <pepe2k@gmail.com> SVN-Revision: 46631
61 lines
1.2 KiB
Makefile
61 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define Profile/IP2202
|
|
NAME:=Poray IP2202
|
|
PACKAGES:=kmod-usb-core kmod-usb2 kmod-usb-dwc2 \
|
|
kmod-ledtrig-netdev kmod-ledtrig-timer
|
|
endef
|
|
|
|
define Profile/IP2202/Description
|
|
Package set for Poray IP2202 board
|
|
endef
|
|
$(eval $(call Profile,IP2202))
|
|
|
|
|
|
define Profile/M3
|
|
NAME:=Poray M3
|
|
PACKAGES:=kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
|
|
endef
|
|
|
|
define Profile/M3/Description
|
|
Package set for Poray M3 board
|
|
endef
|
|
$(eval $(call Profile,M3))
|
|
|
|
|
|
define Profile/M4
|
|
NAME:=Poray M4
|
|
PACKAGES:=kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
|
|
endef
|
|
|
|
define Profile/M4/Description
|
|
Package set for Poray M4 board
|
|
endef
|
|
$(eval $(call Profile,M4))
|
|
|
|
|
|
define Profile/X5
|
|
NAME:=Poray X5/X6
|
|
PACKAGES:=kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
|
|
endef
|
|
|
|
define Profile/X5/Description
|
|
Package set for Poray X5/X6 board
|
|
endef
|
|
$(eval $(call Profile,X5))
|
|
|
|
|
|
define Profile/X8
|
|
NAME:=Poray X8
|
|
PACKAGES:=kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
|
|
endef
|
|
|
|
define Profile/X8/Description
|
|
Package set for Poray X8 board
|
|
endef
|
|
$(eval $(call Profile,X8))
|