├── .gitignore ├── README.md ├── bin └── ar71xx │ ├── md5sums │ ├── openwrt-ar71xx-generic-nbg460n_550n_550nh-u-boot.bin │ ├── openwrt-ar71xx-generic-root.jffs2-128k │ ├── openwrt-ar71xx-generic-root.jffs2-256k │ ├── openwrt-ar71xx-generic-root.jffs2-64k │ ├── openwrt-ar71xx-generic-root.squashfs │ ├── openwrt-ar71xx-generic-root.squashfs-64k │ ├── openwrt-ar71xx-generic-rootfs.tar.gz │ ├── openwrt-ar71xx-generic-tl-mr11u-v1-squashfs-factory.bin │ ├── openwrt-ar71xx-generic-tl-mr11u-v1-squashfs-sysupgrade.bin │ ├── openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory.bin │ ├── openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-sysupgrade.bin │ ├── openwrt-ar71xx-generic-uImage-gzip.bin │ ├── openwrt-ar71xx-generic-uImage-lzma.bin │ ├── openwrt-ar71xx-generic-vmlinux-lzma.elf │ ├── openwrt-ar71xx-generic-vmlinux.bin │ ├── openwrt-ar71xx-generic-vmlinux.elf │ ├── openwrt-ar71xx-generic-vmlinux.gz │ └── openwrt-ar71xx-generic-vmlinux.lzma ├── feeds └── packages │ └── net │ └── tor-alpha │ ├── Makefile │ ├── files │ └── tor.init │ └── patches │ ├── 001-anon_mmap.patch │ ├── 001-persistent_keys_in_etc.patch │ ├── 001-rebuild_when_big_dropped.patch │ ├── 001-shorter_desc_lifetime.patch │ ├── 001-torrc.patch │ └── 002-gzipped_cache.patch ├── files └── etc │ ├── config │ ├── dhcp │ ├── firewall │ ├── fstab │ ├── network │ └── system │ ├── hostname │ ├── profile │ └── sysctl.conf ├── openwrt-35017-to-portal.diff └── portal_openwrt_build.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/README.md -------------------------------------------------------------------------------- /bin/ar71xx/md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/md5sums -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-nbg460n_550n_550nh-u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-nbg460n_550n_550nh-u-boot.bin -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-root.jffs2-128k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-root.jffs2-128k -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-root.jffs2-256k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-root.jffs2-256k -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-root.jffs2-64k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-root.jffs2-64k -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-root.squashfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-root.squashfs -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-root.squashfs-64k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-root.squashfs-64k -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-rootfs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-rootfs.tar.gz -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-tl-mr11u-v1-squashfs-factory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-tl-mr11u-v1-squashfs-factory.bin -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-tl-mr11u-v1-squashfs-sysupgrade.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-tl-mr11u-v1-squashfs-sysupgrade.bin -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory.bin -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-sysupgrade.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-sysupgrade.bin -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-uImage-gzip.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-uImage-gzip.bin -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-uImage-lzma.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-uImage-lzma.bin -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-vmlinux-lzma.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-vmlinux-lzma.elf -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-vmlinux.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-vmlinux.bin -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-vmlinux.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-vmlinux.elf -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-vmlinux.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-vmlinux.gz -------------------------------------------------------------------------------- /bin/ar71xx/openwrt-ar71xx-generic-vmlinux.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/bin/ar71xx/openwrt-ar71xx-generic-vmlinux.lzma -------------------------------------------------------------------------------- /feeds/packages/net/tor-alpha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/feeds/packages/net/tor-alpha/Makefile -------------------------------------------------------------------------------- /feeds/packages/net/tor-alpha/files/tor.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/feeds/packages/net/tor-alpha/files/tor.init -------------------------------------------------------------------------------- /feeds/packages/net/tor-alpha/patches/001-anon_mmap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/feeds/packages/net/tor-alpha/patches/001-anon_mmap.patch -------------------------------------------------------------------------------- /feeds/packages/net/tor-alpha/patches/001-persistent_keys_in_etc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/feeds/packages/net/tor-alpha/patches/001-persistent_keys_in_etc.patch -------------------------------------------------------------------------------- /feeds/packages/net/tor-alpha/patches/001-rebuild_when_big_dropped.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/feeds/packages/net/tor-alpha/patches/001-rebuild_when_big_dropped.patch -------------------------------------------------------------------------------- /feeds/packages/net/tor-alpha/patches/001-shorter_desc_lifetime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/feeds/packages/net/tor-alpha/patches/001-shorter_desc_lifetime.patch -------------------------------------------------------------------------------- /feeds/packages/net/tor-alpha/patches/001-torrc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/feeds/packages/net/tor-alpha/patches/001-torrc.patch -------------------------------------------------------------------------------- /feeds/packages/net/tor-alpha/patches/002-gzipped_cache.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/feeds/packages/net/tor-alpha/patches/002-gzipped_cache.patch -------------------------------------------------------------------------------- /files/etc/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/files/etc/config/dhcp -------------------------------------------------------------------------------- /files/etc/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/files/etc/config/firewall -------------------------------------------------------------------------------- /files/etc/config/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/files/etc/config/fstab -------------------------------------------------------------------------------- /files/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/files/etc/config/network -------------------------------------------------------------------------------- /files/etc/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/files/etc/config/system -------------------------------------------------------------------------------- /files/etc/hostname: -------------------------------------------------------------------------------- 1 | pOrtal 2 | -------------------------------------------------------------------------------- /files/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/files/etc/profile -------------------------------------------------------------------------------- /files/etc/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/files/etc/sysctl.conf -------------------------------------------------------------------------------- /openwrt-35017-to-portal.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/openwrt-35017-to-portal.diff -------------------------------------------------------------------------------- /portal_openwrt_build.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grugq/portal/HEAD/portal_openwrt_build.config --------------------------------------------------------------------------------