├── .config.ci ├── .containers └── matter-openwrt-build │ └── Dockerfile ├── .gemini └── config.yaml ├── .github └── workflows │ ├── build-matter-openwrt-build.yaml │ └── build-packages.yaml ├── .pullapprove.yml ├── .restyled.yml ├── LICENSE ├── README.md ├── devel ├── gn │ └── Makefile └── python3-host-ssl │ ├── Makefile │ └── generate.py ├── include ├── git-with-metadata.mk ├── git-with-metadata.sh ├── overlay.mk └── overlay.sh ├── overlay └── hostapd │ └── Makefile ├── service └── matter-netman │ ├── Makefile │ ├── files │ ├── bootstrap.sh │ ├── matter.init │ └── matter_acl.json │ └── patches │ ├── 010-zap-disable-arl.patch │ └── 020-dont-overwrite-factory-config.patch └── third_party ├── mdnsresponder ├── Makefile ├── files │ └── mdnsd.init └── patches │ └── 0001-Initialize-fd_set-in-mDNSPlatformTCPWritable.patch └── openthread-br ├── Makefile └── patches ├── 010-init-script.patch ├── 020-external-mbedtls.patch ├── 030-git-version.patch └── 050-ubus-enhancements.patch /.config.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/.config.ci -------------------------------------------------------------------------------- /.containers/matter-openwrt-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/.containers/matter-openwrt-build/Dockerfile -------------------------------------------------------------------------------- /.gemini/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/.gemini/config.yaml -------------------------------------------------------------------------------- /.github/workflows/build-matter-openwrt-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/.github/workflows/build-matter-openwrt-build.yaml -------------------------------------------------------------------------------- /.github/workflows/build-packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/.github/workflows/build-packages.yaml -------------------------------------------------------------------------------- /.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/.pullapprove.yml -------------------------------------------------------------------------------- /.restyled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/.restyled.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/README.md -------------------------------------------------------------------------------- /devel/gn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/devel/gn/Makefile -------------------------------------------------------------------------------- /devel/python3-host-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/devel/python3-host-ssl/Makefile -------------------------------------------------------------------------------- /devel/python3-host-ssl/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/devel/python3-host-ssl/generate.py -------------------------------------------------------------------------------- /include/git-with-metadata.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/include/git-with-metadata.mk -------------------------------------------------------------------------------- /include/git-with-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/include/git-with-metadata.sh -------------------------------------------------------------------------------- /include/overlay.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/include/overlay.mk -------------------------------------------------------------------------------- /include/overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/include/overlay.sh -------------------------------------------------------------------------------- /overlay/hostapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/overlay/hostapd/Makefile -------------------------------------------------------------------------------- /service/matter-netman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/service/matter-netman/Makefile -------------------------------------------------------------------------------- /service/matter-netman/files/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/service/matter-netman/files/bootstrap.sh -------------------------------------------------------------------------------- /service/matter-netman/files/matter.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/service/matter-netman/files/matter.init -------------------------------------------------------------------------------- /service/matter-netman/files/matter_acl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/service/matter-netman/files/matter_acl.json -------------------------------------------------------------------------------- /service/matter-netman/patches/010-zap-disable-arl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/service/matter-netman/patches/010-zap-disable-arl.patch -------------------------------------------------------------------------------- /service/matter-netman/patches/020-dont-overwrite-factory-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/service/matter-netman/patches/020-dont-overwrite-factory-config.patch -------------------------------------------------------------------------------- /third_party/mdnsresponder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/third_party/mdnsresponder/Makefile -------------------------------------------------------------------------------- /third_party/mdnsresponder/files/mdnsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/third_party/mdnsresponder/files/mdnsd.init -------------------------------------------------------------------------------- /third_party/mdnsresponder/patches/0001-Initialize-fd_set-in-mDNSPlatformTCPWritable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/third_party/mdnsresponder/patches/0001-Initialize-fd_set-in-mDNSPlatformTCPWritable.patch -------------------------------------------------------------------------------- /third_party/openthread-br/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/third_party/openthread-br/Makefile -------------------------------------------------------------------------------- /third_party/openthread-br/patches/010-init-script.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/third_party/openthread-br/patches/010-init-script.patch -------------------------------------------------------------------------------- /third_party/openthread-br/patches/020-external-mbedtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/third_party/openthread-br/patches/020-external-mbedtls.patch -------------------------------------------------------------------------------- /third_party/openthread-br/patches/030-git-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/third_party/openthread-br/patches/030-git-version.patch -------------------------------------------------------------------------------- /third_party/openthread-br/patches/050-ubus-enhancements.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-chip/matter-openwrt/HEAD/third_party/openthread-br/patches/050-ubus-enhancements.patch --------------------------------------------------------------------------------