BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mangoh-drivers
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
mangoh-drivers
Commits
b5c8784d
Commit
b5c8784d
authored
Nov 14, 2017
by
David Frey
Browse files
Options
Browse Files
Download
Plain Diff
Merge branches 'no_mt7697_in_sdef' and 'commit_accident'
parents
efed5840
0b6e3c54
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
1 deletion
+35
-1
mt7697_setup_wifi.sh
...nel_modules/mt7697wifi/scripts/setup/mt7697_setup_wifi.sh
+0
-0
wifi-update-target.sh
...el_modules/mt7697wifi/scripts/setup/wifi-update-target.sh
+0
-0
mt7697ap.sh
linux_kernel_modules/mt7697wifi/scripts/test/mt7697ap.sh
+0
-0
wifi_service_ap_test.sh
...l_modules/mt7697wifi/scripts/test/wifi_service_ap_test.sh
+9
-0
wifi_service_sta_test.sh
..._modules/mt7697wifi/scripts/test/wifi_service_sta_test.sh
+24
-0
txrx.c
linux_kernel_modules/mt7697wifi/txrx.c
+2
-1
No files found.
linux_kernel_modules/mt7697wifi/scripts/mt7697_setup_wifi.sh
→
linux_kernel_modules/mt7697wifi/scripts/
setup/
mt7697_setup_wifi.sh
View file @
b5c8784d
File moved
linux_kernel_modules/mt7697wifi/scripts/wifi-update-target.sh
→
linux_kernel_modules/mt7697wifi/scripts/
setup/
wifi-update-target.sh
View file @
b5c8784d
File moved
linux_kernel_modules/mt7697wifi/scripts/mt7697ap.sh
→
linux_kernel_modules/mt7697wifi/scripts/
test/
mt7697ap.sh
View file @
b5c8784d
File moved
linux_kernel_modules/mt7697wifi/scripts/test/wifi_service_ap_test.sh
0 → 100644
View file @
b5c8784d
#!/bin/sh
# Copyright (C) Sierra Wireless Inc.
#
export
ITF_LAN
=
"wlan1"
# WiFi? access point interface
echo
"Start wifi web application..."
app start wifiWebAp
$ITF_LAN
linux_kernel_modules/mt7697wifi/scripts/test/wifi_service_sta_test.sh
0 → 100644
View file @
b5c8784d
#!/bin/sh
# Copyright (C) Sierra Wireless Inc.
#
export
ITF_LAN
=
"wlan1"
# WiFi? access point interface
export
CLIENT_REF
=
"0x10000001"
export
PASSPHRASE
=
"@iPr1m3"
export
SECURITY_PROTO
=
"3"
echo
"Start wifi client..."
wifi client start
$ITF_LAN
echo
"Begin wifi client scan..."
wifi client scan
$ITF_LAN
echo
"Set security parameters..."
wifi client setsecurityproto
$CLIENT_REF
$SECURITY_PROTO
wifi client setpassphrase
$CLIENT_REF
$PASSPHRASE
echo
"Set WPA driver..."
wifi client setdriver
$CLIENT_REF
1
echo
"Connect to access point..."
wifi client connect
$CLIENT_REF
linux_kernel_modules/mt7697wifi/txrx.c
View file @
b5c8784d
...
...
@@ -69,7 +69,7 @@ int mt7697_data_tx(struct sk_buff *skb, struct net_device *ndev)
if
(
tx_skb
->
skb
)
{
dev_warn
(
cfg
->
dev
,
"%s(): tx pool full
\n
"
,
__func__
);
ret
=
-
EAGAIN
;
ret
=
NETDEV_TX_BUSY
;
goto
cleanup
;
}
...
...
@@ -89,6 +89,7 @@ int mt7697_data_tx(struct sk_buff *skb, struct net_device *ndev)
if
(
ret
<
0
)
{
dev_err
(
cfg
->
dev
,
"%s(): queue_work() failed(%d)
\n
"
,
__func__
,
ret
);
ret
=
NETDEV_TX_BUSY
;
goto
cleanup
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment