1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

[adm5120] rewrite image generation

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8755 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2007-09-11 17:55:08 +00:00
parent c53b157b0e
commit 02c9cd2369
19 changed files with 589 additions and 294 deletions

View File

@@ -0,0 +1,17 @@
#
# 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
$(eval $(call Profile,Generic))

View File

@@ -1,17 +1,17 @@
#
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/Atheros
NAME:=Atheros WiFi (default)
PACKAGES:=kmod-madwifi
NAME:=Atheros WiFi
PACKAGES:=kmod-madwifi
endef
define Profile/Atheros/Description
Package set compatible with hardware using Atheros WiFi cards
Package set compatible with hardware using Atheros WiFi cards.
endef
$(eval $(call Profile,Atheros))
$(eval $(call Profile,Atheros))

View File

@@ -1,17 +1,17 @@
#
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/Texas
NAME:=Texas Instruments WiFi
PACKAGES:=kmod-acx
NAME:=Texas Instruments WiFi
PACKAGES:=kmod-acx
endef
define Profile/Texas/Description
Package set compatible with hardware using Texas Instruments WiFi cards
Package set compatible with hardware using Texas Instruments WiFi cards.
endef
$(eval $(call Profile,Texas))

View File

@@ -6,11 +6,11 @@
#
define Profile/Ralink
NAME:=Ralink WiFi
PACKAGES:=kmod-rt2500
NAME:=Ralink WiFi
PACKAGES:=kmod-rt2500
endef
define Profile/Ralink/Description
Package set compatible with hardware using Ralink WiFi cards
Package set compatible with hardware using Ralink WiFi cards.
endef
$(eval $(call Profile,Ralink))

View File

@@ -1,17 +0,0 @@
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/None
NAME:=No WiFi
PACKAGES:=
endef
define Profile/None/Description
Package set without WiFi support
endef
$(eval $(call Profile,None))

View File

@@ -5,12 +5,23 @@
# See /LICENSE for more information.
#
define Profile/Cellvision
NAME:=Cellvision CAS-63x/77x cameras
PACKAGES:=kmod-rt2500 kmod-cpia2 kmod-usb-ohci kmod-usb2 kmod-usb-audio
define Profile/CAS-771
NAME:=Cellvision CAS-771 IP camera
PACKAGES:=kmod-cpia2 kmod-usb-ohci kmod-usb2 kmod-usb-audio
endef
define Profile/Cellvision/Description
Package set compatible with the Cellvision CAS devices, including Wireless variants.
define Profile/CAS-771/Description
Package set optimized for the Cellvision CAS-771 device.
endef
$(eval $(call Profile,Cellvision))
define Profile/CAS-771W
NAME:=Cellvision CAS-771W IP camera
PACKAGES:=kmod-cpia2 kmod-usb-ohci kmod-usb2 kmod-usb-audio kmod-rt2500
endef
define Profile/CAS-771W/Description
Package set optimized for the Cellvision CAS-771W device.
endef
$(eval $(call Profile,CAS-771))
$(eval $(call Profile,CAS-771W))

View File

@@ -0,0 +1,37 @@
#
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/NP27G
NAME:=Compex NP27G
PACKAGES:=kmod-madwifi kmod-usb-core kmod-usb-adm5120
endef
define Profile/NP27G/Description
Package set optimized for the Compex NP27G.
endef
define Profile/NP28G
NAME:=Compex NP28G
PACKAGES:=kmod-madwifi
endef
define Profile/NP28G/Description
Package set optimized for the Compex NP28G.
endef
define Profile/WP54G
NAME:=Compex WP54G family
PACKAGES:=kmod-madwifi
endef
define Profile/WP54G/Description
Package set optimized for the Compex WP54G family.
endef
$(eval $(call Profile,NP27G))
$(eval $(call Profile,NP28G))
$(eval $(call Profile,WP54G))

View File

@@ -1,17 +1,18 @@
#
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/RouterBoard
NAME:=RouterBoard RB1xx
PACKAGES:=kmod-madwifi
NAME:=Mikrotik RouterBoard 1xx family
PACKAGES:=kmod-madwifi
endef
define Profile/RouterBoard/Description
Package set compatible with the RouterBoard RB1xx devices. Contains RouterOS to OpenWrt\\\
installation scripts.
Package set compatible with the RouterBoard RB1xx devices. Contains RouterOS to OpenWrt\\\
installation scripts.
endef
$(eval $(call Profile,RouterBoard))