Merge branch 'main' into main

This commit is contained in:
Julian Braun 2025-06-02 14:29:41 +02:00 committed by GitHub
commit f20a921dce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
SDK_NAME=openwrt-sdk-mvebu-cortexa53_gcc-14.2.0_musl.Linux-x86_64
SDK_NAME=openwrt-sdk-mvebu-cortexa53_gcc-14.3.0_musl.Linux-x86_64
SDK_EXT=tar.zst
SDK_URL=https://downloads.openwrt.org/snapshots/targets/mvebu/cortexa53/
SDK_ARCH=aarch64_cortex-a53

View File

@ -1,4 +1,4 @@
SDK_NAME=openwrt-sdk-x86-64_gcc-14.2.0_musl.Linux-x86_64
SDK_NAME=openwrt-sdk-x86-64_gcc-14.3.0_musl.Linux-x86_64
SDK_URL=https://downloads.openwrt.org/snapshots/targets/x86/64/
SDK_ARCH=x86_64
SDK_EXT=tar.zst

View File

@ -329,6 +329,7 @@ static int qmi_main(PROFILE_T *profile)
// Only execute FCC authentication if the modem model requires it
if (profile->needs_fcc_auth) {
dbg_time("Executing FCC authentication for modem model: %s", profile->BaseBandVersion);
// Check if the fcc auth was successful
char fcc_auth_success = 0;
if (request_ops->requestFoxconnSetFccAuthentication) {
@ -349,6 +350,7 @@ static int qmi_main(PROFILE_T *profile)
if (!qmierr) {
dbg_time("Foxconn FCC Authentication V2 successful");
}
}
}
} else {