ramips: fix Omnima models, images and profiles names
Official names for supported Omnima products are (as on website): * Omnima HPM * Omnima MiniEMBWiFi * Omnima MiniEMBPlug This patch changes: * board names * dts filenames * profile names * image filenames * LED names for Omnima devices, for consistency. Signed-off-by: Piotr Dymacz <pepe2k@gmail.com> SVN-Revision: 46627
This commit is contained in:
parent
0bb270429d
commit
713c81e97b
10 changed files with 48 additions and 46 deletions
|
@ -166,14 +166,14 @@ case $board in
|
|||
set_wifi_led "m2m:blue:wifi"
|
||||
ucidef_set_led_netdev "eth" "Ethernet" "m2m:green:wan" "eth0"
|
||||
;;
|
||||
omni-emb-hpm)
|
||||
ucidef_set_led_default "power" "POWER" "emb:orange:power" "1"
|
||||
ucidef_set_led_netdev "eth" "ETH" "emb:green:eth" "eth0"
|
||||
set_wifi_led "emb:green:wifi"
|
||||
hpm)
|
||||
ucidef_set_led_default "power" "POWER" "hpm:orange:power" "1"
|
||||
ucidef_set_led_netdev "eth" "ETH" "hpm:green:eth" "eth0"
|
||||
set_wifi_led "hpm:green:wifi"
|
||||
;;
|
||||
omni-plug)
|
||||
set_wifi_led "miniplug:green:wlan"
|
||||
set_usb_led "miniplug:green:mobile"
|
||||
miniembplug)
|
||||
set_wifi_led "miniembplug:green:wlan"
|
||||
set_usb_led "miniembplug:green:mobile"
|
||||
;;
|
||||
px4885)
|
||||
set_wifi_led "7links:orange:wifi"
|
||||
|
|
|
@ -243,7 +243,7 @@ ramips_setup_interfaces()
|
|||
;;
|
||||
d105 | \
|
||||
na930 | \
|
||||
omni-emb-hpm|\
|
||||
hpm|\
|
||||
wli-tx4-ag300n)
|
||||
ucidef_set_interface_lan "eth0"
|
||||
;;
|
||||
|
|
|
@ -119,9 +119,11 @@ get_status_led() {
|
|||
nw718)
|
||||
status_led="nw718:amber:cpu"
|
||||
;;
|
||||
omni-emb|\
|
||||
omni-emb-hpm)
|
||||
status_led="emb:green:status"
|
||||
miniembwifi)
|
||||
status_led="miniembwifi:green:status"
|
||||
;;
|
||||
hpm)
|
||||
status_led="hpm:green:status"
|
||||
;;
|
||||
pbr-m1)
|
||||
status_led="pbr-m1:green:sys"
|
||||
|
|
|
@ -238,14 +238,14 @@ ramips_board_detect() {
|
|||
*"Intenso Memory 2 Move")
|
||||
name="m2m"
|
||||
;;
|
||||
*"Omnima EMB HPM")
|
||||
name="omni-emb-hpm"
|
||||
*"Omnima HPM")
|
||||
name="hpm"
|
||||
;;
|
||||
*"Omnima MiniEMBWiFi")
|
||||
name="omni-emb"
|
||||
name="miniembwifi"
|
||||
;;
|
||||
*"Omnima MiniPlug")
|
||||
name="omni-plug"
|
||||
*"Omnima MiniEMBPlug")
|
||||
name="miniembplug"
|
||||
;;
|
||||
*"Olimex RT5350F-OLinuXino")
|
||||
name="rt5350f-olinuxino"
|
||||
|
|
|
@ -74,9 +74,9 @@ platform_check_image() {
|
|||
mzk-dp150n | \
|
||||
nbg-419n | \
|
||||
nw718 | \
|
||||
omni-emb | \
|
||||
omni-emb-hpm | \
|
||||
omni-plug | \
|
||||
miniembwifi | \
|
||||
hpm | \
|
||||
miniembplug | \
|
||||
rt5350f-olinuxino | \
|
||||
rt5350f-olinuxino-evb | \
|
||||
psr-680w | \
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
/include/ "rt3883.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "OMNI-EMB-HPM", "ralink,rt3883-soc";
|
||||
model = "Omnima EMB HPM";
|
||||
compatible = "HPM", "ralink,rt3883-soc";
|
||||
model = "Omnima HPM";
|
||||
|
||||
chosen {
|
||||
bootargs = "console=ttyS0,115200";
|
||||
|
@ -99,32 +99,32 @@
|
|||
compatible = "gpio-leds";
|
||||
|
||||
power {
|
||||
label = "emb:orange:power";
|
||||
label = "hpm:orange:power";
|
||||
gpios = <&gpio0 7 1>;
|
||||
};
|
||||
|
||||
status {
|
||||
label = "emb:green:status";
|
||||
label = "hpm:green:status";
|
||||
gpios = <&gpio0 21 1>;
|
||||
};
|
||||
|
||||
eth {
|
||||
label = "emb:green:eth";
|
||||
label = "hpm:green:eth";
|
||||
gpios = <&gpio0 20 1>;
|
||||
};
|
||||
|
||||
eth2 {
|
||||
label = "emb:red:eth";
|
||||
label = "hpm:red:eth";
|
||||
gpios = <&gpio0 18 1>;
|
||||
};
|
||||
|
||||
wifi {
|
||||
label = "emb:green:wifi";
|
||||
label = "hpm:green:wifi";
|
||||
gpios = <&gpio0 17 1>;
|
||||
};
|
||||
|
||||
wifi2 {
|
||||
label = "emb:red:wifi";
|
||||
label = "hpm:red:wifi";
|
||||
gpios = <&gpio0 19 1>;
|
||||
};
|
||||
};
|
|
@ -3,8 +3,8 @@
|
|||
/include/ "rt5350.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "OMNI-PLUG", "ralink,rt5350-soc";
|
||||
model = "Omnima MiniPlug";
|
||||
compatible = "MINIEMBPLUG", "ralink,rt5350-soc";
|
||||
model = "Omnima MiniEMBPlug";
|
||||
|
||||
pinctrl {
|
||||
state_default: pinctrl0 {
|
||||
|
@ -19,12 +19,12 @@
|
|||
compatible = "gpio-leds";
|
||||
|
||||
wlan {
|
||||
label = "miniplug:red:wlan";
|
||||
label = "miniembplug:red:wlan";
|
||||
gpios = <&gpio0 9 0>;
|
||||
};
|
||||
|
||||
mobile {
|
||||
label = "miniplug:green:mobile";
|
||||
label = "miniembplug:green:mobile";
|
||||
gpios = <&gpio0 13 1>;
|
||||
};
|
||||
};
|
|
@ -3,7 +3,7 @@
|
|||
/include/ "rt3050.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "OMNI-EMB", "ralink,rt3052-soc";
|
||||
compatible = "MINIEMBWIFI", "ralink,rt3052-soc";
|
||||
model = "Omnima MiniEMBWiFi";
|
||||
|
||||
pinctrl {
|
||||
|
@ -19,12 +19,12 @@
|
|||
compatible = "gpio-leds";
|
||||
|
||||
status {
|
||||
label = "emb:green:status";
|
||||
label = "miniembwifi:green:status";
|
||||
gpios = <&gpio0 9 1>;
|
||||
};
|
||||
|
||||
wlan {
|
||||
label = "emb:green:wlan";
|
||||
label = "miniembwifi:green:wlan";
|
||||
gpios = <&gpio0 14 1>;
|
||||
};
|
||||
};
|
|
@ -574,9 +574,9 @@ Image/Build/Profile/NW718=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),nw71
|
|||
|
||||
Image/Build/Profile/M2M=$(call BuildFirmware/Default8M/$(1),$(1),m2m,M2M,Linux Kernel Image)
|
||||
|
||||
Image/Build/Profile/OMNI-EMB=$(call BuildFirmware/Default8M/$(1),$(1),omni-emb,OMNI-EMB)
|
||||
Image/Build/Profile/MINIEMBPLUG=$(call BuildFirmware/Default8M/$(1),$(1),miniembplug,MINIEMBPLUG)
|
||||
|
||||
Image/Build/Profile/OMNI-PLUG=$(call BuildFirmware/Default8M/$(1),$(1),omni-plug,OMNI-PLUG)
|
||||
Image/Build/Profile/MINIEMBWIFI=$(call BuildFirmware/Default8M/$(1),$(1),miniembwifi,MINIEMBWIFI)
|
||||
|
||||
Image/Build/Profile/PSR-680W=$(call BuildFirmware/Default4M/$(1),$(1),psr-680w,PSR-680W)
|
||||
|
||||
|
@ -742,8 +742,8 @@ define Image/Build/Profile/Default
|
|||
$(call Image/Build/Profile/NBG-419N,$(1))
|
||||
$(call Image/Build/Profile/NCS601W,$(1))
|
||||
$(call Image/Build/Profile/NW718,$(1))
|
||||
$(call Image/Build/Profile/OMNI-EMB,$(1))
|
||||
$(call Image/Build/Profile/OMNI-PLUG,$(1))
|
||||
$(call Image/Build/Profile/MINIEMBWIFI,$(1))
|
||||
$(call Image/Build/Profile/MINIEMBPLUG,$(1))
|
||||
$(call Image/Build/Profile/PSR-680W,$(1))
|
||||
$(call Image/Build/Profile/PWH2004,$(1))
|
||||
$(call Image/Build/Profile/PX4885,$(1))
|
||||
|
@ -815,8 +815,8 @@ Image/Build/Profile/CYSWR1100=$(call BuildFirmware/Seama/$(1),$(1),cy-swr1100,CY
|
|||
|
||||
Image/Build/Profile/DIR645=$(call BuildFirmware/Seama/$(1),$(1),dir-645,DIR-645,wrgn39_dlob.hans_dir645,$(ralink_default_fw_size_8M))
|
||||
|
||||
omniembhpm_mtd_size=16449536
|
||||
Image/Build/Profile/OMNIEMBHPM=$(call BuildFirmware/CustomFlash/$(1),$(1),omni-emb-hpm,OMNI-EMB-HPM,$(omniembhpm_mtd_size))
|
||||
hpm_mtd_size=16449536
|
||||
Image/Build/Profile/HPM=$(call BuildFirmware/CustomFlash/$(1),$(1),hpm,HPM,$(hpm_mtd_size))
|
||||
|
||||
define BuildFirmware/RTN56U/squashfs
|
||||
$(call BuildFirmware/Default8M/$(1),$(1),rt-n56u,RT-N56U)
|
||||
|
@ -838,7 +838,7 @@ ifeq ($(SUBTARGET),rt3883)
|
|||
define Image/Build/Profile/Default
|
||||
$(call Image/Build/Profile/CYSWR1100,$(1))
|
||||
$(call Image/Build/Profile/DIR645,$(1))
|
||||
$(call Image/Build/Profile/OMNIEMBHPM,$(1))
|
||||
$(call Image/Build/Profile/HPM,$(1))
|
||||
$(call Image/Build/Profile/RTN56U,$(1))
|
||||
$(call Image/Build/Profile/BR6475ND,$(1))
|
||||
$(call Image/Build/Profile/TEW691GR,$(1))
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
define Profile/OMNIEMBHPM
|
||||
NAME:=Omnima EMB-HPM board
|
||||
define Profile/HPM
|
||||
NAME:=Omnima HPM
|
||||
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2
|
||||
endef
|
||||
|
||||
define Profile/OMNIEMBHPM/Description
|
||||
Package set compatible with the Omnima EMB-HPM board.
|
||||
define Profile/HPM/Description
|
||||
Package set compatible with the Omnima HPM board.
|
||||
endef
|
||||
$(eval $(call Profile,OMNIEMBHPM))
|
||||
$(eval $(call Profile,HPM))
|
||||
|
|
Loading…
Reference in a new issue