-
Notifications
You must be signed in to change notification settings - Fork 7.5k
eswifi misc fixes #26712
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eswifi misc fixes #26712
Conversation
Stop any TCP/UDP client session before starting a new one. Signed-off-by: Loic Poulain <[email protected]>
Use log_strdup() helper for logger string parameters. Signed-off-by: Loic Poulain <[email protected]>
Removing DNM, expecting the PR to me merged now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small nit, LGTM
drivers/wifi/eswifi/Kconfig.eswifi
Outdated
@@ -22,4 +22,11 @@ config WIFI_ESWIFI_THREAD_PRIO | |||
This option sets the priority of the esWiFi threads. | |||
Do not touch it unless you know what you are doing. | |||
|
|||
config WIFI_ESWIFI_SHELL | |||
bool "esWiFi shell" | |||
default n |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Value is "n" by default, this line can be omitted
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, fixed now
Add a esWiFi shell for device specific controls. For now used to send at commands. Signed-off-by: Loic Poulain <[email protected]>
There are possible buffer overflows when parsing the ip address and SSID. Ensure that we never overwrite the ip and SSID buffers. Signed-off-by: Loic Poulain <[email protected]>
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-v1.14-branch v1.14-branch
# Navigate to the new working tree
cd .worktrees/backport-v1.14-branch
# Create a new branch
git switch --create backport-26712-to-v1.14-branch
# Cherry-pick the merged commits of this pull request and resolve the conflicts
git cherry-pick 40e2d94bc88ac17a3e96bb95d08f1a21c9c6976f~4..40e2d94bc88ac17a3e96bb95d08f1a21c9c6976f
# Push it to GitHub
git push --set-upstream origin backport-26712-to-v1.14-branch
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-v1.14-branch Then, create a pull request where the |
Uh oh!
There was an error while loading. Please reload this page.