diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-01-02 16:30:52 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-01-02 16:30:52 +0000 |
commit | ac4b63a18bf6f3a384be304c338b7935b98e62cd (patch) | |
tree | b7a640163c49158dbc1282ddd3f814ce16a82eb5 /target/linux/ar71xx/profiles | |
parent | acf09aa0a8a21e718dae2da2a2429309e8d0ed4d (diff) | |
download | upstream-ac4b63a18bf6f3a384be304c338b7935b98e62cd.tar.gz upstream-ac4b63a18bf6f3a384be304c338b7935b98e62cd.tar.bz2 upstream-ac4b63a18bf6f3a384be304c338b7935b98e62cd.zip |
ar71xx: create firmware images for the AP81/PB42/PB44 boards
SVN-Revision: 19011
Diffstat (limited to 'target/linux/ar71xx/profiles')
-rw-r--r-- | target/linux/ar71xx/profiles/atheros.mk | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/target/linux/ar71xx/profiles/atheros.mk b/target/linux/ar71xx/profiles/atheros.mk new file mode 100644 index 0000000000..91494a8732 --- /dev/null +++ b/target/linux/ar71xx/profiles/atheros.mk @@ -0,0 +1,50 @@ +# +# Copyright (C) 2009-2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/AP81 + NAME:=Atheros AP81 reference board + PACKAGES:=hostapd-mini kmod-ath9k kmod-usb-core kmod-usb2 +endef + +define Profile/AP81/Description + Package set optimized for the Atheros AP81 reference board. +endef + +$(eval $(call Profile,AP81)) + +define Profile/AP83 + NAME:=Atheros AP83 reference board + PACKAGES:=hostapd-mini kmod-ath9k kmod-usb-core kmod-usb2 +endef + +define Profile/AP83/Description + Package set optimized for the Atheros AP83 reference board. +endef + +$(eval $(call Profile,AP83)) + +define Profile/PB42 + NAME:=Atheros PB42 reference board + PACKAGES:=hostapd-mini kmod-ath9k kmod-usb-core kmod-usb-ohci kmod-usb2 +endef + +define Profile/PB42/Description + Package set optimized for the Atheros PB42 reference board. +endef + +$(eval $(call Profile,PB42)) + +define Profile/PB44 + NAME:=Atheros PB44 reference board + PACKAGES:=hostapd-mini kmod-ath9k kmod-usb-core kmod-usb-ohci kmod-usb2 +endef + +define Profile/PB44/Description + Package set optimized for the Atheros PB44 reference board. +endef + +$(eval $(call Profile,PB44)) |