diff options
author | James <> | 2015-09-26 12:29:31 +0100 |
---|---|---|
committer | James <> | 2015-09-26 12:29:31 +0100 |
commit | 626d9efa74685720020e816f3a917b7591d3cf7a (patch) | |
tree | d22eef73ae82287b30a1140decb4fc806d39d621 /target/linux/ramips/rt288x/profiles | |
download | trunk-47048-626d9efa74685720020e816f3a917b7591d3cf7a.tar.gz trunk-47048-626d9efa74685720020e816f3a917b7591d3cf7a.tar.bz2 trunk-47048-626d9efa74685720020e816f3a917b7591d3cf7a.zip |
trunk-47048
Diffstat (limited to 'target/linux/ramips/rt288x/profiles')
-rw-r--r-- | target/linux/ramips/rt288x/profiles/00-default.mk | 16 | ||||
-rw-r--r-- | target/linux/ramips/rt288x/profiles/asus.mk | 16 | ||||
-rw-r--r-- | target/linux/ramips/rt288x/profiles/belkin.mk | 16 |
3 files changed, 48 insertions, 0 deletions
diff --git a/target/linux/ramips/rt288x/profiles/00-default.mk b/target/linux/ramips/rt288x/profiles/00-default.mk new file mode 100644 index 0000000..583610a --- /dev/null +++ b/target/linux/ramips/rt288x/profiles/00-default.mk @@ -0,0 +1,16 @@ +# +# Copyright (C) 2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/Default + NAME:=Default Profile + PACKAGES:=kmod-switch-rtl8366s kmod-swconfig swconfig +endef + +define Profile/Default/Description + Default package set compatible with most boards. +endef +$(eval $(call Profile,Default)) diff --git a/target/linux/ramips/rt288x/profiles/asus.mk b/target/linux/ramips/rt288x/profiles/asus.mk new file mode 100644 index 0000000..aa6fb4d --- /dev/null +++ b/target/linux/ramips/rt288x/profiles/asus.mk @@ -0,0 +1,16 @@ +# +# Copyright (C) 2011 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/RTN15 + NAME:=Asus RT-N15 + PACKAGES:=kmod-switch-rtl8366s kmod-swconfig swconfig +endef + +define Profile/RTN15/Description + Package set for Asus RT-N15 board +endef +$(eval $(call Profile,RTN15)) diff --git a/target/linux/ramips/rt288x/profiles/belkin.mk b/target/linux/ramips/rt288x/profiles/belkin.mk new file mode 100644 index 0000000..4a0c62d --- /dev/null +++ b/target/linux/ramips/rt288x/profiles/belkin.mk @@ -0,0 +1,16 @@ +# +# Copyright (C) 2011 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/F5D8235V1 + NAME:=Belkin F5D8235 V1 + PACKAGES:=kmod-switch-rtl8366s kmod-swconfig swconfig +endef + +define Profile/F5D8235V1/Description + Package set for Belkin F5D8235 V1 +endef +$(eval $(call Profile,F5D8235V1)) |