-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some env variables sensitive for proper lpac functioning can be set by upper lpac wrappers such as lpac-libmbim-wrapper. If that's the case, we shouldn't override them, otherwise the wrapper won't work. Also, we shouldn't interpret values of the debug env variables. Instead, we just pass them as is if the corresponding uci optioins exist. fixes #25035 Signed-off-by: GitHub <noreply@github.com>
- Loading branch information
Showing
2 changed files
with
15 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
config global global | ||
option apdu_backend 'uqmi' | ||
option http_backend 'curl' | ||
option apdu_debug '0' | ||
option http_debug '0' | ||
# option apdu_debug '1' | ||
# option http_debug '1' | ||
|
||
config at at | ||
option device '/dev/ttyUSB2' | ||
option debug '0' | ||
# option debug '1' | ||
|
||
config uqmi uqmi | ||
option device '/dev/cdc-wdm0' | ||
option debug '0' | ||
# option debug '1' # value matters |