mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 10:31:38 +08:00
🔥 Sync 2026-05-30 08:42:39
This commit is contained in:
parent
627bce39d2
commit
a330170e90
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=qminfo
|
||||
PKG_VERSION=0.0.2
|
||||
PKG_RELEASE:=4
|
||||
PKG_RELEASE:=5
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
|
||||
@ -450,7 +450,7 @@ static void emit_results(void)
|
||||
if (info.nr_nsa && !info.dcnr_restricted)
|
||||
json_mode_str = "LTE+NR";
|
||||
else if (info.nr_sa)
|
||||
json_mode_str = "5G NR";
|
||||
json_mode_str = "5GNR";
|
||||
else
|
||||
json_mode_str = info.mode[0] ? info.mode : "";
|
||||
|
||||
@ -491,11 +491,11 @@ static void emit_results(void)
|
||||
printf(" \"scc\" : \"%s\",\n", b_scc);
|
||||
printf(" \"bwca\" : \"%u\",\n", info.has_ca ? info.bw_ca_total / 1000 : 0);
|
||||
printf(" \"iccid\" : \"%s\",\n", b_iccid);
|
||||
printf(" \"imsi\" : \"%s\",\n", b_imsi);
|
||||
if (info.has_pci)
|
||||
printf(" \"pci\" : \"%u\"\n", info.pci);
|
||||
else
|
||||
printf(" \"pci\" : \"\"\n");
|
||||
printf(" \"imsi\" : \"%s\"\n", b_imsi);
|
||||
printf("}\n");
|
||||
}
|
||||
|
||||
@ -708,7 +708,7 @@ static void on_lte_ca(QmiClientNas *client, GAsyncResult *res, gpointer ud)
|
||||
if (i > 0) g_strlcat(info.scc_bands, ",", sizeof(info.scc_bands));
|
||||
snprintf(tmp, sizeof(tmp), "B%u", active_band_to_lte_band(el->lte_band));
|
||||
g_strlcat(info.scc_bands, tmp, sizeof(info.scc_bands));
|
||||
snprintf(tmp, sizeof(tmp), "+%u ", active_band_to_lte_band(el->lte_band));
|
||||
snprintf(tmp, sizeof(tmp), "+%u", active_band_to_lte_band(el->lte_band));
|
||||
g_strlcat(info.scc_bands_json, tmp, sizeof(info.scc_bands_json));
|
||||
|
||||
total += bw_index_to_khz((guint8)el->dl_bandwidth);
|
||||
|
||||
@ -7,8 +7,8 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=quickfile
|
||||
PKG_VERSION:=1.0.18
|
||||
PKG_RELEASE:=3
|
||||
PKG_VERSION:=1.0.19
|
||||
PKG_RELEASE:=4
|
||||
|
||||
PKG_SOURCE:=quickfile-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://r2.cooluc.com/source
|
||||
|
||||
Loading…
Reference in New Issue
Block a user