mirror of https://github.com/OpenIPC/firmware.git
Add a generic entry for ATBM603x USB (#1322)
Co-authored-by: Signor Pellegrino <68112357+FlyRouter@users.noreply.github.com>pull/1326/head
parent
a45f6c78b1
commit
1a39728b88
|
@ -5,6 +5,12 @@ set_gpio() {
|
|||
sleep 1
|
||||
}
|
||||
|
||||
# Generic ATBM603x USB
|
||||
if [ "$1" = "atbm603x-generic-usb" ]; then
|
||||
modprobe atbm603x_wifi_usb
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Generic MT7601U
|
||||
if [ "$1" = "mt7601u-generic" ]; then
|
||||
modprobe mt7601u
|
||||
|
@ -17,13 +23,6 @@ if [ "$1" = "rtl8188eu-generic" ]; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
# RTL8188EUS Lenovo Snowman 1080p
|
||||
if [ "$1" = "rtl8188eus-hi3518ev200-lenovo" ]; then
|
||||
devmem 0x200f006c 32 0
|
||||
modprobe 8188eu
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Generic RTL8188FU
|
||||
if [ "$1" = "rtl8188fu-generic" ]; then
|
||||
modprobe 8188fu
|
||||
|
@ -85,6 +84,13 @@ if [ "$1" = "rtl8188fu-hi3518ev200-lifesmart" ]; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
# HI3518EV200 Lenovo Snowman 1080p
|
||||
if [ "$1" = "rtl8188eus-hi3518ev200-lenovo" ]; then
|
||||
devmem 0x200f006c 32 0
|
||||
modprobe 8188eu
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# HI3518EV200 Qtech QVC-IPC-136W
|
||||
if [ "$1" = "rtl8188eu-hi3518ev200-qvc-ipc-136w" ]; then
|
||||
set_gpio 7 1
|
||||
|
|
Loading…
Reference in New Issue