mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-16 17:01:37 +00:00
ipq807x: add support for wf194c4
Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
parent
ec2e24e982
commit
485c689408
2
.github/workflows/build-dev.yml
vendored
2
.github/workflows/build-dev.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target: ['cig_wf188n', 'cig_wf194c', 'cig_wf160d', 'edgecore_eap101', 'edgecore_eap102', 'edgecore_ecs4100-12ph', 'edgecore_ecw5211', 'edgecore_ecw5410', 'edgecore_oap100', 'edgecore_ssw2ac2600', 'edgecore_spw2ac1200', 'edgecore_spw2ac1200-lan-poe', 'hfcl_ion4.yml', 'indio_um-305ac', 'linksys_ea6350-v4', 'linksys_e8450-ubi', 'linksys_ea8300', 'tp-link_ec420-g1', 'tplink_ex227', 'tplink_ex228', 'tplink_ex447', 'wallys_dr40x9' ]
|
||||
target: ['cig_wf188n', 'cig_wf194c', 'cig_wf194c4', 'cig_wf160d', 'edgecore_eap101', 'edgecore_eap102', 'edgecore_ecs4100-12ph', 'edgecore_ecw5211', 'edgecore_ecw5410', 'edgecore_oap100', 'edgecore_ssw2ac2600', 'edgecore_spw2ac1200', 'edgecore_spw2ac1200-lan-poe', 'hfcl_ion4.yml', 'indio_um-305ac', 'linksys_ea6350-v4', 'linksys_e8450-ubi', 'linksys_ea8300', 'tp-link_ec420-g1', 'tplink_ex227', 'tplink_ex228', 'tplink_ex447', 'wallys_dr40x9' ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
@ -27,6 +27,7 @@ ALLWIFIBOARDS:= \
|
||||
cig-wf188 \
|
||||
cig-wf188n \
|
||||
cig-wf194c \
|
||||
cig-wf194c4 \
|
||||
edgecore-eap101 \
|
||||
sercomm-wallaby \
|
||||
edgecore-eap102 \
|
||||
@ -129,6 +130,7 @@ endef
|
||||
$(eval $(call generate-ath11k-wifi-package,cig-wf188,Cigtech WF188))
|
||||
$(eval $(call generate-ath11k-wifi-package,cig-wf188n,Cigtech WF188n))
|
||||
$(eval $(call generate-ath11k-wifi-package,cig-wf194c,Cigtech WF194c))
|
||||
$(eval $(call generate-ath11k-wifi-package,cig-wf194c4,Cigtech WF194c4))
|
||||
$(eval $(call generate-ath11k-wifi-package,sercomm-wallaby,Sercomm Kiwi))
|
||||
$(eval $(call generate-ath11k-wifi-package,edgecore-eap101,EdgeCore EAP101))
|
||||
$(eval $(call generate-ath11k-wifi-package,edgecore-eap102,Edgecore EAP102))
|
||||
|
||||
BIN
feeds/wifi-ax/ath11k-wifi/board-cig-wf194c4.bin.IPQ8074
Normal file
BIN
feeds/wifi-ax/ath11k-wifi/board-cig-wf194c4.bin.IPQ8074
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,311 +0,0 @@
|
||||
From 558ca4df452ed2bdf8bbc9b82e4d23542a3cf66d Mon Sep 17 00:00:00 2001
|
||||
From: John Crispin <john@phrozen.org>
|
||||
Date: Sun, 5 Sep 2021 11:46:09 +0200
|
||||
Subject: [PATCH] ipq5018
|
||||
|
||||
---
|
||||
target/linux/ipq807x/Makefile | 2 +-
|
||||
.../ipq807x/base-files/etc/board.d/02_network | 1 +
|
||||
.../etc/hotplug.d/firmware/10-ath11k-caldata | 11 +--
|
||||
.../base-files/lib/upgrade/platform.sh | 4 +-
|
||||
target/linux/ipq807x/image/ipq50xx.mk | 10 +++
|
||||
target/linux/ipq807x/ipq50xx/config-default | 84 +++++++++++++++++++
|
||||
target/linux/ipq807x/ipq50xx/config-lowmem | 73 ++++++++++++++++
|
||||
target/linux/ipq807x/ipq50xx/target.mk | 10 +++
|
||||
8 files changed, 188 insertions(+), 7 deletions(-)
|
||||
create mode 100644 target/linux/ipq807x/image/ipq50xx.mk
|
||||
create mode 100644 target/linux/ipq807x/ipq50xx/config-default
|
||||
create mode 100644 target/linux/ipq807x/ipq50xx/config-lowmem
|
||||
create mode 100644 target/linux/ipq807x/ipq50xx/target.mk
|
||||
|
||||
diff --git a/target/linux/ipq807x/Makefile b/target/linux/ipq807x/Makefile
|
||||
index 97c770df4a..abdb82ec5d 100644
|
||||
--- a/target/linux/ipq807x/Makefile
|
||||
+++ b/target/linux/ipq807x/Makefile
|
||||
@@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk
|
||||
ARCH:=arm
|
||||
BOARD:=ipq807x
|
||||
BOARDNAME:=Qualcomm Atheros AX
|
||||
-SUBTARGETS:=ipq807x ipq60xx
|
||||
+SUBTARGETS:=ipq807x ipq60xx ipq50xx
|
||||
FEATURES:=squashfs ramdisk nand pcie usb
|
||||
KERNELNAME:=Image dtbs
|
||||
CPU_TYPE:=cortex-a7
|
||||
diff --git a/target/linux/ipq807x/base-files/etc/board.d/02_network b/target/linux/ipq807x/base-files/etc/board.d/02_network
|
||||
index ee9973f7a8..edf0e91143 100755
|
||||
--- a/target/linux/ipq807x/base-files/etc/board.d/02_network
|
||||
+++ b/target/linux/ipq807x/base-files/etc/board.d/02_network
|
||||
@@ -24,6 +24,7 @@ qcom_setup_interfaces()
|
||||
ucidef_set_interface_wan "eth5"
|
||||
;;
|
||||
cig,wf194c|\
|
||||
+ qcom,ipq5018-mp03.3|\
|
||||
sercomm,wallaby)
|
||||
ucidef_set_interface_lan "eth0"
|
||||
ucidef_set_interface_wan "eth1"
|
||||
diff --git a/target/linux/ipq807x/base-files/etc/hotplug.d/firmware/10-ath11k-caldata b/target/linux/ipq807x/base-files/etc/hotplug.d/firmware/10-ath11k-caldata
|
||||
index e64ea1a105..2b768e2f9b 100755
|
||||
--- a/target/linux/ipq807x/base-files/etc/hotplug.d/firmware/10-ath11k-caldata
|
||||
+++ b/target/linux/ipq807x/base-files/etc/hotplug.d/firmware/10-ath11k-caldata
|
||||
@@ -47,7 +47,7 @@ case "$FIRMWARE" in
|
||||
tplink,ex227|\
|
||||
tplink,ex447|\
|
||||
sercomm,wallaby)
|
||||
- caldata_extract "0:ART" 0x1000 0x20000
|
||||
+ caldata_extract "0:ART" 0x1000 0x20000
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
@@ -58,21 +58,22 @@ case "$FIRMWARE" in
|
||||
edgecore,eap101|\
|
||||
qcom,ipq6018-cp01|\
|
||||
xiaomi,ax1800)
|
||||
- caldata_extract "0:ART" 0x1000 0x20000
|
||||
+ caldata_extract "0:ART" 0x1000 0x10000
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
ath11k/QCN9074/hw1.0/caldata_1.bin)
|
||||
case "$board" in
|
||||
qcom,ipq807x-hk14)
|
||||
- caldata_extract "0:ART" 0x26800 0x20000
|
||||
+ caldata_extract "0:ART" 0x26800 0x10000
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
ath11k/QCN9074/hw1.0/caldata_2.bin)
|
||||
case "$board" in
|
||||
- qcom,ipq807x-hk14)
|
||||
- caldata_extract "0:ART" 0x4C000 0x20000
|
||||
+ qcom,ipq807x-hk14|\
|
||||
+ qcom,ipq5018-mp03.3)
|
||||
+ caldata_extract "0:ART" 0x4C000 0x10000
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
diff --git a/target/linux/ipq807x/base-files/lib/upgrade/platform.sh b/target/linux/ipq807x/base-files/lib/upgrade/platform.sh
|
||||
index 4943b6c406..8152ecb0ed 100755
|
||||
--- a/target/linux/ipq807x/base-files/lib/upgrade/platform.sh
|
||||
+++ b/target/linux/ipq807x/base-files/lib/upgrade/platform.sh
|
||||
@@ -30,7 +30,8 @@ platform_check_image() {
|
||||
tplink,ex447|\
|
||||
qcom,ipq6018-cp01|\
|
||||
qcom,ipq807x-hk01|\
|
||||
- qcom,ipq807x-hk14)
|
||||
+ qcom,ipq807x-hk14|\
|
||||
+ qcom,ipq5018-mp03.3)
|
||||
[ "$magic_long" = "73797375" ] && return 0
|
||||
;;
|
||||
esac
|
||||
@@ -52,6 +53,7 @@ platform_do_upgrade() {
|
||||
qcom,ipq6018-cp01|\
|
||||
qcom,ipq807x-hk01|\
|
||||
qcom,ipq807x-hk14|\
|
||||
+ qcom,ipq5018-mp03.3|\
|
||||
tplink,ex447|\
|
||||
tplink,ex227)
|
||||
nand_upgrade_tar "$1"
|
||||
diff --git a/target/linux/ipq807x/image/ipq50xx.mk b/target/linux/ipq807x/image/ipq50xx.mk
|
||||
new file mode 100644
|
||||
index 0000000000..f20d54190e
|
||||
--- /dev/null
|
||||
+++ b/target/linux/ipq807x/image/ipq50xx.mk
|
||||
@@ -0,0 +1,10 @@
|
||||
+KERNEL_LOADADDR := 0x41208000
|
||||
+
|
||||
+define Device/qcom_mp03_3
|
||||
+ DEVICE_TITLE := Qualcomm Maple 03.3
|
||||
+ DEVICE_DTS := qcom-ipq5018-mp03.3
|
||||
+ SUPPORTED_DEVICES := qcom,ipq5018-mp03.3
|
||||
+ DEVICE_PACKAGES := ath11k-wifi-qcom-ipq5018
|
||||
+ DEVICE_DTS_CONFIG := config@mp03.3
|
||||
+endef
|
||||
+TARGET_DEVICES += qcom_mp03_3
|
||||
diff --git a/target/linux/ipq807x/ipq50xx/config-default b/target/linux/ipq807x/ipq50xx/config-default
|
||||
new file mode 100644
|
||||
index 0000000000..b8e202c874
|
||||
--- /dev/null
|
||||
+++ b/target/linux/ipq807x/ipq50xx/config-default
|
||||
@@ -0,0 +1,84 @@
|
||||
+# CONFIG_AHCI_IPQ is not set
|
||||
+CONFIG_ARCH_IPQ5018=y
|
||||
+# CONFIG_DIAGFWD_BRIDGE_CODE is not set
|
||||
+CONFIG_IPQ_ADSS_5018=y
|
||||
+CONFIG_IPQ_APSS_5018=y
|
||||
+CONFIG_IPQ_GCC_5018=y
|
||||
+# CONFIG_NET_SWITCHDEV is not set
|
||||
+CONFIG_NUM_ALT_PARTITION=16
|
||||
+CONFIG_PINCTRL_IPQ5018=y
|
||||
+# CONFIG_IPC_LOGGING is not set
|
||||
+CONFIG_IPQ_SUBSYSTEM_DUMP=y
|
||||
+CONFIG_SPS=y
|
||||
+CONFIG_SPS_SUPPORT_NDP_BAM=y
|
||||
+CONFIG_CORESIGHT=y
|
||||
+CONFIG_CORESIGHT_CSR=y
|
||||
+CONFIG_CORESIGHT_CTI=y
|
||||
+CONFIG_CORESIGHT_EVENT=y
|
||||
+CONFIG_CORESIGHT_HWEVENT=y
|
||||
+CONFIG_CORESIGHT_LINKS_AND_SINKS=y
|
||||
+CONFIG_CORESIGHT_LINK_AND_SINK_TMC=y
|
||||
+CONFIG_CORESIGHT_QCOM_REPLICATOR=y
|
||||
+# CONFIG_INPUT_PM8941_PWRKEY is not set
|
||||
+CONFIG_MDIO_QCA=y
|
||||
+# CONFIG_CRYPTO_ALL_CASES is not set
|
||||
+CONFIG_CRYPTO_DEV_QCOM_ICE=y
|
||||
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
|
||||
+CONFIG_CRYPTO_SHA512=y
|
||||
+# CONFIG_CORESIGHT_QPDI is not set
|
||||
+# CONFIG_CORESIGHT_SINK_ETBV10 is not set
|
||||
+CONFIG_CORESIGHT_SINK_TPIU=y
|
||||
+# CONFIG_CORESIGHT_SOURCE_DUMMY is not set
|
||||
+CONFIG_CORESIGHT_SOURCE_ETM3X=y
|
||||
+CONFIG_CORESIGHT_SOURCE_ETM4X=y
|
||||
+# CONFIG_CORESIGHT_REMOTE_ETM is not set
|
||||
+CONFIG_CORESIGHT_STM=y
|
||||
+CONFIG_CORESIGHT_TPDA=y
|
||||
+CONFIG_CORESIGHT_TPDM=y
|
||||
+# CONFIG_CORESIGHT_TPDM_DEFAULT_ENABLE is not set
|
||||
+CONFIG_IIO=y
|
||||
+# CONFIG_IIO_BUFFER is not set
|
||||
+# CONFIG_IIO_TRIGGER is not set
|
||||
+CONFIG_PCIE_DW_PLAT=y
|
||||
+CONFIG_PHY_IPQ_UNIPHY_PCIE=y
|
||||
+CONFIG_VMSPLIT_2G=y
|
||||
+# CONFIG_VMSPLIT_3G is not set
|
||||
+CONFIG_PPS=y
|
||||
+CONFIG_PTP_1588_CLOCK=y
|
||||
+# CONFIG_DP83640_PHY is not set
|
||||
+CONFIG_PWM_IPQ5018=y
|
||||
+CONFIG_QCOM_APM=y
|
||||
+CONFIG_QCOM_DCC=y
|
||||
+# CONFIG_QCOM_SPMI_TEMP_ALARM is not set
|
||||
+CONFIG_MMC_SDHCI_MSM_ICE=y
|
||||
+CONFIG_USB_BAM=y
|
||||
+CONFIG_MAILBOX=y
|
||||
+# CONFIG_USB_QCOM_DIAG_BRIDGE is not set
|
||||
+# CONFIG_USB_CONFIGFS_F_DIAG is not set
|
||||
+# CONFIG_NF_IPV6_DUMMY_HEADER is not set
|
||||
+CONFIG_RMNET_DATA=y
|
||||
+CONFIG_RMNET_DATA_DEBUG_PKT=y
|
||||
+CONFIG_MTD_NAND_SERIAL=y
|
||||
+CONFIG_PAGE_SCOPE_MULTI_PAGE_READ=y
|
||||
+# CONFIG_RMNET_DATA_FC is not set
|
||||
+CONFIG_CRYPTO_NO_ZERO_LEN_HASH=y
|
||||
+CONFIG_CRYPTO_DISABLE_AES192_TEST=y
|
||||
+# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
||||
+# CONFIG_CPU_FREQ_GOV_PERFORMANCE is not set
|
||||
+# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
||||
+# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set
|
||||
+# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
|
||||
+CONFIG_QTI_EUD=y
|
||||
+CONFIG_USB_QCA_M31_PHY=y
|
||||
+CONFIG_QGIC2_MSI=y
|
||||
+CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
|
||||
+CONFIG_PWM_IPQ4019=y
|
||||
+CONFIG_RMNET=y
|
||||
+CONFIG_QCOM_QMI_RMNET=y
|
||||
+CONFIG_QCOM_QMI_DFC=y
|
||||
+CONFIG_QCOM_QMI_POWER_COLLAPSE=y
|
||||
+CONFIG_RMNET_CTL=y
|
||||
+CONFIG_RMNET_CTL_DEBUG=y
|
||||
+CONFIG_SND_SOC_IPQ_LPASS=y
|
||||
+CONFIG_SND_SOC_IPQ_LPASS_PCM_RAW=y
|
||||
+# CONFIG_SND_SOC_IPQ_PCM_RAW is not set
|
||||
diff --git a/target/linux/ipq807x/ipq50xx/config-lowmem b/target/linux/ipq807x/ipq50xx/config-lowmem
|
||||
new file mode 100644
|
||||
index 0000000000..b1b817ef6f
|
||||
--- /dev/null
|
||||
+++ b/target/linux/ipq807x/ipq50xx/config-lowmem
|
||||
@@ -0,0 +1,73 @@
|
||||
+# CONFIG_AHCI_IPQ is not set
|
||||
+CONFIG_ARCH_IPQ5018=y
|
||||
+# CONFIG_DIAGFWD_BRIDGE_CODE is not set
|
||||
+CONFIG_IPQ_ADSS_5018=y
|
||||
+CONFIG_IPQ_APSS_5018=y
|
||||
+CONFIG_IPQ_GCC_5018=y
|
||||
+# CONFIG_NET_SWITCHDEV is not set
|
||||
+CONFIG_NUM_ALT_PARTITION=16
|
||||
+CONFIG_PINCTRL_IPQ5018=y
|
||||
+# CONFIG_IPC_LOGGING is not set
|
||||
+CONFIG_IPQ_SUBSYSTEM_DUMP=y
|
||||
+# CONFIG_SPS is not set
|
||||
+# CONFIG_SPS_SUPPORT_NDP_BAM is not set
|
||||
+# CONFIG_CORESIGHT is not set
|
||||
+# CONFIG_INPUT_PM8941_PWRKEY is not set
|
||||
+CONFIG_MDIO_QCA=y
|
||||
+# CONFIG_CRYPTO_ALL_CASES is not set
|
||||
+# CONFIG_CRYPTO_DEV_QCOM_ICE is not set
|
||||
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
|
||||
+# CONFIG_CRYPTO_SHA512 is not set
|
||||
+# CONFIG_IIO is not set
|
||||
+# CONFIG_IIO_BUFFER is not set
|
||||
+# CONFIG_IIO_TRIGGER is not set
|
||||
+CONFIG_PCIE_DW_PLAT=y
|
||||
+CONFIG_PHY_IPQ_UNIPHY_PCIE=y
|
||||
+CONFIG_VMSPLIT_2G=y
|
||||
+# CONFIG_VMSPLIT_3G is not set
|
||||
+# CONFIG_PPS is not set
|
||||
+# CONFIG_PTP_1588_CLOCK is not set
|
||||
+# CONFIG_DP83640_PHY is not set
|
||||
+CONFIG_PWM_IPQ5018=y
|
||||
+CONFIG_QCOM_APM=y
|
||||
+# CONFIG_QCOM_DCC is not set
|
||||
+# CONFIG_QCOM_SPMI_TEMP_ALARM is not set
|
||||
+CONFIG_MMC_SDHCI_MSM_ICE=y
|
||||
+CONFIG_USB_BAM=y
|
||||
+CONFIG_MAILBOX=y
|
||||
+# CONFIG_USB_QCOM_DIAG_BRIDGE is not set
|
||||
+# CONFIG_USB_CONFIGFS_F_DIAG is not set
|
||||
+# CONFIG_NF_IPV6_DUMMY_HEADER is not set
|
||||
+# CONFIG_RMNET_DATA is not set
|
||||
+# CONFIG_RMNET_DATA_DEBUG_PKT is not set
|
||||
+CONFIG_MTD_NAND_SERIAL=y
|
||||
+CONFIG_PAGE_SCOPE_MULTI_PAGE_READ=y
|
||||
+# CONFIG_RMNET_DATA_FC is not set
|
||||
+# CONFIG_CRYPTO_NO_ZERO_LEN_HASH is not set
|
||||
+# CONFIG_CRYPTO_DISABLE_AES192_TEST is not set
|
||||
+# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
||||
+# CONFIG_CPU_FREQ_GOV_PERFORMANCE is not set
|
||||
+# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
||||
+# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set
|
||||
+# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
|
||||
+CONFIG_QTI_EUD=y
|
||||
+CONFIG_USB_QCA_M31_PHY=y
|
||||
+CONFIG_SQUASHFS_XZ=y
|
||||
+# CONFIG_SQUASHFS_ZLIB is not set
|
||||
+# CONFIG_JFFS2_LZMA is not set
|
||||
+CONFIG_JFFS2_ZLIB=y
|
||||
+# CONFIG_LZO_COMPRESS is not set
|
||||
+# CONFIG_LZO_DECOMPRESS is not set
|
||||
+CONFIG_XZ_DEC=y
|
||||
+# CONFIG_XZ_DEC_X86 is not set
|
||||
+# CONFIG_XZ_DEC_POWERPC is not set
|
||||
+# CONFIG_XZ_DEC_IA64 is not set
|
||||
+CONFIG_XZ_DEC_ARM=y
|
||||
+# CONFIG_XZ_DEC_ARMTHUMB is not set
|
||||
+# CONFIG_XZ_DEC_SPARC is not set
|
||||
+CONFIG_XZ_DEC_BCJ=y
|
||||
+# CONFIG_LZO_COMPRESS is not set
|
||||
+# CONFIG_LZO_DECOMPRESS is not set
|
||||
+# CONFIG_CRYPTO is not set
|
||||
+CONFIG_QGIC2_MSI=y
|
||||
+CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
|
||||
diff --git a/target/linux/ipq807x/ipq50xx/target.mk b/target/linux/ipq807x/ipq50xx/target.mk
|
||||
new file mode 100644
|
||||
index 0000000000..649f398ba6
|
||||
--- /dev/null
|
||||
+++ b/target/linux/ipq807x/ipq50xx/target.mk
|
||||
@@ -0,0 +1,10 @@
|
||||
+
|
||||
+SUBTARGET:=ipq50xx
|
||||
+BOARDNAME:=IPQ50XX
|
||||
+CPU_TYPE:=cortex-a7
|
||||
+
|
||||
+DEFAULT_PACKAGES += ath11k-firmware-ipq50xx qca-nss-fw-ipq50xx
|
||||
+
|
||||
+define Target/Description
|
||||
+ Build firmware image for IPQ50xx SoC devices.
|
||||
+endef
|
||||
--
|
||||
2.25.1
|
||||
|
||||
14
profiles/cig_wf194c4.yml
Normal file
14
profiles/cig_wf194c4.yml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
profile: cig_wf194c4
|
||||
target: ipq807x
|
||||
subtarget: ipq807x
|
||||
description: Build image for the CIG WF194C4
|
||||
image: bin/targets/ipq807x/ipq807x/openwrt-ipq807x-cig_wf194c4-squashfs-sysupgrade.tar
|
||||
feeds:
|
||||
- name: ipq807x
|
||||
path: ../../feeds/ipq807x
|
||||
include:
|
||||
- wifi-ax
|
||||
- ucentral-ap
|
||||
diffconfig: |
|
||||
CONFIG_KERNEL_IPQ_MEM_PROFILE=0
|
||||
Loading…
Reference in New Issue
Block a user