├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── config.yml └── workflows │ └── auto-close-non-english-issues.yml ├── LICENSE ├── README.md ├── firmware ├── aq-fw-download │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── include │ │ ├── AQ_API.h │ │ ├── AQ_PhyInterface.h │ │ ├── AQ_PlatformRoutines.h │ │ ├── AQ_RegMacro.h │ │ ├── AQ_ReturnCodes.h │ │ ├── AQ_User.h │ │ └── registerMap │ │ │ ├── APPIA │ │ │ ├── AQ_APPIA_Global_registers.h │ │ │ ├── AQ_APPIA_Global_registers_Defines.h │ │ │ └── AQ_APPIA_Global_registers_reversed.h │ │ │ ├── AQ_RegGroupMaxSizes.h │ │ │ ├── AQ_RegMaps.h │ │ │ └── HHD │ │ │ ├── AQ_HHD_Global_registers.h │ │ │ ├── AQ_HHD_Global_registers_Defines.h │ │ │ └── AQ_HHD_Global_registers_reversed.h │ │ ├── mdioBootLoadCLD.c │ │ └── src │ │ ├── AQ_API.c │ │ └── AQ_PhyInterface.c ├── nss-eip-firmware │ ├── Makefile │ └── src │ │ ├── .gitkeep │ │ ├── ifpp.bin │ │ ├── ipue.bin │ │ ├── ofpp.bin │ │ └── opue.bin └── nss-firmware │ └── Makefile ├── nss-ifb ├── Makefile ├── README.md └── src │ ├── Makefile │ └── nss_ifb.c ├── nss-userspace-oss ├── Makefile ├── libnl-nss │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── include │ │ ├── nss_nlbase.h │ │ ├── nss_nldtls_api.h │ │ ├── nss_nlipv4_api.h │ │ ├── nss_nlipv6_api.h │ │ ├── nss_nlist_api.h │ │ ├── nss_nlmcast_api.h │ │ └── nss_nlsock_api.h │ │ ├── nss_nldtls_api.c │ │ ├── nss_nlipv4_api.c │ │ ├── nss_nlipv6_api.c │ │ ├── nss_nlmcast_api.c │ │ └── nss_nlsock.c ├── nssinfo │ └── patches │ │ └── 001-fix-warnings.patch └── patches │ ├── 000-create-makefile.patch │ ├── 001-libnl-nss-revert-Add-timestamp-support-to-udpst.patch │ ├── 001-nssinfo-fix-warnings.patch │ ├── 002-libnl-modularize-makefile.patch │ ├── 002-nss-switch-to-nl-tiny.patch │ └── 0030-fix-build.patch ├── qca-mcs ├── Makefile └── patches │ ├── 0001-kernel-5.10-compat.patch │ ├── 0002-kernel-6.6.29.patch │ ├── 0003-fix-header-guard-gcc-15.patch │ └── 0004-kernel-6.12.patch ├── qca-nss-cfi ├── Makefile └── patches │ ├── 0004-cryptoapi-v2.0-aead-add-downstream-crypto_tfm_alg_fl.patch │ ├── 0007-cryptoapi-v2.0-fix-crash.patch │ └── 0009-cryptoapi-v2.0-support-kernel-6.12.patch ├── qca-nss-clients ├── Config.in ├── Makefile ├── files │ ├── qca-nss-ipsec │ ├── qca-nss-mirred.init │ ├── qca-nss-netlink.init │ └── qca-nss-ovpn.init ├── patches-11.4 │ ├── 0001-kernel-5.15-support-qdisc.patch │ ├── 0002-kernel-5.4-support-gre.patch │ ├── 0003-kernel-5.4-support-ipsec.patch │ ├── 0004-kernel-5.4-support-dtls.patch │ ├── 0005-vlanmgr-fix-compile-error.patch │ ├── 0006-match-fix-compile-error.patch │ ├── 0007-bridge-fix-compile-error.patch │ ├── 0008-profiler-fix-compile-error.patch │ ├── 0009-gre-fix-compile-error.patch │ ├── 0010-fix-portifmgr.patch │ ├── 0011-dtlsmgr-fix-SHA-header-include-in-5.15.patch │ ├── 0012-dtlsmgr-fix-debug-print-in-5.15.patch │ ├── 0013-tlsmgr-fix-SHA-header-include-in-5.15.patch │ ├── 0014-ovpnmgr-fix-SHA-header-include-in-5.15.patch │ ├── 0015-tunipip6-fix-compile-error-in-5.15.patch │ ├── 0017-tlsmgr-fix-debug-print-in-5.15.patch │ ├── 0018-kernel-6.1-support.patch │ ├── 0019-wifi-meshmgr-fix-uninitialized-and-implicit.patch │ ├── 0020-capwapmgr-fix-compile-error.patch │ ├── 0022-netlink-modularize-makefile.patch │ ├── 0023-mirror-fix-makefile.patch │ ├── 0024-switch-to-wifili.patch │ ├── 0025-nss-clients-add-kernel-6.6-support.patch │ ├── 0026-qdisc-backport-12.4.patch │ ├── 0027-bridge-backport-12.5.patch │ ├── 0027-capwapmgr-backport-12.5.patch │ ├── 0027-map-t-backport-12.5.patch │ ├── 0027-match-backport-12.5.patch │ ├── 0027-pptp-backport-12.5.patch │ ├── 0027-vlan-backport-12.5.patch │ ├── 0028-dtlsmgr-use-eth_hw_addr_set.patch │ ├── 0029-dtlsmgr-properly-update-stats.patch │ ├── 0030-fixup-compiler-errors.patch │ ├── 0031-kernel-6.12-support.patch │ ├── 0032-match-fix-procfs-read-write.patch │ ├── 0033-qdisc-backport-12.5.patch │ ├── 0034-ipsecmgr-backport-12.5.patch │ ├── 0035-netlink-backport-12.5.patch │ ├── 0036-vxlanmgr-backport-12.5.patch │ └── 0037-netlink-reorganize-log-level.patch └── patches │ ├── 0001-kernel-5.15-support-qdisc.patch │ ├── 0002-kernel-5.4-support-gre.patch │ ├── 0003-kernel-5.4-support-ipsec.patch │ ├── 0004-kernel-5.4-support-dtls.patch │ ├── 0005-vlanmgr-fix-compile-error.patch │ ├── 0006-match-fix-compile-error.patch │ ├── 0007-bridge-fix-compile-error.patch │ ├── 0008-profiler-fix-compile-error.patch │ ├── 0010-fix-portifmgr.patch │ ├── 0011-dtlsmgr-fix-SHA-header-include-in-5.15.patch │ ├── 0012-dtlsmgr-fix-debug-print-in-5.15.patch │ ├── 0013-tlsmgr-fix-SHA-header-include-in-5.15.patch │ ├── 0014-ovpnmgr-fix-SHA-header-include-in-5.15.patch │ ├── 0015-tunipip6-fix-compile-error-in-5.15.patch │ ├── 0016-vxlanmgr-fix-compile-error-in-5.15.patch │ ├── 0017-tlsmgr-fix-debug-print-in-5.15.patch │ ├── 0018-kernel-6.1-support.patch │ ├── 0019-wifi-meshmgr-fix-uninitialized-and-implicit.patch │ ├── 0020-capwapmgr-fix-compile-error.patch │ ├── 0022-netlink-modularize-makefile.patch │ ├── 0024-switch-to-wifili.patch │ ├── 0025-nss-clients-add-kernel-6.6-support.patch │ ├── 0028-dtlsmgr-use-eth_hw_addr_set.patch │ ├── 0029-dtlsmgr-properly-update-stats.patch │ ├── 0030-fixup-compiler-errors.patch │ ├── 0031-kernel-6.12-support.patch │ ├── 0032-match-fix-procfs-read-write.patch │ └── 0033-ipsecmgr-fix-compile-error.patch ├── qca-nss-crypto ├── Makefile └── patches │ ├── 0002-nss-crypto-replace-ioremap_nocache-with-ioremap.patch │ └── 0004-nss-crypto-support-kernel-6.12.patch ├── qca-nss-drv ├── Config.in ├── Makefile ├── files │ ├── qca-nss-drv.debug │ ├── qca-nss-drv.hotplug │ ├── qca-nss-drv.init │ ├── qca-nss-drv.uci │ ├── skb_recycler.init │ └── skb_recycler.uci ├── patches-11.4 │ ├── 0001-nss-drv-replace-ioremap_nocache-with-ioremap.patch │ ├── 0002-Control-fab-scaling-from-package-Makefile.patch │ ├── 0005-fix-NULL-pointer-exception.patch │ ├── 0006-Fix-Kernel-Panic-dma-with-NULL-dev.patch │ ├── 0006-nss-drv-Fix-nss_clmap_stats-enum-int-compilation-error-GCC-13.patch │ ├── 0007-Exported-set-nexthop-function.patch │ ├── 0007-nss-drv-Fix-nss_wifili_if-compilation-error-GCC-13.patch │ ├── 0009-kernel-5.15-support.patch │ ├── 0010-nss-drv-dynamic-interface-desc.patch │ ├── 0011-rework-getting-the-reserved-memory-size.patch │ ├── 0012-Makefile-modularize-driver.patch │ ├── 0012-nss-drv-quiet-messages.patch │ ├── 0013-backport-12.4-docs.patch │ ├── 0013-backport-12.4.patch │ ├── 0013-nss-drv-remove-legacy-wifi.patch │ ├── 0014-Add-kernel-6.1-support.patch │ ├── 0014-nss-drv-avoid-recreating-virt_if.patch │ ├── 0015-nss-drv-fix-igs.patch │ ├── 0016-nss-drv-add-support-for-kernel-6.6.patch │ ├── 0016-rework-NSS_CORE_DMA_CACHE_MAINT-ops.patch │ ├── 0017-nss-drv-remove-gmac-stat.patch │ ├── 0017-nss-drv-wifili-add-exported-symbols.patch │ ├── 0018-nss-drv-more-uniform-kernel-msg.patch │ ├── 0019-nss-drv-mac80211-disable-signal-redirection.patch │ ├── 0019-nss-drv-reorg-irq-logic.patch │ ├── 0022-nss-drv-display-fw-version.patch │ ├── 0022-nss-drv-set-addr-to-const.patch │ ├── 0023-add-boot-delay.patch │ ├── 0023-nss-drv-add-missing-wifili-err-codes.patch │ ├── 0024-fix-mesh-stats-naming.patch │ ├── 0025-fix-missing-macro-gre_tunnel.patch │ ├── 0025-nss_rps-fix-procfs-read-write.patch │ ├── 0026-nss-drv-add-support-for-kernel-6.12.patch │ ├── 0026-treewide-fix-compiler-warnings.patch │ ├── 0027-Makefile-set-rearrange-arch-features.patch │ ├── 0027-nss-drv-fix-null-ptr-log.patch │ ├── 0028-backport-12.5-fix-greredir-stats-partial-copy.patch │ ├── 0028-nss_ppe_vp-fix-create-destroy.patch │ ├── 0029-backport-12.5-baseline-stats-write-functionality.patch │ ├── 0030-backport-11.5-pn_mq_en.patch │ └── 0030-backport-12.5-ipq50xx-fixes.patch └── patches │ ├── 0001-nss-drv-replace-ioremap_nocache-with-ioremap.patch │ ├── 0002-nss-drv-add-support-for-kernel-5.15.patch │ ├── 0003-DMA-Fix-NULL-pointer-exceptions.patch │ ├── 0004-nss-drv-rework-NSS_CORE_DMA_CACHE_MAINT-ops.patch │ ├── 0005-nss-drv-rework-getting-the-reserved-memory-size.patch │ ├── 0006-nss-drv-Fix-nss_clmap_stats-enum-int-compilation-error-GCC-13.patch │ ├── 0007-nss-drv-Fix-nss_wifili_if-compilation-error-GCC-13.patch │ ├── 0008-Add-kernel-6.1-support.patch │ ├── 0010-nss-drv-dynamic-interface-desc.patch │ ├── 0011-nss-drv-move-only-for-ipq806x.patch │ ├── 0012-nss-drv-quiet-messages.patch │ ├── 0013-nss-drv-remove-legacy-wifi.patch │ ├── 0014-nss-drv-avoid-recreating-virt_if.patch │ ├── 0015-nss-drv-fix-igs.patch │ ├── 0016-nss-drv-add-support-for-kernel-6.6.patch │ ├── 0017-nss-drv-wifili-add-exported-symbols.patch │ ├── 0018-nss-drv-more-uniform-kernel-msg.patch │ ├── 0019-nss-drv-mac80211-disable-signal-redirection.patch │ ├── 0019-nss-drv-reorg-irq-logic.patch │ ├── 0020-nss-drv-display-fw-version.patch │ ├── 0022-nss-drv-limit-fw-12.2.patch │ ├── 0022-nss-drv-set-addr-to-const.patch │ ├── 0023-add-boot-delay.patch │ ├── 0024-fix-mesh-stats-naming.patch │ ├── 0025-nss_rps-fix-procfs-read-write.patch │ ├── 0026-nss-drv-add-support-for-kernel-6.12.patch │ ├── 0026-nss_gre-fix-missing-macro.patch │ ├── 0026-treewide-fix-compiler-warnings.patch │ ├── 0027-Makefile-set-rearrange-arch-features.patch │ ├── 0027-nss-drv-fix-null-ptr-log.patch │ └── 0028-nss_ppe_vp-fix-create-destroy.patch ├── qca-nss-ecm ├── Makefile ├── files │ ├── disable_offloads.hotplug │ ├── disable_offloads.sh │ ├── ecm_dump.sh │ ├── on-demand-down │ ├── qca-nss-ecm.defaults │ ├── qca-nss-ecm.firewall │ ├── qca-nss-ecm.init │ ├── qca-nss-ecm.sysctl │ └── qca-nss-ecm.uci └── patches │ ├── 0001-treewide-componentize-the-module-even-more.patch │ ├── 0004-qca-nss-ecm-resolve-the-cpu-high-load-regarding-ecm.patch │ ├── 0006-treewide-rework-notifier-changes-for-5.15.patch │ ├── 0008-ecm_tracker_datagram-drop-static-for-EXPORT_SYMBOL.patch │ ├── 0009-frontends-drop-udp_get_timeouts-and-use-standard-ups.patch │ ├── 0010-ecm_interface-fix-ppp-generic-function-calls-for-5.15.patch │ ├── 0011-ecm_classifier-move-defs.patch │ ├── 0012-ecm_add-check-for-pppoe.patch │ ├── 0013-treewide-export-ipv4-and-ipv6-symbols.patch │ ├── 0015-ecm-add-support-for-kernel-6.6.patch │ ├── 0016-ecm-conditionally-check-mlo-device.patch │ ├── 0017-ecm-interface-fix-fortify_memcpy_chk.patch │ ├── 0018-ecm-compat-nss-12_5.patch │ ├── 0020-remove-check-mlo-device.patch │ ├── 0021-fix-read-write-tcp-udp-denied-ports.patch │ ├── 0022-fix-undefined-dev-for-tunipip6.patch │ ├── 0023-nss-ecm-add-kernel-6.12-support.patch │ └── 0024-ecm-add-wildcard-opt-to-del-denied.patch ├── qca-nss-macsec ├── Makefile └── patches │ └── 0001-change-warning-to-debug.patch └── qca-ssdk-shell ├── Makefile └── patches ├── 0002-qca-ssdk-shell-fix-ioctl-segfault.patch ├── 0003-qca-ssdk-shell-fix-tmpbool.patch ├── 0004-qca-ssdk-shell-fix-build-gcc-15.patch ├── 0005-qca-ssdk-shell-fix-make.patch └── 0006-qca-ssdk-shell-remove-unused-chip-code.patch /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: [] 3 | -------------------------------------------------------------------------------- /.github/workflows/auto-close-non-english-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/.github/workflows/auto-close-non-english-issues.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/README.md -------------------------------------------------------------------------------- /firmware/aq-fw-download/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/Makefile -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/Makefile -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/AQ_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/AQ_API.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/AQ_PhyInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/AQ_PhyInterface.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/AQ_PlatformRoutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/AQ_PlatformRoutines.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/AQ_RegMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/AQ_RegMacro.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/AQ_ReturnCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/AQ_ReturnCodes.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/AQ_User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/AQ_User.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/registerMap/APPIA/AQ_APPIA_Global_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/registerMap/APPIA/AQ_APPIA_Global_registers.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/registerMap/APPIA/AQ_APPIA_Global_registers_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/registerMap/APPIA/AQ_APPIA_Global_registers_Defines.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/registerMap/APPIA/AQ_APPIA_Global_registers_reversed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/registerMap/APPIA/AQ_APPIA_Global_registers_reversed.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/registerMap/AQ_RegGroupMaxSizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/registerMap/AQ_RegGroupMaxSizes.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/registerMap/AQ_RegMaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/registerMap/AQ_RegMaps.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/registerMap/HHD/AQ_HHD_Global_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/registerMap/HHD/AQ_HHD_Global_registers.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/registerMap/HHD/AQ_HHD_Global_registers_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/registerMap/HHD/AQ_HHD_Global_registers_Defines.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/include/registerMap/HHD/AQ_HHD_Global_registers_reversed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/include/registerMap/HHD/AQ_HHD_Global_registers_reversed.h -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/mdioBootLoadCLD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/mdioBootLoadCLD.c -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/src/AQ_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/src/AQ_API.c -------------------------------------------------------------------------------- /firmware/aq-fw-download/src/src/AQ_PhyInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/aq-fw-download/src/src/AQ_PhyInterface.c -------------------------------------------------------------------------------- /firmware/nss-eip-firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/nss-eip-firmware/Makefile -------------------------------------------------------------------------------- /firmware/nss-eip-firmware/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firmware/nss-eip-firmware/src/ifpp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/nss-eip-firmware/src/ifpp.bin -------------------------------------------------------------------------------- /firmware/nss-eip-firmware/src/ipue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/nss-eip-firmware/src/ipue.bin -------------------------------------------------------------------------------- /firmware/nss-eip-firmware/src/ofpp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/nss-eip-firmware/src/ofpp.bin -------------------------------------------------------------------------------- /firmware/nss-eip-firmware/src/opue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/nss-eip-firmware/src/opue.bin -------------------------------------------------------------------------------- /firmware/nss-firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/firmware/nss-firmware/Makefile -------------------------------------------------------------------------------- /nss-ifb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-ifb/Makefile -------------------------------------------------------------------------------- /nss-ifb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-ifb/README.md -------------------------------------------------------------------------------- /nss-ifb/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-ifb/src/Makefile -------------------------------------------------------------------------------- /nss-ifb/src/nss_ifb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-ifb/src/nss_ifb.c -------------------------------------------------------------------------------- /nss-userspace-oss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/Makefile -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/Makefile -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/Makefile -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/include/nss_nlbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/include/nss_nlbase.h -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/include/nss_nldtls_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/include/nss_nldtls_api.h -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/include/nss_nlipv4_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/include/nss_nlipv4_api.h -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/include/nss_nlipv6_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/include/nss_nlipv6_api.h -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/include/nss_nlist_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/include/nss_nlist_api.h -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/include/nss_nlmcast_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/include/nss_nlmcast_api.h -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/include/nss_nlsock_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/include/nss_nlsock_api.h -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/nss_nldtls_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/nss_nldtls_api.c -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/nss_nlipv4_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/nss_nlipv4_api.c -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/nss_nlipv6_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/nss_nlipv6_api.c -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/nss_nlmcast_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/nss_nlmcast_api.c -------------------------------------------------------------------------------- /nss-userspace-oss/libnl-nss/src/nss_nlsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/libnl-nss/src/nss_nlsock.c -------------------------------------------------------------------------------- /nss-userspace-oss/nssinfo/patches/001-fix-warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/nssinfo/patches/001-fix-warnings.patch -------------------------------------------------------------------------------- /nss-userspace-oss/patches/000-create-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/patches/000-create-makefile.patch -------------------------------------------------------------------------------- /nss-userspace-oss/patches/001-libnl-nss-revert-Add-timestamp-support-to-udpst.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/patches/001-libnl-nss-revert-Add-timestamp-support-to-udpst.patch -------------------------------------------------------------------------------- /nss-userspace-oss/patches/001-nssinfo-fix-warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/patches/001-nssinfo-fix-warnings.patch -------------------------------------------------------------------------------- /nss-userspace-oss/patches/002-libnl-modularize-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/patches/002-libnl-modularize-makefile.patch -------------------------------------------------------------------------------- /nss-userspace-oss/patches/002-nss-switch-to-nl-tiny.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/patches/002-nss-switch-to-nl-tiny.patch -------------------------------------------------------------------------------- /nss-userspace-oss/patches/0030-fix-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/nss-userspace-oss/patches/0030-fix-build.patch -------------------------------------------------------------------------------- /qca-mcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-mcs/Makefile -------------------------------------------------------------------------------- /qca-mcs/patches/0001-kernel-5.10-compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-mcs/patches/0001-kernel-5.10-compat.patch -------------------------------------------------------------------------------- /qca-mcs/patches/0002-kernel-6.6.29.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-mcs/patches/0002-kernel-6.6.29.patch -------------------------------------------------------------------------------- /qca-mcs/patches/0003-fix-header-guard-gcc-15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-mcs/patches/0003-fix-header-guard-gcc-15.patch -------------------------------------------------------------------------------- /qca-mcs/patches/0004-kernel-6.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-mcs/patches/0004-kernel-6.12.patch -------------------------------------------------------------------------------- /qca-nss-cfi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-cfi/Makefile -------------------------------------------------------------------------------- /qca-nss-cfi/patches/0004-cryptoapi-v2.0-aead-add-downstream-crypto_tfm_alg_fl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-cfi/patches/0004-cryptoapi-v2.0-aead-add-downstream-crypto_tfm_alg_fl.patch -------------------------------------------------------------------------------- /qca-nss-cfi/patches/0007-cryptoapi-v2.0-fix-crash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-cfi/patches/0007-cryptoapi-v2.0-fix-crash.patch -------------------------------------------------------------------------------- /qca-nss-cfi/patches/0009-cryptoapi-v2.0-support-kernel-6.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-cfi/patches/0009-cryptoapi-v2.0-support-kernel-6.12.patch -------------------------------------------------------------------------------- /qca-nss-clients/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/Config.in -------------------------------------------------------------------------------- /qca-nss-clients/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/Makefile -------------------------------------------------------------------------------- /qca-nss-clients/files/qca-nss-ipsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/files/qca-nss-ipsec -------------------------------------------------------------------------------- /qca-nss-clients/files/qca-nss-mirred.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/files/qca-nss-mirred.init -------------------------------------------------------------------------------- /qca-nss-clients/files/qca-nss-netlink.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/files/qca-nss-netlink.init -------------------------------------------------------------------------------- /qca-nss-clients/files/qca-nss-ovpn.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/files/qca-nss-ovpn.init -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0001-kernel-5.15-support-qdisc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0001-kernel-5.15-support-qdisc.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0002-kernel-5.4-support-gre.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0002-kernel-5.4-support-gre.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0003-kernel-5.4-support-ipsec.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0003-kernel-5.4-support-ipsec.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0004-kernel-5.4-support-dtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0004-kernel-5.4-support-dtls.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0005-vlanmgr-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0005-vlanmgr-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0006-match-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0006-match-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0007-bridge-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0007-bridge-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0008-profiler-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0008-profiler-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0009-gre-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0009-gre-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0010-fix-portifmgr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0010-fix-portifmgr.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0011-dtlsmgr-fix-SHA-header-include-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0011-dtlsmgr-fix-SHA-header-include-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0012-dtlsmgr-fix-debug-print-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0012-dtlsmgr-fix-debug-print-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0013-tlsmgr-fix-SHA-header-include-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0013-tlsmgr-fix-SHA-header-include-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0014-ovpnmgr-fix-SHA-header-include-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0014-ovpnmgr-fix-SHA-header-include-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0015-tunipip6-fix-compile-error-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0015-tunipip6-fix-compile-error-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0017-tlsmgr-fix-debug-print-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0017-tlsmgr-fix-debug-print-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0018-kernel-6.1-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0018-kernel-6.1-support.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0019-wifi-meshmgr-fix-uninitialized-and-implicit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0019-wifi-meshmgr-fix-uninitialized-and-implicit.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0020-capwapmgr-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0020-capwapmgr-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0022-netlink-modularize-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0022-netlink-modularize-makefile.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0023-mirror-fix-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0023-mirror-fix-makefile.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0024-switch-to-wifili.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0024-switch-to-wifili.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0025-nss-clients-add-kernel-6.6-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0025-nss-clients-add-kernel-6.6-support.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0026-qdisc-backport-12.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0026-qdisc-backport-12.4.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0027-bridge-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0027-bridge-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0027-capwapmgr-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0027-capwapmgr-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0027-map-t-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0027-map-t-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0027-match-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0027-match-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0027-pptp-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0027-pptp-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0027-vlan-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0027-vlan-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0028-dtlsmgr-use-eth_hw_addr_set.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0028-dtlsmgr-use-eth_hw_addr_set.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0029-dtlsmgr-properly-update-stats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0029-dtlsmgr-properly-update-stats.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0030-fixup-compiler-errors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0030-fixup-compiler-errors.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0031-kernel-6.12-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0031-kernel-6.12-support.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0032-match-fix-procfs-read-write.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0032-match-fix-procfs-read-write.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0033-qdisc-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0033-qdisc-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0034-ipsecmgr-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0034-ipsecmgr-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0035-netlink-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0035-netlink-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0036-vxlanmgr-backport-12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0036-vxlanmgr-backport-12.5.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches-11.4/0037-netlink-reorganize-log-level.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches-11.4/0037-netlink-reorganize-log-level.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0001-kernel-5.15-support-qdisc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0001-kernel-5.15-support-qdisc.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0002-kernel-5.4-support-gre.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0002-kernel-5.4-support-gre.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0003-kernel-5.4-support-ipsec.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0003-kernel-5.4-support-ipsec.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0004-kernel-5.4-support-dtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0004-kernel-5.4-support-dtls.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0005-vlanmgr-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0005-vlanmgr-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0006-match-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0006-match-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0007-bridge-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0007-bridge-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0008-profiler-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0008-profiler-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0010-fix-portifmgr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0010-fix-portifmgr.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0011-dtlsmgr-fix-SHA-header-include-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0011-dtlsmgr-fix-SHA-header-include-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0012-dtlsmgr-fix-debug-print-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0012-dtlsmgr-fix-debug-print-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0013-tlsmgr-fix-SHA-header-include-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0013-tlsmgr-fix-SHA-header-include-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0014-ovpnmgr-fix-SHA-header-include-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0014-ovpnmgr-fix-SHA-header-include-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0015-tunipip6-fix-compile-error-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0015-tunipip6-fix-compile-error-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0016-vxlanmgr-fix-compile-error-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0016-vxlanmgr-fix-compile-error-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0017-tlsmgr-fix-debug-print-in-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0017-tlsmgr-fix-debug-print-in-5.15.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0018-kernel-6.1-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0018-kernel-6.1-support.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0019-wifi-meshmgr-fix-uninitialized-and-implicit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0019-wifi-meshmgr-fix-uninitialized-and-implicit.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0020-capwapmgr-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0020-capwapmgr-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0022-netlink-modularize-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0022-netlink-modularize-makefile.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0024-switch-to-wifili.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0024-switch-to-wifili.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0025-nss-clients-add-kernel-6.6-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0025-nss-clients-add-kernel-6.6-support.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0028-dtlsmgr-use-eth_hw_addr_set.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0028-dtlsmgr-use-eth_hw_addr_set.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0029-dtlsmgr-properly-update-stats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0029-dtlsmgr-properly-update-stats.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0030-fixup-compiler-errors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0030-fixup-compiler-errors.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0031-kernel-6.12-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0031-kernel-6.12-support.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0032-match-fix-procfs-read-write.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0032-match-fix-procfs-read-write.patch -------------------------------------------------------------------------------- /qca-nss-clients/patches/0033-ipsecmgr-fix-compile-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-clients/patches/0033-ipsecmgr-fix-compile-error.patch -------------------------------------------------------------------------------- /qca-nss-crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-crypto/Makefile -------------------------------------------------------------------------------- /qca-nss-crypto/patches/0002-nss-crypto-replace-ioremap_nocache-with-ioremap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-crypto/patches/0002-nss-crypto-replace-ioremap_nocache-with-ioremap.patch -------------------------------------------------------------------------------- /qca-nss-crypto/patches/0004-nss-crypto-support-kernel-6.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-crypto/patches/0004-nss-crypto-support-kernel-6.12.patch -------------------------------------------------------------------------------- /qca-nss-drv/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/Config.in -------------------------------------------------------------------------------- /qca-nss-drv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/Makefile -------------------------------------------------------------------------------- /qca-nss-drv/files/qca-nss-drv.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/files/qca-nss-drv.debug -------------------------------------------------------------------------------- /qca-nss-drv/files/qca-nss-drv.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/files/qca-nss-drv.hotplug -------------------------------------------------------------------------------- /qca-nss-drv/files/qca-nss-drv.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/files/qca-nss-drv.init -------------------------------------------------------------------------------- /qca-nss-drv/files/qca-nss-drv.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/files/qca-nss-drv.uci -------------------------------------------------------------------------------- /qca-nss-drv/files/skb_recycler.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/files/skb_recycler.init -------------------------------------------------------------------------------- /qca-nss-drv/files/skb_recycler.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/files/skb_recycler.uci -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0001-nss-drv-replace-ioremap_nocache-with-ioremap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0001-nss-drv-replace-ioremap_nocache-with-ioremap.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0002-Control-fab-scaling-from-package-Makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0002-Control-fab-scaling-from-package-Makefile.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0005-fix-NULL-pointer-exception.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0005-fix-NULL-pointer-exception.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0006-Fix-Kernel-Panic-dma-with-NULL-dev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0006-Fix-Kernel-Panic-dma-with-NULL-dev.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0006-nss-drv-Fix-nss_clmap_stats-enum-int-compilation-error-GCC-13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0006-nss-drv-Fix-nss_clmap_stats-enum-int-compilation-error-GCC-13.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0007-Exported-set-nexthop-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0007-Exported-set-nexthop-function.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0007-nss-drv-Fix-nss_wifili_if-compilation-error-GCC-13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0007-nss-drv-Fix-nss_wifili_if-compilation-error-GCC-13.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0009-kernel-5.15-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0009-kernel-5.15-support.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0010-nss-drv-dynamic-interface-desc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0010-nss-drv-dynamic-interface-desc.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0011-rework-getting-the-reserved-memory-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0011-rework-getting-the-reserved-memory-size.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0012-Makefile-modularize-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0012-Makefile-modularize-driver.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0012-nss-drv-quiet-messages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0012-nss-drv-quiet-messages.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0013-backport-12.4-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0013-backport-12.4-docs.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0013-backport-12.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0013-backport-12.4.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0013-nss-drv-remove-legacy-wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0013-nss-drv-remove-legacy-wifi.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0014-Add-kernel-6.1-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0014-Add-kernel-6.1-support.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0014-nss-drv-avoid-recreating-virt_if.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0014-nss-drv-avoid-recreating-virt_if.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0015-nss-drv-fix-igs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0015-nss-drv-fix-igs.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0016-nss-drv-add-support-for-kernel-6.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0016-nss-drv-add-support-for-kernel-6.6.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0016-rework-NSS_CORE_DMA_CACHE_MAINT-ops.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0016-rework-NSS_CORE_DMA_CACHE_MAINT-ops.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0017-nss-drv-remove-gmac-stat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0017-nss-drv-remove-gmac-stat.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0017-nss-drv-wifili-add-exported-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0017-nss-drv-wifili-add-exported-symbols.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0018-nss-drv-more-uniform-kernel-msg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0018-nss-drv-more-uniform-kernel-msg.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0019-nss-drv-mac80211-disable-signal-redirection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0019-nss-drv-mac80211-disable-signal-redirection.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0019-nss-drv-reorg-irq-logic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0019-nss-drv-reorg-irq-logic.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0022-nss-drv-display-fw-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0022-nss-drv-display-fw-version.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0022-nss-drv-set-addr-to-const.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0022-nss-drv-set-addr-to-const.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0023-add-boot-delay.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0023-add-boot-delay.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0023-nss-drv-add-missing-wifili-err-codes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0023-nss-drv-add-missing-wifili-err-codes.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0024-fix-mesh-stats-naming.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0024-fix-mesh-stats-naming.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0025-fix-missing-macro-gre_tunnel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0025-fix-missing-macro-gre_tunnel.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0025-nss_rps-fix-procfs-read-write.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0025-nss_rps-fix-procfs-read-write.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0026-nss-drv-add-support-for-kernel-6.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0026-nss-drv-add-support-for-kernel-6.12.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0026-treewide-fix-compiler-warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0026-treewide-fix-compiler-warnings.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0027-Makefile-set-rearrange-arch-features.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0027-Makefile-set-rearrange-arch-features.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0027-nss-drv-fix-null-ptr-log.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0027-nss-drv-fix-null-ptr-log.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0028-backport-12.5-fix-greredir-stats-partial-copy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0028-backport-12.5-fix-greredir-stats-partial-copy.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0028-nss_ppe_vp-fix-create-destroy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0028-nss_ppe_vp-fix-create-destroy.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0029-backport-12.5-baseline-stats-write-functionality.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0029-backport-12.5-baseline-stats-write-functionality.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0030-backport-11.5-pn_mq_en.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0030-backport-11.5-pn_mq_en.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches-11.4/0030-backport-12.5-ipq50xx-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches-11.4/0030-backport-12.5-ipq50xx-fixes.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0001-nss-drv-replace-ioremap_nocache-with-ioremap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0001-nss-drv-replace-ioremap_nocache-with-ioremap.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0002-nss-drv-add-support-for-kernel-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0002-nss-drv-add-support-for-kernel-5.15.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0003-DMA-Fix-NULL-pointer-exceptions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0003-DMA-Fix-NULL-pointer-exceptions.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0004-nss-drv-rework-NSS_CORE_DMA_CACHE_MAINT-ops.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0004-nss-drv-rework-NSS_CORE_DMA_CACHE_MAINT-ops.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0005-nss-drv-rework-getting-the-reserved-memory-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0005-nss-drv-rework-getting-the-reserved-memory-size.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0006-nss-drv-Fix-nss_clmap_stats-enum-int-compilation-error-GCC-13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0006-nss-drv-Fix-nss_clmap_stats-enum-int-compilation-error-GCC-13.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0007-nss-drv-Fix-nss_wifili_if-compilation-error-GCC-13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0007-nss-drv-Fix-nss_wifili_if-compilation-error-GCC-13.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0008-Add-kernel-6.1-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0008-Add-kernel-6.1-support.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0010-nss-drv-dynamic-interface-desc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0010-nss-drv-dynamic-interface-desc.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0011-nss-drv-move-only-for-ipq806x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0011-nss-drv-move-only-for-ipq806x.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0012-nss-drv-quiet-messages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0012-nss-drv-quiet-messages.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0013-nss-drv-remove-legacy-wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0013-nss-drv-remove-legacy-wifi.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0014-nss-drv-avoid-recreating-virt_if.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0014-nss-drv-avoid-recreating-virt_if.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0015-nss-drv-fix-igs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0015-nss-drv-fix-igs.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0016-nss-drv-add-support-for-kernel-6.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0016-nss-drv-add-support-for-kernel-6.6.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0017-nss-drv-wifili-add-exported-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0017-nss-drv-wifili-add-exported-symbols.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0018-nss-drv-more-uniform-kernel-msg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0018-nss-drv-more-uniform-kernel-msg.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0019-nss-drv-mac80211-disable-signal-redirection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0019-nss-drv-mac80211-disable-signal-redirection.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0019-nss-drv-reorg-irq-logic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0019-nss-drv-reorg-irq-logic.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0020-nss-drv-display-fw-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0020-nss-drv-display-fw-version.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0022-nss-drv-limit-fw-12.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0022-nss-drv-limit-fw-12.2.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0022-nss-drv-set-addr-to-const.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0022-nss-drv-set-addr-to-const.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0023-add-boot-delay.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0023-add-boot-delay.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0024-fix-mesh-stats-naming.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0024-fix-mesh-stats-naming.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0025-nss_rps-fix-procfs-read-write.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0025-nss_rps-fix-procfs-read-write.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0026-nss-drv-add-support-for-kernel-6.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0026-nss-drv-add-support-for-kernel-6.12.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0026-nss_gre-fix-missing-macro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0026-nss_gre-fix-missing-macro.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0026-treewide-fix-compiler-warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0026-treewide-fix-compiler-warnings.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0027-Makefile-set-rearrange-arch-features.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0027-Makefile-set-rearrange-arch-features.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0027-nss-drv-fix-null-ptr-log.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0027-nss-drv-fix-null-ptr-log.patch -------------------------------------------------------------------------------- /qca-nss-drv/patches/0028-nss_ppe_vp-fix-create-destroy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-drv/patches/0028-nss_ppe_vp-fix-create-destroy.patch -------------------------------------------------------------------------------- /qca-nss-ecm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/Makefile -------------------------------------------------------------------------------- /qca-nss-ecm/files/disable_offloads.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/disable_offloads.hotplug -------------------------------------------------------------------------------- /qca-nss-ecm/files/disable_offloads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/disable_offloads.sh -------------------------------------------------------------------------------- /qca-nss-ecm/files/ecm_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/ecm_dump.sh -------------------------------------------------------------------------------- /qca-nss-ecm/files/on-demand-down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/on-demand-down -------------------------------------------------------------------------------- /qca-nss-ecm/files/qca-nss-ecm.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/qca-nss-ecm.defaults -------------------------------------------------------------------------------- /qca-nss-ecm/files/qca-nss-ecm.firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/qca-nss-ecm.firewall -------------------------------------------------------------------------------- /qca-nss-ecm/files/qca-nss-ecm.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/qca-nss-ecm.init -------------------------------------------------------------------------------- /qca-nss-ecm/files/qca-nss-ecm.sysctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/qca-nss-ecm.sysctl -------------------------------------------------------------------------------- /qca-nss-ecm/files/qca-nss-ecm.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/files/qca-nss-ecm.uci -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0001-treewide-componentize-the-module-even-more.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0001-treewide-componentize-the-module-even-more.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0004-qca-nss-ecm-resolve-the-cpu-high-load-regarding-ecm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0004-qca-nss-ecm-resolve-the-cpu-high-load-regarding-ecm.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0006-treewide-rework-notifier-changes-for-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0006-treewide-rework-notifier-changes-for-5.15.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0008-ecm_tracker_datagram-drop-static-for-EXPORT_SYMBOL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0008-ecm_tracker_datagram-drop-static-for-EXPORT_SYMBOL.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0009-frontends-drop-udp_get_timeouts-and-use-standard-ups.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0009-frontends-drop-udp_get_timeouts-and-use-standard-ups.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0010-ecm_interface-fix-ppp-generic-function-calls-for-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0010-ecm_interface-fix-ppp-generic-function-calls-for-5.15.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0011-ecm_classifier-move-defs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0011-ecm_classifier-move-defs.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0012-ecm_add-check-for-pppoe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0012-ecm_add-check-for-pppoe.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0013-treewide-export-ipv4-and-ipv6-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0013-treewide-export-ipv4-and-ipv6-symbols.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0015-ecm-add-support-for-kernel-6.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0015-ecm-add-support-for-kernel-6.6.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0016-ecm-conditionally-check-mlo-device.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0016-ecm-conditionally-check-mlo-device.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0017-ecm-interface-fix-fortify_memcpy_chk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0017-ecm-interface-fix-fortify_memcpy_chk.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0018-ecm-compat-nss-12_5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0018-ecm-compat-nss-12_5.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0020-remove-check-mlo-device.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0020-remove-check-mlo-device.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0021-fix-read-write-tcp-udp-denied-ports.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0021-fix-read-write-tcp-udp-denied-ports.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0022-fix-undefined-dev-for-tunipip6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0022-fix-undefined-dev-for-tunipip6.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0023-nss-ecm-add-kernel-6.12-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0023-nss-ecm-add-kernel-6.12-support.patch -------------------------------------------------------------------------------- /qca-nss-ecm/patches/0024-ecm-add-wildcard-opt-to-del-denied.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-ecm/patches/0024-ecm-add-wildcard-opt-to-del-denied.patch -------------------------------------------------------------------------------- /qca-nss-macsec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-macsec/Makefile -------------------------------------------------------------------------------- /qca-nss-macsec/patches/0001-change-warning-to-debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-nss-macsec/patches/0001-change-warning-to-debug.patch -------------------------------------------------------------------------------- /qca-ssdk-shell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-ssdk-shell/Makefile -------------------------------------------------------------------------------- /qca-ssdk-shell/patches/0002-qca-ssdk-shell-fix-ioctl-segfault.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-ssdk-shell/patches/0002-qca-ssdk-shell-fix-ioctl-segfault.patch -------------------------------------------------------------------------------- /qca-ssdk-shell/patches/0003-qca-ssdk-shell-fix-tmpbool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-ssdk-shell/patches/0003-qca-ssdk-shell-fix-tmpbool.patch -------------------------------------------------------------------------------- /qca-ssdk-shell/patches/0004-qca-ssdk-shell-fix-build-gcc-15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-ssdk-shell/patches/0004-qca-ssdk-shell-fix-build-gcc-15.patch -------------------------------------------------------------------------------- /qca-ssdk-shell/patches/0005-qca-ssdk-shell-fix-make.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-ssdk-shell/patches/0005-qca-ssdk-shell-fix-make.patch -------------------------------------------------------------------------------- /qca-ssdk-shell/patches/0006-qca-ssdk-shell-remove-unused-chip-code.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qosmio/nss-packages/HEAD/qca-ssdk-shell/patches/0006-qca-ssdk-shell-remove-unused-chip-code.patch --------------------------------------------------------------------------------