blob: 6c3e5f30eb9ed1e43b2e7e39c6c39356fb983ca4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/Generic
NAME:=Generic (default)
PACKAGES:=
endef
define Profile/Generic/Description
Generic package set compatible with most boards.
endef
define Profile/EB-214A
NAME:=Generic EB-214A
PACKAGES:=-wpad-mini -admswconfig -kmod-usb-adm5120 -kmod-ledtrig-adm5120-switch -dnsmasq kmod-usb-uhci kmod-usb2
endef
define Profile/EB-214A/Description
Package set optimized for generic EB-214A boards.
endef
$(eval $(call Profile,Generic))
$(eval $(call Profile,EB-214A))
|