Add support for Conceptronic C54BSR4
SVN-Revision: 10002
This commit is contained in:
parent
b8b88560fa
commit
80475bb573
4 changed files with 45 additions and 0 deletions
|
@ -253,6 +253,21 @@ define Image/Build/Board/BR6104WG/Initramfs
|
||||||
$(call Image/Build/LZMAKernel/Admboot,br-6104wg,gz)
|
$(call Image/Build/LZMAKernel/Admboot,br-6104wg,gz)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
#
|
||||||
|
# Conceptronic C54BSR4
|
||||||
|
#
|
||||||
|
define Image/Build/Board/C54BSR4
|
||||||
|
$(call Image/Build/Edimax,$(1),c54bsr4)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Image/Build/Board/C54BSR4/squashfs
|
||||||
|
$(call Image/Build/Board/C54BSR4,squashfs)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Image/Build/Board/C54BSR4/Initramfs
|
||||||
|
$(call Image/Build/LZMAKernel/Admboot,c54bsr4,gz)
|
||||||
|
endef
|
||||||
|
|
||||||
#
|
#
|
||||||
# Infineon EASY 83000
|
# Infineon EASY 83000
|
||||||
#
|
#
|
||||||
|
@ -301,6 +316,10 @@ define Image/Build/Group/Compex
|
||||||
$(call Image/Build/Group/WP54G,$(1))
|
$(call Image/Build/Group/WP54G,$(1))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Image/Build/Group/Conceptronic
|
||||||
|
$(call Image/Build/Board/C54BSR4/$(1))
|
||||||
|
endef
|
||||||
|
|
||||||
define Image/Build/Group/Edimax
|
define Image/Build/Group/Edimax
|
||||||
$(call Image/Build/Board/BR6104K/$(1))
|
$(call Image/Build/Board/BR6104K/$(1))
|
||||||
$(call Image/Build/Board/BR6104KP/$(1))
|
$(call Image/Build/Board/BR6104KP/$(1))
|
||||||
|
@ -314,6 +333,7 @@ endef
|
||||||
define Image/Build/Group/All
|
define Image/Build/Group/All
|
||||||
$(call Image/Build/Group/Cellvision,$(1))
|
$(call Image/Build/Group/Cellvision,$(1))
|
||||||
$(call Image/Build/Group/Compex,$(1))
|
$(call Image/Build/Group/Compex,$(1))
|
||||||
|
$(call Image/Build/Group/Conceptronic,$(1))
|
||||||
$(call Image/Build/Group/Edimax,$(1))
|
$(call Image/Build/Group/Edimax,$(1))
|
||||||
$(call Image/Build/Group/Cellvision,$(1))
|
$(call Image/Build/Group/Cellvision,$(1))
|
||||||
$(call Image/Build/Group/Infineon,$(1))
|
$(call Image/Build/Group/Infineon,$(1))
|
||||||
|
@ -367,6 +387,10 @@ define Image/Build/Profile/BR6104KP
|
||||||
$(call Image/Build/Board/BR6104KP/$(1))
|
$(call Image/Build/Board/BR6104KP/$(1))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Image/Build/Profile/C54BSR4
|
||||||
|
$(call Image/Build/Board/C54BSR4/$(1))
|
||||||
|
endef
|
||||||
|
|
||||||
define Image/Build/Profile/RouterBoard
|
define Image/Build/Profile/RouterBoard
|
||||||
$(call Image/Build/Board/RB1xx/$(1))
|
$(call Image/Build/Board/RB1xx/$(1))
|
||||||
endef
|
endef
|
||||||
|
|
17
target/linux/adm5120/router_le/profiles/Conceptronic.mk
Normal file
17
target/linux/adm5120/router_le/profiles/Conceptronic.mk
Normal 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/C54BSR4
|
||||||
|
NAME:=Conceptronic C54BSR4 (Unofficial)
|
||||||
|
PACKAGES:=kmod-net-ipw2200
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Profile/BR6104KP/Description
|
||||||
|
Package set optimized for the C54BSR4
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call Profile,C54BSR4))
|
|
@ -55,6 +55,7 @@
|
||||||
#define SIG_BR6541K "4--K"
|
#define SIG_BR6541K "4--K"
|
||||||
#define SIG_BR6541KP "4-KP" /* FIXME: valid? */
|
#define SIG_BR6541KP "4-KP" /* FIXME: valid? */
|
||||||
#define SIG_BR6541WP "4-WP" /* FIXME: valid? */
|
#define SIG_BR6541WP "4-WP" /* FIXME: valid? */
|
||||||
|
#define SIG_C54BSR4 SIG_BR6104IPC
|
||||||
#define SIG_EW7207APg "EWAS"
|
#define SIG_EW7207APg "EWAS"
|
||||||
#define SIG_PS1205UWg "4000"
|
#define SIG_PS1205UWg "4000"
|
||||||
#define SIG_PS3205U "5010"
|
#define SIG_PS3205U "5010"
|
||||||
|
|
|
@ -179,6 +179,9 @@ static struct board_info boards[] = {
|
||||||
BOARD_ADM("XRT-401D", "Planet XRT-401D", 2, SIG_XRT401D),
|
BOARD_ADM("XRT-401D", "Planet XRT-401D", 2, SIG_XRT401D),
|
||||||
BOARD_ADM("XRT-402D", "Planet XRT-402D", 2, SIG_XRT402D),
|
BOARD_ADM("XRT-402D", "Planet XRT-402D", 2, SIG_XRT402D),
|
||||||
|
|
||||||
|
/* Conceptronic products */
|
||||||
|
BOARD_ADM("C54BSR4", "Conceptronic C54BSR4", 2, SIG_C54BSR4),
|
||||||
|
|
||||||
{.model = NULL}
|
{.model = NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue