├── .gitattributes ├── README.md ├── libmill └── Makefile ├── qemu-userspace └── Makefile ├── rrredir └── Makefile ├── samba4 ├── Config.in ├── Makefile ├── files │ ├── samba.config │ ├── samba.init │ └── smb.conf.template ├── patches │ ├── 001-samba-4.4.0-pam.patch │ ├── 002-dnsserver-4.7.0.patch │ ├── 003-getpwent_r.patch │ ├── 004-missing-headers.patch │ ├── 005-musl_uintptr.patch │ ├── 006-netdb-defines.patch │ ├── 007-libldb-fix-musl-libc-unkown-type-error.patch │ ├── 008-samba-4.11-add_missing___compar_fn_t.patch │ ├── 009-samba-4-11-fix-host-tools-checks.patch.patch │ ├── 010-samba-4-12-fix-musl_missing__nss_buflen_passwd.patch │ ├── 020-source3-msgsock-nvram-fix.patch │ ├── 021-source4-msgsock-nvram-fix.patch │ ├── 101-do-not-check-xsltproc-manpages.patch │ ├── 102-samba-4.11-unbundle-libbsd.patch │ ├── 103-samba-4.12-unbundle-libunwind.patch │ └── 104-samba-4.12-unbundle-icu.patch ├── waf-cross-answers │ ├── aarch64.txt │ ├── arc.txt │ ├── arm.txt │ ├── armeb.txt │ ├── i386.txt │ ├── mips.txt │ ├── mips64.txt │ ├── mips64el.txt │ ├── mipsel.txt │ ├── powerpc.txt │ └── x86_64.txt └── waf_qemu.mk └── sniproxy └── Makefile /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/README.md -------------------------------------------------------------------------------- /libmill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/libmill/Makefile -------------------------------------------------------------------------------- /qemu-userspace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/qemu-userspace/Makefile -------------------------------------------------------------------------------- /rrredir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/rrredir/Makefile -------------------------------------------------------------------------------- /samba4/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/Config.in -------------------------------------------------------------------------------- /samba4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/Makefile -------------------------------------------------------------------------------- /samba4/files/samba.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/files/samba.config -------------------------------------------------------------------------------- /samba4/files/samba.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/files/samba.init -------------------------------------------------------------------------------- /samba4/files/smb.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/files/smb.conf.template -------------------------------------------------------------------------------- /samba4/patches/001-samba-4.4.0-pam.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/001-samba-4.4.0-pam.patch -------------------------------------------------------------------------------- /samba4/patches/002-dnsserver-4.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/002-dnsserver-4.7.0.patch -------------------------------------------------------------------------------- /samba4/patches/003-getpwent_r.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/003-getpwent_r.patch -------------------------------------------------------------------------------- /samba4/patches/004-missing-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/004-missing-headers.patch -------------------------------------------------------------------------------- /samba4/patches/005-musl_uintptr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/005-musl_uintptr.patch -------------------------------------------------------------------------------- /samba4/patches/006-netdb-defines.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/006-netdb-defines.patch -------------------------------------------------------------------------------- /samba4/patches/007-libldb-fix-musl-libc-unkown-type-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/007-libldb-fix-musl-libc-unkown-type-error.patch -------------------------------------------------------------------------------- /samba4/patches/008-samba-4.11-add_missing___compar_fn_t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/008-samba-4.11-add_missing___compar_fn_t.patch -------------------------------------------------------------------------------- /samba4/patches/009-samba-4-11-fix-host-tools-checks.patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/009-samba-4-11-fix-host-tools-checks.patch.patch -------------------------------------------------------------------------------- /samba4/patches/010-samba-4-12-fix-musl_missing__nss_buflen_passwd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/010-samba-4-12-fix-musl_missing__nss_buflen_passwd.patch -------------------------------------------------------------------------------- /samba4/patches/020-source3-msgsock-nvram-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/020-source3-msgsock-nvram-fix.patch -------------------------------------------------------------------------------- /samba4/patches/021-source4-msgsock-nvram-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/021-source4-msgsock-nvram-fix.patch -------------------------------------------------------------------------------- /samba4/patches/101-do-not-check-xsltproc-manpages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/101-do-not-check-xsltproc-manpages.patch -------------------------------------------------------------------------------- /samba4/patches/102-samba-4.11-unbundle-libbsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/102-samba-4.11-unbundle-libbsd.patch -------------------------------------------------------------------------------- /samba4/patches/103-samba-4.12-unbundle-libunwind.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/103-samba-4.12-unbundle-libunwind.patch -------------------------------------------------------------------------------- /samba4/patches/104-samba-4.12-unbundle-icu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/patches/104-samba-4.12-unbundle-icu.patch -------------------------------------------------------------------------------- /samba4/waf-cross-answers/aarch64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/aarch64.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/arc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/arc.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/arm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/arm.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/armeb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/armeb.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/i386.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/i386.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/mips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/mips.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/mips64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/mips64.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/mips64el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/mips64el.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/mipsel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/mipsel.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/powerpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/powerpc.txt -------------------------------------------------------------------------------- /samba4/waf-cross-answers/x86_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf-cross-answers/x86_64.txt -------------------------------------------------------------------------------- /samba4/waf_qemu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/samba4/waf_qemu.mk -------------------------------------------------------------------------------- /sniproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy2244/openwrt-extra/HEAD/sniproxy/Makefile --------------------------------------------------------------------------------