Merge "[Bugfix][API-1429]fix eth2 reset after resume" into GSW3.0-No-Connman
diff --git a/meta-sdk/meta/meta-lynqSDK-T800/conf/machine/auto2735evb-ivt-base.conf b/meta-sdk/meta/meta-lynqSDK-T800/conf/machine/auto2735evb-ivt-base.conf
index 02391f6..bfe54c9 100755
--- a/meta-sdk/meta/meta-lynqSDK-T800/conf/machine/auto2735evb-ivt-base.conf
+++ b/meta-sdk/meta/meta-lynqSDK-T800/conf/machine/auto2735evb-ivt-base.conf
@@ -174,7 +174,7 @@
SCATTER_PROJECT = "auto2735-ivt-mcp_nand"
# Modem
-MODEM_PROJECT = "MT2735_V02.MP1_MR3_NLWG_P7_20231018"
+MODEM_PROJECT = "MT2735_V02.MP1_MR3_NLWG_T26_20231108"
MODEM_INT = "${TOPDIR}/../prebuilt/modem/mt2735_internal"
MODEM_CUSTOM = "${TOPDIR}/../prebuilt/modem/mt2735"
MODEM_INT_EXIST = "${@ os.path.exists('${MODEM_INT}')}"
diff --git a/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch b/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
index 968cb53..89b810b 100755
--- a/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
+++ b/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
@@ -22,20 +22,23 @@
#define DEBUG 0
/* MARK code is not very useful, is bloat, and broken:
-@@ -210,6 +217,7 @@
-
- typedef struct logFile_t {
+@@ -212,6 +219,8 @@
const char *path;
-+ FILE * fp;
int fd;
time_t last_log_time;
++ FILE * fp;
++ int will_flush_bytes;
#if ENABLE_FEATURE_ROTATE_LOGFILE
-@@ -677,6 +685,79 @@
+ unsigned size;
+ uint8_t isRegular;
+@@ -677,6 +686,129 @@
static void log_to_kmsg(int pri UNUSED_PARAM, const char *msg UNUSED_PARAM) {}
#endif /* FEATURE_KMSG_SYSLOG */
+int g_syslog_buffer_size=8*1024;
+char g_syslog_buffer[16*1024];
++int g_max_flush_interval=0;
++
+
+int syslog_is_buffer_write()
+{
@@ -51,15 +54,33 @@
+
+void syslog_close_fp_fd(FILE * fp, int* fd)
+{
-+ if(syslog_is_buffer_write() && (*fd) > 1)
-+ {
-+ fclose(fp);
-+ }
-+ else
-+ {
-+ close(*fd);
-+ }
-+ (*fd) = -1;
++ if((*fd) > 1)
++ {
++ if(syslog_is_buffer_write())
++ {
++ fclose(fp);
++ }
++ else
++ {
++ close(*fd);
++ }
++ (*fd) = -1;
++ }
++}
++
++void syslog_close_all_fp_fd()
++{
++#if ENABLE_FEATURE_SYSLOGD_CFG
++ logRule_t *rule;
++
++ for (rule = G.log_rules; rule; rule = rule->next) {
++ if(rule->file!=NULL)
++ {
++ syslog_close_fp_fd(rule->file->fp,&(rule->file->fd));
++ }
++ }
++#endif
++ syslog_close_fp_fd(G.logFile.fp,&(G.logFile.fd));
+}
+
+void syslog_get_fp_fd(const char * path, FILE** fp, int* fd)
@@ -95,22 +116,52 @@
+ }
+}
+
-+int syslog_write(FILE* fp, int fd, char *msg, int len)
++void syslog_get_now_time(time_t* now)
+{
++
++ time(now);
++}
++
++void syslog_write(FILE* fp, int fd, char *msg, int* len, time_t* last_log_time,int* will_flush_bytes)
++{
++ unsigned long interval;
++ time_t now;
+ if(syslog_is_buffer_write() && fd > 1)
+ {
-+ return fwrite(msg,1,len,fp);
++ *len = fwrite(msg,1,*len,fp);
++ if(*len > 0 && g_max_flush_interval>0)
++ {
++ (*will_flush_bytes)+=(*len);
++ syslog_get_now_time(&now);
++ if((*will_flush_bytes) >=g_syslog_buffer_size)
++ {
++ (*will_flush_bytes)=(*will_flush_bytes)%g_syslog_buffer_size;
++
++ *last_log_time=now;
++ }
++ else
++ {
++ interval = difftime(now,*last_log_time);
++
++ if(interval>=g_max_flush_interval)
++ {
++ fflush(fp);
++ *last_log_time=now;
++ (*will_flush_bytes) = 0;
++ }
++ }
++ }
+ }
+ else
+ {
-+ return full_write(fd, msg, len);
++ *len = full_write(fd, msg, *len);
+ }
+}
+
/* Print a message to the log file. */
static void log_locally(time_t now, char *msg, logFile_t *log_file)
{
-@@ -693,14 +774,24 @@
+@@ -693,14 +825,24 @@
* This costs almost nothing since it happens
* _at most_ once a second for each file, and happens
* only when each file is actually written.
@@ -130,7 +181,7 @@
+ }
+ if(log_file->last_log_time != now) {
+ log_file->last_log_time = now;
-+ close(log_file->fd);
++ syslog_close_fp_fd(log_file->fp,&(log_file->fd));
+ goto reopen;
+ }
}
@@ -142,7 +193,7 @@
}
else if (log_file->fd == 1) {
/* We are logging to stdout: do nothing */
-@@ -710,10 +801,8 @@
+@@ -710,10 +852,8 @@
log_file->fd = 1;
/* log_file->isRegular = 0; - already is */
} else {
@@ -155,7 +206,21 @@
if (log_file->fd < 0) {
/* cannot open logfile? - print to /dev/console then */
int fd = device_open(DEV_CONSOLE, O_WRONLY | O_NOCTTY | O_NONBLOCK);
-@@ -759,6 +848,10 @@
+@@ -723,7 +863,12 @@
+ if (fd != 2)
+ close(fd);
+ return;
+- }
++ }
++ if(syslog_is_buffer_write())
++ {
++ syslog_get_now_time(&(log_file->last_log_time));
++ log_file->will_flush_bytes=0;
++ }
+ #if ENABLE_FEATURE_ROTATE_LOGFILE
+ {
+ struct stat statf;
+@@ -759,6 +904,10 @@
rename(oldFile, newFile);
}
/* newFile == "f.0" now */
@@ -166,7 +231,7 @@
rename(log_file->path, newFile);
}
-@@ -776,15 +869,16 @@
+@@ -776,15 +925,18 @@
fl.l_type = F_UNLCK;
fcntl(log_file->fd, F_SETLKW, &fl);
#endif
@@ -176,29 +241,47 @@
}
/* TODO: what to do on write errors ("disk full")? */
- len = full_write(log_file->fd, msg, len);
-+ len = syslog_write(log_file->fp,log_file->fd,msg,len);
++ syslog_write(log_file->fp,log_file->fd,msg,&len,&(log_file->last_log_time),&(log_file->will_flush_bytes));
+
if (len > 0)
- log_file->size += len;
+- log_file->size += len;
++ {
++ log_file->size += len;
++ }
#else
- full_write(log_file->fd, msg, len);
-+ syslog_write(log_file->fp,log_file->fd,msg,len);
++ syslog_write(log_file->fp,log_file->fd,msg,&len,&(log_file->last_log_time),&(log_file->will_flush_bytes));
#endif
#ifdef SYSLOGD_WRLOCK
-@@ -974,6 +1068,11 @@
+@@ -974,6 +1126,26 @@
}
#endif
+static void syslog_signal_handler(int signum) {
+ fflush_all();
++ if(syslog_is_buffer_write() && g_max_flush_interval > 0)
++ {
++ time(&(G.logFile.last_log_time));
++ G.logFile.will_flush_bytes =0;
++#if ENABLE_FEATURE_SYSLOGD_CFG
++ logRule_t *rule;
++ for (rule = G.log_rules; rule; rule = rule->next) {
++ if(rule->file!=NULL)
++ {
++ time(&(rule->file->last_log_time));
++ rule->file->will_flush_bytes =0;
++ }
++ }
++#endif
++ }
+}
+
+
static void do_syslogd(void) NORETURN;
static void do_syslogd(void)
{
-@@ -997,6 +1096,7 @@
+@@ -997,6 +1169,7 @@
signal(SIGALRM, do_mark);
alarm(G.markInterval);
#endif
@@ -206,15 +289,15 @@
xmove_fd(create_socket(), STDIN_FILENO);
if (option_mask32 & OPT_circularlog)
-@@ -1089,6 +1189,7 @@
+@@ -1089,6 +1262,7 @@
} /* while (!bb_got_signal) */
timestamp_and_log_internal("syslogd exiting");
-+ syslog_close_fp_fd(G.logFile.fp,&(G.logFile.fd));
++ syslog_close_all_fp_fd();
remove_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
ipcsyslog_cleanup();
if (option_mask32 & OPT_kmsg)
-@@ -1097,11 +1198,45 @@
+@@ -1097,11 +1271,45 @@
#undef recvbuf
}
@@ -234,13 +317,14 @@
+ }
+}
+
-+void syslog_get_uci_config(int* lynq_syslog_filesize, int* lynq_syslog_rotate, int* lynq_syslog_buffer_size)
++void syslog_get_uci_config(int* lynq_syslog_filesize, int* lynq_syslog_rotate, int* lynq_syslog_buffer_size,int* lynq_max_flush_interval)
+{
+ if(NULL != lynq_get_value && (NULL != lynq_set_value))
+ {
+ syslog_get_uci_config_item("syslog_flie_size",lynq_syslog_filesize);
+ syslog_get_uci_config_item("syslog_flie_rotate",lynq_syslog_rotate);
-+ syslog_get_uci_config_item("syslog_flie_buffer_size",lynq_syslog_buffer_size);
++ syslog_get_uci_config_item("syslog_flie_buffer_size",lynq_syslog_buffer_size);
++ syslog_get_uci_config_item("syslog_flie_max_flush_interval",lynq_max_flush_interval);
+ }
+}
+
@@ -255,19 +339,18 @@
+ int lynq_syslog_filesize = 80*1024*1024;
+ int lynq_syslog_rotate = 10;
+ const char *lynq_libpath_uci = "/lib64/liblynq-uci.so";
-+ int lynq_syslog_buffer_size = 8*1024;
+
#if ENABLE_FEATURE_REMOTE_LOG
llist_t *remoteAddrList = NULL;
#endif
-@@ -1157,6 +1292,14 @@
+@@ -1157,6 +1365,14 @@
//umask(0); - why??
write_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
+ handle_uci = dlopen(lynq_libpath_uci,RTLD_NOW);
+ lynq_get_value = (int (*)(void))dlsym(handle_uci,"lynq_get_value");
+ lynq_set_value = (int (*)(char *section, char *key, char *value))dlsym(handle_uci,"lynq_set_value");
-+ syslog_get_uci_config(&lynq_syslog_filesize, &lynq_syslog_rotate, &g_syslog_buffer_size);
++ syslog_get_uci_config(&lynq_syslog_filesize, &lynq_syslog_rotate, &g_syslog_buffer_size,&g_max_flush_interval);
+
+ G.logFileSize = lynq_syslog_filesize;
+ G.logFileRotate = lynq_syslog_rotate;
@@ -275,7 +358,7 @@
do_syslogd();
/* return EXIT_SUCCESS; */
}
-@@ -1171,3 +1314,6 @@
+@@ -1171,3 +1387,6 @@
#undef OPTION_STR
#undef OPTION_DECL
#undef OPTION_PARAM
diff --git a/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch b/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
index 968cb53..89b810b 100755
--- a/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
+++ b/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
@@ -22,20 +22,23 @@
#define DEBUG 0
/* MARK code is not very useful, is bloat, and broken:
-@@ -210,6 +217,7 @@
-
- typedef struct logFile_t {
+@@ -212,6 +219,8 @@
const char *path;
-+ FILE * fp;
int fd;
time_t last_log_time;
++ FILE * fp;
++ int will_flush_bytes;
#if ENABLE_FEATURE_ROTATE_LOGFILE
-@@ -677,6 +685,79 @@
+ unsigned size;
+ uint8_t isRegular;
+@@ -677,6 +686,129 @@
static void log_to_kmsg(int pri UNUSED_PARAM, const char *msg UNUSED_PARAM) {}
#endif /* FEATURE_KMSG_SYSLOG */
+int g_syslog_buffer_size=8*1024;
+char g_syslog_buffer[16*1024];
++int g_max_flush_interval=0;
++
+
+int syslog_is_buffer_write()
+{
@@ -51,15 +54,33 @@
+
+void syslog_close_fp_fd(FILE * fp, int* fd)
+{
-+ if(syslog_is_buffer_write() && (*fd) > 1)
-+ {
-+ fclose(fp);
-+ }
-+ else
-+ {
-+ close(*fd);
-+ }
-+ (*fd) = -1;
++ if((*fd) > 1)
++ {
++ if(syslog_is_buffer_write())
++ {
++ fclose(fp);
++ }
++ else
++ {
++ close(*fd);
++ }
++ (*fd) = -1;
++ }
++}
++
++void syslog_close_all_fp_fd()
++{
++#if ENABLE_FEATURE_SYSLOGD_CFG
++ logRule_t *rule;
++
++ for (rule = G.log_rules; rule; rule = rule->next) {
++ if(rule->file!=NULL)
++ {
++ syslog_close_fp_fd(rule->file->fp,&(rule->file->fd));
++ }
++ }
++#endif
++ syslog_close_fp_fd(G.logFile.fp,&(G.logFile.fd));
+}
+
+void syslog_get_fp_fd(const char * path, FILE** fp, int* fd)
@@ -95,22 +116,52 @@
+ }
+}
+
-+int syslog_write(FILE* fp, int fd, char *msg, int len)
++void syslog_get_now_time(time_t* now)
+{
++
++ time(now);
++}
++
++void syslog_write(FILE* fp, int fd, char *msg, int* len, time_t* last_log_time,int* will_flush_bytes)
++{
++ unsigned long interval;
++ time_t now;
+ if(syslog_is_buffer_write() && fd > 1)
+ {
-+ return fwrite(msg,1,len,fp);
++ *len = fwrite(msg,1,*len,fp);
++ if(*len > 0 && g_max_flush_interval>0)
++ {
++ (*will_flush_bytes)+=(*len);
++ syslog_get_now_time(&now);
++ if((*will_flush_bytes) >=g_syslog_buffer_size)
++ {
++ (*will_flush_bytes)=(*will_flush_bytes)%g_syslog_buffer_size;
++
++ *last_log_time=now;
++ }
++ else
++ {
++ interval = difftime(now,*last_log_time);
++
++ if(interval>=g_max_flush_interval)
++ {
++ fflush(fp);
++ *last_log_time=now;
++ (*will_flush_bytes) = 0;
++ }
++ }
++ }
+ }
+ else
+ {
-+ return full_write(fd, msg, len);
++ *len = full_write(fd, msg, *len);
+ }
+}
+
/* Print a message to the log file. */
static void log_locally(time_t now, char *msg, logFile_t *log_file)
{
-@@ -693,14 +774,24 @@
+@@ -693,14 +825,24 @@
* This costs almost nothing since it happens
* _at most_ once a second for each file, and happens
* only when each file is actually written.
@@ -130,7 +181,7 @@
+ }
+ if(log_file->last_log_time != now) {
+ log_file->last_log_time = now;
-+ close(log_file->fd);
++ syslog_close_fp_fd(log_file->fp,&(log_file->fd));
+ goto reopen;
+ }
}
@@ -142,7 +193,7 @@
}
else if (log_file->fd == 1) {
/* We are logging to stdout: do nothing */
-@@ -710,10 +801,8 @@
+@@ -710,10 +852,8 @@
log_file->fd = 1;
/* log_file->isRegular = 0; - already is */
} else {
@@ -155,7 +206,21 @@
if (log_file->fd < 0) {
/* cannot open logfile? - print to /dev/console then */
int fd = device_open(DEV_CONSOLE, O_WRONLY | O_NOCTTY | O_NONBLOCK);
-@@ -759,6 +848,10 @@
+@@ -723,7 +863,12 @@
+ if (fd != 2)
+ close(fd);
+ return;
+- }
++ }
++ if(syslog_is_buffer_write())
++ {
++ syslog_get_now_time(&(log_file->last_log_time));
++ log_file->will_flush_bytes=0;
++ }
+ #if ENABLE_FEATURE_ROTATE_LOGFILE
+ {
+ struct stat statf;
+@@ -759,6 +904,10 @@
rename(oldFile, newFile);
}
/* newFile == "f.0" now */
@@ -166,7 +231,7 @@
rename(log_file->path, newFile);
}
-@@ -776,15 +869,16 @@
+@@ -776,15 +925,18 @@
fl.l_type = F_UNLCK;
fcntl(log_file->fd, F_SETLKW, &fl);
#endif
@@ -176,29 +241,47 @@
}
/* TODO: what to do on write errors ("disk full")? */
- len = full_write(log_file->fd, msg, len);
-+ len = syslog_write(log_file->fp,log_file->fd,msg,len);
++ syslog_write(log_file->fp,log_file->fd,msg,&len,&(log_file->last_log_time),&(log_file->will_flush_bytes));
+
if (len > 0)
- log_file->size += len;
+- log_file->size += len;
++ {
++ log_file->size += len;
++ }
#else
- full_write(log_file->fd, msg, len);
-+ syslog_write(log_file->fp,log_file->fd,msg,len);
++ syslog_write(log_file->fp,log_file->fd,msg,&len,&(log_file->last_log_time),&(log_file->will_flush_bytes));
#endif
#ifdef SYSLOGD_WRLOCK
-@@ -974,6 +1068,11 @@
+@@ -974,6 +1126,26 @@
}
#endif
+static void syslog_signal_handler(int signum) {
+ fflush_all();
++ if(syslog_is_buffer_write() && g_max_flush_interval > 0)
++ {
++ time(&(G.logFile.last_log_time));
++ G.logFile.will_flush_bytes =0;
++#if ENABLE_FEATURE_SYSLOGD_CFG
++ logRule_t *rule;
++ for (rule = G.log_rules; rule; rule = rule->next) {
++ if(rule->file!=NULL)
++ {
++ time(&(rule->file->last_log_time));
++ rule->file->will_flush_bytes =0;
++ }
++ }
++#endif
++ }
+}
+
+
static void do_syslogd(void) NORETURN;
static void do_syslogd(void)
{
-@@ -997,6 +1096,7 @@
+@@ -997,6 +1169,7 @@
signal(SIGALRM, do_mark);
alarm(G.markInterval);
#endif
@@ -206,15 +289,15 @@
xmove_fd(create_socket(), STDIN_FILENO);
if (option_mask32 & OPT_circularlog)
-@@ -1089,6 +1189,7 @@
+@@ -1089,6 +1262,7 @@
} /* while (!bb_got_signal) */
timestamp_and_log_internal("syslogd exiting");
-+ syslog_close_fp_fd(G.logFile.fp,&(G.logFile.fd));
++ syslog_close_all_fp_fd();
remove_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
ipcsyslog_cleanup();
if (option_mask32 & OPT_kmsg)
-@@ -1097,11 +1198,45 @@
+@@ -1097,11 +1271,45 @@
#undef recvbuf
}
@@ -234,13 +317,14 @@
+ }
+}
+
-+void syslog_get_uci_config(int* lynq_syslog_filesize, int* lynq_syslog_rotate, int* lynq_syslog_buffer_size)
++void syslog_get_uci_config(int* lynq_syslog_filesize, int* lynq_syslog_rotate, int* lynq_syslog_buffer_size,int* lynq_max_flush_interval)
+{
+ if(NULL != lynq_get_value && (NULL != lynq_set_value))
+ {
+ syslog_get_uci_config_item("syslog_flie_size",lynq_syslog_filesize);
+ syslog_get_uci_config_item("syslog_flie_rotate",lynq_syslog_rotate);
-+ syslog_get_uci_config_item("syslog_flie_buffer_size",lynq_syslog_buffer_size);
++ syslog_get_uci_config_item("syslog_flie_buffer_size",lynq_syslog_buffer_size);
++ syslog_get_uci_config_item("syslog_flie_max_flush_interval",lynq_max_flush_interval);
+ }
+}
+
@@ -255,19 +339,18 @@
+ int lynq_syslog_filesize = 80*1024*1024;
+ int lynq_syslog_rotate = 10;
+ const char *lynq_libpath_uci = "/lib64/liblynq-uci.so";
-+ int lynq_syslog_buffer_size = 8*1024;
+
#if ENABLE_FEATURE_REMOTE_LOG
llist_t *remoteAddrList = NULL;
#endif
-@@ -1157,6 +1292,14 @@
+@@ -1157,6 +1365,14 @@
//umask(0); - why??
write_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
+ handle_uci = dlopen(lynq_libpath_uci,RTLD_NOW);
+ lynq_get_value = (int (*)(void))dlsym(handle_uci,"lynq_get_value");
+ lynq_set_value = (int (*)(char *section, char *key, char *value))dlsym(handle_uci,"lynq_set_value");
-+ syslog_get_uci_config(&lynq_syslog_filesize, &lynq_syslog_rotate, &g_syslog_buffer_size);
++ syslog_get_uci_config(&lynq_syslog_filesize, &lynq_syslog_rotate, &g_syslog_buffer_size,&g_max_flush_interval);
+
+ G.logFileSize = lynq_syslog_filesize;
+ G.logFileRotate = lynq_syslog_rotate;
@@ -275,7 +358,7 @@
do_syslogd();
/* return EXIT_SUCCESS; */
}
-@@ -1171,3 +1314,6 @@
+@@ -1171,3 +1387,6 @@
#undef OPTION_STR
#undef OPTION_DECL
#undef OPTION_PARAM
diff --git a/meta/meta-mediatek-mt2735/conf/machine/auto2735evb-ivt-base.conf b/meta/meta-mediatek-mt2735/conf/machine/auto2735evb-ivt-base.conf
index bbb4f57..27311ec 100755
--- a/meta/meta-mediatek-mt2735/conf/machine/auto2735evb-ivt-base.conf
+++ b/meta/meta-mediatek-mt2735/conf/machine/auto2735evb-ivt-base.conf
@@ -148,7 +148,7 @@
SCATTER_PROJECT = "auto2735-ivt-mcp_nand"
# Modem
-MODEM_PROJECT = "MT2735_V02.MP1_MR3_NLWG_P7_20231018"
+MODEM_PROJECT = "MT2735_V02.MP1_MR3_NLWG_T26_20231108"
MODEM_INT = "${TOPDIR}/../prebuilt/modem/mt2735_internal"
MODEM_CUSTOM = "${TOPDIR}/../prebuilt/modem/mt2735"
MODEM_INT_EXIST = "${@ os.path.exists('${MODEM_INT}')}"
diff --git a/meta/meta-mediatek-mt2735/recipes-kernel/modules/files/wg870_drv_insmod.sh b/meta/meta-mediatek-mt2735/recipes-kernel/modules/files/wg870_drv_insmod.sh
index edb3f18..2515181 100755
--- a/meta/meta-mediatek-mt2735/recipes-kernel/modules/files/wg870_drv_insmod.sh
+++ b/meta/meta-mediatek-mt2735/recipes-kernel/modules/files/wg870_drv_insmod.sh
@@ -18,7 +18,14 @@
nvram_file=/etc/wg870/cyw989570fcref_rev1.58.txt
fi
-insmod /lib/modules/4.19.98/kernel/drivers/net/wireless/bcmdhd/bcmdhd.ko firmware_path=/etc/wg870/config_pcie.trxse nvram_path=$nvram_file clm_path=/etc/wg870/89570_mobiltek_ivi_v4.clm_blob || exit 1
+DebugFwTest="/data/DebugFw.trxse"
+if [ -f $DebugFwTest ]; then
+ echo insmod wg870 debug DebugFw.trxse
+ insmod /data/bcmdhd.ko firmware_path=$DebugFwTest nvram_path=$nvram_file clm_path=/etc/wg870/89570_mobiltek_ivi_v4.clm_blob || exit 1
+ else
+ echo insmod wg870 driver
+ insmod /lib/modules/4.19.98/kernel/drivers/net/wireless/bcmdhd/bcmdhd.ko firmware_path=/etc/wg870/config_pcie.trxse nvram_path=$nvram_file clm_path=/etc/wg870/89570_mobiltek_ivi_v4.clm_blob || exit 1
+fi
wpa_supplicant -g/var/run/wpa_wlan0_cmd -dd -t -u &
diff --git a/meta/meta-mediatek-mt2735/recipes-lynq/suspend-service/files/autosuspend_wakeup_count.c b/meta/meta-mediatek-mt2735/recipes-lynq/suspend-service/files/autosuspend_wakeup_count.c
index fd8e9dd..25e060a 100755
--- a/meta/meta-mediatek-mt2735/recipes-lynq/suspend-service/files/autosuspend_wakeup_count.c
+++ b/meta/meta-mediatek-mt2735/recipes-lynq/suspend-service/files/autosuspend_wakeup_count.c
@@ -45,6 +45,10 @@
#define BASE_SLEEP_TIME 100000
#define POSSIBLE_MAX_SLEEP_TIME 60000000
+#define LOG_UCI_MODULE "lynq_autosuspend"
+#define LOG_UCI_FILE "lynq_uci"
+
+
static int state_fd;
static int wakeup_count_fd;
static int suspend_ctrl_fd;
@@ -73,7 +77,6 @@
static long end_time;
-
# define TEMP_FAILURE_RETRY(expression) \
(__extension__ \
({ long int __result; \
@@ -233,17 +236,17 @@
int ret = 0;
int i;
int flag = -1;
-
+ char tmp[20];
system("echo \"Sys standby mode\" >/dev/console");
- // sleep(1);
+
+ lynq_get_value(LOG_UCI_FILE, LOG_UCI_MODULE, "debug", tmp);
+ adb_debug_mode=atoi(tmp);
+
if(adb_debug_mode == 2)
{
system("echo 11 | emdlogger_ctrl");
}
- else
- {
- system("echo 7 | emdlogger_ctrl");
- }
+
if (lynq_screen(0) != 0) //notify ril for screen off
{
ALOGI("lynq_screen off fail\n");
@@ -325,10 +328,6 @@
sleep(1);
system("echo 6 | emdlogger_ctrl");//start modem log SD mode
}
- else
- {
- system("echo 6 | emdlogger_ctrl");//start modem log SD mode
- }
usleep(200000);
ALOGI("Log on with failure\n");
@@ -346,10 +345,7 @@
sleep(1);
system("echo 6 | emdlogger_ctrl");//start modem log SD mode
}
- else
- {
- system("echo 6 | emdlogger_ctrl");//start modem log SD mode
- }
+
usleep(300000); //delay 2s for ril handling screen on,at least 70ms
diff --git a/meta/meta-mediatek-mt2735/recipes-telephony/mdlogger/files/mdlog1.config b/meta/meta-mediatek-mt2735/recipes-telephony/mdlogger/files/mdlog1.config
new file mode 100755
index 0000000..593f470
--- /dev/null
+++ b/meta/meta-mediatek-mt2735/recipes-telephony/mdlogger/files/mdlog1.config
Binary files differ
diff --git a/meta/meta-mediatek-mt2735/recipes-telephony/mdlogger/mdlogger_1.0.0.bb b/meta/meta-mediatek-mt2735/recipes-telephony/mdlogger/mdlogger_1.0.0.bb
old mode 100644
new mode 100755
index 52cb262..e33c107
--- a/meta/meta-mediatek-mt2735/recipes-telephony/mdlogger/mdlogger_1.0.0.bb
+++ b/meta/meta-mediatek-mt2735/recipes-telephony/mdlogger/mdlogger_1.0.0.bb
@@ -5,6 +5,7 @@
LIC_FILES_CHKSUM = "file://LICENSE;md5=e1696b147d49d491bcb4da1a57173fff"
FILESEXTRAPATHS_append := ":${THISDIR}/files"
SRC_URI = "file://mdlogger.config"
+SRC_URI += "file://mdlog1.config"
DEPENDS += "uci mipc libccci"
@@ -17,6 +18,7 @@
FILES_${PN} += "/usr/lib/libmdloggerrecycle.a /usr/bin/emdlogger1 /usr/bin/emdlogger_ctrl"
FILES_${PN} += "/etc/config/mdlog"
+FILES_${PN} += "/data/mdlog/mdlog1_config"
INSANE_SKIP_${PN} = "ldflags"
INSANE_SKIP_${PN} += "installed-vs-shipped"
@@ -32,6 +34,8 @@
do_install() {
install -d ${D}/usr/lib/
install -d ${D}/usr/bin/
+ install -d ${D}/data/mdlog/
+ install -m 0660 ${WORKDIR}/mdlog1.config ${D}/data/mdlog/mdlog1_config
if [ -d "${WORKONSRC}" ]; then
install -m 0755 ${S}src/emdlogger/libmdloggerrecycle.a ${D}/usr/lib/
install -m 0755 ${S}src/emdlogger/emdlogger1 ${D}/usr/bin/
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MCF_OTA_FILES.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MCF_OTA_FILES.tar.gz
deleted file mode 100755
index da0726d..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MCF_OTA_FILES.tar.gz
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.MCF.ODB.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.MCF.ODB.tar.gz
deleted file mode 100755
index ebf1aea..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.MCF.ODB.tar.gz
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.XML.GZ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.XML.GZ
deleted file mode 100755
index 71b27ee..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.XML.GZ
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB
deleted file mode 100755
index dcf1751..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB
deleted file mode 100755
index e26aa3c..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/modem.img b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/modem.img
deleted file mode 100755
index 59c7c6f..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/modem.img
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MCF_OTA_FILES.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MCF_OTA_FILES.tar.gz
new file mode 100755
index 0000000..9180112
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MCF_OTA_FILES.tar.gz
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.MCF.ODB.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.MCF.ODB.tar.gz
new file mode 100755
index 0000000..712dbd0
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.MCF.ODB.tar.gz
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.XML.GZ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.XML.GZ
new file mode 100755
index 0000000..ed65d12
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.XML.GZ
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB
new file mode 100755
index 0000000..a6bfdb6
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB
new file mode 100755
index 0000000..d64aea6
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_1_Moderate.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_1_Moderate.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_1_Moderate.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_1_Moderate.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_2_Standard.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_2_Standard.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_2_Standard.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_2_Standard.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_3_Slim.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_3_Slim.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_3_Slim.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_3_Slim.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_4_UltraSlim.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_4_UltraSlim.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_4_UltraSlim.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_4_UltraSlim.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_LowPowerMonitor.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_LowPowerMonitor.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_LowPowerMonitor.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_LowPowerMonitor.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_PLS_PS_ONLY.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_PLS_PS_ONLY.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_PLS_PS_ONLY.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_PLS_PS_ONLY.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/dsp.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/dsp.bin
similarity index 99%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/dsp.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/dsp.bin
index 054e54d..0ed121a 100755
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/dsp.bin
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/dsp.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_69.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_69.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_69.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_69.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/219_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/219_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/219_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/219_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/219_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/219_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/219_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/219_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/220_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/220_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/220_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/220_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/228_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/228_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/228_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/228_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/228_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/228_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/228_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/228_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_32.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_32.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_32.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_32.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_33.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_33.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_33.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_33.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_86.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_86.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_86.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_86.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/235_91.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/235_91.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/235_91.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/235_91.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/235_94.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/235_94.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/235_94.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/235_94.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_21.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_21.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_21.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_21.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_91.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_91.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_91.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_91.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/246_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/246_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/246_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/246_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/248_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/248_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/248_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/248_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/259_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/259_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/259_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/259_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_98.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_98.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_98.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_98.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/272_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/272_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/272_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/272_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/276_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/276_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/276_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/276_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/284_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/284_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/284_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/284_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/284_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/284_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/284_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/284_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/293_41.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/293_41.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/293_41.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/293_41.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/294_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/294_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/294_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/294_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/294_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/294_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/294_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/294_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/295_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/295_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/295_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/295_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/297_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/297_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/297_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/297_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_221.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_221.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_221.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_221.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_370.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_370.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_370.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_370.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_610.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_610.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_610.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_610.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_630.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_630.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_630.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_630.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_640.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_640.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_640.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_640.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_660.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_660.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_660.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_660.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_690.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_690.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_690.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_690.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_720.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_720.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_720.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_720.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_070.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_070.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_070.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_070.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_090.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_090.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_090.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_090.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_120.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_120.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_120.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_120.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_150.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_150.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_150.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_150.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_160.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_160.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_160.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_160.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_170.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_170.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_170.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_170.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_200.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_200.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_200.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_200.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_210.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_210.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_210.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_210.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_230.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_230.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_230.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_230.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_240.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_240.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_240.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_240.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_250.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_250.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_250.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_250.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_260.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_260.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_260.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_260.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_270.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_270.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_270.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_270.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_280.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_280.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_280.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_280.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_300.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_300.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_300.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_300.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_310.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_310.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_310.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_310.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_380.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_380.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_380.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_380.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_410.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_410.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_410.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_410.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_530.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_530.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_530.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_530.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_560.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_560.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_560.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_560.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_590.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_590.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_590.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_590.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_640.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_640.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_640.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_640.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_660.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_660.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_660.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_660.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_680.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_680.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_680.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_680.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_800.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_800.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_800.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_800.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_950.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_950.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_950.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_950.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_180.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_180.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_180.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_180.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_221.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_221.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_221.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_221.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_222.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_222.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_222.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_222.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_223.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_223.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_223.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_223.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_224.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_224.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_224.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_224.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_225.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_225.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_225.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_225.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_226.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_226.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_226.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_226.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_227.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_227.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_227.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_227.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_228.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_228.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_228.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_228.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_229.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_229.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_229.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_229.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_270.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_270.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_270.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_270.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_390.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_390.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_390.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_390.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_480.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_480.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_480.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_480.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_580.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_580.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_580.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_580.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_581.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_581.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_581.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_581.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_582.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_582.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_582.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_582.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_583.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_583.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_583.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_583.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_584.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_584.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_584.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_584.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_585.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_585.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_585.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_585.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_586.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_586.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_586.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_586.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_587.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_587.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_587.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_587.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_588.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_588.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_588.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_588.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_589.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_589.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_589.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_589.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_870.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_870.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_870.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_870.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_530.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_530.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_530.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_530.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_670.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_670.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_670.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_670.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_770.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_770.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_770.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_770.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_100.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_100.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_100.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_100.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_110.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_110.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_110.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_110.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_120.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_120.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_120.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_120.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_130.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_130.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_130.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_130.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_140.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_140.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_140.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_140.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/330_110.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/330_110.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/330_110.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/330_110.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_020.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_020.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_020.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_020.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_050.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_050.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_050.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_050.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_090.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_090.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_090.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_090.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_140.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_140.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_140.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_140.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/370_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/370_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/370_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/370_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_19.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_19.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_19.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_19.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_22.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_22.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_22.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_22.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_24.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_24.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_24.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_24.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_27.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_27.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_27.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_27.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_38.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_38.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_38.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_38.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_40.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_40.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_40.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_40.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_43.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_43.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_43.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_43.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_44.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_44.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_44.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_44.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_45.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_45.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_45.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_45.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_46.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_46.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_46.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_46.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_49.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_49.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_49.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_49.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_53.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_53.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_53.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_53.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_55.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_55.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_55.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_55.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_56.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_56.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_56.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_56.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_57.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_57.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_57.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_57.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_58.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_58.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_58.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_58.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_59.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_59.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_59.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_59.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_60.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_60.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_60.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_60.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_62.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_62.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_62.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_62.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_64.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_64.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_64.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_64.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_71.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_71.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_71.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_71.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_72.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_72.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_72.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_72.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_73.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_73.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_73.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_73.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_74.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_74.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_74.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_74.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_75.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_75.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_75.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_75.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_76.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_76.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_76.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_76.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_78.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_78.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_78.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_78.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_79.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_79.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_79.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_79.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_81.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_81.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_81.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_81.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_82.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_82.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_82.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_82.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_84.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_84.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_84.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_84.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_86.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_86.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_86.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_86.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_87.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_87.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_87.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_87.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_90.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_90.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_90.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_90.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_92.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_92.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_92.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_92.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_93.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_93.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_93.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_93.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_94.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_94.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_94.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_94.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_95.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_95.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_95.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_95.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_96.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_96.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_96.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_96.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_97.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_97.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_97.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_97.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_98.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_98.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_98.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_98.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_035.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_035.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_035.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_035.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_036.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_036.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_036.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_036.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_037.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_037.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_037.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_037.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_038.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_038.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_038.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_038.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_039.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_039.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_039.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_039.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_044.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_044.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_044.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_044.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_52.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_52.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_52.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_52.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_53.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_53.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_53.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_53.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_55.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_55.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_55.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_55.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_56.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_56.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_56.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_56.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_67.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_67.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_67.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_67.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_750.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_750.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_750.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_750.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_751.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_751.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_751.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_751.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_752.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_752.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_752.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_752.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_753.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_753.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_753.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_753.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_754.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_754.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_754.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_754.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_755.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_755.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_755.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_755.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_756.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_756.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_756.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_756.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_799.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_799.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_799.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_799.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_818.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_818.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_818.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_818.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_819.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_819.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_819.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_819.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_840.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_840.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_840.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_840.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_845.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_845.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_845.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_845.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_846.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_846.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_846.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_846.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_847.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_847.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_847.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_847.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_848.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_848.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_848.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_848.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_849.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_849.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_849.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_849.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_850.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_850.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_850.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_850.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_851.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_851.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_851.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_851.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_852.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_852.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_852.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_852.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_853.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_853.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_853.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_853.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_854.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_854.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_854.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_854.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_855.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_855.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_855.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_855.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_856.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_856.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_856.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_856.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_857.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_857.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_857.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_857.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_858.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_858.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_858.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_858.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_859.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_859.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_859.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_859.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_860.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_860.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_860.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_860.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_861.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_861.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_861.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_861.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_862.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_862.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_862.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_862.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_863.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_863.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_863.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_863.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_864.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_864.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_864.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_864.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_865.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_865.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_865.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_865.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_866.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_866.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_866.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_866.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_867.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_867.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_867.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_867.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_868.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_868.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_868.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_868.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_869.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_869.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_869.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_869.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_870.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_870.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_870.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_870.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_871.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_871.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_871.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_871.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_872.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_872.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_872.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_872.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_873.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_873.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_873.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_873.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_874.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_874.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_874.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_874.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_876.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_876.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_876.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_876.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_879.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_879.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_879.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_879.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_908.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_908.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_908.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_908.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_909.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_909.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_909.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_909.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_910.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_910.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_910.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_910.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_911.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_911.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_911.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_911.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_927.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_927.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_927.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_927.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_929.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_929.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_929.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_929.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/410_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/410_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/410_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/410_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/410_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/410_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/410_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/410_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/413_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/413_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/413_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/413_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/413_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/413_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/413_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/413_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/414_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/414_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/414_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/414_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/414_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/414_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/414_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/414_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/418_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/418_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/418_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/418_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/420_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/420_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/420_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/420_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/420_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/420_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/420_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/420_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/424_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/424_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/424_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/424_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/424_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/424_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/424_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/424_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/426_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/426_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/426_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/426_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/426_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/426_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/426_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/426_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/427_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/427_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/427_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/427_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/452_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/452_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/452_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/452_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/452_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/452_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/452_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/452_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_17.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_17.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_17.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_17.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_18.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_18.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_18.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_18.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_19.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_19.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_19.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_19.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_29.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_29.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_29.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_29.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_92.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_92.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_92.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_92.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_93.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_93.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_93.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_93.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_97.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_97.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_97.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_97.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_152.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_152.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_152.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_152.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_153.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_153.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_153.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_153.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_18.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_18.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_18.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_18.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_39.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_39.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_39.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_39.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_71.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_71.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_71.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_71.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_72.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_72.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_72.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_72.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_90.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_90.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_90.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_90.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_28.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_28.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_28.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_28.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/515_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/515_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/515_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/515_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/515_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/515_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/515_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/515_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_001.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_001.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_001.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_001.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_099.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_099.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_099.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_099.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_24.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_24.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_24.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_24.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/621_27.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/621_27.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/621_27.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/621_27.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/621_40.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/621_40.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/621_40.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/621_40.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/639_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/639_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/639_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/639_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/639_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/639_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/639_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/639_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/640_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/640_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/640_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/640_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/641_33.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/641_33.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/641_33.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/641_33.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/645_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/645_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/645_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/645_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/653_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/653_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/653_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/653_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/706_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/706_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/706_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/706_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/706_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/706_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/706_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/706_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/708_001.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/708_001.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/708_001.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/708_001.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_21.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_21.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_21.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_21.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_300.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_300.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_300.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_300.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/712_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/712_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/712_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/712_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/712_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/712_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/712_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/712_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_020.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_020.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_020.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_020.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_17.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_17.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_17.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_17.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_310.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_310.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_310.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_310.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_23.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_23.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_23.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_23.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_23.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_23.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_23.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_23.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_101.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_101.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_101.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_101.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_103.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_103.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_103.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_103.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_111.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_111.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_111.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_111.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_123.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_123.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_123.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_123.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_130.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_130.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_130.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_130.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/734_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/734_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/734_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/734_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/740_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/740_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/740_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/740_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/744_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/744_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/744_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/744_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/748_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/748_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/748_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/748_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/748_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/748_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/748_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/748_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GlobalSign_root_CA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Root-R3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Root-R3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Root-R3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Root-R3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Root_CA_1003.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Root_CA_1003.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Root_CA_1003.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Root_CA_1003.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignClass3G4.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignClass3G4.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignClass3G4.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignClass3G4.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignClass3G5.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignClass3G5.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignClass3G5.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignClass3G5.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/thawte.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/thawte.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/thawte.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/thawte.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/AAACertificateServices.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/AAACertificateServices.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/AAACertificateServices.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/AAACertificateServices.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumCA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumTrustedNetworkCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertGlobalRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertGlobalRootG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertGlobalRootG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertGlobalRootG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertGlobalRootG2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/31.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/31.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/31.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/31.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/59.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/59.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/59.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/59.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/62.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/62.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/62.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/62.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/68.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/68.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/68.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/68.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/74.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/74.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/74.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/74.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/76.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/76.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/76.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/76.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/78.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/78.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/78.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/78.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/80.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/80.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/80.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/80.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/82.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/82.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/82.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/82.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/83.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/83.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/83.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/83.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/84.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/84.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/84.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/84.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/86.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/86.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/86.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/86.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/88.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/88.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/88.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/88.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/90.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/90.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/90.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/90.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/93.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/93.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/93.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/93.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/94.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/94.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/94.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/94.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/95.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/95.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/95.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/95.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/97.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/97.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/97.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/97.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/11.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/11.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/11.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/11.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/56.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/56.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/56.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/56.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/58.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/58.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/58.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/58.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/62.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/62.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/62.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/62.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/63.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/63.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/63.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/63.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/64.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/64.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/64.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/64.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/65.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/65.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/65.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/65.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/68.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/68.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/68.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/68.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/74.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/74.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/74.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/74.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/76.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/76.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/76.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/76.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/00.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/00.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/00.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/00.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/01.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/01.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/01.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/01.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/17.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/17.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/17.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/17.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/27.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/27.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/27.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/27.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/29.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/29.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/29.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/29.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/56.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/56.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/56.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/56.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/39.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/39.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/39.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/39.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/41.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/41.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/41.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/41.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/43.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/43.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/43.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/43.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/49.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/49.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/49.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/49.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/03.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/03.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/03.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/03.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/07.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/07.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/07.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/07.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/09.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/09.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/09.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/09.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/11.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/11.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/11.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/11.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/17.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/17.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/17.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/17.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/23.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/23.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/23.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/23.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/27.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/27.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/27.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/27.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/29.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/29.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/29.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/29.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/31.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/31.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/31.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/31.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/33.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/33.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/33.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/33.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/35.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/35.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/35.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/35.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/39.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/39.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/39.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/39.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/41.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/41.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/41.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/41.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/43.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/43.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/43.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/43.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/45.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/45.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/45.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/45.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/49.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/49.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/49.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/49.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/51.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/51.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/51.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/51.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/53.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/53.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/53.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/53.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/58.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/58.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/58.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/58.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/59.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/59.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/59.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/59.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/9/01.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/9/01.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/9/01.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/9/01.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/modem.img b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/modem.img
new file mode 100755
index 0000000..058fc7d
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/modem.img
Binary files differ
diff --git a/src/bsp/hsm/src/application/bootloader/mt2735/bootloader.c b/src/bsp/hsm/src/application/bootloader/mt2735/bootloader.c
index aaee340..da1ebbe 100644
--- a/src/bsp/hsm/src/application/bootloader/mt2735/bootloader.c
+++ b/src/bsp/hsm/src/application/bootloader/mt2735/bootloader.c
@@ -320,6 +320,8 @@
uint32_t i = 0;
int32_t bld_loaded = 0;
int32_t ret = BL_OK;
+ int slot = 0; //jb.qi modify for ab_rollback start on 20231117
+ int ret_mark; //jb.qi modify for ab_rollback start on 20231117
struct bdev *dev = NULL;
uint8_t label[MAX_PART_NAME_LEN] = "bl2";
@@ -370,6 +372,12 @@
break;
} else {
LOGE("load img a fail\r\n");
+ /*jb.qi modify for ab_rollback start on 20231117*/
+ slot = get_current_slot();
+ LOGD("get_current_slot is %d\r\n", slot);
+ ret_mark = mark_slot_unsuccessful(slot);
+ LOGD("mark_slot_unsuccessful ret is %d\r\n", ret_mark);
+ /*jb.qi modify for ab_rollback end on 20231117*/
bl_flash_partition_deinit(boot_device_list[i], device_name);
}
}
diff --git a/src/bsp/hsm/src/middleware/bootloader/bootctrl/bootctrl_api.c b/src/bsp/hsm/src/middleware/bootloader/bootctrl/bootctrl_api.c
index 68d8dc6..c66daf7 100644
--- a/src/bsp/hsm/src/middleware/bootloader/bootctrl/bootctrl_api.c
+++ b/src/bsp/hsm/src/middleware/bootloader/bootctrl/bootctrl_api.c
@@ -403,6 +403,33 @@
return slotp->bl_ver;
}
+/*jb.qi modify for ab_rollback start on 20231117*/
+int mark_slot_unsuccessful(int slot)
+{
+ int ret = -1;
+ AvbABSlotData *slotp;
+ AvbABData metadata;
+
+ if (slot < 0 || slot >= SLOT_COUNT) {
+ return -1;
+ }
+
+ ret = read_write_partition_info(&metadata, READ_PARTITION);
+ if (ret < 0) {
+ return -1;
+ }
+
+ slotp = &metadata.slots[slot];
+ slotp->successful_boot = 0;
+
+ ret = read_write_partition_info(&metadata, WRITE_PARTITION);
+ if (ret < 0) {
+ return -1;
+ }
+
+ return 0;
+}
+/*jb.qi modify for ab_rollback end on 20231117*/
int check_ab_boot(void) {
int slot;
diff --git a/src/bsp/hsm/src/middleware/bootloader/include/bootctrl.h b/src/bsp/hsm/src/middleware/bootloader/include/bootctrl.h
index 7ee3f7e..c3b3814 100644
--- a/src/bsp/hsm/src/middleware/bootloader/include/bootctrl.h
+++ b/src/bsp/hsm/src/middleware/bootloader/include/bootctrl.h
@@ -183,6 +183,14 @@
*/
int get_bl_ver_data(int slot);
+/*jb.qi modify for ab_rollback start on 20231117*/
+/**
+* mark_slot_unsuccessful() mark the slot unsuccessful.
+* Returns mark success or fail.
+*/
+int mark_slot_unsuccessful(int slot);
+/*jb.qi modify for ab_rollback end on 20231117*/
+
/**
* check_ab_boot() - check ab boot status
*
diff --git a/src/bsp/lk/lib/aee/mrdump_setup.c b/src/bsp/lk/lib/aee/mrdump_setup.c
old mode 100644
new mode 100755
index 59088b3..649812a
--- a/src/bsp/lk/lib/aee/mrdump_setup.c
+++ b/src/bsp/lk/lib/aee/mrdump_setup.c
@@ -152,7 +152,8 @@
{
unsigned int g_rgu_status = 0;
- if (wdt_status & MTK_WDT_STATUS_HWWDT_RST) {
+ if ((wdt_status & MTK_WDT_STATUS_HWWDT_RST) &&
+ !(wdt_status & MTK_WDT_STATUS_SWWDT_RST)) {
/* For E1 bug, that SW reset value is 0xC000, we using "==" to check */
/* Time out reboot always by pass power key */
g_rgu_status = RE_BOOT_BY_WDT_HW;
@@ -182,6 +183,12 @@
if (wdt_status & MTK_WDT_STATUS_SECURITY_RST) {
g_rgu_status |= RE_BOOT_BY_SECURITY;
}
+ if (wdt_status & MTK_WDT_STATUS_SYSRST_RST)
+ g_rgu_status |= RE_BOOT_BY_SYSRST;
+ if (wdt_status & MTK_WDT_STATUS_SSPM_RST)
+ g_rgu_status |= RE_BOOT_BY_SSPM_RST;
+ if (wdt_status & MTK_WDT_STATUS_MCUPM_RST)
+ g_rgu_status |= RE_BOOT_BY_MCUPM_RST;
#ifdef MTK_PMIC_FULL_RESET
if (mtk_wdt_is_pmic_full_reset())
diff --git a/src/bsp/lk/platform/mt2735/drivers/atf/atf_ramdump.c b/src/bsp/lk/platform/mt2735/drivers/atf/atf_ramdump.c
new file mode 100755
index 0000000..6e8de53
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/atf/atf_ramdump.c
@@ -0,0 +1,133 @@
+// SPDX-License-Identifier: MIT
+
+/*
+ * Copyright (c) 2021 MediaTek Inc. All Rights Reserved.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#include <arch/ops.h>
+#include <debug.h>
+#include <err.h>
+#include <kernel/vm.h>
+#include <platform/mboot_expdb.h>
+#include <reg.h>
+//#include <platform/smc.h>
+
+#define ATF_CRASH_MAGIC_NO 0xdead1abf
+#define ATF_LAST_LOG_MAGIC_NO 0x41544641
+#define ATF_DUMP_DONE_MAGIC_NO 0xd07ed07e
+
+#define MAX_ATF_LOG_SIZE 0x40000
+#define ATF_SMC_UNK 0xffffffff
+#define MTK_SIP_LK_DUMP_ATF_LOG_INFO 0x8200010A
+
+static u64 atf_log_buf_addr = 0x61000000;
+static u64 atf_log_buf_size = MAX_ATF_LOG_SIZE;
+static u64 atf_crash_flag_addr = 0;
+static void *atf_log_buf_addr_va;
+static void *atf_crash_flag_addr_va;
+
+struct __smccc_res {
+ ulong a0;
+ ulong a1;
+ ulong a2;
+ ulong a3;
+};
+
+extern void __smc_pipe(size_t smc_id, ulong arg0, ulong arg1, ulong arg2, ulong arg3,
+ struct __smccc_res *res);
+
+#if 1
+void atf_log_init(void)
+{
+ uint32_t smc_id = 0;
+ //uint32_t op_id = 0;
+ struct __smccc_res res;
+ int ret;
+
+ /* reserve ramdump memory and pass to ATF*/
+
+ /* get log buffer and footprint buffer from ATF */
+ smc_id = MTK_SIP_LK_DUMP_ATF_LOG_INFO;
+ //__smc_conduit(smc_id, 0, 0, 0, 0, 0, 0, 0, &res);
+ __smc_pipe(smc_id, 0, 0, 0, 0, &res);
+ atf_log_buf_addr = res.a0;
+ atf_log_buf_size = res.a1;
+ atf_crash_flag_addr = res.a2;
+ dprintf(CRITICAL, "ATF: log_buf_addr = 0x%llx, size = 0x%llx, crash_flag_addr = 0x%llx\n",
+ atf_log_buf_addr, atf_log_buf_size, atf_crash_flag_addr);
+
+ if ((atf_log_buf_addr >> 32) == ATF_SMC_UNK) {
+ dprintf(CRITICAL, "LK Dump: ATF LOG INIT not supported\n");
+ } else {
+ ret = vmm_alloc_physical(vmm_get_kernel_aspace(),
+ "vm-atf-crashflag",
+ PAGE_SIZE,
+ &atf_crash_flag_addr_va,
+ PAGE_SIZE_SHIFT,
+ ROUNDDOWN((paddr_t)atf_crash_flag_addr, PAGE_SIZE),
+ 0,
+ ARCH_MMU_FLAG_CACHED);
+
+ if (ret != NO_ERROR)
+ dprintf(CRITICAL, "ATF: vmm_alloc_physical failed\n");
+
+ /* round down */
+ atf_crash_flag_addr_va += (atf_crash_flag_addr & (PAGE_SIZE - 1));
+
+ /* backward compatible for legacy chips */
+ if (readl(atf_crash_flag_addr_va) == ATF_CRASH_MAGIC_NO)
+ dprintf(CRITICAL, "ATF: CRASH BUFF\n");
+ else if (readl(atf_crash_flag_addr_va) == ATF_LAST_LOG_MAGIC_NO)
+ dprintf(CRITICAL, "ATF: LAST BUFF\n");
+ else
+ dprintf(CRITICAL, "ATF: RAW BUFF\n");
+ }
+}
+#endif
+
+static void save_atf_log(AEE_DUMP_CALLBACK dev_write)
+{
+ uint32_t datasize = 0;
+ int ret;
+
+ atf_log_init();
+ /* ATF log is located in DRAM, we must allocate it first */
+ ret = vmm_alloc_physical(vmm_get_kernel_aspace(),
+ "vm-atf-log",
+ ROUNDUP(atf_log_buf_size, PAGE_SIZE),
+ &atf_log_buf_addr_va,
+ PAGE_SIZE_SHIFT,
+ ROUNDDOWN((paddr_t)atf_log_buf_addr, PAGE_SIZE),
+ 0,
+ ARCH_MMU_FLAG_CACHED);
+
+ if (ret != NO_ERROR)
+ dprintf(CRITICAL, "ATF: vmm_alloc_physical failed\n");
+
+ datasize = dev_write((uint64_t)atf_log_buf_addr_va, atf_log_buf_size);
+
+#if 1
+ /* Clear ATF crash flag */
+ writel(ATF_DUMP_DONE_MAGIC_NO, atf_crash_flag_addr_va);
+ arch_clean_cache_range(ROUNDDOWN((paddr_t)atf_crash_flag_addr_va, PAGE_SIZE), PAGE_SIZE);
+
+ if (!datasize)
+ dprintf(CRITICAL, "ATF: Log dump FAIL\n");
+ else
+ dprintf(INFO, "ATF: dev_w:%u, log_buf pa:0x%llx va:0x%p, size:%llx, crash_flag:0x%x\n",
+ datasize, atf_log_buf_addr, atf_log_buf_addr_va,
+ atf_log_buf_size, readl(atf_crash_flag_addr_va));
+#else
+ if (!datasize)
+ dprintf(CRITICAL, "ATF: Log dump FAIL\n");
+ else
+ dprintf(INFO, "ATF: dev_w:%u, log_buf pa:0x%llx va:0x%p, size:%llx\n",
+ datasize, atf_log_buf_addr, atf_log_buf_addr_va,
+ atf_log_buf_size);
+#endif
+}
+AEE_EXPDB_INIT_HOOK(SYS_ATF_LOG, MAX_ATF_LOG_SIZE, save_atf_log);
diff --git a/src/bsp/lk/platform/mt2735/drivers/rules.mk b/src/bsp/lk/platform/mt2735/drivers/rules.mk
old mode 100644
new mode 100755
index 46708a5..74703cc
--- a/src/bsp/lk/platform/mt2735/drivers/rules.mk
+++ b/src/bsp/lk/platform/mt2735/drivers/rules.mk
@@ -118,7 +118,12 @@
MODULE_SRCS += \
$(LOCAL_DIR)/dpm/dpm_aee_dump.c \
$(LOCAL_DIR)/spm/spm_aee_dump.c \
- $(LOCAL_DIR)/sspm/sspm_expdb.c
+ $(LOCAL_DIR)/sspm/sspm_expdb.c \
+ $(LOCAL_DIR)/sda/lastbus.c \
+ $(LOCAL_DIR)/sda/lastpc.c \
+ $(LOCAL_DIR)/sda/plat_debug.c \
+ $(LOCAL_DIR)/sda/tracker.c \
+ $(LOCAL_DIR)/atf/atf_ramdump.c
endif
MODULE_DEPS += $(LOCAL_DIR)/auxadc
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/init.c b/src/bsp/lk/platform/mt2735/drivers/sda/init.c
new file mode 100755
index 0000000..7304877
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/init.c
@@ -0,0 +1,30 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#include <arch/ops.h>
+#include <reg.h>
+
+// last_pc init
+#define CPC_FLOW_CTRL_CFG (0x0C53A814)
+#define RESET_ON_KEEP_EN (1 << 17)
+void lastpc_init(void)
+{
+ unsigned int ctrl = readl(CPC_FLOW_CTRL_CFG);
+ writel(CPC_FLOW_CTRL_CFG, (ctrl|RESET_ON_KEEP_EN));
+ DSB;
+}
+
+// systracker init
+//#define SYSTRACKER_CTRL (0xFFFFFFF000000000 + 0x100012FC)
+#define SYSTRACKER_CTRL (0x100012FC)
+
+void systracker_init(void)
+{
+ writel(SYSTRACKER_CTRL, 0x00006007);
+}
\ No newline at end of file
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/lastbus.c b/src/bsp/lk/platform/mt2735/drivers/sda/lastbus.c
new file mode 100755
index 0000000..4931c48
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/lastbus.c
@@ -0,0 +1,412 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#include <debug.h>
+#include <errno.h>
+#include <libfdt.h>
+#include <lib/mempool.h>
+#include "lastbus.h"
+#include <reg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "utils.h"
+
+static struct cfg_lastbus my_cfg_lastbus;
+
+const char *lastbus_compatible[] = {
+ "/lastbus",
+ "/lastbus/monitors",
+ NULL
+};
+
+static int get_lastbus_setting_from_fdt(void *fdt)
+{
+ int len, offset, value, node;
+ int num = 0;
+ int num_idle_mask;
+ u32 *data;
+
+ if (!fdt)
+ return -ENODATA;
+
+ offset = fdt_path_offset(fdt, lastbus_compatible[0]);
+ if (offset < 0) {
+ dprintf(CRITICAL, "%s: couldn't find the lastbus node\n", __func__);
+ return -ENODATA;
+ }
+
+ /* get enabled */
+ data = (u32 *)fdt_getprop(fdt, offset, "enabled", &len);
+ if (!data || !len) {
+ dprintf(CRITICAL, "%s: couldn't find property enabled\n", __func__);
+ my_cfg_lastbus.enabled = 0;
+ return -ENODATA;
+ } else {
+ value = fdt32_to_cpu(data[0]);
+ dprintf(INFO, "%s: enabled = %d\n", __func__, value);
+ my_cfg_lastbus.enabled = value;
+ }
+
+ /* get sw_version */
+ data = (u32 *)fdt_getprop(fdt, offset, "sw_version", &len);
+ if (!data || !len) {
+ dprintf(CRITICAL, "%s: couldn't find property sw_version\n", __func__);
+ my_cfg_lastbus.sw_version = LASTBUS_SW_V1;
+ } else {
+ value = fdt32_to_cpu(data[0]);
+ dprintf(INFO, "%s: sw_version = %d\n", __func__, value);
+ my_cfg_lastbus.sw_version = value;
+ }
+
+ /* get timeout_ms */
+ data = (u32 *)fdt_getprop(fdt, offset, "timeout_ms", &len);
+ if (!data || !len) {
+ dprintf(CRITICAL, "%s: couldn't find property timeout_ms\n", __func__);
+ my_cfg_lastbus.timeout_ms = 0xFFFFFFFF;
+ } else {
+ value = fdt32_to_cpu(data[0]);
+ dprintf(INFO, "%s: timeout_ms = %d\n", __func__, value);
+ my_cfg_lastbus.timeout_ms = value;
+ }
+
+ /* get timeout_type */
+ data = (u32 *)fdt_getprop(fdt, offset, "timeout_type", &len);
+ if (!data || !len) {
+ dprintf(CRITICAL, "%s: couldn't find property timeout_type\n", __func__);
+ my_cfg_lastbus.timeout_type = LASTBUS_TIMEOUT_FIRST;
+ } else {
+ value = fdt32_to_cpu(data[0]);
+ dprintf(INFO, "%s: timeout_type = %d (0:first/1:last)\n", __func__, value);
+ if ((value != LASTBUS_TIMEOUT_FIRST) && (value != LASTBUS_TIMEOUT_LAST)) {
+ dprintf(CRITICAL, "%s: timeout_type(%d) is invalid!\n", __func__, value);
+ return -EINVAL;
+ }
+ my_cfg_lastbus.timeout_type = value;
+ }
+
+ offset = fdt_subnode_offset(fdt, offset, "monitors");
+ if (offset < 0) {
+ dprintf(CRITICAL, "%s: couldn't find the monitors subnode\n", __func__);
+ return -ENODATA;
+ }
+
+ /* get monitors */
+ fdt_for_each_subnode(node, fdt, offset) {
+ if (node >= 0) {
+ /* get monitor name */
+ data = (u32 *)fdt_getprop(fdt, node, "monitor_name", &len);
+ if (!data || !len) {
+ dprintf(CRITICAL, "%s: couldn't find property monitor name\n", __func__);
+ return -ENODATA;
+ }
+
+ if (len <= MAX_MONITOR_NAME_LEN) {
+ strncpy(my_cfg_lastbus.monitors[num].name, (char const *)data, len);
+ } else {
+ strncpy(my_cfg_lastbus.monitors[num].name, (char const *)data,
+ MAX_MONITOR_NAME_LEN);
+ my_cfg_lastbus.monitors[num].name[MAX_MONITOR_NAME_LEN-1] = '\0';
+ }
+
+ dprintf(INFO, "%s: name = %s\n", __func__, my_cfg_lastbus.monitors[num].name);
+
+ /* get monitor base */
+ data = (u32 *)fdt_getprop(fdt, node, "base", &len);
+ if (!data || !len) {
+ dprintf(CRITICAL, "%s: couldn't find property monitor base\n", __func__);
+ return -ENODATA;
+ } else {
+ value = fdt32_to_cpu(data[0]);
+ if (!value) {
+ dprintf(CRITICAL, "%s: fail to get base\n", __func__);
+ return -ENODATA;
+ } else {
+ dprintf(INFO, "%s: base = 0x%x\n", __func__, value);
+ my_cfg_lastbus.monitors[num].base = (value + KERNEL_ASPACE_BASE);
+ }
+ }
+
+ /* get monitor num_ports */
+ data = (u32 *)fdt_getprop(fdt, node, "num_ports", &len);
+ if (!data || !len) {
+ dprintf(CRITICAL, "%s: couldn't find property num_ports\n", __func__);
+ return -ENODATA;
+ } else {
+ value = fdt32_to_cpu(data[0]);
+ dprintf(INFO, "%s: num_ports = %d\n", __func__, value);
+ my_cfg_lastbus.monitors[num].num_ports = value;
+ }
+
+ /* get monitor idle_mask */
+ num_idle_mask = 0;
+ data = (u32 *)fdt_getprop(fdt, node, "idle_masks", &len);
+ if (!data || !len) {
+ my_cfg_lastbus.monitors[num].idle_mask_en = 0;
+ } else {
+ my_cfg_lastbus.monitors[num].idle_mask_en = 1;
+
+ while (len >= (sizeof(unsigned int) * 2)) {
+ value = fdt32_to_cpu(*data++);
+ if (value == 0x0) {
+ dprintf(CRITICAL, "%s: invalid idle_mask offset (0x%x)\n", __func__, value);
+ return -EINVAL;
+ }
+ my_cfg_lastbus.monitors[num].idle_masks[num_idle_mask].reg_offset = value;
+ dprintf(INFO, "%s: idle_masks[%d].reg_offset = 0x%x\n",
+ __func__, num_idle_mask, value);
+ value = fdt32_to_cpu(*data++);
+ my_cfg_lastbus.monitors[num].idle_masks[num_idle_mask].reg_value = value;
+ dprintf(INFO, "%s: idle_masks[%d].reg_value = 0x%x\n",
+ __func__, num_idle_mask, value);
+ num_idle_mask++;
+ len -= (sizeof(unsigned int) * 2);
+ }
+
+ if (num_idle_mask > NR_MAX_LASTBUS_IDLE_MASK) {
+ dprintf(CRITICAL, "%s: Error: number of idle_masks(%d) is great than %d!\n",
+ __func__, num_idle_mask, NR_MAX_LASTBUS_IDLE_MASK);
+ return -EINVAL;
+ } else {
+ dprintf(INFO, "%s: num_idle_mask = %d\n", __func__, num_idle_mask);
+ my_cfg_lastbus.monitors[num].num_idle_mask = num_idle_mask;
+ }
+ }
+
+ /* get monitor bus_freq_mhz */
+ data = (u32 *)fdt_getprop(fdt, node, "bus_freq_mhz", &len);
+ if (!data || !len) {
+ dprintf(CRITICAL, "%s: couldn't find property bus_freq_mhz\n", __func__);
+ return -ENODATA;
+ } else {
+ value = fdt32_to_cpu(data[0]);
+ dprintf(INFO, "%s: bus_freq_mhz = %d\n", __func__, value);
+ dprintf(INFO, "================================================\n");
+ my_cfg_lastbus.monitors[num].bus_freq_mhz = value;
+ }
+
+ num++;
+ }
+ }
+
+ if (num == 0) {
+ dprintf(CRITICAL, "%s: there is no lastbus monitor node\n", __func__);
+ return -ENODATA;
+ } else {
+ my_cfg_lastbus.num_used_monitors = num;
+ if (num > NR_MAX_LASTBUS_MONITOR) {
+ dprintf(CRITICAL, "%s: Error: number of monitors(%d) is great than %d!\n",
+ __func__, num, NR_MAX_LASTBUS_MONITOR);
+ return -EINVAL;
+ } else {
+ dprintf(INFO, "%s: num_used_monitors = %d\n", __func__, num);
+ }
+ }
+ return 0;
+}
+
+static unsigned int calculate_timeout_setting(unsigned int bus_freq_mhz, unsigned int timeout_ms)
+{
+ unsigned int value;
+
+ value = ((timeout_ms * 1000 * bus_freq_mhz) >> 10) - 1;
+ //dprintf(INFO, "%s: bus_freq_mhz = %d, timeout_ms = %d, timeout_threshold = 0x%x\n",
+ // __func__, bus_freq_mhz, timeout_ms, value);
+ return value;
+}
+
+static void lastbus_init_monitor_v1(struct lastbus_monitor *m, unsigned int timeout_ms,
+ unsigned int timeout_type)
+{
+ unsigned int bus_freq_mhz, timeout_setting;
+ unsigned int i, reg_offset, reg_value;
+
+ if (m->idle_mask_en == 1) {
+ for (i = 0; i < m->num_idle_mask; i++) {
+ reg_offset = m->idle_masks[i].reg_offset;
+ reg_value = m->idle_masks[i].reg_value;
+ writel(reg_value, m->base + reg_offset);
+ dprintf(INFO, "%s: set idle_mask 0x%x = 0x%x\n",
+ __func__, m->base + reg_offset, reg_value);
+ }
+ }
+
+ /* clear timeout status with DBG_CKEN */
+ writel((LASTBUS_TIMEOUT_CLR | LASTBUS_DEBUG_CKEN), m->base);
+
+ /* de-assert clear bit with DBG_CKEN */
+ writel(LASTBUS_DEBUG_CKEN, m->base);
+
+ if (timeout_ms == 0xFFFFFFFF) {
+ /* set maximum timeout for 1st edition*/
+ writel(((0xFFFF << TIMEOUT_THRES_SHIFT) | LASTBUS_DEBUG_CKEN |
+ (timeout_type << TIMEOUT_TYPE_SHIFT)), m->base);
+ writel(((0xFFFF << TIMEOUT_THRES_SHIFT) | LASTBUS_DEBUG_CKEN | LASTBUS_DEBUG_EN |
+ (timeout_type << TIMEOUT_TYPE_SHIFT)), m->base);
+ } else {
+ bus_freq_mhz = m->bus_freq_mhz;
+ timeout_setting = calculate_timeout_setting(bus_freq_mhz, timeout_ms);
+ if (timeout_setting > 0xFFFF)
+ timeout_setting = 0xFFFF;
+ writel(((timeout_setting << TIMEOUT_THRES_SHIFT) | LASTBUS_DEBUG_CKEN |
+ (timeout_type << TIMEOUT_TYPE_SHIFT)), m->base);
+ writel(((timeout_setting << TIMEOUT_THRES_SHIFT) | LASTBUS_DEBUG_CKEN |
+ LASTBUS_DEBUG_EN | (timeout_type << TIMEOUT_TYPE_SHIFT)), m->base);
+ }
+ dprintf(INFO, "%s: base setting = 0x%x\n", __func__, readl(m->base));
+}
+
+static void lastbus_init_v1(void)
+{
+ struct lastbus_monitor *m;
+ unsigned int num_used_monitors, timeout_ms, timeout_type;
+ unsigned int i;
+
+ num_used_monitors = my_cfg_lastbus.num_used_monitors;
+ timeout_ms = my_cfg_lastbus.timeout_ms;
+ timeout_type = my_cfg_lastbus.timeout_type;
+
+ for (i = 0; i < num_used_monitors; i++) {
+ m = &my_cfg_lastbus.monitors[i];
+ lastbus_init_monitor_v1(m, timeout_ms, timeout_type);
+ }
+}
+
+void lastbus_init(void *fdt)
+{
+ if (get_lastbus_setting_from_fdt(fdt) < 0)
+ return;
+
+ if (my_cfg_lastbus.enabled == 0)
+ return;
+
+ if (my_cfg_lastbus.sw_version == LASTBUS_SW_V1) {
+ lastbus_init_v1();
+ return;
+ }
+}
+
+void lastbus_init_aee(void *fdt)
+{
+ /* get lastbus setting from fdt to initialize my_cfg_lastbus */
+ get_lastbus_setting_from_fdt(fdt);
+}
+
+static bool lastbus_is_timeout_v1(const struct lastbus_monitor *m)
+{
+#if 0
+ /* XXX
+ * workaround for timeout loss.
+ * debug_ctrl_ao*: infrabus_clk_detect [7:5] != 0
+ */
+ if (readl(m->base) & 0xe0)
+ return 1;
+#endif
+
+ return (readl(m->base) & LASTBUS_TIMEOUT);
+}
+
+static unsigned long long gray_code_to_binary_convert(const unsigned long long gray_code)
+{
+ unsigned int gray_array[64], binary_array[64];
+ int i;
+ unsigned long long value = 0;
+
+ for (i = 0; i < 64; i++)
+ gray_array[i] = ((gray_code >> i) & 0x1);
+
+ binary_array[63] = gray_array[63];
+ for (i = 62; i >= 0; i--)
+ binary_array[i] = gray_array[i] ^ binary_array[i+1];
+
+ for (i = 0; i < 64; i++)
+ value |= (binary_array[i] << i);
+
+ return value;
+}
+
+static void lastbus_dump_monitor_v1(const struct lastbus_monitor *m, char *buf, int *wp)
+{
+ unsigned int i;
+ unsigned long long grad_code, bin_code;
+
+ *wp += snprintf(buf + *wp, LASTBUS_BUF_LENGTH - *wp, "--- ");
+ *wp += snprintf(buf + *wp, LASTBUS_BUF_LENGTH - *wp, "%s %p %d",
+ m->name, (void *)(m->base - KERNEL_ASPACE_BASE), m->num_ports);
+ *wp += snprintf(buf + *wp, LASTBUS_BUF_LENGTH - *wp, " ---\n");
+
+ for (i = 0; i < m->num_ports; i++) {
+ *wp += snprintf(buf + *wp, LASTBUS_BUF_LENGTH - *wp, "%08x\n",
+ readl(m->base + 0x408 + (i * 4)));
+ }
+
+ grad_code = readl(m->base + 0x404);
+ grad_code = (grad_code << 32) | readl(m->base + 0x400);
+ bin_code = gray_code_to_binary_convert(grad_code);
+ dprintf(INFO, "%s: gray_code = 0x%llx, binary = 0x%llx\n", __func__, grad_code, bin_code);
+
+ *wp += snprintf(buf + *wp, LASTBUS_BUF_LENGTH - *wp, "timestamp: 0x%llx\n", bin_code);
+}
+
+static int lastbus_dump_v1(char *buf, int *wp)
+{
+ struct lastbus_monitor *m;
+ unsigned int num_used_monitors;
+ unsigned int i;
+ bool is_timeout, timeout_occurred = false;
+
+ *wp += snprintf(buf + *wp, LASTBUS_BUF_LENGTH - *wp,
+ "\n*********************** %s lastbus ***********************\n", PLATFORM);
+
+ num_used_monitors = my_cfg_lastbus.num_used_monitors;
+
+ for (i = 0; i < num_used_monitors; i++) {
+ is_timeout = false;
+
+ m = &my_cfg_lastbus.monitors[i];
+
+ is_timeout = lastbus_is_timeout_v1(m);
+
+ if (is_timeout) {
+ dprintf(INFO, "%s: lastbus timeout happened (%s)\n", __func__, m->name);
+ lastbus_dump_monitor_v1(m, buf, wp);
+ }
+
+ timeout_occurred |= is_timeout;
+ }
+
+ *wp += snprintf(buf + *wp, LASTBUS_BUF_LENGTH - *wp,
+ "\n#lastbus timeout = %s\n",
+ timeout_occurred ? "True" : "False");
+
+ return 1;
+}
+
+int lastbus_get(void **data, int *len)
+{
+ int ret;
+ *len = 0;
+ *data = mempool_alloc(LASTBUS_BUF_LENGTH, MEMPOOL_ANY);
+ if (*data == NULL)
+ return 0;
+
+ ret = lastbus_dump_v1(*data, len);
+
+ if (ret < 0 || *len > LASTBUS_BUF_LENGTH) {
+ *len = (*len > LASTBUS_BUF_LENGTH) ? LASTBUS_BUF_LENGTH : *len;
+ return ret;
+ }
+
+ return 1;
+}
+
+void lastbus_put(void **data)
+{
+ mempool_free(*data);
+}
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/lastbus.h b/src/bsp/lk/platform/mt2735/drivers/sda/lastbus.h
new file mode 100755
index 0000000..4a6e409
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/lastbus.h
@@ -0,0 +1,62 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#pragma once
+
+#define LASTBUS_BUF_LENGTH 0x4000
+#define NR_MAX_LASTBUS_MONITOR 16
+#define MAX_MONITOR_NAME_LEN 32
+#define NR_MAX_LASTBUS_IDLE_MASK 8
+
+#define TIMEOUT_THRES_SHIFT 16
+#define TIMEOUT_TYPE_SHIFT 1
+
+#define LASTBUS_TIMEOUT_CLR 0x0200
+#define LASTBUS_DEBUG_CKEN 0x0008
+#define LASTBUS_DEBUG_EN 0x0004
+#define LASTBUS_TIMEOUT 0x0001
+
+enum LASTBUS_SW_VERSION {
+ LASTBUS_SW_V1 = 1,
+ LASTBUS_SW_V2 = 2,
+};
+
+enum LASTBUS_TIMEOUT_TYPE {
+ LASTBUS_TIMEOUT_FIRST = 0,
+ LASTBUS_TIMEOUT_LAST = 1
+};
+
+struct lastbus_idle_mask {
+ unsigned int reg_offset;
+ unsigned int reg_value;
+};
+
+struct lastbus_monitor {
+ char name[MAX_MONITOR_NAME_LEN];
+ vaddr_t base;
+ unsigned int num_ports;
+ int bus_freq_mhz;
+ unsigned int idle_mask_en;
+ unsigned int num_idle_mask;
+ struct lastbus_idle_mask idle_masks[NR_MAX_LASTBUS_IDLE_MASK];
+};
+
+struct cfg_lastbus {
+ unsigned int sw_version;
+ unsigned int enabled;
+ unsigned int timeout_ms;
+ unsigned int timeout_type;
+ unsigned int num_used_monitors;
+ struct lastbus_monitor monitors[NR_MAX_LASTBUS_MONITOR];
+};
+
+void lastbus_init(void *fdt);
+void lastbus_init_aee(void *fdt);
+int lastbus_get(void **data, int *len);
+void lastbus_put(void **data);
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/lastpc.c b/src/bsp/lk/platform/mt2735/drivers/sda/lastpc.c
new file mode 100755
index 0000000..b162c08
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/lastpc.c
@@ -0,0 +1,179 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#include <debug.h>
+#include <errno.h>
+#include "lastpc.h"
+#include <lib/mempool.h>
+#include <platform/plat_lastpc.h>
+#include <reg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "utils.h"
+
+unsigned long plt_get_cpu_power_status_at_wdt(void)
+{
+ unsigned long bitmask = 0xff, ret;
+
+ ret = readl(SPM_PWR_STS_ADDR);
+ bitmask = (ret & SPM_PWR_STS_MASK) >> SPM_PWR_STS_OFFSET;
+
+ return bitmask;
+}
+
+int default_lastpc_dump(const struct plt_cfg_pc_latch *self, char *buf, int *wp)
+{
+ unsigned int i;
+ unsigned long long pc_value_h, fp_value_h, sp_value_h;
+ unsigned long long pc_value, fp_value, sp_value;
+ unsigned long core_dbg_sel, core_dbg_mon;
+ unsigned long cpu_power_status = 0;
+
+ int is_64bit_kernel = 1;
+
+#if 0 //mark it due to DFD on LK2 is not ready now
+ /* mcusys registers would be corrupted by DFD */
+ if (dfd_internal_dump_before_reboot()) {
+ *wp += dfd_internal_dump_get_decoded_lastpc(buf + *wp, LASTPC_BUF_LENGTH - *wp);
+ return 1;
+ }
+#endif
+
+ /* get the power status information */
+ cpu_power_status = plt_get_cpu_power_status_at_wdt();
+
+ for (i = 0; i < self->nr_max_core; ++i) {
+ /* if CPUX is not powered on before reboot --> skip */
+ if (extract_n2mbits(cpu_power_status, i, i) == 0) {
+ *wp += snprintf(buf + *wp, LASTPC_BUF_LENGTH - *wp,
+ "[LAST PC] CORE_%d PC = 0x0, FP = 0x0, SP = 0x0\n", i);
+ continue;
+ }
+
+ core_dbg_sel = self->core_dbg_sel[i];
+ core_dbg_mon = self->core_dbg_mon[i];
+ if ((core_dbg_sel == 0) || (core_dbg_mon == 0))
+ continue;
+
+ if (i < (self->nr_max_core - self->nr_max_big_core)) { /* for little core */
+ writel(LCORE_PC_H, core_dbg_sel);
+ pc_value_h = readl(core_dbg_mon);
+ writel(LCORE_PC_L, core_dbg_sel);
+ pc_value = (pc_value_h << 32) | readl(core_dbg_mon);
+ } else { /* for big core */
+ writel(BCORE_PC_H, core_dbg_sel);
+ pc_value_h = readl(core_dbg_mon);
+ writel(BCORE_PC_L, core_dbg_sel);
+ pc_value = (pc_value_h << 32) | readl(core_dbg_mon);
+ }
+
+ if (self->dump_pc_only) {
+ *wp += snprintf(buf + *wp, LASTPC_BUF_LENGTH - *wp,
+ "[LAST PC] CORE_%d PC = 0x%016llx\n", i, pc_value);
+ continue;
+ }
+
+ /* get the 64bit/32bit kernel information from bootopt */
+ if (is_64bit_kernel) {
+ if (i < (self->nr_max_core - self->nr_max_big_core)) {
+ writel(LCORE_LR_H, core_dbg_sel);
+ fp_value_h = readl(core_dbg_mon);
+ writel(LCORE_LR_L, core_dbg_sel);
+ fp_value = (fp_value_h << 32) | readl(core_dbg_mon);
+
+ writel(LCORE_SP_H, core_dbg_sel);
+ sp_value_h = readl(core_dbg_mon);
+ writel(LCORE_SP_L, core_dbg_sel);
+ sp_value = (sp_value_h << 32) | readl(core_dbg_mon);
+ } else {
+#if 0 //what value for core_dbg_sel to select FP and SP?
+ writel(BCORE_FP_H, core_dbg_sel);
+ fp_value_h = readl(core_dbg_mon);
+ writel(BCORE_FP_L, core_dbg_sel);
+ fp_value = (fp_value_h << 32) | readl(core_dbg_mon);
+
+ writel(BCORE_SP_H, core_dbg_sel);
+ sp_value_h = readl(core_dbg_mon);
+ writel(BCORE_SP_L, core_dbg_sel);
+ sp_value = (sp_value_h << 32) | readl(core_dbg_mon);
+#else
+ fp_value = 0;
+ sp_value = 0;
+#endif
+ }
+ *wp += snprintf(buf + *wp, LASTPC_BUF_LENGTH - *wp,
+ "[LAST PC] CORE_%d PC = 0x%016llx, FP = 0x%016llx, SP = 0x%016llx\n",
+ i, pc_value, fp_value, sp_value);
+ } else {
+ if (i < (self->nr_max_core - self->nr_max_big_core)) {
+ writel(LCORE_LR_L, core_dbg_sel);
+ fp_value = readl(core_dbg_mon);
+
+ writel(LCORE_SP_L, core_dbg_sel);
+ sp_value = readl(core_dbg_mon);
+ } else {
+#if 0
+ writel(BCORE_FP_L, core_dbg_sel);
+ fp_value = readl(core_dbg_mon);
+
+ writel(BCORE_SP_L, core_dbg_sel);
+ sp_value = readl(core_dbg_mon);
+#else
+ fp_value = 0;
+ sp_value = 0;
+#endif
+ }
+ *wp += snprintf(buf + *wp, LASTPC_BUF_LENGTH - *wp,
+ "[LAST PC] CORE_%d PC = 0x%016llx, FP = 0x%08llx, SP = 0x%08llx\n",
+ i, pc_value, fp_value, sp_value);
+ }
+ }
+
+ *wp += snprintf(buf + *wp, LASTPC_BUF_LENGTH - *wp, "\n");
+ return 1;
+}
+
+static int lastpc_dump(char *buf, int *wp)
+{
+ if (buf == NULL || wp == NULL)
+ return -1;
+
+ *wp += snprintf(buf + *wp, LASTPC_BUF_LENGTH - *wp,
+ "\n*************************** lastpc ***************************\n");
+
+ if (cfg_pc_latch.dump)
+ cfg_pc_latch.dump(&cfg_pc_latch, buf, wp);
+ else
+ default_lastpc_dump(&cfg_pc_latch, buf, wp);
+
+ return 1;
+}
+
+int lastpc_get(void **data, int *len)
+{
+ int ret;
+ *len = 0;
+ *data = mempool_alloc(LASTPC_BUF_LENGTH, MEMPOOL_ANY);
+ if (*data == NULL)
+ return 0;
+
+ ret = lastpc_dump(*data, len);
+ if (ret < 0 || *len > LASTPC_BUF_LENGTH) {
+ *len = (*len > LASTPC_BUF_LENGTH) ? LASTPC_BUF_LENGTH : *len;
+ return ret;
+ }
+
+ return 1;
+}
+
+void lastpc_put(void **data)
+{
+ mempool_free(*data);
+}
\ No newline at end of file
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/lastpc.h b/src/bsp/lk/platform/mt2735/drivers/sda/lastpc.h
new file mode 100755
index 0000000..b29492f
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/lastpc.h
@@ -0,0 +1,32 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#pragma once
+
+#define LASTPC_BUF_LENGTH (2000)
+
+enum {
+ LASTPC_V1 = 0,
+ LASTPC_V2,
+ LASTPC_V3,
+};
+
+/* platform-dependent configs for lastpc */
+struct plt_cfg_pc_latch {
+ unsigned int nr_max_core;
+ unsigned int nr_max_big_core;
+ unsigned long *core_dbg_sel;
+ unsigned long *core_dbg_mon;
+ int (*dump)(const struct plt_cfg_pc_latch *self, char *buf, int *wp);
+ unsigned int dump_pc_only;
+ unsigned int version;
+};
+
+int lastpc_get(void **data, int *len);
+void lastpc_put(void **data);
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/plat_debug.c b/src/bsp/lk/platform/mt2735/drivers/sda/plat_debug.c
new file mode 100755
index 0000000..070ee0a
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/plat_debug.c
@@ -0,0 +1,62 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#include <debug.h>
+#include <errno.h>
+#include "lastpc.h"
+#include <kernel/vm.h>
+#include "lastbus.h"
+#include <platform/mboot_expdb.h>
+#include <platform/plat_debug.h>
+#include "tracker.h"
+#include <trace.h>
+
+#define LOCAL_TRACE 0
+
+static void save_cpu_bus_data(AEE_DUMP_CALLBACK dev_write)
+{
+ char *buf = NULL;
+ int ret;
+ int len = 0;
+ unsigned int datasize = 0;
+ /* Save latch buffer */
+
+ ret = lastpc_get((void **)&buf, &len);
+ if (ret && (buf != NULL)) {
+ LTRACEF("In lastpc dump\n");
+ if (len > 0)
+ datasize = dev_write(buf, len);
+ lastpc_put((void **)&buf);
+ }
+ dprintf(CRITICAL, "lastpc done\n");
+
+ ret = tracker_get((void **)&buf, &len, SYS_TRACK_ENTRY);
+ if (ret && (buf != NULL)) {
+ LTRACEF("In tracker dump\n");
+ if (len > 0)
+ datasize = dev_write(buf, len);
+ tracker_put((void **)&buf);
+ } else {
+ tracker_put((void **)&buf);
+ }
+ dprintf(CRITICAL, "tracker done\n");
+
+ ret = lastbus_get((void **)&buf, &len);
+ if (ret && (buf != NULL)) {
+ LTRACEF("In lastbus dump\n");
+ if (len > 0)
+ datasize = dev_write(buf, len);
+ lastbus_put((void **)&buf);
+ }
+ dprintf(CRITICAL, "lastbus done\n");
+
+ return;
+}
+
+AEE_EXPDB_INIT_HOOK(SYS_LAST_CPU_BUS, LAST_DUMP_SIZE, save_cpu_bus_data);
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/tracker.c b/src/bsp/lk/platform/mt2735/drivers/sda/tracker.c
new file mode 100755
index 0000000..f1106cb
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/tracker.c
@@ -0,0 +1,206 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#include <debug.h>
+#include <errno.h>
+#include <libfdt.h>
+#include <lib/mempool.h>
+#include "tracker.h"
+#include <reg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <trace.h>
+
+#define LOCAL_TRACE 0
+
+static int systracker_dump(char *buf, int *wp, unsigned int entry_num)
+{
+ unsigned int i;
+ unsigned int reg_value;
+ unsigned int entry_valid;
+ unsigned int entry_secure;
+ unsigned int entry_id;
+ unsigned int entry_address;
+ unsigned int entry_data_size;
+ unsigned int entry_burst_length;
+
+ if (buf == NULL || wp == NULL)
+ return -1;
+
+ /* Get tracker info and save to buf */
+ /* check if we got AP tracker timeout */
+ if (readl(BUS_DBG_CON) & BUS_DBG_CON_TIMEOUT) {
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n*************************** systracker ***************************\n");
+
+ for (i = 0; i < entry_num; i++) {
+ entry_address = readl(AR_TRACK_L(BUS_DBG_BASE, i));
+ reg_value = readl(AR_TRACK_H(BUS_DBG_BASE, i));
+ entry_valid = extract_n2mbits(reg_value, TRACKER_VALID_S, TRACKER_VALID_E);
+ entry_secure = extract_n2mbits(reg_value, TRACKER_SECURE_S, TRACKER_SECURE_E);
+ entry_id = extract_n2mbits(reg_value, TRACKER_ID_S, TRACKER_ID_E);
+ entry_data_size = extract_n2mbits(reg_value,
+ TRACKER_DATA_SIZE_S, TRACKER_DATA_SIZE_E);
+ entry_burst_length = extract_n2mbits(reg_value,
+ TRACKER_BURST_LEN_S, TRACKER_BURST_LEN_E);
+
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "read entry = %d, valid = 0x%x, non-secure = 0x%x, read id = 0x%x, address = 0x%x, data_size = 0x%x, burst_length = 0x%x\n",
+ i, entry_valid, entry_secure, entry_id,
+ entry_address, entry_data_size, entry_burst_length);
+ }
+
+ for (i = 0; i < entry_num; i++) {
+ entry_address = readl(AW_TRACK_L(BUS_DBG_BASE, i));
+ reg_value = readl(AW_TRACK_H(BUS_DBG_BASE, i));
+ entry_valid = extract_n2mbits(reg_value, TRACKER_VALID_S, TRACKER_VALID_E);
+ entry_secure = extract_n2mbits(reg_value, TRACKER_SECURE_S, TRACKER_SECURE_E);
+ entry_id = extract_n2mbits(reg_value, TRACKER_ID_S, TRACKER_ID_E);
+ entry_data_size = extract_n2mbits(reg_value,
+ TRACKER_DATA_SIZE_S, TRACKER_DATA_SIZE_E);
+ entry_burst_length = extract_n2mbits(reg_value,
+ TRACKER_BURST_LEN_S, TRACKER_BURST_LEN_E);
+
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "write entry = %d, valid = 0x%x, non-secure = 0x%x, write id = 0x%x, address = 0x%x, data_size = 0x%x, burst_length = 0x%x\n",
+ i, entry_valid, entry_secure, entry_id, entry_address,
+ entry_data_size, entry_burst_length);
+ }
+
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "write entry ~ %d, valid = 0x%x, data = 0x%x\n", entry_num - 2,
+ ((readl(BUS_DBG_W_TRACK_DATA_VALID)&(0x1<<6))>>6),
+ readl(BUS_DBG_W_TRACK_DATA62));
+
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "write entry ~ %d, valid = 0x%x, data = 0x%x\n\n", entry_num - 1,
+ ((readl(BUS_DBG_W_TRACK_DATA_VALID)&(0x1<<7))>>7),
+ readl(BUS_DBG_W_TRACK_DATA63));
+ }
+
+#ifdef HAS_INFA_TRACKER
+ /* check if we got infra tracker timeout */
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n*************************** INFRA ***************************\n");
+ if (readl(INFRA_TRACKER_CON) & BUSTRACKER_TIMEOUT) {
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "infra tracker timeout (0x%08x)\n", readl(INFRA_TRACKER_CON));
+ for (i = 0; i < INFRA_ENTRY_NUM; i++) {
+ entry_address = readl(AR_TRACK_L(INFRA_TRACKER_CON, i));
+ reg_value = readl(AR_TRACK_H(INFRA_TRACKER_CON, i));
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "read entry = %d, address = 0x%x, attribute = 0x%x\n",
+ i, entry_address, reg_value);
+ }
+ for (i = 0; i < INFRA_ENTRY_NUM; i++) {
+ entry_address = readl(AW_TRACK_L(INFRA_TRACKER_CON, i));
+ reg_value = readl(AW_TRACK_H(INFRA_TRACKER_CON, i));
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "write entry = %d, address = 0x%x, attribute = 0x%x\n",
+ i, entry_address, reg_value);
+ }
+ }
+#endif
+
+#ifdef HAS_PERI_TRACKER
+ /* check if we got peri tracker timeout */
+ if (readl(PERI_TRACKER_BASE) & BUSTRACKER_TIMEOUT) {
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "peri tracker timeout (0x%08x)\n", readl(PERI_TRACKER_BASE));
+ for (i = 0; i < PERI_ENTRY_NUM; i++) {
+ entry_address = readl(AR_TRACK_L(PERI_TRACKER_BASE, i));
+ reg_value = readl(AR_TRACK_H(PERI_TRACKER_BASE, i));
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "read entry = %d, address = 0x%x, attribute = 0x%x\n",
+ i, entry_address, reg_value);
+ }
+ for (i = 0; i < PERI_ENTRY_NUM; i++) {
+ entry_address = readl(AW_TRACK_L(PERI_TRACKER_BASE, i));
+ reg_value = readl(AW_TRACK_H(PERI_TRACKER_BASE, i));
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "write entry = %d, address = 0x%x, attribute = 0x%x\n",
+ i, entry_address, reg_value);
+ }
+ }
+#endif
+
+#ifdef HAS_SLV
+ reg_value = readl(BUS_DBG_CON);
+ if (SLV_ERR == (reg_value & AR_RESP_ERR_TYPE_MASK) >> AR_RESP_ERR_TYPE_OFFSET)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n AP tracker detects AR slave error.");
+ if (DEC_ERR == (reg_value & AR_RESP_ERR_TYPE_MASK) >> AR_RESP_ERR_TYPE_OFFSET)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n AP tracker detects AR decode error.");
+ if (SLV_ERR == (reg_value & AW_RESP_ERR_TYPE_MASK) >> AW_RESP_ERR_TYPE_OFFSET)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n AP tracker detects AW slave error.");
+ if (DEC_ERR == (reg_value & AW_RESP_ERR_TYPE_MASK) >> AW_RESP_ERR_TYPE_OFFSET)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n AP tracker detects AW decode error.");
+
+ reg_value = readl(BUS_DBG_TIMEOUT_INFO);
+ if (reg_value & AR_STALL_TIMEOUT)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n AP tracker detects AR stall timeout.");
+ if (reg_value & AW_STALL_TIMEOUT)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n AP tracker detects AW stall timeout.");
+
+ reg_value = readl(INFRA_TRACKER_BASE);
+ if (SLV_ERR == (reg_value & AR_RESP_ERR_TYPE_MASK) >> AR_RESP_ERR_TYPE_OFFSET)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n Infra tracker detects AR slave error.");
+ if (DEC_ERR == (reg_value & AR_RESP_ERR_TYPE_MASK) >> AR_RESP_ERR_TYPE_OFFSET)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n Infra tracker detects AR decode error.");
+ if (SLV_ERR == (reg_value & AW_RESP_ERR_TYPE_MASK) >> AW_RESP_ERR_TYPE_OFFSET)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n Infra tracker detects AW slave error.");
+ if (DEC_ERR == (reg_value & AW_RESP_ERR_TYPE_MASK) >> AW_RESP_ERR_TYPE_OFFSET)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n Infra tracker detects AW decode error.");
+
+ reg_value = readl(INFRA_TRACKER_TIMEOUT_INFO);
+ if (reg_value & AR_STALL_TIMEOUT)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n Infra tracker detects AR stall timeout.");
+ if (reg_value & AW_STALL_TIMEOUT)
+ *wp += snprintf(buf + *wp, TRACKER_BUF_LENGTH - *wp,
+ "\n Infra tracker detects AW stall timeout.\n");
+#endif
+
+ LTRACEF("wp: %d\n", *wp);
+
+ return strlen(buf);
+}
+
+int tracker_get(void **data, int *len, unsigned int entry_num)
+{
+ int ret;
+
+ *len = 0;
+ *data = mempool_alloc(TRACKER_BUF_LENGTH, MEMPOOL_ANY);
+ if (*data == NULL)
+ return 0;
+
+ ret = systracker_dump(*data, len, entry_num);
+ if (ret < 0 || *len > TRACKER_BUF_LENGTH) {
+ *len = (*len > TRACKER_BUF_LENGTH) ? TRACKER_BUF_LENGTH : *len;
+ return ret;
+ }
+
+ return 1;
+}
+
+void tracker_put(void **data)
+{
+ mempool_free(*data);
+}
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/tracker.h b/src/bsp/lk/platform/mt2735/drivers/sda/tracker.h
new file mode 100755
index 0000000..9a966e6
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/tracker.h
@@ -0,0 +1,70 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#pragma once
+
+#include <platform/mt_reg_base.h>
+#include <platform/plat_debug.h>
+
+#define BUS_DBG_CON (BUS_DBG_BASE + 0x0000)
+#define INFRA_TRACKER_CON (INFRA_TRACKER_BASE + 0x0000)
+#define BUS_DBG_TIMEOUT_INFO (BUS_DBG_BASE + 0x0028)
+#define INFRA_TRACKER_TIMEOUT_INFO (INFRA_TRACKER_BASE + 0x0028)
+#define AR_TRACK_L(__base, __n) (__base + AR_TRACK_L_OFFSET + 8 * (__n))
+#define AR_TRACK_H(__base, __n) (__base + AR_TRACK_H_OFFSET + 8 * (__n))
+#define AW_TRACK_L(__base, __n) (__base + AW_TRACK_L_OFFSET + 8 * (__n))
+#define AW_TRACK_H(__base, __n) (__base + AW_TRACK_H_OFFSET + 8 * (__n))
+#define BUS_DBG_W_TRACK_DATA_VALID (BUS_DBG_BASE + W_TRACK_DATA_VALID_OFFSET)
+#define BUS_DBG_W_TRACK_DATA62 (BUS_DBG_BASE + 0x0EF8)
+#define BUS_DBG_W_TRACK_DATA63 (BUS_DBG_BASE + 0x0EFC)
+
+#define BUS_DBG_CON_IRQ_AR_STA0 (0x00000100)
+#define BUS_DBG_CON_IRQ_AW_STA0 (0x00000200)
+#define BUS_DBG_CON_IRQ_AR_STA1 (0x00100000)
+#define BUS_DBG_CON_IRQ_AW_STA1 (0x00200000)
+#define BUS_DBG_CON_TIMEOUT (BUS_DBG_CON_IRQ_AR_STA0|BUS_DBG_CON_IRQ_AW_STA0| \
+ BUS_DBG_CON_IRQ_AR_STA1|BUS_DBG_CON_IRQ_AW_STA1)
+
+/* 8KB buffer is sufficient for tracker */
+#define TRACKER_BUF_LENGTH (32000)
+
+/* INFRA BUS TRACKER */
+#define INFRA_ENTRY_NUM (32)
+#define BUSTRACKER_TIMEOUT (0x300)
+
+#define AR_STALL_TIMEOUT (0x00000080)
+#define AW_STALL_TIMEOUT (0x00008000)
+#define AR_RESP_ERR_TYPE_OFFSET (24)
+#define AW_RESP_ERR_TYPE_OFFSET (26)
+#define AR_RESP_ERR_TYPE_MASK (0x03000000)
+#define AW_RESP_ERR_TYPE_MASK (0x0C000000)
+#define SLV_ERR (2)
+#define DEC_ERR (3)
+
+int tracker_get(void **data, int *len, unsigned int entry_num);
+void tracker_put(void **data);
+
+static inline unsigned int extract_n2mbits(unsigned int input, unsigned int n, unsigned int m)
+{
+ /*
+ * 1. ~0 = 1111 1111 1111 1111 1111 1111 1111 1111
+ * 2. ~0 << (m - n + 1) = 1111 1111 1111 1111 1100 0000 0000 0000
+ * // assuming we are extracting 14 bits, the +1 is added for inclusive selection
+ * 3. ~(~0 << (m - n + 1)) = 0000 0000 0000 0000 0011 1111 1111 1111
+ */
+ int mask;
+
+ if (n > m) {
+ n = n + m;
+ m = n - m;
+ n = n - m;
+ }
+ mask = ~(~0 << (m - n + 1));
+ return (input >> n) & mask;
+}
diff --git a/src/bsp/lk/platform/mt2735/drivers/sda/utils.h b/src/bsp/lk/platform/mt2735/drivers/sda/utils.h
new file mode 100755
index 0000000..3a2f1c4
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/drivers/sda/utils.h
@@ -0,0 +1,29 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#pragma once
+
+static inline unsigned int extract_n2mbits(unsigned int input, unsigned int n, unsigned int m)
+{
+ /*
+ * 1. ~0 = 1111 1111 1111 1111 1111 1111 1111 1111
+ * 2. ~0 << (m - n + 1) = 1111 1111 1111 1111 1100 0000 0000 0000
+ * // assuming we are extracting 14 bits, the +1 is added for inclusive selection
+ * 3. ~(~0 << (m - n + 1)) = 0000 0000 0000 0000 0011 1111 1111 1111
+ */
+ int mask;
+
+ if (n > m) {
+ n = n + m;
+ m = n - m;
+ n = n - m;
+ }
+ mask = ~(~0U << (m - n + 1));
+ return (input >> n) & mask;
+}
diff --git a/src/bsp/lk/platform/mt2735/include/platform/mt_reg_base.h b/src/bsp/lk/platform/mt2735/include/platform/mt_reg_base.h
old mode 100644
new mode 100755
index c049ee5..711dd0c
--- a/src/bsp/lk/platform/mt2735/include/platform/mt_reg_base.h
+++ b/src/bsp/lk/platform/mt2735/include/platform/mt_reg_base.h
@@ -72,7 +72,9 @@
#define INT_POL_SECCTL0 (MCUSYS_CFGREG_BASE + 0xA00) /* TODO: MT2735 */
#define SEC_POL_CTL_EN0 INT_POL_SECCTL0 /* TODO: MT2735 */
-/*jb.qi change for reboot when sleep on 20230309 start*/
+#define PERI_TRACKER_BASE (IO_PHYS + 0x00218000)
+#define INFRA_TRACKER_BASE (IO_PHYS + 0x00314000)
+#define BUS_DBG_BASE (IO_PHYS + 0x00208000)
#define DRAMC_CH0_TOP5_BASE (IO_PHYS + 0x00238000)
#define DPM_PM_SRAM_BASE (IO_PHYS + 0x00900000)
#define DPM_DM_SRAM_BASE (IO_PHYS + 0x00920000)
diff --git a/src/bsp/lk/platform/mt2735/include/platform/mtk_wdt.h b/src/bsp/lk/platform/mt2735/include/platform/mtk_wdt.h
old mode 100644
new mode 100755
index 8d8a589..219b6cd
--- a/src/bsp/lk/platform/mt2735/include/platform/mtk_wdt.h
+++ b/src/bsp/lk/platform/mt2735/include/platform/mtk_wdt.h
@@ -93,7 +93,10 @@
#define RE_BOOT_BY_THERMAL_DIRECT (0x20)
#define RE_BOOT_BY_DEBUG (0x40)
#define RE_BOOT_BY_SECURITY (0x80)
+#define RE_BOOT_BY_SYSRST (0x200)
+#define RE_BOOT_BY_SSPM_RST (0x400)
#define RE_BOOT_BY_PMIC_FULL_RST (0x800) /* PMIC full (cold) reset */
+#define RE_BOOT_BY_MCUPM_RST (0x1000)
#define RE_BOOT_ABNORMAL (0xF0)
#define WDT_NORMAL_REBOOT (0x100)
diff --git a/src/bsp/lk/platform/mt2735/include/platform/plat_debug.h b/src/bsp/lk/platform/mt2735/include/platform/plat_debug.h
new file mode 100755
index 0000000..f3e0c41
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/include/platform/plat_debug.h
@@ -0,0 +1,38 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#define HAS_INFA_TRACKER
+#define HAS_PERI_TRACKER
+#define HAS_SLV
+
+#define SYS_TRACK_ENTRY 64
+#define LAST_DUMP_SIZE 0x8000
+
+#define INFRA_ENTRY_NUM 32
+#define PERI_ENTRY_NUM 16
+
+#define BUSTRACKER_TIMEOUT 0x300
+
+#define AR_TRACK_L_OFFSET 0x0100
+#define AR_TRACK_H_OFFSET 0x0104
+#define AW_TRACK_L_OFFSET 0x0300
+#define AW_TRACK_H_OFFSET 0x0304
+#define W_TRACK_DATA_VALID_OFFSET 0x0020
+
+/*FNEW OFFSET*/
+#define TRACKER_VALID_S 24
+#define TRACKER_VALID_E 24
+#define TRACKER_SECURE_S 23
+#define TRACKER_SECURE_E 23
+#define TRACKER_ID_S 10
+#define TRACKER_ID_E 22
+#define TRACKER_DATA_SIZE_S 6
+#define TRACKER_DATA_SIZE_E 8
+#define TRACKER_BURST_LEN_S 2
+#define TRACKER_BURST_LEN_E 5
diff --git a/src/bsp/lk/platform/mt2735/include/platform/plat_lastpc.h b/src/bsp/lk/platform/mt2735/include/platform/plat_lastpc.h
new file mode 100755
index 0000000..1252aab
--- /dev/null
+++ b/src/bsp/lk/platform/mt2735/include/platform/plat_lastpc.h
@@ -0,0 +1,82 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright (c) 2021 MediaTek Inc.
+ *
+ * Use of this source code is governed by a MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT
+ */
+
+#pragma once
+
+#include <platform/mt_reg_base.h>
+
+#define MCUCFG_BASE MCUSYS_CFGREG_BASE
+#define SPM_PWR_STS_ADDR (SPM_BASE + 0x830)
+#define SPM_PWR_STS_MASK 0x3FC00000
+#define SPM_PWR_STS_OFFSET 22
+
+const unsigned long cpu_dbg_sel[] = {
+ (MCUCFG_BASE + 0x0220),
+ (MCUCFG_BASE + 0x0A20),
+ (MCUCFG_BASE + 0x1220),
+ (MCUCFG_BASE + 0x1A20),
+ (MCUCFG_BASE + 0x2220),
+ (MCUCFG_BASE + 0x2A20),
+ (MCUCFG_BASE + 0x3220),
+ (MCUCFG_BASE + 0x3A20)
+};
+
+const unsigned long cpu_dbg_mon[] = {
+ (MCUCFG_BASE + 0x0224),
+ (MCUCFG_BASE + 0x0A24),
+ (MCUCFG_BASE + 0x1224),
+ (MCUCFG_BASE + 0x1A24),
+ (MCUCFG_BASE + 0x2224),
+ (MCUCFG_BASE + 0x2A24),
+ (MCUCFG_BASE + 0x3224),
+ (MCUCFG_BASE + 0x3A24)
+};
+
+const struct plt_cfg_pc_latch cfg_pc_latch = {
+ .nr_max_core = 8,
+ .nr_max_big_core = 4,
+ .core_dbg_sel = (unsigned long *) cpu_dbg_sel,
+ .core_dbg_mon = (unsigned long *) cpu_dbg_mon,
+ .version = LASTPC_V1,
+};
+
+enum {
+ LCORE_SCR_EL3 = 0x0,
+ LCORE_SCTLR_EL3 = 0x1,
+ LCORE_FAR_EL3_L = 0x2,
+ LCORE_FAR_EL3_H = 0x3,
+ LCORE_ESR_EL3 = 0x4,
+ LCORE_CPSR = 0x5,
+ LCORE_ELR_L = 0x6,
+ LCORE_ELR_H = 0x7,
+ LCORE_LR_L = 0x8,
+ LCORE_LR_H = 0x9,
+ LCORE_SP_L = 0xA,
+ LCORE_SP_H = 0xB,
+ LCORE_PC_L = 0xC,
+ LCORE_PC_H = 0xD
+};
+
+enum {
+ BCORE_SCR_EL3_L = 0x0,
+ BCORE_SCR_EL3_H = 0x1,
+ BCORE_SCTLR_EL3_L = 0x2,
+ BCORE_SCTLR_EL3_H = 0x3,
+ BCORE_FAR_EL3_L = 0x4,
+ BCORE_FAR_EL3_H = 0x5,
+ BCORE_ESR_EL3_L = 0x6,
+ BCORE_ESR_EL3_H = 0x7,
+ BCORE_PC_L = 0x8,
+ BCORE_PC_H = 0x9,
+ BCORE_CPSR = 0xA,
+ BCORE_ELR_L = 0xB,
+ BCORE_ELR_H = 0xC,
+ BCORE_PCSR_L = 0xD,
+ BCORE_PCSR_H = 0xE
+};
diff --git a/src/connectivity/gps/2.0/mtk_mnld/mnl/libs/aarch64/libmnl_gnss.so b/src/connectivity/gps/2.0/mtk_mnld/mnl/libs/aarch64/libmnl_gnss.so
index 78b857e..7253f20 100755
--- a/src/connectivity/gps/2.0/mtk_mnld/mnl/libs/aarch64/libmnl_gnss.so
+++ b/src/connectivity/gps/2.0/mtk_mnld/mnl/libs/aarch64/libmnl_gnss.so
Binary files differ
diff --git a/src/kernel/linux/v4.19/drivers/mtd/mtdblock.c b/src/kernel/linux/v4.19/drivers/mtd/mtdblock.c
old mode 100644
new mode 100755
index a5b1933..5eb0e7c
--- a/src/kernel/linux/v4.19/drivers/mtd/mtdblock.c
+++ b/src/kernel/linux/v4.19/drivers/mtd/mtdblock.c
@@ -43,6 +43,7 @@
unsigned long cache_offset;
unsigned int cache_size;
enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state;
+ unsigned short *block_mapping;
};
/*
@@ -238,7 +239,22 @@
unsigned long block, char *buf)
{
struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
- return do_cached_read(mtdblk, block<<9, 512, buf);
+ struct mtd_info *mtd = dev->mtd;
+ unsigned short target_block, total_blocks;
+ unsigned long pos;
+
+ if (!mtdblk->block_mapping)
+ return do_cached_read(mtdblk, block << 9, 512, buf);
+
+ total_blocks = (unsigned short) ((uint32_t)mtd->size / mtd->erasesize);
+ target_block = mtdblk->block_mapping[(block << 9) / mtd->erasesize];
+ if (target_block >= total_blocks)
+ return -EIO;
+
+ pos = target_block * mtdblk->mbd.mtd->erasesize +
+ ((block << 9) & (mtdblk->mbd.mtd->erasesize - 1));
+ return do_cached_read(mtdblk, pos, 512, buf);
+
}
static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
@@ -260,6 +276,8 @@
static int mtdblock_open(struct mtd_blktrans_dev *mbd)
{
struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
+ struct mtd_info *mtd = mbd->mtd;
+ unsigned short total_blocks;
pr_debug("mtdblock_open\n");
@@ -277,6 +295,26 @@
mtdblk->cache_data = NULL;
}
+ total_blocks = (unsigned short) ((uint32_t)mtd->size / mtd->erasesize);
+ mtdblk->block_mapping =
+ vmalloc(total_blocks * sizeof(mtdblk->block_mapping[0]));
+ if (mtdblk->block_mapping) {
+ unsigned short i, idx = 0;
+
+ memset(mtdblk->block_mapping, 0xFF,
+ total_blocks * sizeof(mtdblk->block_mapping[0]));
+ for (i = 0; i < total_blocks; i++) {
+ if (mtd->_block_isbad(mtd, i * mtd->erasesize)) {
+ pr_info("MTDBLOCK%d: block %d is bad\n",
+ mtd->index, i);
+ continue;
+ }
+
+ mtdblk->block_mapping[idx] = i;
+ idx++;
+ }
+ }
+
pr_debug("ok\n");
return 0;
@@ -300,6 +338,11 @@
if (mbd->file_mode & FMODE_WRITE)
mtd_sync(mbd->mtd);
vfree(mtdblk->cache_data);
+
+ if (mtdblk->block_mapping) {
+ vfree(mtdblk->block_mapping);
+ mtdblk->block_mapping = NULL;
+ }
}
pr_debug("ok\n");
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/Makefile b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/Makefile
index ea2fdf2..a99cf49 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/Makefile
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/Makefile
@@ -51,6 +51,9 @@
endif
DHDCFLAGS += $(call cc-disable-warning, date-time)
DHDCFLAGS += $(call cc-disable-warning, stringop-overflow)
+# ifx apply patch to disable twt 20231116
+DHDCFLAGS += -DCUSTOM_CONTROL_TWT_DISABLE
+# ifx apply patch to disable twt 20231116 end
#################
# Common feature
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd.h b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd.h
index 3d14f18..cc9bb24 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd.h
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd.h
@@ -3498,6 +3498,11 @@
#ifdef CUSTOM_CONTROL_OCE_DISABLE
extern int dhd_control_oce_enab(dhd_pub_t * dhd, uint8 oce_enab);
#endif /* CUSTOM_CONTROL_OCE_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong
+#ifdef CUSTOM_CONTROL_TWT_DISABLE
+int dhd_control_twt_enab(dhd_pub_t * dhd, uint8 twt_enab);
+#endif /* CUSTOM_CONTROL_TWT_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong end
#if defined(BCMSDIO)
void dhd_set_role(dhd_pub_t *dhdp, int role, int bssidx);
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_common.c b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_common.c
index d56ea16..3019956 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_common.c
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_common.c
@@ -7993,3 +7993,37 @@
return ret;
}
#endif /* CUSTOM_CONTROL_OCE_DISABLE */
+
+// apply ifx patch to disable twt 20231116
+#ifdef CUSTOM_CONTROL_TWT_DISABLE
+int
+dhd_control_twt_enab(dhd_pub_t * dhd, uint8 twt_enab)
+{
+ int ret = BCME_OK;
+ bcm_xtlv_t *pxtlv = NULL;
+ uint8 mybuf[DHD_IOVAR_BUF_SIZE];
+ uint16 mybuf_len = sizeof(mybuf);
+ pxtlv = (bcm_xtlv_t *)mybuf;
+
+ ret = bcm_pack_xtlv_entry((uint8**)&pxtlv, &mybuf_len, WL_TWT_CMD_ENAB, sizeof(twt_enab),
+ &twt_enab, BCM_XTLV_OPTION_ALIGN32);
+
+ if (ret != BCME_OK) {
+ ret = -EINVAL;
+ DHD_ERROR(("%s failed to pack twt enab, err: %s\n", __FUNCTION__, bcmerrorstr(ret)));
+ return ret;
+ }
+
+ ret = dhd_iovar(dhd, 0, "twt", (char *)&mybuf, sizeof(mybuf), NULL, 0, TRUE);
+ if (ret < 0) {
+ DHD_ERROR(("%s twt_enab (%d) set failed, err: %s\n",
+ __FUNCTION__, twt_enab, bcmerrorstr(ret)));
+ } else {
+ DHD_ERROR(("%s twt_enab (%d) set successed\n", __FUNCTION__, twt_enab));
+ }
+
+ return ret;
+}
+#endif /* CUSTOM_CONTROL_TWT_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong 20231116
+
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.c b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.c
index 1d0bdc4..25d9476 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.c
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.c
@@ -11231,6 +11231,11 @@
#ifdef CUSTOM_CONTROL_OCE_DISABLE
dhd_control_oce_enab(dhd, FALSE);
#endif /* CUSTOM_CONTROL_OCE_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong
+#ifdef CUSTOM_CONTROL_TWT_DISABLE
+ dhd_control_twt_enab(dhd, FALSE);
+#endif /* CUSTOM_CONTROL_TWT_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong end
#ifdef CUSTOM_PSPRETEND_THR
/* Turn off MPC in AP mode */
diff --git a/src/kernel/linux/v4.19/drivers/soc/mediatek/mtk-scpsys.c b/src/kernel/linux/v4.19/drivers/soc/mediatek/mtk-scpsys.c
index ca78b03..6846443 100755
--- a/src/kernel/linux/v4.19/drivers/soc/mediatek/mtk-scpsys.c
+++ b/src/kernel/linux/v4.19/drivers/soc/mediatek/mtk-scpsys.c
@@ -1413,7 +1413,13 @@
strcmp(genpd->name, "conn") == 0) {
on = false;
dev_err(&pdev->dev, "Skip %s pwr_on\n", genpd->name);
- } else {
+ }
+ /*jb.qi add for sleep 20ma becaluse audio on 20231110 start*/
+ else if (strcmp(genpd->name,"audio")==0) {
+ dev_err(&pdev->dev, "Skip audio pwr_on \n");
+ }
+ /*jb.qi add for sleep 20ma becaluse audio on 20231110 end*/
+ else {
on = !WARN_ON(genpd->power_on(genpd) < 0);
}
diff --git a/src/kernel/linux/v4.19/net/wireless/nl80211.c b/src/kernel/linux/v4.19/net/wireless/nl80211.c
index ae91a89..67f8a3a 100644
--- a/src/kernel/linux/v4.19/net/wireless/nl80211.c
+++ b/src/kernel/linux/v4.19/net/wireless/nl80211.c
@@ -9569,6 +9569,7 @@
err = cfg80211_connect(rdev, dev, &connect, connkeys,
connect.prev_bssid);
+ printk("DeBugAssoc cfg80211_conenct return %d nl80211.c %s %d",err,__func__,__LINE__);
if (err)
kzfree(connkeys);
diff --git a/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp b/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
index e007262..4d5c7ee 100755
--- a/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
+++ b/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
@@ -397,14 +397,14 @@
{
RLOGD("@@@@@@@num=%d\n", num);
flag = 0;
- ret[0] = system("uci show | grep \"lynq_uci.lynq_ril\"");
+ ret[0] = system("uci show | grep \"lynq_uci.lynq_ril\" > /dev/null");
if(ret[0] != 0)
{
RLOGD("lynq_uci unload\n");
flag = 1;
}
- ret[1] = system("uci show | grep \"^lynq_uci_ro\.\"");
+ ret[1] = system("uci show | grep \"^lynq_uci_ro\.\" > /dev/null");
if(ret[1] != 0)
{
RLOGD("lynq_uci_ro unload\n");
@@ -418,21 +418,21 @@
flag = 1;
}
- ret[3] = system("uci show | grep \"^radio_property\.\"");
+ ret[3] = system("uci show | grep \"^radio_property\.\" > /dev/null");
if(ret[3] != 0)
{
RLOGD("radio_property unload\n");
flag = 1;
}
- ret[4] = system("uci show | grep \"^service\.\"");
+ ret[4] = system("uci show | grep \"^service\.\" > /dev/null");
if(ret[4] != 0)
{
RLOGD("service unload\n");
flag = 1;
}
- ret[5] = system("uci show | grep \"^usb\.\"");
+ ret[5] = system("uci show | grep \"^usb\.\" > /dev/null");
if(ret[5] != 0)
{
RLOGD("usb unload\n");
@@ -444,7 +444,7 @@
{
RLOGD("config reload\n");
result = chdir("/data_backup/");
- result =system("tar -zxvf userdata.tar.gz -C /STATE/");
+ result =system("tar -zxvf userdata.tar.gz -C /STATE/ >/dev/null");
if(result!= 0)
{
RLOGD("cp config fail\n");
diff --git a/src/lynq/lib/liblynq-wifi6/libwifi6.c b/src/lynq/lib/liblynq-wifi6/libwifi6.c
index 0a5a4e3..e99ff0d 100755
--- a/src/lynq/lib/liblynq-wifi6/libwifi6.c
+++ b/src/lynq/lib/liblynq-wifi6/libwifi6.c
@@ -1756,6 +1756,37 @@
return ret;
}
+/*
+ *add func to get conencted STA device ip from dnsmasq ap0.lease
+ *return 0 means get ip success
+ */
+static int inner_get_ip_by_mac_lease(const char * mac, char * ip,int ip_len)
+{
+ char * p;
+ int ret;
+ char cmd[256]={0};
+ if (NULL == mac || NULL == ip)
+ return -1;
+ memset(ip, 0, ip_len);
+ sprintf(cmd, "cat /run/wg870/ap0.lease | grep \"%s\" | awk '{print $3}'", mac);
+ ret = exec_cmd(cmd, ip, ip_len);
+ if( ret == 0 )
+ {
+ p = strchr(ip, '\n');
+ if (NULL != p)
+ {
+ *p = '\0';
+ RLOGD("inner_get_ip_by_mac_lease %s function return is:%d", ip,ret);
+ return ret;
+ }else
+ {
+ ret = -1;
+ }
+ }
+ RLOGD("%s %d function return is:%d",__func__,__LINE__,ret);
+ return ret;
+
+}
static int inner_get_ip_by_mac(const char * mac, char * ip, int ip_len)
{
@@ -1771,6 +1802,9 @@
if (NULL != p)
{
*p = '\0';
+ }else
+ {
+ ret = inner_get_ip_by_mac_lease(mac,ip,ip_len);
}
RLOGD("inner_get_ip_by_mac %s\n", ip);
return ret;
@@ -2213,7 +2247,7 @@
char lynq_wifi_frequency_cmd[128]={0};
char lynq_cmd_mode[128]={0};
char lynq_cmd_slect[128]={0};
- RLOGD("enter lynq_wifi_ap_frequency_set and input frequency is:%d", lynq_wifi_frequency);
+ RLOGD("enter %s %d input frequency:%d",__func__,__LINE__,lynq_wifi_frequency);
//@do check input frequency
check = lynq_check_set_frequency(lynq_wifi_frequency);
if(check != 0)
@@ -2247,6 +2281,7 @@
DO_OK_FAIL_REQUEST(lynq_cmd_mode);
DO_OK_FAIL_REQUEST(cmd_save_config);
//@ tmp do down/up to fix 5G AP turn to 2.4G cannot be conenct
+
system("wl down");
system("wl up");
RLOGD("[%s] -- run cmd down/up --%d",__func__,__LINE__);
@@ -2678,13 +2713,10 @@
int lynq_wifi_ap_start(lynq_wifi_index_e idx)
{
- RLOGD("[lynq_wifi]----enter lynq_wifi_ap_start");
+ RLOGD("enter %s %d",__func__,__LINE__);
char LYNQ_WIFI_CMD[128]={0};
- //const char *lynq_remove_all_cmd = "REMOVE_NETWORK all";
- //const char *lynq_reconfig_cmd = "RECONFIGURE /data/wifi/wg870/wpa_supplicant.conf";
- RLOGD("enter lynq_wifi_ap_channel_get");
- CHECK_IDX(idx, CTRL_AP);
+ CHECK_IDX(idx, CTRL_AP);
CHECK_WPA_CTRL(CTRL_AP);
if (inner_get_ap_interface_name() == NULL)
@@ -2693,8 +2725,6 @@
return -1;
}
- //DO_OK_FAIL_REQUEST(lynq_remove_all_cmd);
- //DO_OK_FAIL_REQUEST(lynq_reconfig_cmd);
sprintf(LYNQ_WIFI_CMD,"SELECT_NETWORK %d",AP_NETWORK_0);
DO_OK_FAIL_REQUEST(LYNQ_WIFI_CMD);
@@ -2722,8 +2752,8 @@
}
RLOGD("[lynq_wifi_ap_start] creat APTmpWatcherThreadProc ok");
}
- RLOGD("[lynq_wifi]----end lynq_wifi_ap_start");
+ RLOGD("end %s %d",__func__,__LINE__);
return 0;
}
@@ -2734,6 +2764,7 @@
int lynq_wifi_ap_stop(lynq_wifi_index_e idx)
{
+ RLOGD("enter %s %d",__func__,__LINE__);
char LYNQ_WIFI_CMD[128]={0};
CHECK_IDX(idx, CTRL_AP);
@@ -2744,7 +2775,6 @@
DO_OK_FAIL_REQUEST(LYNQ_WIFI_CMD);
-// system("connmanctl tether wifi off");
ret = system_call_v("%s %s", start_stop_ap_script, "stop");
if (ret != 0)
@@ -2757,6 +2787,7 @@
pthread_join(g_ap_tmp_watcher_pid, NULL);
g_ap_tmp_watcher_pid = 0;
+ RLOGD("end %s %d",__func__,__LINE__);
return 0;
}
@@ -3118,10 +3149,8 @@
{
if (memcmp(ssid + 1, ap->ap_ssid, strlen(ap->ap_ssid)) == 0 && ssid[strlen(ap->ap_ssid) + 1] == '\"')
{
- RLOGD("-----curr_get ssid form config is %s",ssid);
break;
}
- RLOGD("-----countine to find dest ssid %s ---curr_get ssid from config is %s",ap->ap_ssid,ssid);
}
else
{
@@ -3135,7 +3164,6 @@
}
if (memcmp(tmp_ssid, ap->ap_ssid, ssid_len) == 0)
{
- RLOGD("curr_ssid is(from config) ---- %s ap_info ssid --->",tmp_ssid,ap->ap_ssid);
break;
}
}
@@ -3157,7 +3185,6 @@
for( index=0; index < count; index++ )
{
p = strstr(split_lines[index], "key_mgmt=");
- RLOGD("current p str ------- %s",p);
if(p != NULL)
{
p += 9;
@@ -3176,7 +3203,6 @@
}else{
curr_auth = 1;
}
- RLOGD("************curret_get_auth is %d ssid is %s",curr_auth,ap->ap_ssid);
if( curr_auth < 1 || curr_auth > 6)
{
ret = -1;
@@ -3224,7 +3250,6 @@
if (*password == '\"')
{
*password = '\0';
- RLOGD("---------password------- p:: %s",p);
ret = 0;
break;
}
@@ -3882,17 +3907,13 @@
int lynq_wifi_sta_stop(lynq_wifi_index_e idx)
{
-// char lynq_disable_network_cmd[MAX_CMD];
-// curr_status_info curr_state;
-// ap_info_s ap_info;
+ RLOGD("enter %s %d",__func__,__LINE__);
int i=0;
char state[MAX_CMD];
-// const char * lynq_disable_sta_cmd = "wpa_cli -iwpa_wlan0_cmd -p/var/run/ IFNAME=wlan0 disable_net all";
CHECK_IDX(idx, CTRL_STA);
CHECK_WPA_CTRL(CTRL_STA);
-// system(lynq_disable_sta_cmd);
DO_OK_FAIL_REQUEST(cmd_disconnect);
DO_OK_FAIL_REQUEST(cmd_save_config);
@@ -3920,6 +3941,7 @@
pthread_mutex_lock(&s_global_check_mutex);
g_history_disconnect_valid_num = 0; //clean history_disconenct_list info
pthread_mutex_unlock(&s_global_check_mutex);
+ RLOGD("end %s %d",__func__,__LINE__);
return 0;
// return system("connmanctl disable wifi");
}
@@ -4290,15 +4312,18 @@
}
int lynq_unreg_ap_event_callback(void * priv) {
+ RLOGD("enter %s %d",__func__,__LINE__);
pthread_mutex_lock(&s_ap_callback_mutex);
if (g_ap_callback_priv == priv)
{
g_ap_callback_func = NULL;
g_ap_callback_priv = NULL;
pthread_mutex_unlock(&s_ap_callback_mutex);
+ RLOGD("unreg ap callback pass %s %d",__func__,__LINE__);
return 0;
}
pthread_mutex_unlock(&s_ap_callback_mutex);
+ RLOGE("unreg ap callback fail %s %d",__func__,__LINE__);
return -1;
}
@@ -4331,15 +4356,18 @@
}
int lynq_unreg_sta_event_callback(void * priv) {
+ RLOGD("enter %s %d",__func__,__LINE__);
pthread_mutex_lock(&s_sta_callback_mutex);
if (g_sta_callback_priv == priv)
{
g_sta_callback_func = NULL;
g_sta_callback_priv = NULL;
pthread_mutex_unlock(&s_sta_callback_mutex);
+ RLOGD("unreg sta callback pass %s %d",__func__,__LINE__);
return 0;
}
pthread_mutex_unlock(&s_sta_callback_mutex);
+ RLOGE("unreg sta callback fail %s %d",__func__,__LINE__);
return -1;
}
diff --git a/src/lynq/packages/thirdpart/lynq-wg870/src/drivers/driver_nl80211.c b/src/lynq/packages/thirdpart/lynq-wg870/src/drivers/driver_nl80211.c
index 9434891..dbee70c 100755
--- a/src/lynq/packages/thirdpart/lynq-wg870/src/drivers/driver_nl80211.c
+++ b/src/lynq/packages/thirdpart/lynq-wg870/src/drivers/driver_nl80211.c
@@ -6901,6 +6901,7 @@
os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
ret = wpa_driver_nl80211_try_connect(drv, params, bss);
+ wpa_printf(MSG_INFO,"DebugAssoc wpa_friver_nl80211_try_conenct ret %d %s %d",ret,__func__,__LINE__);
if (ret == -EALREADY) {
wpa_printf(MSG_DEBUG, "nl80211: Explicitly "
"disconnecting before reassociation "
@@ -6947,7 +6948,7 @@
nl80211_mark_disconnected(drv);
- wpa_printf(MSG_DEBUG, "nl80211: Associate (ifindex=%d)",
+ wpa_printf(MSG_INFO, "nl80211: Associate (ifindex=%d)",
drv->ifindex);
msg = nl80211_drv_msg(drv, 0, NL80211_CMD_ASSOCIATE);
if (!msg)
@@ -6980,17 +6981,19 @@
ret = send_and_recv_msgs_connect_handle(drv, msg, drv->first_bss, 1);
msg = NULL;
if (ret) {
- wpa_dbg(drv->ctx, MSG_DEBUG,
+ wpa_printf(MSG_INFO,"DebugAssoc : nl80211: MLME command failed %s %d",__func__,__LINE__);
+ wpa_dbg(drv->ctx, MSG_INFO,
"nl80211: MLME command failed (assoc): ret=%d (%s)",
ret, strerror(-ret));
nl80211_dump_scan(drv);
} else {
- wpa_printf(MSG_DEBUG,
+ wpa_printf(MSG_INFO,
"nl80211: Association request send successfully");
}
fail:
nlmsg_free(msg);
+ wpa_printf(MSG_INFO,"Debug_Assoc %s %d return failed",__func__,__LINE__);
return ret;
}
diff --git a/src/lynq/packages/thirdpart/lynq-wg870/wpa_supplicant/wpa_supplicant.c b/src/lynq/packages/thirdpart/lynq-wg870/wpa_supplicant/wpa_supplicant.c
index 574e6e6..9c35d94 100755
--- a/src/lynq/packages/thirdpart/lynq-wg870/wpa_supplicant/wpa_supplicant.c
+++ b/src/lynq/packages/thirdpart/lynq-wg870/wpa_supplicant/wpa_supplicant.c
@@ -4753,11 +4753,12 @@
#ifdef CONFIG_SAE
params.sae_pwe = wpa_s->conf->sae_pwe;
#endif /* CONFIG_SAE */
-
- ret = wpa_drv_associate(wpa_s, ¶ms);
+ wpa_printf(MSG_INFO,"Debug_Assoc Failed %s %d",__func__,__LINE__);
+ ret = wpa_drv_associate(wpa_s, ¶ms);
+ wpa_printf(MSG_INFO,"Debug_Assoc Failed--wpa_drv_associate ret is %d %s %d",ret,__func__,__LINE__);
os_free(wpa_ie);
if (ret < 0) {
- wpa_msg(wpa_s, MSG_INFO, "Association request to the driver "
+ wpa_msg(wpa_s, MSG_INFO, "Debug_Assoc_WPA Association request to the driver "
"failed");
if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_VALID_ERROR_CODES) {
/*