├── 20251107-00 ├── version.buildinfo ├── feeds.buildinfo ├── sha256sums ├── config.buildinfo └── divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9.manifest ├── 20251121-00 ├── version.buildinfo ├── feeds.buildinfo ├── sha256sums └── config.buildinfo ├── 20251205-00 ├── version.buildinfo ├── feeds.buildinfo └── sha256sums ├── templates └── etc │ └── config │ ├── irqbalance │ ├── network │ ├── firewall │ └── wireless ├── .gitignore ├── TODO.txt ├── README.md ├── sign.sh ├── patches ├── 0007-build-hardening-misc-added-flags.patch ├── 0004-dnsmasq-only-listen-on-br-lan-interface.patch ├── work │ ├── 60-restrict.conf │ ├── divblock.sh │ ├── defconfig_hardened │ └── hardenDefconfig.sh ├── 0001-Revert-uhttpd-don-t-redirect-to-HTTPS-by-default.patch ├── unused │ ├── 0032-DNM-Thumb-2_userspace.patch │ ├── 0030-2522-80211n_256QAM-Rebased.patch │ └── 0030-2522-80211n_256QAM-Original.patch ├── 0006-ARM-Cortex-A9-build-the-userspace-with-Thumb-2-instr.patch ├── 0005-arm-aarch64-Set-O2-as-default-for-Cortex-A-processor.patch ├── 0003-base-files-sysctl.d-basic-hardening.patch ├── SHA512SUMS ├── 0008-Add-divblock-an-extremely-simple-ad-blocker.patch ├── 0002-kernel-generic-6.12-config-hardening.patch └── LICENSE ├── divested_signing.key ├── README.html └── seeds ├── unused └── config-ramips_mt7621-ax └── config-mvebu_cortexa9 /20251107-00/version.buildinfo: -------------------------------------------------------------------------------- 1 | r31707+9-38753dea64 2 | -------------------------------------------------------------------------------- /20251121-00/version.buildinfo: -------------------------------------------------------------------------------- 1 | r31958+9-7f5c7b8626 2 | -------------------------------------------------------------------------------- /20251205-00/version.buildinfo: -------------------------------------------------------------------------------- 1 | r32222+8-1842735a06 2 | -------------------------------------------------------------------------------- /templates/etc/config/irqbalance: -------------------------------------------------------------------------------- 1 | config irqbalance 'irqbalance' 2 | option enabled '1' 3 | -------------------------------------------------------------------------------- /templates/etc/config/network: -------------------------------------------------------------------------------- 1 | config globals 'globals' 2 | option packet_steering '1' 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.img 3 | *.kwb 4 | *.firm 5 | *.img.gz 6 | *.tar.gz 7 | *.gz 8 | *.trx 9 | *.chk 10 | latest 11 | -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- 1 | - SELinux 2 | - neon? (missing the fp16 compat mode?) 3 | - CONFIG_IRQ_TIME_ACCOUNTING=n 4 | - INCLUDE_CONFIG=y 5 | - Restore bmon 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Banner](https://divested.dev/images/featureGraphics/Divested-WRT.png) 2 | 3 | Please see the [website](https://divested.dev/unofficial-openwrt-builds/mvebu-linksys/) for documentation 4 | -------------------------------------------------------------------------------- /templates/etc/config/firewall: -------------------------------------------------------------------------------- 1 | config defaults 2 | option input 'ACCEPT' 3 | option output 'ACCEPT' 4 | option forward 'DROP' 5 | option synflood_protect '1' 6 | option drop_invalid '1' 7 | option flow_offloading '1' 8 | -------------------------------------------------------------------------------- /sign.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #Copyright (c) 2020 Divested Computing Group 3 | #License: GPL-2.0 4 | 5 | sign() { 6 | checksum=$1; 7 | echo "GPG signing $checksum"; 8 | gpg --sign --local-user 6395FC9911EDCD6158712DF7BADFCABDDBF5B694 --clearsign "$checksum"; 9 | if [ "$?" -eq "0" ]; then 10 | mv -f "$checksum.asc" "$checksum"; 11 | fi; 12 | } 13 | 14 | signAll() { 15 | for checksum in */sha256sums; do 16 | sign "$checksum"; 17 | done; 18 | } 19 | -------------------------------------------------------------------------------- /20251107-00/feeds.buildinfo: -------------------------------------------------------------------------------- 1 | src-git packages https://git.openwrt.org/feed/packages.git^f9c132b3c53f81cbfecae8a245fca5d415495e5a 2 | src-git luci https://git.openwrt.org/project/luci.git^325c5846b177cc1f80da94a2c3869c4e7f9766f7 3 | src-git routing https://git.openwrt.org/feed/routing.git^149ea45cc223597262415823bcdca3effc601bc2 4 | src-git telephony https://git.openwrt.org/feed/telephony.git^e8322b22d6743a148dc69d1cbb5ca254e3966c7b 5 | src-git video https://github.com/openwrt/video.git^5e86748c62a5e6c5f14c2e436a8d04090a18cf72 6 | -------------------------------------------------------------------------------- /20251121-00/feeds.buildinfo: -------------------------------------------------------------------------------- 1 | src-git packages https://git.openwrt.org/feed/packages.git^9d17d2ec49d5742711207cda238c67f4f4dfc453 2 | src-git luci https://git.openwrt.org/project/luci.git^ba6b05dce367f4a1e539d5f3ce1d36c80f8378ef 3 | src-git routing https://git.openwrt.org/feed/routing.git^0bf1ec3c3d9459ce8dc6fa7e1b6084518a0b5a55 4 | src-git telephony https://git.openwrt.org/feed/telephony.git^a017ae016ac348b5d89b4c106223dd63505986ee 5 | src-git video https://github.com/openwrt/video.git^f63573700e4618534e5b99b0d10999c89d19a200 6 | -------------------------------------------------------------------------------- /20251205-00/feeds.buildinfo: -------------------------------------------------------------------------------- 1 | src-git packages https://git.openwrt.org/feed/packages.git^944166fa47cf7b2d7f177ebeaa22c30134831fe2 2 | src-git luci https://git.openwrt.org/project/luci.git^bf0ce9c571a51947ebafc0b02d4594073b18f218 3 | src-git routing https://git.openwrt.org/feed/routing.git^b43e4ac560ccbafba21dc3ab0dbe57afc07e7b88 4 | src-git telephony https://git.openwrt.org/feed/telephony.git^40dcae69ef7f68352203ba0dd5b4f05c5d833d15 5 | src-git video https://github.com/openwrt/video.git^094bf58da6682f895255a35a84349a79dab4bf95 6 | -------------------------------------------------------------------------------- /patches/0007-build-hardening-misc-added-flags.patch: -------------------------------------------------------------------------------- 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 | From: Tavi 3 | Date: Fri, 2 Jul 2021 13:03:00 -0400 4 | Subject: [PATCH 7/8] build: hardening: misc added flags 5 | 6 | Signed-off-by: Tavi 7 | --- 8 | include/hardening.mk | 2 ++ 9 | 1 file changed, 2 insertions(+) 10 | 11 | diff --git a/include/hardening.mk b/include/hardening.mk 12 | index c5d836eec0..ba8b5aa2bf 100644 13 | --- a/include/hardening.mk 14 | +++ b/include/hardening.mk 15 | @@ -83,3 +83,5 @@ ifdef CONFIG_PKG_FANALYZER 16 | TARGET_CFLAGS += -fanalyzer 17 | endif 18 | endif 19 | + 20 | +TARGET_CFLAGS += -fstack-clash-protection -fwrapv 21 | -------------------------------------------------------------------------------- /patches/0004-dnsmasq-only-listen-on-br-lan-interface.patch: -------------------------------------------------------------------------------- 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 | From: Tavi 3 | Date: Fri, 27 Nov 2020 13:47:56 -0500 4 | Subject: [PATCH 4/8] dnsmasq: only listen on br-lan interface 5 | 6 | dnsmasq should not listen on all interfaces, restrict it to br-lan. 7 | 8 | Note: this will break default config if your LAN isn't br-lan. 9 | Signed-off-by: Tavi 10 | --- 11 | package/network/services/dnsmasq/files/dnsmasq.conf | 2 ++ 12 | 1 file changed, 2 insertions(+) 13 | 14 | diff --git a/package/network/services/dnsmasq/files/dnsmasq.conf b/package/network/services/dnsmasq/files/dnsmasq.conf 15 | index bf5816be56..24440b5e1c 100644 16 | --- a/package/network/services/dnsmasq/files/dnsmasq.conf 17 | +++ b/package/network/services/dnsmasq/files/dnsmasq.conf 18 | @@ -35,3 +35,5 @@ 19 | # "bert" another name, bertrand 20 | # The fields are , 21 | #cname=bertand,bert 22 | + 23 | +interface=br-lan 24 | -------------------------------------------------------------------------------- /patches/work/60-restrict.conf: -------------------------------------------------------------------------------- 1 | dev.tty.ldisc_autoload=0 2 | fs.protected_fifos=2 3 | fs.protected_hardlinks=1 4 | fs.protected_regular=2 5 | fs.protected_symlinks=1 6 | fs.suid_dumpable=0 7 | kernel.dmesg_restrict=1 8 | kernel.io_uring_disabled=2 9 | kernel.kexec_load_disabled=1 10 | kernel.kptr_restrict=2 11 | kernel.perf_event_paranoid=3 12 | kernel.randomize_va_space=2 13 | kernel.unprivileged_bpf_disabled=2 14 | kernel.yama.ptrace_scope=1 15 | net.core.bpf_jit_harden=2 16 | net.ipv4.icmp_ignore_bogus_error_responses=1 17 | net.ipv6.conf.all.addr_gen_mode=3 18 | net.ipv6.conf.all.max_addresses=128 19 | net.ipv6.conf.all.regen_max_retry=32 20 | net.ipv6.conf.all.temp_prefered_lft=21600 21 | net.ipv6.conf.all.use_tempaddr=2 22 | net.ipv6.conf.default.addr_gen_mode=3 23 | net.ipv6.conf.default.max_addresses=128 24 | net.ipv6.conf.default.regen_max_retry=32 25 | net.ipv6.conf.default.temp_prefered_lft=21600 26 | net.ipv6.conf.default.use_tempaddr=2 27 | vm.mmap_rnd_bits=32 28 | vm.mmap_rnd_compat_bits=16 29 | vm.unprivileged_userfaultfd=0 30 | -------------------------------------------------------------------------------- /patches/0001-Revert-uhttpd-don-t-redirect-to-HTTPS-by-default.patch: -------------------------------------------------------------------------------- 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 | From: Tavi 3 | Date: Tue, 2 Feb 2021 06:14:22 -0500 4 | Subject: [PATCH 1/8] Revert "uhttpd: don't redirect to HTTPS by default" 5 | 6 | This reverts commit 0cf3c5dd7257dff1c87b61c5e53e5b1787ab7015. 7 | 8 | Signed-off-by: Tavi 9 | --- 10 | package/network/services/uhttpd/files/uhttpd.config | 2 +- 11 | 1 file changed, 1 insertion(+), 1 deletion(-) 12 | 13 | diff --git a/package/network/services/uhttpd/files/uhttpd.config b/package/network/services/uhttpd/files/uhttpd.config 14 | index ce76fe6b6b..3f143f356e 100644 15 | --- a/package/network/services/uhttpd/files/uhttpd.config 16 | +++ b/package/network/services/uhttpd/files/uhttpd.config 17 | @@ -10,7 +10,7 @@ config uhttpd main 18 | list listen_https [::]:443 19 | 20 | # Redirect HTTP requests to HTTPS if possible 21 | - option redirect_https 0 22 | + option redirect_https 1 23 | 24 | # Server document root 25 | option home /www 26 | -------------------------------------------------------------------------------- /patches/unused/0032-DNM-Thumb-2_userspace.patch: -------------------------------------------------------------------------------- 1 | From rsalvaterra at gmail.com Fri Jun 19 05:45:25 2020 2 | From: Rui Salvaterra 3 | Date: Fri, 19 Jun 2020 10:45:25 +0100 4 | Subject: [OpenWrt-Devel] [RFC PATCH] ARM Cortex-A9: build the userspace with 5 | Thumb-2 instructions 6 | Message-ID: <20200619094523.3162-1-rsalvaterra@gmail.com> 7 | 8 | Thumb-2 code is denser than pure ARM, reducing RAM usage and improving 9 | performance due to better instruction cache footprint. 10 | 11 | There's no reason for not enabling this feature on other ARMv7 targets 12 | (cortex-a7 and cortex-a8), but I don't have the hardware to test it. 13 | 14 | Signed-off-by: Rui Salvaterra 15 | --- 16 | include/target.mk | 3 +++ 17 | 1 file changed, 3 insertions(+) 18 | 19 | diff --git a/include/target.mk b/include/target.mk 20 | index a2ceb7f783..dfc6f4e480 100644 21 | --- a/include/target.mk 22 | +++ b/include/target.mk 23 | @@ -196,6 +196,9 @@ ifeq ($(DUMP),1) 24 | CPU_TYPE = sparc 25 | CPU_CFLAGS_ultrasparc = -mcpu=ultrasparc 26 | endif 27 | + ifeq ($(ARCH),arm) 28 | + CPU_CFLAGS_cortex-a9 = -mthumb 29 | + endif 30 | ifeq ($(ARCH),aarch64) 31 | CPU_TYPE ?= generic 32 | CPU_CFLAGS_generic = -mcpu=generic 33 | -- 34 | 2.27.0 35 | -------------------------------------------------------------------------------- /patches/0006-ARM-Cortex-A9-build-the-userspace-with-Thumb-2-instr.patch: -------------------------------------------------------------------------------- 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 | From: Rui Salvaterra 3 | Date: Fri, 19 Jun 2020 10:45:25 +0100 4 | Subject: [PATCH 6/8] ARM Cortex-A9: build the userspace with Thumb-2 5 | instructions 6 | 7 | Thumb-2 code is denser than pure ARM, reducing RAM usage and improving 8 | performance due to better instruction cache footprint. 9 | 10 | There's no reason for not enabling this feature on other ARMv7 targets 11 | (cortex-a7 and cortex-a8), but I don't have the hardware to test it. 12 | 13 | Signed-off-by: Rui Salvaterra 14 | Tested-by: Tavi 15 | --- 16 | include/target.mk | 5 +++++ 17 | 1 file changed, 5 insertions(+) 18 | 19 | diff --git a/include/target.mk b/include/target.mk 20 | index 1c379c87bc..b4d6c33249 100644 21 | --- a/include/target.mk 22 | +++ b/include/target.mk 23 | @@ -260,6 +260,11 @@ ifeq ($(DUMP),1) 24 | CPU_TYPE = sparc 25 | CPU_CFLAGS_ultrasparc = -mcpu=ultrasparc 26 | endif 27 | + ifeq ($(ARCH),arm) 28 | + CPU_CFLAGS_cortex-a7 = -mthumb 29 | + CPU_CFLAGS_cortex-a8 = -mthumb 30 | + CPU_CFLAGS_cortex-a9 = -mthumb 31 | + endif 32 | ifeq ($(ARCH),aarch64) 33 | CPU_TYPE ?= generic 34 | CPU_CFLAGS_generic = -mcpu=generic 35 | -------------------------------------------------------------------------------- /patches/0005-arm-aarch64-Set-O2-as-default-for-Cortex-A-processor.patch: -------------------------------------------------------------------------------- 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 | From: Daniel Engberg 3 | Date: Thu, 28 Mar 2019 12:57:45 +0000 4 | Subject: [PATCH 5/8] arm/aarch64: Set -O2 as default for Cortex-A processor 5 | cores 6 | 7 | Platforms using Cortex-A processor cores aren't constrained in 8 | terms of storage as much as other supported platforms such as MIPS. 9 | Set O2 as default since Os can severly limit performance as it's 10 | more targeted at keeping down binary size. 11 | 12 | Tested on mvebu, sunxi 13 | 14 | Signed-off-by: Daniel Engberg 15 | Tested-by: Tavi 16 | --- 17 | include/target.mk | 6 +++++- 18 | 1 file changed, 5 insertions(+), 1 deletion(-) 19 | 20 | diff --git a/include/target.mk b/include/target.mk 21 | index fdfda81159..1c379c87bc 100644 22 | --- a/include/target.mk 23 | +++ b/include/target.mk 24 | @@ -215,7 +215,11 @@ LINUX_RECONF_DIFF = $(SCRIPT_DIR)/kconfig.pl - '>' $(call __linux_confcmd,$(filt 25 | ifeq ($(DUMP),1) 26 | BuildTarget=$(BuildTargets/DumpCurrent) 27 | 28 | - CPU_CFLAGS = -Os -pipe 29 | + ifneq ($(findstring cortex-a,$(CPU_TYPE)),) 30 | + CPU_CFLAGS = -O2 -pipe 31 | + else 32 | + CPU_CFLAGS = -Os -pipe 33 | + endif 34 | ifneq ($(findstring mips,$(ARCH)),) 35 | ifneq ($(findstring mips64,$(ARCH)),) 36 | CPU_TYPE ?= mips64 37 | -------------------------------------------------------------------------------- /patches/work/divblock.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh /etc/rc.common 2 | #License: GPL-2.0-or-later 3 | 4 | START=99 5 | USE_PROCD=1 6 | 7 | DIVBLOCK_HOSTS="https://divested.dev/hosts-dnsmasq"; 8 | DIVBLOCK_OUTPUT="/tmp/dnsmasq.d/divblock.conf"; 9 | DIVBLOCK_EXCLUSIONS="/etc/config/divblock-exclusions"; 10 | 11 | reload_service() 12 | { 13 | stop "$@" 14 | start "$@" 15 | } 16 | 17 | start_service() 18 | { 19 | #Tasks 20 | # - Download the list if dnsmasq is enabled 21 | # - Sanitize it to only allow comments and domain overrides to the invalid (#) address 22 | # - Filter out patterns from the exclusion file 23 | # - Restart dnsmasq 24 | if /etc/init.d/dnsmasq enabled; then 25 | sleep 15; #wait for network and system to settle after boot XXX: ugly 26 | if [ ! -e "$DIVBLOCK_EXCLUSIONS" ]; then touch "$DIVBLOCK_EXCLUSIONS"; fi; 27 | if wget $DIVBLOCK_HOSTS -O - | grep -i -e '^#' -e '^address=/.*/#' | grep -v -f "$DIVBLOCK_EXCLUSIONS" > $DIVBLOCK_OUTPUT; then 28 | logger -t divblock "downloaded"; 29 | /etc/init.d/dnsmasq restart; 30 | logger -t divblock "restarted dnsmasq"; 31 | else 32 | logger -t divblock "failed to download"; 33 | fi; 34 | else 35 | logger -t divblock "dnsmasq is disabled, not starting"; 36 | fi; 37 | } 38 | 39 | stop_service() 40 | { 41 | #Tasks 42 | # - Delete the list if available 43 | # - Restart dnsmasq if running 44 | if rm $DIVBLOCK_OUTPUT &>/dev/null; then logger -t divblock "deleted"; fi; 45 | if /etc/init.d/dnsmasq running; then 46 | /etc/init.d/dnsmasq restart; 47 | logger -t divblock "restarted dnsmasq"; 48 | else 49 | logger -t divblock "dnsmasq stopped, not restarting"; 50 | fi; 51 | } 52 | -------------------------------------------------------------------------------- /divested_signing.key: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP PUBLIC KEY BLOCK----- 2 | 3 | mQINBF/La4cBEADGUgoiPUJcEs0DRpWgmmpnMtgRxOiqT4b2R1d9cwtWpMOqQ3eN 4 | OJqSBdzmN+aNwt61XWi4MUAseN5O3L3C+UXIk8HptOmalNySSHcGXk6Kn250Tmy5 5 | O+ZGHlPng1zqOMBBZs1kNYw9aXuxQFCRk1rfFcePreyF+rHuBx0K2EGJPQ7udEf0 6 | znq8gRZ29wFz3TzqGmKVv5cWkdGSUUkQc9ecZX89yBMfuqRXUG/ucojD0gLaQyTy 7 | cjfS/0RE+Bje8Mpe8wswR+hg2qZDO+n9uMY/7dmdctKGU/kdxEBPqe0dak1sJ16M 8 | 0bawI+Rq/5RqPYwgEcfTg4VQotvpENUN/uAqi1b0IRLcPE46kXGpY9HIukFkzRKD 9 | N1WMz8D6sVNimV99KucKvXzD/1VvyawChPWJsGCow4OoYrvHTU5f8J7PHStLQ61O 10 | pVjWRbRonpjGBvz3hP0vkwCgy21AkYnRWaSKztwSkIJ36NCqsU24WIH1XgWzxsrf 11 | kniQdXP6+sMCAxV+u6ig671BdtqYqaIGxb15j/wPXuju92myrTGa4rk0uUTur+VV 12 | v0ethh3S8c9yisuRjkV+K/xpoJjGv7MsZf6hkcyIT826cv4Jr8LbtSMVD/pQB93i 13 | olhizs8U0ph+RMnNPC4ZiroPgjDhYDZcIPuWw8WETHrUQDaEj6XgYm8P2QARAQAB 14 | tEhEaXZlc3RlZCBSZWxlYXNlIFNpZ25pbmcgKDIwMjAgIzEpIDxzdXBwb3J0K3Jl 15 | bGVhc2VzaWduaW5nQGRpdmVzdGVkLmRldj6JAk4EEwEIADgWIQRjlfyZEe3NYVhx 16 | Lfe638q92/W2lAUCX8trhwIbAwULCQgHAgYVCgkICwIEFgIDAQIeAQIXgAAKCRC6 17 | 38q92/W2lH49D/9F4f1pGf5ZWZjs7LiW4BQgAOx0NiKsvFTXBAhhUSJwTseB3vnK 18 | ZGx3qoUCI0pk+4Z/YHhY91QTopJHcg/QW8tj/shjtRbzmfBB6dwFQkZtOHofXHMV 19 | DowoY2MXZRd9dRIBhwLRvktZA9yKO1iH0M0vSqxuh8ALkvUlDgfzy0QBsAHjsUTB 20 | FoxGemxT+70zDNx+xL0PusRA25AOn7EXzrjk6E1653KL1sRojqGZ/XzWWw+6dZyM 21 | 4Aap3CGrS7+YrXhJTMokOC/OfariDaN02YtlRizztWYEhkJ5SB0kIIlzgrGmY659 22 | b0ENjjHAVK16LfRoDprb1PpC3du2QAVFtBRDqD2zwXBmELjyOpAnSYDuJVPgv4T8 23 | Oty5be+U84lKVIgG5N60VrJzkwi5J+FSx2hTJl0C5BZyKChDXXvlnJI2Y4Qrwjyz 24 | 7mx5gjFLZra/yKrVKnfxp5AJ7DxHxNOYn0dcceWBBVC1L5sniim9z4Q5fNRErJT8 25 | ayf77gecLuCVt+LhCH1rFejeIZrl0QEw+udrTYrPt3BWUK2OOIzF8PqLHfyUF+7W 26 | ZuLgMxj0nGLMqOlPSszrQ6RxmL//GmXkmE3CeDNXV+7SpmMYe07pHzycg8+d/tNq 27 | EajUfLQJqUYj3m51MnKW2r+QUKjkIYsn4iFfk+2aeY5HX1RalWJ7d4NHJQ== 28 | =qpX+ 29 | -----END PGP PUBLIC KEY BLOCK----- 30 | -------------------------------------------------------------------------------- /patches/0003-base-files-sysctl.d-basic-hardening.patch: -------------------------------------------------------------------------------- 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 | From: Tavi 3 | Date: Fri, 27 Nov 2020 13:49:59 -0500 4 | Subject: [PATCH 3/8] base-files: sysctl.d: basic hardening 5 | 6 | Set some sysctls that increase security. 7 | 8 | Signed-off-by: Tavi 9 | --- 10 | .../files/etc/sysctl.d/60-restrict.conf | 29 +++++++++++++++++++ 11 | 1 file changed, 29 insertions(+) 12 | create mode 100644 package/base-files/files/etc/sysctl.d/60-restrict.conf 13 | 14 | diff --git a/package/base-files/files/etc/sysctl.d/60-restrict.conf b/package/base-files/files/etc/sysctl.d/60-restrict.conf 15 | new file mode 100644 16 | index 0000000000..e81c02f01b 17 | --- /dev/null 18 | +++ b/package/base-files/files/etc/sysctl.d/60-restrict.conf 19 | @@ -0,0 +1,29 @@ 20 | +dev.tty.ldisc_autoload=0 21 | +fs.protected_fifos=2 22 | +fs.protected_hardlinks=1 23 | +fs.protected_regular=2 24 | +fs.protected_symlinks=1 25 | +fs.suid_dumpable=0 26 | +kernel.dmesg_restrict=1 27 | +kernel.io_uring_disabled=2 28 | +kernel.kexec_load_disabled=1 29 | +kernel.kptr_restrict=2 30 | +kernel.perf_event_paranoid=3 31 | +kernel.randomize_va_space=2 32 | +kernel.unprivileged_bpf_disabled=2 33 | +kernel.yama.ptrace_scope=1 34 | +net.core.bpf_jit_harden=2 35 | +net.ipv4.icmp_ignore_bogus_error_responses=1 36 | +net.ipv6.conf.all.addr_gen_mode=3 37 | +net.ipv6.conf.all.max_addresses=128 38 | +net.ipv6.conf.all.regen_max_retry=32 39 | +net.ipv6.conf.all.temp_prefered_lft=21600 40 | +net.ipv6.conf.all.use_tempaddr=2 41 | +net.ipv6.conf.default.addr_gen_mode=3 42 | +net.ipv6.conf.default.max_addresses=128 43 | +net.ipv6.conf.default.regen_max_retry=32 44 | +net.ipv6.conf.default.temp_prefered_lft=21600 45 | +net.ipv6.conf.default.use_tempaddr=2 46 | +vm.mmap_rnd_bits=32 47 | +vm.mmap_rnd_compat_bits=16 48 | +vm.unprivileged_userfaultfd=0 49 | -------------------------------------------------------------------------------- /patches/SHA512SUMS: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNED MESSAGE----- 2 | Hash: SHA512 3 | 4 | 9a842409980214aedba9e217220204395810dd5bfb310357dd1d16719c826f5e8cd03a07ee39630521a342b40e6c732e7571078ebf65f0bda119b198bfab9a93 0001-Revert-uhttpd-don-t-redirect-to-HTTPS-by-default.patch 5 | 9f3c909133677a5fbfa9db3473de7325c722e1c1ed8e9bd6dccf373fc98bd18ed3608a774eb8519aeec7709c89ad4f6e3be530faa5304f3675790234e494fefb 0002-kernel-generic-6.12-config-hardening.patch 6 | 57fd4bfa64528fb5ac03c8d6d91168ac316e35de93781fb984bb1dfd1680c06d31871e280634de3107e10799fcdef38d79f9b41e58cd9ac29279a8ab42fa5615 0003-base-files-sysctl.d-basic-hardening.patch 7 | 70bb49c9b3dae14c6d2a16455a17222102403dc42150aeaa2b4503634134e2ac0e070f61142f38950f2f335d5d15b786e41ba324c2884690e6f315cb7d8824ae 0004-dnsmasq-only-listen-on-br-lan-interface.patch 8 | e411bcb99e425dd20eddf0e2dbbb43a79549fb196725196229a65b368a61eb6c17c1bdf80c9f29340cdd6376ce7c518a0da41ec28cd90298a075703aa5f49319 0005-arm-aarch64-Set-O2-as-default-for-Cortex-A-processor.patch 9 | 4a19e2454415ff3245a7c85a133bf0c8711003255bce2a506778ffe04d2675d82aadfb6559cd6166c7c83e42e27b7657212b4ac08b4fb0bfde9bea81549898d0 0006-ARM-Cortex-A9-build-the-userspace-with-Thumb-2-instr.patch 10 | bf17541b7b7c33d79bd525c63e19e4f682220ae8939daa6a9fed04babcf72b5ecc3b1d31b76a4b8e4c8e3d88ad9da1a2ce2fe66f8a6c0c81d4b1f8895fad20ea 0007-build-hardening-misc-added-flags.patch 11 | f9d54e65722f4b3356689f832f12b49aa739630ec69737e233c134e6a4659e28eb2f2daa34c3dd0b60be6aa949e00443b72cb0f3826af46b42e3872a6efa4558 0008-Add-divblock-an-extremely-simple-ad-blocker.patch 12 | -----BEGIN PGP SIGNATURE----- 13 | 14 | iQIzBAEBCgAdFiEEY5X8mRHtzWFYcS33ut/Kvdv1tpQFAmkzQpwACgkQut/Kvdv1 15 | tpQxXQ//fTOveP0CGOEgKUDGpw4WLkxLjAGEbjTiG/RjjuePpfGIBttN3RTh/qm/ 16 | HHRrMd9nuou6xWZCeXBqI7Os2L0uZUYO2WHyQIUuRbJPNZP0qq7L03q0BTxixTlA 17 | 7AyVNzbjDUhRpgEg4rfu6HK08uFrRPYsUIgUJCunQ1YDYbQWj7vtBDjeRsP4Gxwn 18 | d85hzehR82tRZI+rVh9tV24OfbmyMl6dkuN1IASS50128mgh+9NrIiuJmKLvUaYM 19 | sAOPXq/Yglmq1n73hdJNlg1eEOs/aJeIq8sw4b0+2z8NUzYcch/mB6Mkb1iMhX/L 20 | 0mLIa9DTU8QBTU4GhmbeXVRVF7fT9vZT0uTp1qkPEBfZD9oN/fTpFKpIzw3MomPu 21 | iPiSFmLz0L9Zn5peRUzg3+qNa6EecykptKQJYa35M+XdaFg83AC4GHchJiAFaqik 22 | xzaSyoSkmVkdJ70sGlqk6gOCryUW9Y8D3OyC63M52h8yax1X+obRe4D4Qr44VHov 23 | sflU1ukdCnM6gZVlkdpthEdYiu+m9Z37vEC9OFk91wTxtw2MaNJR3F4dbtCLUNmU 24 | dhDiF5Lw5XSsYA9OOWoYIu/mHVMiE8G0x1ZEe2HwJ67gBlJ8T+eLsmgjSLcvne5J 25 | kf6AjRtfkv+aYO20qSTCznxzM6C8sWOu9fXT+t4DgyfXr1tWl4c= 26 | =CK+k 27 | -----END PGP SIGNATURE----- 28 | -------------------------------------------------------------------------------- /patches/0008-Add-divblock-an-extremely-simple-ad-blocker.patch: -------------------------------------------------------------------------------- 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 | From: Tavi 3 | Date: Fri, 3 Dec 2021 17:31:47 -0500 4 | Subject: [PATCH 8/8] Add divblock, an extremely simple "ad" blocker 5 | 6 | Signed-off-by: Tavi 7 | --- 8 | package/base-files/files/etc/init.d/divblock | 51 ++++++++++++++++++++ 9 | 1 file changed, 51 insertions(+) 10 | create mode 100755 package/base-files/files/etc/init.d/divblock 11 | 12 | diff --git a/package/base-files/files/etc/init.d/divblock b/package/base-files/files/etc/init.d/divblock 13 | new file mode 100755 14 | index 0000000000..19bd197520 15 | --- /dev/null 16 | +++ b/package/base-files/files/etc/init.d/divblock 17 | @@ -0,0 +1,51 @@ 18 | +#!/bin/sh /etc/rc.common 19 | +#License: GPL-2.0-or-later 20 | + 21 | +START=99 22 | +USE_PROCD=1 23 | + 24 | +DIVBLOCK_HOSTS="https://divested.dev/hosts-dnsmasq"; 25 | +DIVBLOCK_OUTPUT="/tmp/dnsmasq.d/divblock.conf"; 26 | +DIVBLOCK_EXCLUSIONS="/etc/config/divblock-exclusions"; 27 | + 28 | +reload_service() 29 | +{ 30 | + stop "$@" 31 | + start "$@" 32 | +} 33 | + 34 | +start_service() 35 | +{ 36 | + if [ ! -e "$DIVBLOCK_EXCLUSIONS" ]; then touch "$DIVBLOCK_EXCLUSIONS"; fi; 37 | + #Tasks 38 | + # - Download the list if dnsmasq is enabled 39 | + # - Sanitize it to only allow comments and domain overrides to the invalid (#) address 40 | + # - Filter out patterns from the exclusion file 41 | + # - Restart dnsmasq 42 | + if /etc/init.d/dnsmasq enabled; then 43 | + sleep 15; #wait for network and system to settle after boot XXX: ugly 44 | + if wget $DIVBLOCK_HOSTS -O - | grep -i -e '^#' -e '^address=/.*/#' | grep -v -f "$DIVBLOCK_EXCLUSIONS" > $DIVBLOCK_OUTPUT; then 45 | + logger -t divblock "downloaded"; 46 | + /etc/init.d/dnsmasq restart; 47 | + logger -t divblock "restarted dnsmasq"; 48 | + else 49 | + logger -t divblock "failed to download"; 50 | + fi; 51 | + else 52 | + logger -t divblock "dnsmasq is disabled, not starting"; 53 | + fi; 54 | +} 55 | + 56 | +stop_service() 57 | +{ 58 | + #Tasks 59 | + # - Delete the list if available 60 | + # - Restart dnsmasq if running 61 | + if rm $DIVBLOCK_OUTPUT &>/dev/null; then logger -t divblock "deleted"; fi; 62 | + if /etc/init.d/dnsmasq running; then 63 | + /etc/init.d/dnsmasq restart; 64 | + logger -t divblock "restarted dnsmasq"; 65 | + else 66 | + logger -t divblock "dnsmasq stopped, not restarting"; 67 | + fi; 68 | +} 69 | -------------------------------------------------------------------------------- /templates/etc/config/wireless: -------------------------------------------------------------------------------- 1 | config wifi-device 'radio0' 2 | option type 'mac80211' 3 | option channel '11' #1, 6, or 11 4 | option hwmode '11g' 5 | option path 'soc/soc:pcie/pci0000:00/0000:00:02.0/0000:02:00.0' #shelby and caiman 6 | #option path 'soc/soc:pcie@82000000/pci0000:00/0000:00:02.0/0000:02:00.0' #mamba 7 | option htmode 'HT20' 8 | option country 'US' 9 | option txpower '30' 10 | option cell_density '0' 11 | 12 | config wifi-iface '24Example3' 13 | option device 'radio0' 14 | option network 'lan' 15 | option mode 'ap' 16 | option ssid 'Example-WPA3' 17 | option encryption 'sae' 18 | option key 'password for wpa3 devices' 19 | option ieee80211w '2' 20 | option wpa_disable_eapol_key_retries '1' 21 | option isolate '0' 22 | 23 | config wifi-iface '24Example' 24 | option device 'radio0' 25 | option network 'lan' 26 | option mode 'ap' 27 | option ssid 'Example' 28 | option encryption 'psk2+ccmp' 29 | option key 'password for wpa2 devices' 30 | option wpa_disable_eapol_key_retries '1' 31 | option isolate '0' 32 | 33 | config wifi-device 'radio1' 34 | option type 'mac80211' 35 | option channel '149' #36 or 149, DFS is broken on these devices 36 | option hwmode '11a' 37 | option path 'soc/soc:pcie/pci0000:00/0000:00:01.0/0000:01:00.0' #shelby and caiman 38 | #option path 'soc/soc:pcie@82000000/pci0000:00/0000:00:03.0/0000:03:00.0' #mamba 39 | option htmode 'VHT80' 40 | option country 'US' 41 | option txpower '30' 42 | option cell_density '0' 43 | 44 | config wifi-iface '5Example3' 45 | option device 'radio1' 46 | option network 'lan' 47 | option mode 'ap' 48 | option ssid 'Example-WPA3' 49 | option encryption 'sae' 50 | option key 'password for wpa3 devices' 51 | option ieee80211w '2' 52 | option wpa_disable_eapol_key_retries '1' 53 | option isolate '0' 54 | 55 | config wifi-iface '5Example' 56 | option device 'radio1' 57 | option network 'lan' 58 | option mode 'ap' 59 | option ssid 'Example' 60 | option encryption 'psk2+ccmp' 61 | option key 'password for wpa2 devices' 62 | option wpa_disable_eapol_key_retries '1' 63 | option isolate '0' 64 | 65 | #config wifi-iface '5ExampleBridge' 66 | # option device 'radio1' 67 | # option network 'lan' 68 | # option mode 'ap' 69 | # option ssid 'Example-Bridge' 70 | # option encryption 'psk2+ccmp' 71 | # option key 'password for wds, as main base station' 72 | # option wpa_disable_eapol_key_retries '1' 73 | # option isolate '0' 74 | # option wds '1' 75 | 76 | #config wifi-iface '5ExampleBridgeBackhaul' 77 | #Notes: 78 | # - channel must be same as main base station 79 | # - you must unplug from the switch 80 | # option device 'radio1' 81 | # option network 'lan' 82 | # option mode 'sta' 83 | # option ssid 'Example-Bridge' 84 | # option encryption 'psk2+ccmp' 85 | # option key 'password for wds, as a client' 86 | # option wpa_disable_eapol_key_retries '1' 87 | # option isolate '0' 88 | # option wds '1' 89 | -------------------------------------------------------------------------------- /patches/work/defconfig_hardened: -------------------------------------------------------------------------------- 1 | CONFIG_ARM64_BTI_KERNEL=y 2 | CONFIG_ARM64_EPAN=y 3 | CONFIG_ARM64_MTE=y 4 | CONFIG_ARM64_PAN=y 5 | CONFIG_ARM64_PTR_AUTH=y 6 | CONFIG_ARM64_SW_TTBR0_PAN=y 7 | CONFIG_ARM64_UAO=y 8 | CONFIG_BUG_ON_DATA_CORRUPTION=y 9 | CONFIG_BUG=y 10 | CONFIG_CC_STACKPROTECTOR_STRONG=y 11 | CONFIG_CC_STACKPROTECTOR=y 12 | CONFIG_CPU_SW_DOMAIN_PAN=y 13 | CONFIG_DEBUG_CREDENTIALS=y 14 | CONFIG_DEBUG_KERNEL=y 15 | CONFIG_DEBUG_LIST=y 16 | CONFIG_DEBUG_NOTIFIERS=y 17 | CONFIG_DEBUG_RODATA=y 18 | CONFIG_DEBUG_SET_MODULE_RONX=y 19 | CONFIG_DEBUG_SG=y 20 | CONFIG_DEBUG_VIRTUAL=y 21 | CONFIG_DEBUG_WX=y 22 | CONFIG_FORTIFY_SOURCE=y 23 | CONFIG_HARDEN_BRANCH_HISTORY=y 24 | CONFIG_HARDEN_BRANCH_PREDICTOR=y 25 | CONFIG_HARDENED_USERCOPY=y 26 | CONFIG_HARDEN_EL2_VECTORS=y 27 | CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y 28 | CONFIG_INIT_ON_FREE_DEFAULT_ON=y 29 | CONFIG_INIT_STACK_ALL=y 30 | CONFIG_INIT_STACK_ALL_ZERO=y 31 | CONFIG_IOMMU_DEFAULT_DMA_STRICT=y 32 | CONFIG_IO_STRICT_DEVMEM=y 33 | CONFIG_IPV6_PRIVACY=y 34 | CONFIG_LEGACY_VSYSCALL_NONE=y 35 | CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y 36 | CONFIG_MMC_SECDISCARD=y 37 | CONFIG_PAGE_POISONING_NO_SANITY=y 38 | CONFIG_PAGE_POISONING=y 39 | CONFIG_PAGE_POISONING_ZERO=y 40 | CONFIG_PAGE_TABLE_ISOLATION=y 41 | CONFIG_PANIC_ON_OOPS=y 42 | CONFIG_RANDOMIZE_BASE=y 43 | CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y 44 | CONFIG_RANDOMIZE_MEMORY=y 45 | CONFIG_REFCOUNT_FULL=y 46 | CONFIG_RESET_ATTACK_MITIGATION=y 47 | CONFIG_RETPOLINE=y 48 | CONFIG_RODATA_FULL_DEFAULT_ENABLED=y 49 | CONFIG_SCHED_STACK_END_CHECK=y 50 | CONFIG_SECCOMP_FILTER=y 51 | CONFIG_SECCOMP=y 52 | CONFIG_SECURITY_DMESG_RESTRICT=y 53 | CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y 54 | CONFIG_SECURITY=y 55 | CONFIG_SECURITY_YAMA_STACKED=y 56 | CONFIG_SECURITY_YAMA=y 57 | CONFIG_SHUFFLE_PAGE_ALLOCATOR=y 58 | CONFIG_SLAB_FREELIST_HARDENED=y 59 | CONFIG_SLAB_FREELIST_RANDOM=y 60 | CONFIG_STACKPROTECTOR_PER_TASK=y 61 | CONFIG_STACKPROTECTOR_STRONG=y 62 | CONFIG_STACKPROTECTOR=y 63 | CONFIG_STRICT_DEVMEM=y 64 | CONFIG_STRICT_KERNEL_RWX=y 65 | CONFIG_STRICT_MEMORY_RWX=y 66 | CONFIG_STRICT_MODULE_RWX=y 67 | CONFIG_SYN_COOKIES=y 68 | CONFIG_TEST_DEBUG_VIRTUAL=n 69 | CONFIG_THREAD_INFO_IN_TASK=y 70 | CONFIG_UNMAP_KERNEL_AT_EL0=y 71 | CONFIG_VMAP_STACK=y 72 | CONFIG_ZERO_CALL_USED_REGS=y 73 | CONFIG_ACPI_APEI_EINJ=n 74 | CONFIG_ACPI_CUSTOM_METHOD=n 75 | CONFIG_ACPI_TABLE_UPGRADE=n 76 | CONFIG_BINFMT_AOUT=n 77 | CONFIG_BINFMT_MISC=n 78 | CONFIG_BLK_DEV_FD=n 79 | CONFIG_BLK_DEV_IO_TRACE=n 80 | CONFIG_BT_HS=n 81 | CONFIG_CHECKPOINT_RESTORE=n 82 | CONFIG_COMPAT_BRK=n 83 | CONFIG_COMPAT_VDSO=n 84 | CONFIG_CORESIGHT=n 85 | CONFIG_CP_ACCESS64=n 86 | CONFIG_DEBUG_ATOMIC_SLEEP=n 87 | CONFIG_DEBUG_BUS_VOTER=n 88 | CONFIG_DEBUG_KMEMLEAK=n 89 | CONFIG_DEBUG_MUTEXES=n 90 | CONFIG_DEBUG_PAGEALLOC=n 91 | CONFIG_DEBUG_SPINLOCK=n 92 | CONFIG_DEBUG_STACK_USAGE=n 93 | CONFIG_DEVKMEM=n 94 | CONFIG_DEVMEM=n 95 | CONFIG_DEVPORT=n 96 | CONFIG_DYNAMIC_DEBUG=n 97 | CONFIG_EARJACK_DEBUGGER=n 98 | CONFIG_FAIL_FUTEX=n 99 | CONFIG_FB_VIRTUAL=n 100 | CONFIG_FTRACE=n 101 | CONFIG_FUNCTION_TRACER=n 102 | CONFIG_GENERIC_TRACER=n 103 | CONFIG_HARDENED_USERCOPY_FALLBACK=n 104 | CONFIG_HARDENED_USERCOPY_PAGESPAN=n 105 | CONFIG_HAVE_DEBUG_BUGVERBOSE=n 106 | CONFIG_HAVE_DEBUG_KMEMLEAK=n 107 | CONFIG_HIBERNATION=n 108 | CONFIG_HIST_TRIGGERS=n 109 | CONFIG_HWPOISON_INJECT=n 110 | CONFIG_IA32_EMULATION=n 111 | CONFIG_INPUT_EVBUG=n 112 | CONFIG_IOMMU_DEBUG=n 113 | CONFIG_IOMMU_DEBUG_TRACKING=n 114 | CONFIG_IOMMU_NON_SECURE=n 115 | CONFIG_IOMMU_TESTS=n 116 | CONFIG_IO_URING=n 117 | CONFIG_IP_DCCP=n 118 | CONFIG_IP_SCTP=n 119 | CONFIG_KEXEC_FILE=n 120 | CONFIG_KEXEC=n 121 | CONFIG_KPROBE_EVENTS=n 122 | CONFIG_KSM=n 123 | CONFIG_L2TP_DEBUGFS=n 124 | CONFIG_LDISC_AUTOLOAD=n 125 | CONFIG_LEGACY_PTYS=n 126 | CONFIG_LIVEPATCH=n 127 | CONFIG_LOCKUP_DETECTOR=n 128 | CONFIG_LOG_BUF_MAGIC=n 129 | CONFIG_MEM_SOFT_DIRTY=n 130 | CONFIG_MMIOTRACE=n 131 | CONFIG_MMIOTRACE_TEST=n 132 | CONFIG_MODIFY_LDT_SYSCALL=n 133 | CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG=n 134 | CONFIG_NOTIFIER_ERROR_INJECTION=n 135 | CONFIG_OABI_COMPAT=n 136 | CONFIG_PAGE_OWNER=n 137 | CONFIG_PREEMPT_TRACER=n 138 | CONFIG_PROC_KCORE=n 139 | CONFIG_PROC_VMCORE=n 140 | CONFIG_RDS=n 141 | CONFIG_RDS_TCP=n 142 | CONFIG_SECURITY_SELINUX_DISABLE=n 143 | CONFIG_SECURITY_WRITABLE_HOOKS=n 144 | CONFIG_SLAB_MERGE_DEFAULT=n 145 | CONFIG_SLUB_DEBUG=n 146 | CONFIG_SLUB_DEBUG_ON=n 147 | CONFIG_STACKLEAK_METRICS=n 148 | CONFIG_STACKLEAK_RUNTIME_DISABLE=n 149 | CONFIG_STACK_TRACER=n 150 | CONFIG_TIMER_STATS=n 151 | CONFIG_TSC=n 152 | CONFIG_TSPP2=n 153 | CONFIG_UKSM=n 154 | CONFIG_UPROBE_EVENTS=n 155 | CONFIG_UPROBES=n 156 | CONFIG_USELIB=n 157 | CONFIG_USERFAULTFD=n 158 | CONFIG_VIDEO_VIVID=n 159 | CONFIG_WLAN_FEATURE_MEMDUMP=n 160 | CONFIG_X86_IOPL_IOPERM=n 161 | CONFIG_X86_PTDUMP=n 162 | CONFIG_X86_VSYSCALL_EMULATION=n 163 | CONFIG_ZSMALLOC_STAT=n 164 | CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 165 | CONFIG_LSM_MMAP_MIN_ADDR=32768 166 | -------------------------------------------------------------------------------- /patches/unused/0030-2522-80211n_256QAM-Rebased.patch: -------------------------------------------------------------------------------- 1 | From 872bfa8e6a93bb7131cf8ad4393857e5728744e1 Mon Sep 17 00:00:00 2001 2 | From: DENG Qingfang 3 | Date: Sat, 3 Oct 2020 12:33:42 -0400 4 | Subject: [PATCH] mac80211/hostapd: add support for 256-QAM on 802.11n 5 | 6 | --- 7 | .../files/lib/netifd/wireless/mac80211.sh | 4 +-- 8 | .../ath/983-ath10k-allow-vht-on-2g.patch | 10 ++++++ 9 | .../subsys/600-mac80211-allow-vht-on-2g.patch | 36 +++++++++++++++++++ 10 | .../network/services/hostapd/files/hostapd.sh | 4 ++- 11 | 4 files changed, 51 insertions(+), 3 deletions(-) 12 | create mode 100644 package/kernel/mac80211/patches/ath/983-ath10k-allow-vht-on-2g.patch 13 | create mode 100644 package/kernel/mac80211/patches/subsys/600-mac80211-allow-vht-on-2g.patch 14 | 15 | diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh 16 | index 42144375b4..92adf67ca9 100644 17 | --- a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh 18 | +++ b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh 19 | @@ -107,7 +107,7 @@ mac80211_hostapd_setup_base() { 20 | [ -n "$acs_exclude_dfs" ] && [ "$acs_exclude_dfs" -gt 0 ] && 21 | append base_cfg "acs_exclude_dfs=1" "$N" 22 | 23 | - json_get_vars noscan ht_coex 24 | + json_get_vars noscan ht_coex vendor_vht 25 | json_get_values ht_capab_list ht_capab tx_burst 26 | json_get_values channel_list channels 27 | 28 | @@ -230,7 +230,7 @@ mac80211_hostapd_setup_base() { 29 | esac 30 | [ "$hwmode" = "a" ] || enable_ac=0 31 | 32 | - if [ "$enable_ac" != "0" ]; then 33 | + if [ "$enable_ac" != "0" -o "$vendor_vht" = "1" ]; then 34 | json_get_vars \ 35 | rxldpc:1 \ 36 | short_gi_80:1 \ 37 | diff --git a/package/kernel/mac80211/patches/ath/983-ath10k-allow-vht-on-2g.patch b/package/kernel/mac80211/patches/ath/983-ath10k-allow-vht-on-2g.patch 38 | new file mode 100644 39 | index 0000000000..eeca88a613 40 | --- /dev/null 41 | +++ b/package/kernel/mac80211/patches/ath/983-ath10k-allow-vht-on-2g.patch 42 | @@ -0,0 +1,10 @@ 43 | +--- a/drivers/net/wireless/ath/ath10k/mac.c 44 | ++++ b/drivers/net/wireless/ath/ath10k/mac.c 45 | +@@ -4718,6 +4718,7 @@ static void ath10k_mac_setup_ht_vht_cap( 46 | + if (ar->phy_capability & WHAL_WLAN_11G_CAPABILITY) { 47 | + band = &ar->mac.sbands[NL80211_BAND_2GHZ]; 48 | + band->ht_cap = ht_cap; 49 | ++ band->vht_cap = vht_cap; 50 | + } 51 | + if (ar->phy_capability & WHAL_WLAN_11A_CAPABILITY) { 52 | + band = &ar->mac.sbands[NL80211_BAND_5GHZ]; 53 | diff --git a/package/kernel/mac80211/patches/subsys/600-mac80211-allow-vht-on-2g.patch b/package/kernel/mac80211/patches/subsys/600-mac80211-allow-vht-on-2g.patch 54 | new file mode 100644 55 | index 0000000000..da9fcd2185 56 | --- /dev/null 57 | +++ b/package/kernel/mac80211/patches/subsys/600-mac80211-allow-vht-on-2g.patch 58 | @@ -0,0 +1,36 @@ 59 | +--- a/net/mac80211/vht.c 60 | ++++ b/net/mac80211/vht.c 61 | +@@ -135,7 +135,8 @@ ieee80211_vht_cap_ie_to_sta_vht_cap(stru 62 | + have_80mhz = false; 63 | + for (i = 0; i < sband->n_channels; i++) { 64 | + if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED | 65 | +- IEEE80211_CHAN_NO_80MHZ)) 66 | ++ IEEE80211_CHAN_NO_80MHZ) && 67 | ++ (sband->band != NL80211_BAND_2GHZ)) 68 | + continue; 69 | + 70 | + have_80mhz = true; 71 | +--- a/net/mac80211/util.c 72 | ++++ b/net/mac80211/util.c 73 | +@@ -1769,7 +1769,8 @@ static int ieee80211_build_preq_ies_band 74 | + /* Check if any channel in this sband supports at least 80 MHz */ 75 | + for (i = 0; i < sband->n_channels; i++) { 76 | + if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED | 77 | +- IEEE80211_CHAN_NO_80MHZ)) 78 | ++ IEEE80211_CHAN_NO_80MHZ) && 79 | ++ (sband->band != NL80211_BAND_2GHZ)) 80 | + continue; 81 | + 82 | + have_80mhz = true; 83 | +--- a/net/mac80211/mlme.c 84 | ++++ b/net/mac80211/mlme.c 85 | +@@ -4824,7 +4824,8 @@ static int ieee80211_prep_channel(struct 86 | + have_80mhz = false; 87 | + for (i = 0; i < sband->n_channels; i++) { 88 | + if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED | 89 | +- IEEE80211_CHAN_NO_80MHZ)) 90 | ++ IEEE80211_CHAN_NO_80MHZ) && 91 | ++ (sband->band != NL80211_BAND_2GHZ)) 92 | + continue; 93 | + 94 | + have_80mhz = true; 95 | diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh 96 | index 3290358ed2..c2ecd27677 100644 97 | --- a/package/network/services/hostapd/files/hostapd.sh 98 | +++ b/package/network/services/hostapd/files/hostapd.sh 99 | @@ -98,6 +98,7 @@ hostapd_common_add_device_config() { 100 | config_add_int local_pwr_constraint 101 | config_add_string require_mode 102 | config_add_boolean legacy_rates 103 | + config_add_boolean vendor_vht 104 | 105 | config_add_string acs_chan_bias 106 | config_add_array hostapd_options 107 | @@ -113,7 +114,7 @@ hostapd_prepare_device_config() { 108 | local base_cfg= 109 | 110 | json_get_vars country country_ie beacon_int:100 dtim_period:2 doth require_mode legacy_rates \ 111 | - acs_chan_bias local_pwr_constraint spectrum_mgmt_required airtime_mode 112 | + acs_chan_bias local_pwr_constraint spectrum_mgmt_required airtime_mode vendor_vht 113 | 114 | hostapd_set_log_options base_cfg 115 | 116 | @@ -149,6 +150,7 @@ hostapd_prepare_device_config() { 117 | [ "$hwmode" = "g" ] && { 118 | [ "$legacy_rates" -eq 0 ] && set_default rate_list "6000 9000 12000 18000 24000 36000 48000 54000" 119 | [ -n "$require_mode" ] && set_default basic_rate_list "6000 12000 24000" 120 | + [ -n "$vendor_vht" ] && append base_cfg "vendor_vht=$vendor_vht" "$N" 121 | } 122 | 123 | case "$require_mode" in 124 | -- 125 | 2.28.0 126 | 127 | -------------------------------------------------------------------------------- /patches/0002-kernel-generic-6.12-config-hardening.patch: -------------------------------------------------------------------------------- 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 2 | From: Tavi 3 | Date: Sun, 20 Jul 2025 10:44:30 -0400 4 | Subject: [PATCH 2/8] kernel: generic 6.12: config hardening 5 | 6 | Enables various security options. 7 | Disables various high-risk bits. 8 | 9 | Signed-off-by: Tavi 10 | --- 11 | target/linux/generic/config-6.12 | 165 +++++++++++++++++++++++++++++++ 12 | 1 file changed, 165 insertions(+) 13 | 14 | diff --git a/target/linux/generic/config-6.12 b/target/linux/generic/config-6.12 15 | index 2b96eb286c..e8b6ba18a3 100644 16 | --- a/target/linux/generic/config-6.12 17 | +++ b/target/linux/generic/config-6.12 18 | @@ -7796,3 +7796,168 @@ CONFIG_ZRAM_DEF_COMP="unset-value" 19 | # CONFIG_ZSMALLOC is not set 20 | CONFIG_ZSMALLOC_CHAIN_SIZE=8 21 | # CONFIG_ZSWAP is not set 22 | +CONFIG_ARM64_BTI_KERNEL=y 23 | +CONFIG_ARM64_EPAN=y 24 | +CONFIG_ARM64_MTE=y 25 | +CONFIG_ARM64_PAN=y 26 | +CONFIG_ARM64_PTR_AUTH=y 27 | +CONFIG_ARM64_SW_TTBR0_PAN=y 28 | +CONFIG_ARM64_UAO=y 29 | +CONFIG_BUG_ON_DATA_CORRUPTION=y 30 | +CONFIG_BUG=y 31 | +CONFIG_CC_STACKPROTECTOR_STRONG=y 32 | +CONFIG_CC_STACKPROTECTOR=y 33 | +CONFIG_CPU_SW_DOMAIN_PAN=y 34 | +CONFIG_DEBUG_CREDENTIALS=y 35 | +CONFIG_DEBUG_KERNEL=y 36 | +CONFIG_DEBUG_LIST=y 37 | +CONFIG_DEBUG_NOTIFIERS=y 38 | +CONFIG_DEBUG_RODATA=y 39 | +CONFIG_DEBUG_SET_MODULE_RONX=y 40 | +CONFIG_DEBUG_SG=y 41 | +CONFIG_DEBUG_VIRTUAL=y 42 | +CONFIG_DEBUG_WX=y 43 | +CONFIG_FORTIFY_SOURCE=y 44 | +CONFIG_HARDEN_BRANCH_HISTORY=y 45 | +CONFIG_HARDEN_BRANCH_PREDICTOR=y 46 | +CONFIG_HARDENED_USERCOPY=y 47 | +CONFIG_HARDEN_EL2_VECTORS=y 48 | +CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y 49 | +CONFIG_INIT_ON_FREE_DEFAULT_ON=y 50 | +CONFIG_INIT_STACK_ALL=y 51 | +CONFIG_INIT_STACK_ALL_ZERO=y 52 | +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y 53 | +CONFIG_IO_STRICT_DEVMEM=y 54 | +CONFIG_IPV6_PRIVACY=y 55 | +CONFIG_LEGACY_VSYSCALL_NONE=y 56 | +CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y 57 | +CONFIG_MMC_SECDISCARD=y 58 | +CONFIG_PAGE_POISONING_NO_SANITY=y 59 | +CONFIG_PAGE_POISONING=y 60 | +CONFIG_PAGE_POISONING_ZERO=y 61 | +CONFIG_PAGE_TABLE_ISOLATION=y 62 | +CONFIG_PANIC_ON_OOPS=y 63 | +CONFIG_RANDOMIZE_BASE=y 64 | +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y 65 | +CONFIG_RANDOMIZE_MEMORY=y 66 | +CONFIG_REFCOUNT_FULL=y 67 | +CONFIG_RESET_ATTACK_MITIGATION=y 68 | +CONFIG_RETPOLINE=y 69 | +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y 70 | +CONFIG_SCHED_STACK_END_CHECK=y 71 | +CONFIG_SECCOMP_FILTER=y 72 | +CONFIG_SECCOMP=y 73 | +CONFIG_SECURITY_DMESG_RESTRICT=y 74 | +CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y 75 | +CONFIG_SECURITY=y 76 | +CONFIG_SECURITY_YAMA_STACKED=y 77 | +CONFIG_SECURITY_YAMA=y 78 | +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y 79 | +CONFIG_SLAB_FREELIST_HARDENED=y 80 | +CONFIG_SLAB_FREELIST_RANDOM=y 81 | +CONFIG_STACKPROTECTOR_PER_TASK=y 82 | +CONFIG_STACKPROTECTOR_STRONG=y 83 | +CONFIG_STACKPROTECTOR=y 84 | +CONFIG_STRICT_DEVMEM=y 85 | +CONFIG_STRICT_KERNEL_RWX=y 86 | +CONFIG_STRICT_MEMORY_RWX=y 87 | +CONFIG_STRICT_MODULE_RWX=y 88 | +CONFIG_SYN_COOKIES=y 89 | +CONFIG_TEST_DEBUG_VIRTUAL=n 90 | +CONFIG_THREAD_INFO_IN_TASK=y 91 | +CONFIG_UNMAP_KERNEL_AT_EL0=y 92 | +CONFIG_VMAP_STACK=y 93 | +CONFIG_ZERO_CALL_USED_REGS=y 94 | +CONFIG_ACPI_APEI_EINJ=n 95 | +CONFIG_ACPI_CUSTOM_METHOD=n 96 | +CONFIG_ACPI_TABLE_UPGRADE=n 97 | +CONFIG_BINFMT_AOUT=n 98 | +CONFIG_BINFMT_MISC=n 99 | +CONFIG_BLK_DEV_FD=n 100 | +CONFIG_BLK_DEV_IO_TRACE=n 101 | +CONFIG_BT_HS=n 102 | +CONFIG_CHECKPOINT_RESTORE=n 103 | +CONFIG_COMPAT_BRK=n 104 | +CONFIG_COMPAT_VDSO=n 105 | +CONFIG_CORESIGHT=n 106 | +CONFIG_CP_ACCESS64=n 107 | +CONFIG_DEBUG_ATOMIC_SLEEP=n 108 | +CONFIG_DEBUG_BUS_VOTER=n 109 | +CONFIG_DEBUG_KMEMLEAK=n 110 | +CONFIG_DEBUG_MUTEXES=n 111 | +CONFIG_DEBUG_PAGEALLOC=n 112 | +CONFIG_DEBUG_SPINLOCK=n 113 | +CONFIG_DEBUG_STACK_USAGE=n 114 | +CONFIG_DEVKMEM=n 115 | +CONFIG_DEVMEM=n 116 | +CONFIG_DEVPORT=n 117 | +CONFIG_DYNAMIC_DEBUG=n 118 | +CONFIG_EARJACK_DEBUGGER=n 119 | +CONFIG_FAIL_FUTEX=n 120 | +CONFIG_FB_VIRTUAL=n 121 | +CONFIG_FTRACE=n 122 | +CONFIG_FUNCTION_TRACER=n 123 | +CONFIG_GENERIC_TRACER=n 124 | +CONFIG_HARDENED_USERCOPY_FALLBACK=n 125 | +CONFIG_HARDENED_USERCOPY_PAGESPAN=n 126 | +CONFIG_HAVE_DEBUG_BUGVERBOSE=n 127 | +CONFIG_HAVE_DEBUG_KMEMLEAK=n 128 | +CONFIG_HIBERNATION=n 129 | +CONFIG_HIST_TRIGGERS=n 130 | +CONFIG_HWPOISON_INJECT=n 131 | +CONFIG_IA32_EMULATION=n 132 | +CONFIG_INPUT_EVBUG=n 133 | +CONFIG_IOMMU_DEBUG=n 134 | +CONFIG_IOMMU_DEBUG_TRACKING=n 135 | +CONFIG_IOMMU_NON_SECURE=n 136 | +CONFIG_IOMMU_TESTS=n 137 | +CONFIG_IO_URING=n 138 | +CONFIG_IP_DCCP=n 139 | +CONFIG_IP_SCTP=n 140 | +CONFIG_KEXEC_FILE=n 141 | +CONFIG_KEXEC=n 142 | +CONFIG_KPROBE_EVENTS=n 143 | +CONFIG_KSM=n 144 | +CONFIG_L2TP_DEBUGFS=n 145 | +CONFIG_LDISC_AUTOLOAD=n 146 | +CONFIG_LEGACY_PTYS=n 147 | +CONFIG_LIVEPATCH=n 148 | +CONFIG_LOCKUP_DETECTOR=n 149 | +CONFIG_LOG_BUF_MAGIC=n 150 | +CONFIG_MEM_SOFT_DIRTY=n 151 | +CONFIG_MMIOTRACE=n 152 | +CONFIG_MMIOTRACE_TEST=n 153 | +CONFIG_MODIFY_LDT_SYSCALL=n 154 | +CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG=n 155 | +CONFIG_NOTIFIER_ERROR_INJECTION=n 156 | +CONFIG_OABI_COMPAT=n 157 | +CONFIG_PAGE_OWNER=n 158 | +CONFIG_PREEMPT_TRACER=n 159 | +CONFIG_PROC_KCORE=n 160 | +CONFIG_PROC_VMCORE=n 161 | +CONFIG_RDS=n 162 | +CONFIG_RDS_TCP=n 163 | +CONFIG_SECURITY_SELINUX_DISABLE=n 164 | +CONFIG_SECURITY_WRITABLE_HOOKS=n 165 | +CONFIG_SLAB_MERGE_DEFAULT=n 166 | +CONFIG_SLUB_DEBUG=n 167 | +CONFIG_SLUB_DEBUG_ON=n 168 | +CONFIG_STACKLEAK_METRICS=n 169 | +CONFIG_STACKLEAK_RUNTIME_DISABLE=n 170 | +CONFIG_STACK_TRACER=n 171 | +CONFIG_TIMER_STATS=n 172 | +CONFIG_TSC=n 173 | +CONFIG_TSPP2=n 174 | +CONFIG_UKSM=n 175 | +CONFIG_UPROBE_EVENTS=n 176 | +CONFIG_UPROBES=n 177 | +CONFIG_USELIB=n 178 | +CONFIG_USERFAULTFD=n 179 | +CONFIG_VIDEO_VIVID=n 180 | +CONFIG_WLAN_FEATURE_MEMDUMP=n 181 | +CONFIG_X86_IOPL_IOPERM=n 182 | +CONFIG_X86_PTDUMP=n 183 | +CONFIG_X86_VSYSCALL_EMULATION=n 184 | +CONFIG_ZSMALLOC_STAT=n 185 | +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 186 | +CONFIG_LSM_MMAP_MIN_ADDR=32768 187 | -------------------------------------------------------------------------------- /patches/unused/0030-2522-80211n_256QAM-Original.patch: -------------------------------------------------------------------------------- 1 | From 5a8601dc149824aa9c14d614dc21de5685c93f1a Mon Sep 17 00:00:00 2001 2 | From: DENG Qingfang 3 | Date: Tue, 29 Oct 2019 23:18:25 +0800 4 | Subject: [PATCH 1/3] mac80211: allow VHT on 2.4GHz 5 | 6 | Allow VHT rate on 2.4GHz in order to use 256-QAM 7 | 8 | Signed-off-by: DENG Qingfang 9 | --- 10 | .../files/lib/netifd/wireless/mac80211.sh | 4 +-- 11 | .../subsys/600-mac80211-allow-vht-on-2g.patch | 36 +++++++++++++++++++ 12 | 2 files changed, 38 insertions(+), 2 deletions(-) 13 | create mode 100644 package/kernel/mac80211/patches/subsys/600-mac80211-allow-vht-on-2g.patch 14 | 15 | diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh 16 | index 7ca138c68c57..28123ed82ccd 100644 17 | --- a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh 18 | +++ b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh 19 | @@ -107,7 +107,7 @@ mac80211_hostapd_setup_base() { 20 | [ -n "$acs_exclude_dfs" ] && [ "$acs_exclude_dfs" -gt 0 ] && 21 | append base_cfg "acs_exclude_dfs=1" "$N" 22 | 23 | - json_get_vars noscan ht_coex 24 | + json_get_vars noscan ht_coex vendor_vht 25 | json_get_values ht_capab_list ht_capab tx_burst 26 | 27 | set_default noscan 0 28 | @@ -223,7 +223,7 @@ mac80211_hostapd_setup_base() { 29 | ;; 30 | esac 31 | 32 | - if [ "$enable_ac" != "0" ]; then 33 | + if [ "$enable_ac" != "0" -o "$vendor_vht" = "1" ]; then 34 | json_get_vars \ 35 | rxldpc:1 \ 36 | short_gi_80:1 \ 37 | diff --git a/package/kernel/mac80211/patches/subsys/600-mac80211-allow-vht-on-2g.patch b/package/kernel/mac80211/patches/subsys/600-mac80211-allow-vht-on-2g.patch 38 | new file mode 100644 39 | index 000000000000..da9fcd218558 40 | --- /dev/null 41 | +++ b/package/kernel/mac80211/patches/subsys/600-mac80211-allow-vht-on-2g.patch 42 | @@ -0,0 +1,36 @@ 43 | +--- a/net/mac80211/vht.c 44 | ++++ b/net/mac80211/vht.c 45 | +@@ -135,7 +135,8 @@ ieee80211_vht_cap_ie_to_sta_vht_cap(stru 46 | + have_80mhz = false; 47 | + for (i = 0; i < sband->n_channels; i++) { 48 | + if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED | 49 | +- IEEE80211_CHAN_NO_80MHZ)) 50 | ++ IEEE80211_CHAN_NO_80MHZ) && 51 | ++ (sband->band != NL80211_BAND_2GHZ)) 52 | + continue; 53 | + 54 | + have_80mhz = true; 55 | +--- a/net/mac80211/util.c 56 | ++++ b/net/mac80211/util.c 57 | +@@ -1769,7 +1769,8 @@ static int ieee80211_build_preq_ies_band 58 | + /* Check if any channel in this sband supports at least 80 MHz */ 59 | + for (i = 0; i < sband->n_channels; i++) { 60 | + if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED | 61 | +- IEEE80211_CHAN_NO_80MHZ)) 62 | ++ IEEE80211_CHAN_NO_80MHZ) && 63 | ++ (sband->band != NL80211_BAND_2GHZ)) 64 | + continue; 65 | + 66 | + have_80mhz = true; 67 | +--- a/net/mac80211/mlme.c 68 | ++++ b/net/mac80211/mlme.c 69 | +@@ -4824,7 +4824,8 @@ static int ieee80211_prep_channel(struct 70 | + have_80mhz = false; 71 | + for (i = 0; i < sband->n_channels; i++) { 72 | + if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED | 73 | +- IEEE80211_CHAN_NO_80MHZ)) 74 | ++ IEEE80211_CHAN_NO_80MHZ) && 75 | ++ (sband->band != NL80211_BAND_2GHZ)) 76 | + continue; 77 | + 78 | + have_80mhz = true; 79 | 80 | From f2d9c20041b02d1ae371688ae4c91dc6a7bd3635 Mon Sep 17 00:00:00 2001 81 | From: DENG Qingfang 82 | Date: Tue, 29 Oct 2019 23:22:17 +0800 83 | Subject: [PATCH 2/3] ath10k: allow VHT on 2.4GHz 84 | 85 | Signed-off-by: DENG Qingfang 86 | --- 87 | .../patches/ath/983-ath10k-allow-vht-on-2g.patch | 10 ++++++++++ 88 | 1 file changed, 10 insertions(+) 89 | create mode 100644 package/kernel/mac80211/patches/ath/983-ath10k-allow-vht-on-2g.patch 90 | 91 | diff --git a/package/kernel/mac80211/patches/ath/983-ath10k-allow-vht-on-2g.patch b/package/kernel/mac80211/patches/ath/983-ath10k-allow-vht-on-2g.patch 92 | new file mode 100644 93 | index 000000000000..eeca88a613fb 94 | --- /dev/null 95 | +++ b/package/kernel/mac80211/patches/ath/983-ath10k-allow-vht-on-2g.patch 96 | @@ -0,0 +1,10 @@ 97 | +--- a/drivers/net/wireless/ath/ath10k/mac.c 98 | ++++ b/drivers/net/wireless/ath/ath10k/mac.c 99 | +@@ -4718,6 +4718,7 @@ static void ath10k_mac_setup_ht_vht_cap( 100 | + if (ar->phy_capability & WHAL_WLAN_11G_CAPABILITY) { 101 | + band = &ar->mac.sbands[NL80211_BAND_2GHZ]; 102 | + band->ht_cap = ht_cap; 103 | ++ band->vht_cap = vht_cap; 104 | + } 105 | + if (ar->phy_capability & WHAL_WLAN_11A_CAPABILITY) { 106 | + band = &ar->mac.sbands[NL80211_BAND_5GHZ]; 107 | 108 | From b07786397f60d5c0942df56d47f671e962e2a1df Mon Sep 17 00:00:00 2001 109 | From: DENG Qingfang 110 | Date: Tue, 29 Oct 2019 23:23:38 +0800 111 | Subject: [PATCH 3/3] hostapd: add vendor_vht option 112 | 113 | hostapd has vendor_vht option to enable VHT (256-QAM) on 2.4GHz 114 | Add this option to hostapd.sh so users can enable it via uci 115 | 116 | Signed-off-by: DENG Qingfang 117 | --- 118 | package/network/services/hostapd/files/hostapd.sh | 4 +++- 119 | 1 file changed, 3 insertions(+), 1 deletion(-) 120 | 121 | diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh 122 | index 637f298ad914..252622b8637b 100644 123 | --- a/package/network/services/hostapd/files/hostapd.sh 124 | +++ b/package/network/services/hostapd/files/hostapd.sh 125 | @@ -95,6 +95,7 @@ hostapd_common_add_device_config() { 126 | config_add_int local_pwr_constraint 127 | config_add_string require_mode 128 | config_add_boolean legacy_rates 129 | + config_add_boolean vendor_vht 130 | 131 | config_add_string acs_chan_bias 132 | config_add_array hostapd_options 133 | @@ -110,7 +111,7 @@ hostapd_prepare_device_config() { 134 | local base_cfg= 135 | 136 | json_get_vars country country_ie beacon_int:100 dtim_period:2 doth require_mode legacy_rates \ 137 | - acs_chan_bias local_pwr_constraint spectrum_mgmt_required 138 | + acs_chan_bias local_pwr_constraint spectrum_mgmt_required vendor_vht 139 | 140 | hostapd_set_log_options base_cfg 141 | 142 | @@ -145,6 +146,7 @@ hostapd_prepare_device_config() { 143 | [ "$hwmode" = "g" ] && { 144 | [ "$legacy_rates" -eq 0 ] && set_default rate_list "6000 9000 12000 18000 24000 36000 48000 54000" 145 | [ -n "$require_mode" ] && set_default basic_rate_list "6000 12000 24000" 146 | + [ -n "$vendor_vht" ] && append base_cfg "vendor_vht=$vendor_vht" "$N" 147 | } 148 | 149 | case "$require_mode" in 150 | -------------------------------------------------------------------------------- /patches/work/hardenDefconfig.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #DivestOS: A mobile operating system divested from the norm. 3 | #Copyright (c) 2017-2024 Divested Computing Group 4 | # 5 | #This program is free software: you can redistribute it and/or modify 6 | #it under the terms of the GNU Affero General Public License as published by 7 | #the Free Software Foundation, either version 3 of the License, or 8 | #(at your option) any later version. 9 | # 10 | #This program is distributed in the hope that it will be useful, 11 | #but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | #GNU Affero General Public License for more details. 14 | # 15 | #You should have received a copy of the GNU Affero General Public License 16 | #along with this program. If not, see . 17 | 18 | #Upstream: https://gitlab.com/divested-mobile/divestos-build/-/blob/master/Scripts/Common/Functions.sh 19 | #Use: hardenDefconfig "target/linux/generic/config-6.12"; 20 | 21 | hardenDefconfig() { 22 | #Attempts to enable/disable supported options to increase security 23 | #See https://kernsec.org/wiki/index.php/Kernel_Self_Protection_Project/Recommended_Settings 24 | #and (GPL-3.0) https://github.com/a13xp0p0v/kconfig-hardened-check/blob/master/kconfig_hardened_check/__init__.py 25 | 26 | local defconfigPath="$1"; 27 | 28 | #Enable supported options 29 | #Linux <3.0 30 | declare -a optionsYes=("BUG" "IPV6_PRIVACY" "SECCOMP" "SECURITY" "SECURITY_DMESG_RESTRICT" "STRICT_DEVMEM" "SYN_COOKIES"); 31 | optionsYes+=("DEBUG_KERNEL" "DEBUG_CREDENTIALS" "DEBUG_LIST" "DEBUG_VIRTUAL"); 32 | optionsYes+=("DEBUG_RODATA" "DEBUG_SET_MODULE_RONX"); 33 | optionsYes+=("DEBUG_SG"); 34 | optionsYes+=("DEBUG_NOTIFIERS"); 35 | 36 | #Linux 3.4 37 | optionsYes+=("SECURITY_YAMA"); 38 | 39 | #Linux 3.5 40 | optionsYes+=("PANIC_ON_OOPS" "SECCOMP_FILTER"); 41 | 42 | #Linux 3.7 43 | optionsYes+=("SECURITY_YAMA_STACKED"); 44 | 45 | #Linux 3.14 46 | optionsYes+=("CC_STACKPROTECTOR" "CC_STACKPROTECTOR_STRONG"); 47 | 48 | #Linux 3.18 49 | optionsYes+=("HARDENED_USERCOPY" "SCHED_STACK_END_CHECK"); 50 | 51 | #Linux 4.3 52 | optionsYes+=("ARM64_PAN" "CPU_SW_DOMAIN_PAN"); 53 | 54 | #Linux 4.4 55 | optionsYes+=("LEGACY_VSYSCALL_NONE"); 56 | 57 | #Linux 4.5 58 | optionsYes+=("IO_STRICT_DEVMEM"); 59 | 60 | #Linux 4.6 61 | optionsYes+=("ARM64_UAO" "PAGE_POISONING" "PAGE_POISONING_ZERO" "PAGE_POISONING_NO_SANITY"); 62 | 63 | #Linux 4.7 64 | optionsYes+=("RANDOMIZE_BASE" "SLAB_FREELIST_RANDOM"); 65 | 66 | #Linux 4.8 67 | optionsYes+=("RANDOMIZE_MEMORY"); 68 | 69 | #Linux 4.9 70 | optionsYes+=("THREAD_INFO_IN_TASK" "VMAP_STACK"); 71 | 72 | #Linux 4.10 73 | optionsYes+=("ARM64_SW_TTBR0_PAN" "BUG_ON_DATA_CORRUPTION"); 74 | 75 | #Linux 4.11 76 | optionsYes+=("STRICT_KERNEL_RWX" "STRICT_MODULE_RWX"); 77 | 78 | #Linux 4.13 79 | optionsYes+=("FORTIFY_SOURCE" "REFCOUNT_FULL"); 80 | 81 | #Linux 4.14 82 | optionsYes+=("SLAB_FREELIST_HARDENED"); 83 | #optionsYes+=("LTO_CLANG" "CFI_CLANG"); 84 | #optionsYes+=("RESET_ATTACK_MITIGATION"); #EFI only 85 | 86 | #Linux 4.15 87 | optionsYes+=("PAGE_TABLE_ISOLATION" "RETPOLINE"); 88 | 89 | #Linux 4.16 90 | optionsYes+=("UNMAP_KERNEL_AT_EL0"); 91 | 92 | #Linux 4.17 93 | optionsYes+=("HARDEN_EL2_VECTORS"); 94 | 95 | #Linux 4.18 96 | optionsYes+=("HARDEN_BRANCH_PREDICTOR" "STACKPROTECTOR" "STACKPROTECTOR_STRONG"); 97 | 98 | #Linux 5.0 99 | optionsYes+=("ARM64_PTR_AUTH"); #can stall CPUs on boot if missing support 100 | optionsYes+=("RODATA_FULL_DEFAULT_ENABLED" "STACKPROTECTOR_PER_TASK"); 101 | 102 | #Linux 5.2 103 | optionsYes+=("INIT_STACK_ALL" "SHUFFLE_PAGE_ALLOCATOR"); 104 | 105 | #Linux 5.8 106 | optionsYes+=("ARM64_BTI_KERNEL" "DEBUG_WX"); 107 | 108 | #Linux 5.9 109 | optionsYes+=("INIT_STACK_ALL_ZERO"); 110 | 111 | #Linux 5.10 112 | optionsYes+=("ARM64_MTE"); 113 | 114 | #Linux 5.12 115 | #optionsYes+=("KFENCE"); #useless? 116 | 117 | #Linux 5.13 118 | optionsYes+=("ARM64_EPAN" "RANDOMIZE_KSTACK_OFFSET_DEFAULT"); 119 | 120 | #Linux 5.15 121 | optionsYes+=("IOMMU_DEFAULT_DMA_STRICT" "ZERO_CALL_USED_REGS"); 122 | #optionsYes+=("WERROR"); 123 | 124 | #Linux 5.17 125 | optionsYes+=("HARDEN_BRANCH_HISTORY" "MITIGATE_SPECTRE_BRANCH_HISTORY"); 126 | 127 | #Linux 5.18 128 | #optionsYes+=("SHADOW_CALL_STACK" "SHADOW_CALL_STACK_VMAP"); 129 | 130 | optionsYes+=("INIT_ON_ALLOC_DEFAULT_ON" "INIT_ON_FREE_DEFAULT_ON"); 131 | 132 | for option in "${optionsYes[@]}" 133 | do 134 | #If the option is disabled, enable it 135 | sed -i 's/# CONFIG_'"$option"' is not set/CONFIG_'"$option"'=y/' $defconfigPath &>/dev/null || true; 136 | if [[ "$1" != *"kernel/oneplus/msm8996"* ]] && [[ "$1" != *"kernel/xiaomi/msm8937"* ]]; then 137 | #If the option isn't present, add it enabled 138 | sed -zi '/CONFIG_'"$option"'=y/!s/$/\nCONFIG_'"$option"'=y/' $defconfigPath &>/dev/null || true; 139 | fi; 140 | done 141 | #Disable supported options 142 | #debugging 143 | declare -a optionsNo=("ACPI_APEI_EINJ" "ACPI_CUSTOM_METHOD" "ACPI_TABLE_UPGRADE"); 144 | optionsNo+=("CHECKPOINT_RESTORE" "MEM_SOFT_DIRTY"); 145 | optionsNo+=("CP_ACCESS64" "WLAN_FEATURE_MEMDUMP"); 146 | optionsNo+=("DEVKMEM" "DEVMEM" "DEVPORT" "EARJACK_DEBUGGER" "PROC_KCORE" "PROC_VMCORE" "X86_PTDUMP"); 147 | optionsNo+=("HWPOISON_INJECT" "NOTIFIER_ERROR_INJECTION"); 148 | optionsNo+=("INPUT_EVBUG"); 149 | optionsNo+=("LOG_BUF_MAGIC"); 150 | optionsNo+=("L2TP_DEBUGFS"); 151 | optionsNo+=("PAGE_OWNER"); 152 | optionsNo+=("TIMER_STATS" "ZSMALLOC_STAT"); 153 | optionsNo+=("UPROBES"); 154 | optionsNo+=("SLUB_DEBUG" "SLUB_DEBUG_ON"); 155 | optionsNo+=("STACKLEAK_METRICS" "STACKLEAK_RUNTIME_DISABLE"); #GCC only 156 | optionsNo+=("MMIOTRACE" "MMIOTRACE_TEST"); 157 | optionsNo+=("IOMMU_DEBUG" "IOMMU_DEBUG_TRACKING" "IOMMU_NON_SECURE" "IOMMU_TESTS"); 158 | optionsNo+=("DEBUG_ATOMIC_SLEEP" "DEBUG_BUS_VOTER" "DEBUG_MUTEXES" "DEBUG_KMEMLEAK" "DEBUG_PAGEALLOC" "DEBUG_STACK_USAGE" "DEBUG_SPINLOCK"); 159 | #optionsNo+=("DEBUG_FS"); 160 | optionsNo+=("FTRACE" "KPROBE_EVENTS" "UPROBE_EVENTS" "GENERIC_TRACER" "FUNCTION_TRACER" "STACK_TRACER" "HIST_TRIGGERS" "BLK_DEV_IO_TRACE" "FAIL_FUTEX" "DYNAMIC_DEBUG" "PREEMPT_TRACER"); 161 | #legacy 162 | optionsNo+=("BINFMT_AOUT" "BINFMT_MISC"); 163 | optionsNo+=("COMPAT_BRK" "COMPAT_VDSO"); 164 | optionsNo+=("LDISC_AUTOLOAD" "LEGACY_PTYS"); 165 | optionsNo+=("MODIFY_LDT_SYSCALL"); 166 | optionsNo+=("OABI_COMPAT"); 167 | optionsNo+=("USELIB"); 168 | optionsNo+=("X86_IOPL_IOPERM" "X86_VSYSCALL_EMULATION"); 169 | #unnecessary 170 | optionsNo+=("BLK_DEV_FD" "BT_HS" "IO_URING" "IP_DCCP" "IP_SCTP" "VIDEO_VIVID" "FB_VIRTUAL" "RDS" "RDS_TCP"); 171 | optionsNo+=("HIBERNATION"); 172 | optionsNo+=("KEXEC" "KEXEC_FILE"); 173 | optionsNo+=("UKSM"); 174 | optionsNo+=("KSM"); 175 | optionsNo+=("LIVEPATCH"); 176 | #unsafe 177 | optionsNo+=("HARDENED_USERCOPY_FALLBACK"); 178 | optionsNo+=("SECURITY_SELINUX_DISABLE" "SECURITY_WRITABLE_HOOKS"); 179 | optionsNo+=("SLAB_MERGE_DEFAULT"); 180 | optionsNo+=("USERFAULTFD"); 181 | #misc 182 | optionsNo+=("FB_MSM_MDSS_XLOG_DEBUG" "MSM_BUSPM_DEV" "MSMB_CAMERA_DEBUG" "MSM_CAMERA_DEBUG" "MSM_SMD_DEBUG"); 183 | optionsNo+=("NEEDS_SYSCALL_FOR_CMPXCHG"); 184 | optionsNo+=("TSC" "TSPP2"); 185 | #breakage 186 | optionsNo+=("HARDENED_USERCOPY_PAGESPAN"); 187 | 188 | for option in "${optionsNo[@]}" 189 | do 190 | #If the option is enabled, disable it 191 | sed -i 's/CONFIG_'"$option"'=y/CONFIG_'"$option"'=n/' $defconfigPath &>/dev/null || true; 192 | #If the option isn't present, add it disabled 193 | sed -zi '/CONFIG_'"$option"'=n/!s/$/\nCONFIG_'"$option"'=n/' $defconfigPath &>/dev/null || true; 194 | done 195 | 196 | #Extras 197 | sed -i 's/CONFIG_ARCH_MMAP_RND_BITS=8/CONFIG_ARCH_MMAP_RND_BITS=16/' $defconfigPath &>/dev/null || true; 198 | sed -i 's/CONFIG_ARCH_MMAP_RND_BITS=18/CONFIG_ARCH_MMAP_RND_BITS=24/' $defconfigPath &>/dev/null || true; 199 | sed -i 's/CONFIG_DEFAULT_MMAP_MIN_ADDR=4096/CONFIG_DEFAULT_MMAP_MIN_ADDR=32768/' $defconfigPath &>/dev/null || true; 200 | sed -zi '/CONFIG_DEFAULT_MMAP_MIN_ADDR/!s/$/\nCONFIG_DEFAULT_MMAP_MIN_ADDR=32768/' $defconfigPath &>/dev/null || true; 201 | sed -i 's/CONFIG_LSM_MMAP_MIN_ADDR=4096/CONFIG_LSM_MMAP_MIN_ADDR=32768/' $defconfigPath &>/dev/null || true; 202 | sed -zi '/CONFIG_LSM_MMAP_MIN_ADDR/!s/$/\nCONFIG_LSM_MMAP_MIN_ADDR=32768/' $defconfigPath &>/dev/null || true; 203 | 204 | echo "Hardened defconfig for $1"; 205 | } 206 | export -f hardenDefconfig; 207 | -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- 1 |

Divested-WRT: UNOFFICIAL OpenWrt builds^

2 |

README last updated: 2024/12/25

3 | 4 |


5 |

License^

6 |

7 | Configs and patches should be considered GPL-2.0 unless stated otherwise.
8 | All modifications are contained in the /patches directory. 9 |

10 | 11 |
12 |

Verification^

13 |
    14 |
  • #6395 FC99 11ED CD61 5871 2DF7 BADF CABD DBF5 B694
  • 15 |
  • #Key mirrored at 1, 2, and 3.
  • 16 |
  • $ gpg --import divested_signing.key; #once only
  • 17 |
  • $ gpg --verify sha256sums;
  • 18 |
  • $ sha256sum --ignore-missing --check sha256sums;
  • 19 |
20 | 21 |
22 |

Disclaimer^

23 |

24 | If they work for you, cool!
25 | If they don't, find something else.
26 | If somethings breaks, you get to keep both pieces! 27 |

28 | 29 |
30 |

Credits^

31 |
    32 |
  • @jbsky for tons of mwlwifi fixes and improvements
  • 33 |
  • Vladimir Oltean, Tobias Waldekranz, and DENG Qingfang for the DSA/FDB fixes and backports
  • 34 |
  • Wout Mertens and Pavel Stano for the previously used DSA/FDB workaround
  • 35 |
  • The mystery person who figured out that TX-AMSDU causes high latencies on mwlwifi, possibly @onja
  • 36 |
  • Rui Salvaterra for the frequent kernel bumps+testing and the Thumb-2 patch
  • 37 |
  • Daniel Engberg for the -O2 patch
  • 38 |
  • @borkra for the 2024 sysupgrade fix
  • 39 |
  • OpenWrt, its amazing contributors, and its friendly community for all that it is
  • 40 |
  • Alexander Popov, for maintaining a detailed list of kernel config hardening options here
  • 41 |
42 | 43 |
44 |

FAQ^

45 |

Why make these builds?^

46 |
    47 |
  • I need wpad-full compiled in for RADIUS support. Only WPA2-EAP and WPA3 offer PFS.
  • 48 |
  • I want extra security features that aren't enabled by default.
  • 49 |
50 | 51 |

What devices have been tested?^

52 |
    53 |
  • WRT1900ACSv2/shelby
  • 54 |
  • WRT1900ACv1/mamba
  • 55 |
  • WRT1200AC/caiman
  • 56 |
  • WRT32X/venom (via user report)
  • 57 |
  • WRT1900ACv2/cobra (via user report)
  • 58 |
59 | 60 |

How often will these be updated?^

61 |
    62 |
  • At least twice a month
  • 63 |
  • Sometimes weekly
  • 64 |
65 | 66 |

Can we rely on you to provide these builds in the future?^

67 |
    68 |
  • No.
  • 69 |
  • However I have been making these for quite a while.
  • 70 |
  • And this hardware is still some of the best around.
  • 71 |
72 | 73 |

Why should we trust you?^

74 |
    75 |
  • You don't have to!
  • 76 |
  • Patches and configs are included for you to compile this yourself.
  • 77 |
78 | 79 |

How to create my own builds?^

80 |
    81 |
  • There is a video of this process here
  • 82 |
  • Create a VM with Debian or Fedora or what have you
  • 83 |
  • Install all the necessary dependencies listed here
  • 84 |
  • $ git clone https://git.openwrt.org/openwrt/openwrt.git
  • 85 |
  • $ cd openwrt
  • 86 |
  • $ git config pull.rebase true #makes updating easier
  • 87 |
  • $ ./scripts/feeds update -a -f
  • 88 |
  • $ ./scripts/feeds install -a -f
  • 89 |
  • #copy in the config from the latest build here, name it .config
  • 90 |
  • #git am the .patches from /patches here
  • 91 |
  • $ make nconfig #make any changes you want
  • 92 |
  • $ make download -j4
  • 93 |
  • $ make -j16
  • 94 |
95 | 96 |

How to update my own builds?^

97 |
    98 |
  • $ cd openwrt
  • 99 |
  • $ make clean
  • 100 |
  • $ git pull
  • 101 |
  • $ ./scripts/feeds update -a -f
  • 102 |
  • $ ./scripts/feeds install -a -f
  • 103 |
  • $ make nconfig #save and exit
  • 104 |
  • $ make download -j4
  • 105 |
  • $ make -j16
  • 106 |
107 | 108 |

What is this included divblock? Why is this website blocked?^

109 |
    110 |
  • A simple content blocking script is included that adds our blocklist config to dnsmasq from here.
  • 111 |
  • This is a much more efficient approach than downloading & processing the lists on device and has the benefit of supporting wildcards for greater efficiency and increased blocking.
  • 112 |
  • This blocker can be permanently disabled via /etc/init.d/divblock disable if you don't want it or want another blocker package.
  • 113 |
  • You can exclude a domain by adding it (one per line) to /etc/config/divblock-exclusions as so /www\.example\.com/ then restart via /etc/init.d/divblock restart
  • 114 |
  • Please report any wrongly blocked domains in the forum thread or on GitHub or on GitLab.
  • 115 |
116 | 117 |

Anything to change after install?^

118 |
    119 |
  • Change 'enabled' from '0' to '1' in '/etc/config/irqbalance' for improved Wi-Fi performance.
  • 120 |
  • Uncomment 'devcrypto=devcrypto' under the '[engine]' block in '/etc/ssl/openssl.cnf' for improved OpenSSL performance for large block sizes.
  • 121 |
  • Enable SQM/Cake if you have an asymmetric WAN.
  • 122 |
123 | 124 |

Other things we should know?^

125 |
    126 |
  • Wiki pages are here and here.
  • 127 |
  • You need to manually migrate if you are still on a swconfig build. simple guide here
  • 128 |
  • There is a forum thread here.
  • 129 |
  • There is a git repo for this at GitHub and GitLab.
  • 130 |
  • If you don't have one of these and want one, I recommend the WRT1900ACv2 or WRT1900ACS.
  • 131 |
  • These are routers/APs, please don't run anything else on them. If you need a low power home server go buy an HP EliteDesk 800 G1/G2 Desk-Mini (<$120) or an Intel NUC (more expensive).
  • 132 |
  • Donate to me here and to OpenWrt here
  • 133 |
  • Have fun!
  • 134 |
135 | 136 |
137 |

Notices^

138 |
    139 |
  • OpenWrt is a registered trademark of the Software Freedom Conservancy.
  • 140 |
  • Divested Computing Group is not affiliated with OpenWrt or LINKSYS
  • 141 |
  • These builds are not sponsored or endorsed by OpenWrt
  • 142 |
  • The OpenWrt project website is located at https://openwrt.org
  • 143 |
  • The OpenWrt source code is available here
  • 144 |
  • Linux is a registered trademark of Linus Torvalds
  • 145 |
  • Linux source code is available here
  • 146 |
  • LINKSYS is a registered trademark of Belkin International, Inc.
  • 147 |
  • All product names, logos, and brands are property of their respective owners. Use of these names, logos, and brands does not imply sponsorship or endorsement.
  • 148 |
149 | -------------------------------------------------------------------------------- /20251107-00/sha256sums: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNED MESSAGE----- 2 | Hash: SHA512 3 | 4 | 8853454d8823b6657c611bb21b68106c72cc5046949ec12714581fcebf96117e *config.buildinfo 5 | a52ca27bda72ecefffdfc881f3a7ba4256c63193a5b3943674608a799d588533 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-buffalo_ls421de-initramfs-kernel.bin 6 | 562ccd5a92f35e3d7d618e33f36a8af860b6e5e8fa1bf8a0be64df1181c60952 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-buffalo_ls421de-squashfs-sysupgrade.bin 7 | c59e1742d0f24c2497d91d4c8fafddd6d9a1a8ec6ab23072f048623d237511ae *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-ctera_c200-v2-initramfs-factory.firm 8 | 7a965d1be219f5a49aefe72533a21a31c0e603804aa4606eb48720eafd9517eb *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-ctera_c200-v2-squashfs-sysupgrade.bin 9 | 76243b69dd48028f6c5dfe38840a09872704dd548c6367ff2953c9020b1b5082 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-cznic_turris-omnia-initramfs-kernel.bin 10 | 5b3a6a667d72b47dcf077a5512d40f89c77bb7c88662af1306275ee7d22c56e0 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-cznic_turris-omnia-kernel.bin 11 | fbd8b19da7e8a8e065e674383d6bf0f5c82c85d49d0b94c4236351a7d7516ec3 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-cznic_turris-omnia-squashfs-sysupgrade.img.gz 12 | 7e97640311d552bd90b7d982e0a7d817613eb569a4d1537f7b00ad5128b8d1e9 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-globalscale_mirabox-initramfs-kernel.bin 13 | eebf0ab2852a0c3ded532701681800f34b626c100ad91de72ef48780b2230f8f *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-globalscale_mirabox-squashfs-sysupgrade.bin 14 | 874d51921fc704582b65f0d4b38792bf3cb1307843a099e41d96e1078a64b3a2 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-iptime_nas1dual-initramfs-kernel.bin 15 | e6d1f61a51ad7d7585b0d3bef4e29757a4bb5493f47f859ec3069baddb27ffd6 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-iptime_nas1dual-squashfs-sysupgrade.bin 16 | 33efa087cd346d3ef952fd9103e63b91b37ef60f75d4a6631084722be2bc5562 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-kobol_helios4-initramfs-kernel.bin 17 | 5b3a6a667d72b47dcf077a5512d40f89c77bb7c88662af1306275ee7d22c56e0 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-kobol_helios4-kernel.bin 18 | 86d3d611649bb8ee215f3817629fe67620cc0dd25d9752fcb5694cfa9e10ca80 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-kobol_helios4-squashfs-sdcard.img.gz 19 | 301cdef5230de039754e3907011253ad326157a2996f1aab68f92497eb34ed2e *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1200ac-initramfs-kernel.bin 20 | 69fb027bde21eeed38769e198af69f2762a6bdda6c1810741e7f728fdeb438a6 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1200ac-squashfs-factory.img 21 | 07eab4b67a8108adb92afa2c84269484b66a3bdcbac7d6eadf4b203435c24089 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1200ac-squashfs-sysupgrade.bin 22 | 3e0b7a2a7fcbc946fe4eb9a4d42b5fa3b60aaa089dba9899417022c14664c806 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900ac-v1-initramfs-kernel.bin 23 | 13cd1fd36d61f5fb1d67575af8b9dbf0fcfe60cf6310d8dbff3e3d61456ed6a4 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900ac-v1-squashfs-factory.img 24 | 9174b09ba80e1116237724e7949d7f87f30c02809f6c966a9a0c65554ff69f1e *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900ac-v1-squashfs-sysupgrade.bin 25 | ad69490ae6d0bbd78e936770e02f0c49f8f7feb29b4f20bdd32edfb57951c5ca *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900ac-v2-initramfs-kernel.bin 26 | 0455f646735f798916a5793cd9204e902382cad5b3e243094be42ee3f39fd754 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900ac-v2-squashfs-factory.img 27 | 5ca54c79d684bc0142aa65deed646647a5b04195e97481564bbe34dfcf8b9d18 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900ac-v2-squashfs-sysupgrade.bin 28 | bf391a978524d8e78bef7fdfba732c5886770f880e2218d3cfe353ab4dc42e31 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900acs-initramfs-kernel.bin 29 | a216bfb037e68e67c0e5f923b77631dfeaeabc627091c2bb42e2e6676a3075af *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900acs-squashfs-factory.img 30 | 43fde68006f73decdae788b71a817caf78674445678b3f52a9d4d45d629ced0d *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt1900acs-squashfs-sysupgrade.bin 31 | 06efc68f1ac32379007001e4aaba17eb9f8a803fe226ed7049c2f83bad199fff *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt3200acm-initramfs-kernel.bin 32 | 5c210b6a85d6654d5c70a4af6631e4e886d03b65125493bf46a4d462ab612001 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt3200acm-squashfs-factory.img 33 | 2660209b5b5311acee30480e8c6cbd32d599a35546b67a1e4296aea91f55b88d *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt3200acm-squashfs-sysupgrade.bin 34 | e3c11fc3628d0822d55dc49f5c752da2031d3ad1a39fc34a01174bdabbf29160 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt32x-initramfs-kernel.bin 35 | d7fdffa70e122fda83cb35b43d683a111f12822a23f0547eb7aa7cb4f87973f4 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt32x-squashfs-factory.img 36 | 948768ca911f961b11dadeb9b8a1980f8bd6e39d60c9fc2251094d9657400382 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-linksys_wrt32x-squashfs-sysupgrade.bin 37 | 4ac382c8e9d75b29a88472059dff3069660d1e2aa1b43ac1fc608414df73e7b7 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a370-db-initramfs-kernel.bin 38 | 664e322e6238dfe91b5c70c721a4dc0c96d3c8b9bfff6684b8207c2a4db3cb4f *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a370-db-squashfs-sysupgrade.bin 39 | 4270fa7d25f0913b2d7cfc47fa5c2faa8a909ffd545210f4db5df31fc173b666 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a370-rd-initramfs-kernel.bin 40 | 24e34c48f7bbdcbe2f8d9ae4259b80a299f8de4eedb1c93da2c7d35e1a279ec3 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a370-rd-squashfs-sysupgrade.bin 41 | 1c5d33edae9f9eb271395c4296ba87fdc170300c16fef1f6926df9d06a7e7a9d *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a385-db-ap-initramfs-kernel.bin 42 | 1cf5961d487be4fe0b1a41670d2588ba5aaf98e907cb82c8bb853eeb607eb640 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a385-db-ap-squashfs-factory.img 43 | cdcf496700a12f282f138bcc01517bcc081707563e37331a417f63a647cb5bbb *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a385-db-ap-squashfs-sysupgrade.bin 44 | 05cd0feb1e8908a8cf8e1f078d9cecdea1752aa6020ccd6db56e16ba621b34d1 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a388-rd-initramfs-kernel.bin 45 | 4f679b6dc83c36411efc0ca4b796caa84379e05ecba1ba52aa144d7a1920cbc1 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_a388-rd-squashfs-firmware.bin 46 | d6c3f79937b90d06d0e555708d16c0916160f3604b1c157eb4c6ac822a52d1fa *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_axp-db-initramfs-kernel.bin 47 | dca9a30ea453567c1e01c3704b37dabb0bec02be399b4710e4c7bfd9f884bf6b *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_axp-db-squashfs-sysupgrade.bin 48 | 493c024aea490099eacb2163f393710ff160845a9caa5acdb6b005a05f5e4893 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_axp-gp-initramfs-kernel.bin 49 | 39e6cd47c4c7a5e48dc6c60f8029ac45a58dae949848f1b5590374bbe6487645 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-marvell_axp-gp-squashfs-sysupgrade.bin 50 | 51d18731966d3e9bf7accc9c984fc43f4c7c015b17741833fe5082da6cf63fc3 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-plathome_openblocks-ax3-4-initramfs-kernel.bin 51 | 30173f293ba9865fc73203f7c0d5955b92130dcffff939fc63f9939d8554dcae *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-plathome_openblocks-ax3-4-squashfs-factory.img 52 | 3b4d5d6bbaed9e3986d1639962c3103b3b8ddca8652b0584ab9cde152ffb94ed *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-plathome_openblocks-ax3-4-squashfs-sysupgrade.bin 53 | 33efa087cd346d3ef952fd9103e63b91b37ef60f75d4a6631084722be2bc5562 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-solidrun_clearfog-base-a1-initramfs-kernel.bin 54 | 5b3a6a667d72b47dcf077a5512d40f89c77bb7c88662af1306275ee7d22c56e0 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-solidrun_clearfog-base-a1-kernel.bin 55 | a50360bbca84d7494c7d48f43bbb03ae3560b9edb7f65905fdb7a7d8a0df86ac *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-solidrun_clearfog-base-a1-squashfs-sdcard.img.gz 56 | 33efa087cd346d3ef952fd9103e63b91b37ef60f75d4a6631084722be2bc5562 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-solidrun_clearfog-pro-a1-initramfs-kernel.bin 57 | 5b3a6a667d72b47dcf077a5512d40f89c77bb7c88662af1306275ee7d22c56e0 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-solidrun_clearfog-pro-a1-kernel.bin 58 | 4bf2cc408e99ac489b2cc4ea61a4e37dbf218bdf696fbf7d8a5fcaea883b0102 *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9-solidrun_clearfog-pro-a1-squashfs-sdcard.img.gz 59 | 206da4e215b976e7c3c57377db2b6b6c2d3aa94478aef8117d050182eb4e103a *divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9.manifest 60 | fa6b58c9bb26bc058691c1141ff433e7d00bdff15d32310ff0a29e388e74e792 *feeds.buildinfo 61 | 0d849ea9feec75dfee0057383578e720d22899902199e8e29d786704455937bc *profiles.json 62 | 297d4011984d43c0f91b7f6889a699133d37654d87410b94e8116af450a335e0 *version.buildinfo 63 | -----BEGIN PGP SIGNATURE----- 64 | 65 | iQIzBAEBCgAdFiEEY5X8mRHtzWFYcS33ut/Kvdv1tpQFAmkOMiUACgkQut/Kvdv1 66 | tpR8qxAAnx2JHtUab8sGU2qrf3hR3MgTop0MwU5g143GMr2j01as8/Lrzs1shqwe 67 | oPsm3GAdjxRRKkbSd3Vykuvtahb6rrqfNPk4/mnaQJq86dEhEqvj894egQg4OQtY 68 | nkUExUsadde1lcfJZkpu/aa7rDvOZodsstKkF1yqGABhEtp5HZRCkGrx0s3MDl4q 69 | GvMiLW1bvUD/Lb6Dyf9jtXKUyTyMhrPkG9XtSz32sRhnZdWRe2UVe2qM/I6akYJp 70 | bEK8BP0/wvIKPV3oZ4yMFr3Gxl6sE/JpXMbSGdnQWcn/LDF75drQPDxp7wWh78OB 71 | GCe3OR09ZO8NVJ8XuSjCC/dfRTMNbmUKeNCpg+jFWAOlhE2yUt0rj1TVPESZrbfT 72 | xhVKgVSBYMpwoBtlja+vLtU11F49VFjOiN3O2jKwQuCnJW+2dDv6UGi7jgn0SyrY 73 | NboEoSf2Fy6qstTOo2H3aC7gyspnIvJC9WRUcbAAkmMpyn9IShtln0i6ltQ1V8Hh 74 | 8phlVaOqQOSJbVhXGR40zGf87wx0oqXnuQqUWNrE6Orp3AoaI/1OCzawuHiw/LCc 75 | ponR+3pvZAKvES0mJ+9+z4uqDxxMblhopqmrc3DuJqD9mfGSDPF6O2A9azaF2rqS 76 | sp+dfjeLl+vPyFalovAFkGGDzLKy+u07XrGeiVwj9ThxeaClwtw= 77 | =DKr/ 78 | -----END PGP SIGNATURE----- 79 | -------------------------------------------------------------------------------- /20251121-00/sha256sums: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNED MESSAGE----- 2 | Hash: SHA512 3 | 4 | 9b71f6a564c03a0cec798c37f408ac271bb8b46d2095a22a36726fc9a018a5f8 *config.buildinfo 5 | 8ecefa1a0030ba9c3f1eaa96a079decc97a54f26b45814f3b72fed543f36cbaa *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-buffalo_ls421de-initramfs-kernel.bin 6 | 164d1ca02f5be220e1bde987b4753d01e8867cb8f91f31a2b176bf8cf2079aa6 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-buffalo_ls421de-squashfs-sysupgrade.bin 7 | b47327defb95864d4ca11e44e9a46ed7b2eed570633006c715329e701ee5cc38 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-ctera_c200-v2-initramfs-factory.firm 8 | 388be165c8f221ac4794d9fac35014021ffaa4f7547b1b6a670569b7591344e5 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-ctera_c200-v2-squashfs-sysupgrade.bin 9 | 956ac8730e19fd0426e484fd7fb3fbc5ae4d5b037198c863c0c52ab516a5cee1 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-cznic_turris-omnia-initramfs-kernel.bin 10 | 2a3bcd1a07d5c857f52b85ce0e27e974fafe346b07d57158301806f160e982f1 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-cznic_turris-omnia-kernel.bin 11 | 7307b4847b800d6a4ebedcc376fde6f7d7b1f61c9d1b82ad80b12dabfb717a60 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-cznic_turris-omnia-squashfs-sysupgrade.img.gz 12 | 838074e4f6e72d07dfbf4f9945e5705056fbeea148322c089a6941ff4fd401ea *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-globalscale_mirabox-initramfs-kernel.bin 13 | 8b6ac6684819ee9517345e0893a69b608c5e55ac8e00be4cbca974934c8f431a *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-globalscale_mirabox-squashfs-sysupgrade.bin 14 | 086f52a55006f144e8afeb99c611a5b0f3e10f5d63f0842e2e53656c71808ffc *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-iptime_nas1dual-initramfs-kernel.bin 15 | fc9d74ed7f8433e97d4af50180cf1c1e80072e1296f9e4ddd292ca2ca11f65bb *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-iptime_nas1dual-squashfs-sysupgrade.bin 16 | 57fb087eba6ad843a76acf96283970461b8d806c01534e05c6933f9e3806a779 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-kobol_helios4-initramfs-kernel.bin 17 | 2a3bcd1a07d5c857f52b85ce0e27e974fafe346b07d57158301806f160e982f1 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-kobol_helios4-kernel.bin 18 | 692e3f3766f6bf6935613b35fa4957405e6fed1068b4ad07631b6457194cfa99 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-kobol_helios4-squashfs-sdcard.img.gz 19 | 4b771e52ce5c24efe704078e49f0ec80e4eb85da31e25791027d71a50890ce86 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1200ac-initramfs-kernel.bin 20 | 459b26b9becf50345d2e6bbe550742c1f788fecfd097cec80058b3b4a2d46c71 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1200ac-squashfs-factory.img 21 | 7428a71768ca17851fe6cbd1f6d0ca72b73c9091a249b7076bb63bf9e34eaa61 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1200ac-squashfs-sysupgrade.bin 22 | 3a13c013a468d477380cc0506afd6e6e6f6f5250923192f1afa40e32328d4f90 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900ac-v1-initramfs-kernel.bin 23 | a701239d4a84bd67ba3d84c76292efa4b28a690aea2d3041c3bb718c5728ae33 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900ac-v1-squashfs-factory.img 24 | b9b71a22e56a137522ec8202f66692d9a9ed862423e98e81ba51f1a14254c7a8 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900ac-v1-squashfs-sysupgrade.bin 25 | 02ecacbcf436d01fb99b2ac1b3a3c2346fd3f5f78731b885a009cf266c7cc1dd *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900ac-v2-initramfs-kernel.bin 26 | ea77cdf1a5e888a444545ddac84ac57825cdb949f7a557c061ca117fa701af3a *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900ac-v2-squashfs-factory.img 27 | dc6c12ab1d98984e348191f1ee0fd371036cfd94397ae892dfe130193e1f3fcf *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900ac-v2-squashfs-sysupgrade.bin 28 | 7f7de8403711b65a6a473ae22bde7ef31bf54403090c1389a23d3c9e769b46ea *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900acs-initramfs-kernel.bin 29 | d5f79a16d214d5adaf5ba811eabaf2b1f69f91fb4883433cea8e42f69b404f82 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900acs-squashfs-factory.img 30 | d0dd958509a5130da90d794600cb0dc5fcc9d0591ae5246f79d428007bbc045e *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt1900acs-squashfs-sysupgrade.bin 31 | af839980df5a80b3faee143758ee85aa33fe14e31260fccc552628f0e51a7d19 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt3200acm-initramfs-kernel.bin 32 | 5b2ccbe40ff77a20dc9acb1268e17da6adfcffbe0ae1d5e68cd02260886cbd1e *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt3200acm-squashfs-factory.img 33 | 95522efc77e01fb94b52713e3f16c08af3553197442fe25db55d41fbd86eff6a *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt3200acm-squashfs-sysupgrade.bin 34 | a6e05bc96e456a30a4ac3470f6f63a320aaec7f8d4267de08a8728d2933de9f0 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt32x-initramfs-kernel.bin 35 | b9ef87de5235b0bcecdcde22d46460f5ac6ba0b2f1019f03265b1a937ec36735 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt32x-squashfs-factory.img 36 | 1710e6325ee8043755eb442c504288138fbd19dd379030aba7b18ad4352203ce *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-linksys_wrt32x-squashfs-sysupgrade.bin 37 | 52de1c8581d642f7413c89c791ee438bd2d9b3da791c88cbd2d12e395aae9d9b *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a370-db-initramfs-kernel.bin 38 | 68f2b30dec294b5969f45c21c6d4dbe334b1c9bbcf289204dbec3322d2f40322 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a370-db-squashfs-sysupgrade.bin 39 | 48fb2ab34bb9b898c1d809168a32bcad4e871a94c78bb32bdd41016223239eee *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a370-rd-initramfs-kernel.bin 40 | 217d486466975baa45964a2795b19f698e2cbe2266c5e5afe4e88173a7e38587 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a370-rd-squashfs-sysupgrade.bin 41 | 6122b694bf3d2c59e635edc09f7d2922cd58f13033f3ccf7b92e61d343df5ce3 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a385-db-ap-initramfs-kernel.bin 42 | 8bee84057b2807dcdb806f2cc7727fab95ea37b1bd3cdb0ee85e15ac9ebda324 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a385-db-ap-squashfs-factory.img 43 | f2927332648ad173015bbcfcf9d27333813082c2e2af1699c07ab6e26663b836 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a385-db-ap-squashfs-sysupgrade.bin 44 | 1e40927d815c505b12017ef0fdc046fccfbd76b1ea6f8c0285f3bdbc4b2213a7 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a388-rd-initramfs-kernel.bin 45 | 052cbdd91142d611097a9e71c2f07906e08cfb017fec0bff507cae683c9e049e *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_a388-rd-squashfs-firmware.bin 46 | d1d0026872a2a5626a35125e34c3de31a5db139069235fac31acbdf522225f9c *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_axp-db-initramfs-kernel.bin 47 | 3ed1d7dd864ad423d4c34eb3fcec137371a124379a43c9f236303541d0391793 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_axp-db-squashfs-sysupgrade.bin 48 | d11cd401c1e40ef84a23877eeb29f76b5e976c1617753eaa6b0d872f8a784a78 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_axp-gp-initramfs-kernel.bin 49 | 6dc35364b92bda0b92460aa70d5258f7350436d34372673d5fae034cbc0c8286 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-marvell_axp-gp-squashfs-sysupgrade.bin 50 | 08c67139a5067ace945fd19f3f08b252471c2f89c03c5136d0011b431c7babb2 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-plathome_openblocks-ax3-4-initramfs-kernel.bin 51 | fceb5ef6630ad66a59eb9c5256df54d90644d66b08a63f7d5e0bb971483cf41f *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-plathome_openblocks-ax3-4-squashfs-factory.img 52 | db866d83662f682af4022d9616392171fa5709df5fb5cd5ce9f745b6ad940e2d *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-plathome_openblocks-ax3-4-squashfs-sysupgrade.bin 53 | 57fb087eba6ad843a76acf96283970461b8d806c01534e05c6933f9e3806a779 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-solidrun_clearfog-base-a1-initramfs-kernel.bin 54 | 2a3bcd1a07d5c857f52b85ce0e27e974fafe346b07d57158301806f160e982f1 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-solidrun_clearfog-base-a1-kernel.bin 55 | c96f589af49f503feb736d30ebc039289ba053891a6c7194d85378922c569426 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-solidrun_clearfog-base-a1-squashfs-sdcard.img.gz 56 | 57fb087eba6ad843a76acf96283970461b8d806c01534e05c6933f9e3806a779 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-solidrun_clearfog-pro-a1-initramfs-kernel.bin 57 | 2a3bcd1a07d5c857f52b85ce0e27e974fafe346b07d57158301806f160e982f1 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-solidrun_clearfog-pro-a1-kernel.bin 58 | 1bf7b90e52ff85ae8556b75d9d3b388fba49ea7b4bbc5293c0b62bb9a0c61b43 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9-solidrun_clearfog-pro-a1-squashfs-sdcard.img.gz 59 | b6b79594467372c18ee21b1c23aef3856c529cff7e975e278d677140ad51aa92 *divested-wrt-snapshot-r31958+9-7f5c7b8626-mvebu-cortexa9.manifest 60 | 03c30452b650b03d000821816c82d744508e1a3b98ec5ca46eb435c6672afa25 *feeds.buildinfo 61 | c56906d06a68d75df53e1058fa46989380035fd50f2b65c26daf41afe25d45e2 *profiles.json 62 | 4fe3bb60e53f5d5941c8f2f8d73071fa4a6d27012936753feb92e585a4ad0844 *version.buildinfo 63 | -----BEGIN PGP SIGNATURE----- 64 | 65 | iQIzBAEBCgAdFiEEY5X8mRHtzWFYcS33ut/Kvdv1tpQFAmkgOlQACgkQut/Kvdv1 66 | tpQKRA/9GIEpc33fw8Gg4m2HZ5BXcJOqvDSgq/KOr9pWwrdW2eOcf1sXi/Df/JaF 67 | jZM6nCFUTz17ZJCnrg0C9cjBwku1UmLxMi82xp69fTFJpc9aZQHkrx1Ve6YQyjGR 68 | /ErS7Hhk1ZtXYwwR9xd3gdR5zGy2zZWBAayIUWs9nJCfPPEXX994g9C3+lstX3Yp 69 | T/q+lFE9/qUE71UKPPUVMIUDTXrSl/Xskmr0DaZih5Z7osSllMBc+YiyARylnXMZ 70 | nEq6ROXcWJ8QmWAYyH2cjS2DePwJWAC8X3perNd3HqFNeNlzlE+MmgHjeNYzyywf 71 | qPsNPQ45Dz+Xh15+6dRld3nkOqLTd2T9PQaNoRAYMcVh/V9Q5zoYWMvOS2rB/Rlj 72 | u3EO5utapoTYZ0gcDo/ORLKcrhEPxWFVUff4L5AjKE42TG3OUPc2QvjMc8QTS+P6 73 | 06GxcSC3hLZuKuWpL4z1khLIQIJ6IEU1ByHbht3LFS/jlB5hCB9Zg/Z0OAZA4375 74 | 2Jf6XGWwEI8NFEZN4DVhDjR/6OpJLm5jikw1shdQZCZNM38i0rr3qtzwMz4YvCzg 75 | PyG5GbJtClb1veGcIeL7hgCjh8aBfJ0DQUoZoH2TKt4RXOmSkK0x8N01Is+p5z+Q 76 | JKXm8mLbJrLAACXFq4vXGkd6BUxTyg2LyxNtb2ETCWIoKxtXnKI= 77 | =HJcM 78 | -----END PGP SIGNATURE----- 79 | -------------------------------------------------------------------------------- /20251205-00/sha256sums: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNED MESSAGE----- 2 | Hash: SHA512 3 | 4 | 9e36b81812174e4a8fa2aec948e9f32584fe287cfd61c5ef3e8e8d4c208298b4 *config.buildinfo 5 | afd137c485bcd5777a2f0d735e5edaac5c08e746ebefdc376ddea73ff736cf54 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-buffalo_ls421de-initramfs-kernel.bin 6 | fcf1bd8b2da25176099f4f2a827c46251b0040d0feff627a430e6c5537cff967 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-buffalo_ls421de-squashfs-sysupgrade.bin 7 | b83828bab74275cb14e26cdfefe54ead07138c51d0f5a56df47df826821399b3 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-ctera_c200-v2-initramfs-factory.firm 8 | 42cd963c77003377dbaa1e84c6868dac94b084b7aabfd4babd0916d7e0dd3d72 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-ctera_c200-v2-squashfs-sysupgrade.bin 9 | 7c24bd8f8d907ffd1924c4f81223560d7bdf5debbf09d3f5b40691ff31adc6ba *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-cznic_turris-omnia-initramfs-kernel.bin 10 | 986558537cd373b0faf4161cd606a2f5bfc482d7352170e3ce9f519b5de57f86 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-cznic_turris-omnia-kernel.bin 11 | df00ca0f9eb83aef752f649a673f4b17a446694c8267145cfa3b2d83de9df475 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-cznic_turris-omnia-squashfs-sysupgrade.img.gz 12 | a91c5da8e19d259b59cd78b756f73b42ef0c9f54e25edd5455de7332a4eb4d02 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-globalscale_mirabox-initramfs-kernel.bin 13 | 92bf54b2b5d65e5f9d95fb9062279f090e5660f9320ed291d5253874b80bab33 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-globalscale_mirabox-squashfs-sysupgrade.bin 14 | 391c14a314f92bdce51547662bbdf728dc7c90d1142710a3c4ab58abd3d2db3b *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-iptime_nas1dual-initramfs-kernel.bin 15 | 8db4f3942b3352549829c5596374fbec57b2b011e8b5e61131dc00de84524478 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-iptime_nas1dual-squashfs-sysupgrade.bin 16 | 3dbe24e7b7d0f4b776582689b670fabf5256c39b664bb81b9b1ebbc9e5825396 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-kobol_helios4-initramfs-kernel.bin 17 | 986558537cd373b0faf4161cd606a2f5bfc482d7352170e3ce9f519b5de57f86 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-kobol_helios4-kernel.bin 18 | 66d7c7ff9d877236e8790a94134c291bba10402e9d2fe339a483bc7d4e4b1432 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-kobol_helios4-squashfs-sdcard.img.gz 19 | f4893c010ece1ff12b3edb82c099debc8adf7ac5c9483444d1d515e4c6b72047 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1200ac-initramfs-kernel.bin 20 | 9625ce70e7c4fe55a3a2af599fe1272175d9c23bcb39083e4c66de80566b9c6a *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1200ac-squashfs-factory.img 21 | 29266f071b33d8c8b6b92e1012d652536a4c6f75ac28f719d85b0bf47fab0e98 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1200ac-squashfs-sysupgrade.bin 22 | d360bc0eda280d304fa346c15a8d4f6a082fdbbfebc3d4742be57ef12c583f1c *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900ac-v1-initramfs-kernel.bin 23 | ead3af8ff8df783cd44fe91d809666acc149740274c0facb247812a4526a2f8c *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900ac-v1-squashfs-factory.img 24 | f1e6bd97496e23dc3223bd2cca98083f238e1b9d53530b996e59e67df98e5a5f *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900ac-v1-squashfs-sysupgrade.bin 25 | 5fb4467f3bd101fb2f6145212d36c42c1667b2717edf3c440a5fdaa36fb62014 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900ac-v2-initramfs-kernel.bin 26 | c1cc30a16feba4f3dfb2460ea47fed32a55387f02db39a7ee82d15b640b8b9bf *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900ac-v2-squashfs-factory.img 27 | 5d0ad1c3370786a5d951930cbfc50cf71a501d4abb71f8a673f4a3477ccaa48b *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900ac-v2-squashfs-sysupgrade.bin 28 | f881d836341124a22fa4a24b423e5c5f650bb381e65618690d8c420d7a852a89 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900acs-initramfs-kernel.bin 29 | 9ca2ac2c4d5365cd8387fa207aeb8e7c369129733cf50d2ab16a52a78dde6a23 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900acs-squashfs-factory.img 30 | 6e6a614662d61ffabc5dd970b2eb28240170ce444ce5ffe8a60a046833b0d4be *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt1900acs-squashfs-sysupgrade.bin 31 | 5505178e140d0cd44e42b3df72cd54f12dbaff2ed0df7cc95c4c2732cab368aa *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt3200acm-initramfs-kernel.bin 32 | cf78a8edd476b95c867f1ffcf1c1d61e40e1c07de0aac4021b5683e9df15ae83 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt3200acm-squashfs-factory.img 33 | 731086806aaf638cd279b72e36b709367371c173e29bb84807ed3f8be31ebc4e *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt3200acm-squashfs-sysupgrade.bin 34 | 30d1c66e1027236292f3479a05f0e43c2569a11c84cd932e871691c7e9096c74 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt32x-initramfs-kernel.bin 35 | 7088541986ff8cf04f97fbbcc4422ec2825a9ba06cc0de14e63f8d7d95a6af2c *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt32x-squashfs-factory.img 36 | a973745b3cd9a28710161ec880fe3daae90ba6188dc7f8ca6655b76b0122ae04 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-linksys_wrt32x-squashfs-sysupgrade.bin 37 | 32ed7c79c2e5b8e7281bd285b3b4872b1b511074cfa068f59b0bcaf0bd4ff3d6 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a370-db-initramfs-kernel.bin 38 | b9923f288be604c9a0a21f980fb3bd8868f4c02344ebeb90f3a5c1d79bb25670 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a370-db-squashfs-sysupgrade.bin 39 | 98987e1c58207ac76f2a6fad9d4fab3f47def0ab0075d79bc9cb377889dec6b3 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a370-rd-initramfs-kernel.bin 40 | 515ae56610248eb58255c4c5481a4c7cf05d00f6ce24338817aef9b6837e739e *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a370-rd-squashfs-sysupgrade.bin 41 | 2c4b867329d9401943ba0af012040f041508da14fcd23a23fae3a07ecd9ac491 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a385-db-ap-initramfs-kernel.bin 42 | df899082f1624e0b4e168512fbc5c636baef41499a0532ce2cecdb2d4121f735 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a385-db-ap-squashfs-factory.img 43 | 7dfeec7ce4d24ee880b98864104a21a4458d3c2adfe6007d1b7f783c31dc84ff *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a385-db-ap-squashfs-sysupgrade.bin 44 | 7b081316417d56fa5008b98c81290a076b1e1f08f6059839eb05c8c4829eafc1 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a388-rd-initramfs-kernel.bin 45 | af8c6134267ca81803327634105fa3a955b497ea41c6f4cbcafe6539668a4b14 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_a388-rd-squashfs-firmware.bin 46 | 9fd2ec70c31d14eefe3eb3a626644000e3e6505d2804db5006108a19cc07f5d1 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_axp-db-initramfs-kernel.bin 47 | 618cca40abd71972871c95b3614d4027976e1248fd1e6d6cc673210ec59b6764 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_axp-db-squashfs-sysupgrade.bin 48 | dd25cee2e383310fa646768e3b839fd2fd20fd8ab2d32f210ec3c5be4a0a76d3 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_axp-gp-initramfs-kernel.bin 49 | 7d7a3fa334b7b69015c24284fdd1acf61ecb2a7161a1fdab8fb5ac3ae524de61 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-marvell_axp-gp-squashfs-sysupgrade.bin 50 | 7ec29a17a488270457e52b54981a9f14697343a3d1ce3df91c174411b95c3f06 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-plathome_openblocks-ax3-4-initramfs-kernel.bin 51 | 1a82520a9af54895e085297a01781d5dc0c3d1db6065e5cc7e3391817f7db875 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-plathome_openblocks-ax3-4-squashfs-factory.img 52 | 7fa20d2d22f4d2bbd305c8df07598e8d550cd865d95fcde30216375777a0485a *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-plathome_openblocks-ax3-4-squashfs-sysupgrade.bin 53 | 3dbe24e7b7d0f4b776582689b670fabf5256c39b664bb81b9b1ebbc9e5825396 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-solidrun_clearfog-base-a1-initramfs-kernel.bin 54 | 986558537cd373b0faf4161cd606a2f5bfc482d7352170e3ce9f519b5de57f86 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-solidrun_clearfog-base-a1-kernel.bin 55 | e4052443fc416065cdd64c3d5c1ffdfbec5b09cffdf1028dad4c813fee72e8f5 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-solidrun_clearfog-base-a1-squashfs-sdcard.img.gz 56 | 3dbe24e7b7d0f4b776582689b670fabf5256c39b664bb81b9b1ebbc9e5825396 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-solidrun_clearfog-pro-a1-initramfs-kernel.bin 57 | 986558537cd373b0faf4161cd606a2f5bfc482d7352170e3ce9f519b5de57f86 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-solidrun_clearfog-pro-a1-kernel.bin 58 | 79db3e6c9b68189d220db6c0f87d2c0fdafed51c8b7a68e709bd95b230cd3028 *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9-solidrun_clearfog-pro-a1-squashfs-sdcard.img.gz 59 | 4effaa2dca70856cc6116947c5405422f04892d04acc0efdc4014b7e0f7942fd *divested-wrt-snapshot-r32222+8-1842735a06-mvebu-cortexa9.manifest 60 | 15c2292422b93c1ea508f47dfc223e1473a801d9490ff295ce1ceff3d5860311 *feeds.buildinfo 61 | 674ebf6a5b9b395f3a8019231b9d7075a3781d276b69c3f112a52d0ef54cfb3c *profiles.json 62 | 6b06958ac2e109a16c15a9cdbfa2c71e8a35cf3ddfc853122196c32b19507cb2 *version.buildinfo 63 | -----BEGIN PGP SIGNATURE----- 64 | 65 | iQIzBAEBCgAdFiEEY5X8mRHtzWFYcS33ut/Kvdv1tpQFAmkzSUAACgkQut/Kvdv1 66 | tpQq2w//bPgEcc2qGmco+cz/fqTvcwrbuf/CNqcM9ta0G/caC4nHlXbkPPJDrYPv 67 | kf0LYKC/s8rPMqz6dwsgRWQYLUqk5++2NKwJyX7YBhwr50efc0ATy/CRil82IwWa 68 | NhDnAdoucXZUwo/XNMNL0BZYzKrYIEsRZMhO8/pQ0razLb8ppdtgXoxbZ2t9ZdN2 69 | hRnpq+HhPLUkagJaLU2MUMwN6nuQRxc3YRif2Sr93JZbV5xsraB49Bn56DP64qEC 70 | KCgro4RfodclNKUZDLNw1+9xfhEoKjOjwcck3xhgyhJ7hgP8kL8aiAkCxuZ2847E 71 | PRzsqvJmzVM7ck/dsxJDTFiHbWmoo2nPbzFCzeOJSfKhKqzAoMzmdLwdzaFpBrti 72 | UM85R02qDsclkb3PQKyKj018qwNuheD7cCYA5CYIVoq3eL6CZ3xjBobIi1Uu38SF 73 | WT+TYZDMaIB9gwScsZdYF4Q0QpL50nsIEpWFcBrbviSD5lhkFIhARZAD33XHVlQZ 74 | Oq4sGtvC6k2Rw7hpwozT4+nsz04LITjEIJ3A9Aux3QGU1oDxF5iyMHVFmitunsuJ 75 | wbcR0LH3TQaH9/00UKUgN6+dFGfL3zOXqdbVUKyCaaCUoatPNrK/vIk0ojA1sktJ 76 | 4Gc0aS9PmCBME7FdVV4P+0Qr/c7dTXair4lVggWngK7rH7iQ4YM= 77 | =aKom 78 | -----END PGP SIGNATURE----- 79 | -------------------------------------------------------------------------------- /seeds/unused/config-ramips_mt7621-ax: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_ramips=y 2 | CONFIG_TARGET_ramips_mt7621=y 3 | CONFIG_TARGET_MULTI_PROFILE=y 4 | CONFIG_TARGET_DEVICE_ramips_mt7621_DEVICE_asus_rt-ax53u=y 5 | CONFIG_TARGET_DEVICE_PACKAGES_ramips_mt7621_DEVICE_asus_rt-ax53u="" 6 | CONFIG_TARGET_DEVICE_ramips_mt7621_DEVICE_cudy_x6=y 7 | CONFIG_TARGET_DEVICE_PACKAGES_ramips_mt7621_DEVICE_cudy_x6="" 8 | CONFIG_TARGET_DEVICE_ramips_mt7621_DEVICE_netgear_wax202=y 9 | CONFIG_TARGET_DEVICE_PACKAGES_ramips_mt7621_DEVICE_netgear_wax202="" 10 | CONFIG_TARGET_DEVICE_ramips_mt7621_DEVICE_tenbay_t-mb5eu-v01=y 11 | CONFIG_TARGET_DEVICE_PACKAGES_ramips_mt7621_DEVICE_tenbay_t-mb5eu-v01="" 12 | CONFIG_TARGET_DEVICE_ramips_mt7621_DEVICE_totolink_x5000r=y 13 | CONFIG_TARGET_DEVICE_PACKAGES_ramips_mt7621_DEVICE_totolink_x5000r="" 14 | CONFIG_TARGET_DEVICE_ramips_mt7621_DEVICE_tplink_eap615-wall-v1=y 15 | CONFIG_TARGET_DEVICE_PACKAGES_ramips_mt7621_DEVICE_tplink_eap615-wall-v1="" 16 | CONFIG_TARGET_DEVICE_ramips_mt7621_DEVICE_ubnt_unifi-6-lite=y 17 | CONFIG_TARGET_DEVICE_PACKAGES_ramips_mt7621_DEVICE_ubnt_unifi-6-lite="" 18 | CONFIG_TARGET_DEVICE_ramips_mt7621_DEVICE_yuncore_ax820=y 19 | CONFIG_TARGET_DEVICE_PACKAGES_ramips_mt7621_DEVICE_yuncore_ax820="" 20 | CONFIG_BUSYBOX_DEFAULT_PIE=y 21 | CONFIG_FEED_telephony=m 22 | CONFIG_FSTOOLS_OVL_MOUNT_COMPRESS_ZLIB=y 23 | CONFIG_IMAGEOPT=y 24 | CONFIG_IPK_FILES_CHECKSUMS=y 25 | CONFIG_KERNEL_BUILD_DOMAIN="dcg.v1" 26 | CONFIG_KERNEL_BUILD_USER="emy" 27 | # CONFIG_KERNEL_CC_STACKPROTECTOR_REGULAR is not set 28 | CONFIG_KERNEL_CC_STACKPROTECTOR_STRONG=y 29 | # CONFIG_KERNEL_CRASH_DUMP is not set 30 | # CONFIG_KERNEL_DEBUG_INFO is not set 31 | # CONFIG_KERNEL_DEBUG_KERNEL is not set 32 | # CONFIG_KERNEL_ELF_CORE is not set 33 | # CONFIG_KERNEL_IO_URING is not set 34 | # CONFIG_KERNEL_KALLSYMS is not set 35 | # CONFIG_KERNEL_KEXEC is not set 36 | # CONFIG_KERNEL_MAGIC_SYSRQ is not set 37 | CONFIG_KERNEL_STACKPROTECTOR_STRONG=y 38 | # CONFIG_KERNEL_SWAP is not set 39 | CONFIG_LUA_ECO_DEFAULT_OPENSSL=y 40 | CONFIG_LUA_ECO_OPENSSL=y 41 | CONFIG_LUCI_LANG_ar=y 42 | CONFIG_LUCI_LANG_bg=y 43 | CONFIG_LUCI_LANG_bn_BD=y 44 | CONFIG_LUCI_LANG_ca=y 45 | CONFIG_LUCI_LANG_cs=y 46 | CONFIG_LUCI_LANG_da=y 47 | CONFIG_LUCI_LANG_de=y 48 | CONFIG_LUCI_LANG_el=y 49 | CONFIG_LUCI_LANG_es=y 50 | CONFIG_LUCI_LANG_fi=y 51 | CONFIG_LUCI_LANG_fr=y 52 | CONFIG_LUCI_LANG_he=y 53 | CONFIG_LUCI_LANG_hi=y 54 | CONFIG_LUCI_LANG_hu=y 55 | CONFIG_LUCI_LANG_it=y 56 | CONFIG_LUCI_LANG_ja=y 57 | CONFIG_LUCI_LANG_ko=y 58 | CONFIG_LUCI_LANG_mr=y 59 | CONFIG_LUCI_LANG_ms=y 60 | CONFIG_LUCI_LANG_nb_NO=y 61 | CONFIG_LUCI_LANG_nl=y 62 | CONFIG_LUCI_LANG_pl=y 63 | CONFIG_LUCI_LANG_pt=y 64 | CONFIG_LUCI_LANG_pt_BR=y 65 | CONFIG_LUCI_LANG_ro=y 66 | CONFIG_LUCI_LANG_ru=y 67 | CONFIG_LUCI_LANG_sk=y 68 | CONFIG_LUCI_LANG_sv=y 69 | CONFIG_LUCI_LANG_tr=y 70 | CONFIG_LUCI_LANG_uk=y 71 | CONFIG_LUCI_LANG_vi=y 72 | CONFIG_LUCI_LANG_zh_Hans=y 73 | CONFIG_LUCI_LANG_zh_Hant=y 74 | CONFIG_LUCI_SRCDIET=y 75 | CONFIG_OPENSSL_ENGINE=y 76 | CONFIG_OPENSSL_OPTIMIZE_SPEED=y 77 | CONFIG_OPENSSL_PREFER_CHACHA_OVER_GCM=y 78 | CONFIG_OPENSSL_WITH_ASM=y 79 | CONFIG_OPENSSL_WITH_CHACHA_POLY1305=y 80 | CONFIG_OPENSSL_WITH_CMS=y 81 | CONFIG_OPENSSL_WITH_DEPRECATED=y 82 | CONFIG_OPENSSL_WITH_ERROR_MESSAGES=y 83 | CONFIG_OPENSSL_WITH_PSK=y 84 | CONFIG_OPENSSL_WITH_SRP=y 85 | CONFIG_OPENSSL_WITH_TLS13=y 86 | CONFIG_PACKAGE_bmon=y 87 | CONFIG_PACKAGE_ca-certificates=y 88 | CONFIG_PACKAGE_cgi-io=y 89 | CONFIG_PACKAGE_confuse=y 90 | # CONFIG_PACKAGE_dnsmasq is not set 91 | CONFIG_PACKAGE_dnsmasq-dhcpv6=y 92 | CONFIG_PACKAGE_htop=y 93 | CONFIG_PACKAGE_ip6tables-nft=y 94 | CONFIG_PACKAGE_iperf3=y 95 | CONFIG_PACKAGE_iptables-mod-ipopt=y 96 | CONFIG_PACKAGE_iptables-nft=y 97 | CONFIG_PACKAGE_irqbalance=y 98 | CONFIG_PACKAGE_kmod-crypto-authenc=y 99 | CONFIG_PACKAGE_kmod-crypto-cbc=m 100 | CONFIG_PACKAGE_kmod-crypto-cts=m 101 | CONFIG_PACKAGE_kmod-crypto-deflate=m 102 | CONFIG_PACKAGE_kmod-crypto-des=m 103 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20=y 104 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=y 105 | CONFIG_PACKAGE_kmod-crypto-lib-curve25519=y 106 | CONFIG_PACKAGE_kmod-crypto-lib-poly1305=y 107 | CONFIG_PACKAGE_kmod-crypto-md5=m 108 | CONFIG_PACKAGE_kmod-crypto-sha1=m 109 | CONFIG_PACKAGE_kmod-crypto-sha512=m 110 | CONFIG_PACKAGE_kmod-crypto-xts=m 111 | CONFIG_PACKAGE_kmod-cryptodev=y 112 | CONFIG_PACKAGE_kmod-ifb=y 113 | CONFIG_PACKAGE_kmod-ip6tables=y 114 | CONFIG_PACKAGE_kmod-ipt-core=y 115 | CONFIG_PACKAGE_kmod-ipt-ipopt=y 116 | CONFIG_PACKAGE_kmod-ipt-ipset=y 117 | CONFIG_PACKAGE_kmod-lib-zlib-deflate=m 118 | CONFIG_PACKAGE_kmod-lib-zlib-inflate=m 119 | CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y 120 | CONFIG_PACKAGE_kmod-nf-ipt=y 121 | CONFIG_PACKAGE_kmod-nf-ipt6=y 122 | CONFIG_PACKAGE_kmod-nf-nat6=y 123 | CONFIG_PACKAGE_kmod-nft-compat=y 124 | CONFIG_PACKAGE_kmod-sched-cake=y 125 | CONFIG_PACKAGE_kmod-sched-core=y 126 | CONFIG_PACKAGE_kmod-tun=y 127 | CONFIG_PACKAGE_kmod-udptunnel4=y 128 | CONFIG_PACKAGE_kmod-udptunnel6=y 129 | CONFIG_PACKAGE_kmod-wireguard=y 130 | CONFIG_PACKAGE_libbpf=y 131 | CONFIG_PACKAGE_libcap-ng=y 132 | CONFIG_PACKAGE_libelf=y 133 | CONFIG_PACKAGE_libip4tc=y 134 | CONFIG_PACKAGE_libip6tc=y 135 | CONFIG_PACKAGE_libiperf3=y 136 | CONFIG_PACKAGE_libiptext=y 137 | CONFIG_PACKAGE_libiptext-nft=y 138 | CONFIG_PACKAGE_libiptext6=y 139 | CONFIG_PACKAGE_libiwinfo-lua=y 140 | CONFIG_PACKAGE_liblua=y 141 | CONFIG_PACKAGE_liblucihttp=y 142 | CONFIG_PACKAGE_liblucihttp-lua=y 143 | CONFIG_PACKAGE_libncurses=y 144 | CONFIG_PACKAGE_libnl-core=y 145 | CONFIG_PACKAGE_libnl-route=y 146 | CONFIG_PACKAGE_libopenssl=y 147 | CONFIG_PACKAGE_libopenssl-conf=y 148 | CONFIG_PACKAGE_libopenssl-devcrypto=y 149 | CONFIG_PACKAGE_libpcap=y 150 | CONFIG_PACKAGE_librt=y 151 | CONFIG_PACKAGE_libubus-lua=y 152 | CONFIG_PACKAGE_libuci-lua=y 153 | CONFIG_PACKAGE_libustream-openssl=y 154 | # CONFIG_PACKAGE_libustream-wolfssl is not set 155 | CONFIG_PACKAGE_libuuid=y 156 | # CONFIG_PACKAGE_libwolfssl is not set 157 | CONFIG_PACKAGE_libxtables=y 158 | CONFIG_PACKAGE_lua=y 159 | CONFIG_PACKAGE_luci=y 160 | CONFIG_PACKAGE_luci-app-firewall=y 161 | CONFIG_PACKAGE_luci-app-opkg=y 162 | CONFIG_PACKAGE_luci-app-sqm=y 163 | CONFIG_PACKAGE_luci-app-upnp=y 164 | CONFIG_PACKAGE_luci-app-wireguard=y 165 | CONFIG_PACKAGE_luci-base=y 166 | CONFIG_PACKAGE_luci-i18n-base-ar=y 167 | CONFIG_PACKAGE_luci-i18n-base-bg=y 168 | CONFIG_PACKAGE_luci-i18n-base-bn=y 169 | CONFIG_PACKAGE_luci-i18n-base-ca=y 170 | CONFIG_PACKAGE_luci-i18n-base-cs=y 171 | CONFIG_PACKAGE_luci-i18n-base-da=y 172 | CONFIG_PACKAGE_luci-i18n-base-de=y 173 | CONFIG_PACKAGE_luci-i18n-base-el=y 174 | CONFIG_PACKAGE_luci-i18n-base-es=y 175 | CONFIG_PACKAGE_luci-i18n-base-fi=y 176 | CONFIG_PACKAGE_luci-i18n-base-fr=y 177 | CONFIG_PACKAGE_luci-i18n-base-he=y 178 | CONFIG_PACKAGE_luci-i18n-base-hi=y 179 | CONFIG_PACKAGE_luci-i18n-base-hu=y 180 | CONFIG_PACKAGE_luci-i18n-base-it=y 181 | CONFIG_PACKAGE_luci-i18n-base-ja=y 182 | CONFIG_PACKAGE_luci-i18n-base-ko=y 183 | CONFIG_PACKAGE_luci-i18n-base-mr=y 184 | CONFIG_PACKAGE_luci-i18n-base-ms=y 185 | CONFIG_PACKAGE_luci-i18n-base-nl=y 186 | CONFIG_PACKAGE_luci-i18n-base-no=y 187 | CONFIG_PACKAGE_luci-i18n-base-pl=y 188 | CONFIG_PACKAGE_luci-i18n-base-pt=y 189 | CONFIG_PACKAGE_luci-i18n-base-pt-br=y 190 | CONFIG_PACKAGE_luci-i18n-base-ro=y 191 | CONFIG_PACKAGE_luci-i18n-base-ru=y 192 | CONFIG_PACKAGE_luci-i18n-base-sk=y 193 | CONFIG_PACKAGE_luci-i18n-base-sv=y 194 | CONFIG_PACKAGE_luci-i18n-base-tr=y 195 | CONFIG_PACKAGE_luci-i18n-base-uk=y 196 | CONFIG_PACKAGE_luci-i18n-base-vi=y 197 | CONFIG_PACKAGE_luci-i18n-base-zh-cn=y 198 | CONFIG_PACKAGE_luci-i18n-base-zh-tw=y 199 | CONFIG_PACKAGE_luci-i18n-firewall-ar=y 200 | CONFIG_PACKAGE_luci-i18n-firewall-bg=y 201 | CONFIG_PACKAGE_luci-i18n-firewall-bn=y 202 | CONFIG_PACKAGE_luci-i18n-firewall-ca=y 203 | CONFIG_PACKAGE_luci-i18n-firewall-cs=y 204 | CONFIG_PACKAGE_luci-i18n-firewall-da=y 205 | CONFIG_PACKAGE_luci-i18n-firewall-de=y 206 | CONFIG_PACKAGE_luci-i18n-firewall-el=y 207 | CONFIG_PACKAGE_luci-i18n-firewall-es=y 208 | CONFIG_PACKAGE_luci-i18n-firewall-fi=y 209 | CONFIG_PACKAGE_luci-i18n-firewall-fr=y 210 | CONFIG_PACKAGE_luci-i18n-firewall-he=y 211 | CONFIG_PACKAGE_luci-i18n-firewall-hi=y 212 | CONFIG_PACKAGE_luci-i18n-firewall-hu=y 213 | CONFIG_PACKAGE_luci-i18n-firewall-it=y 214 | CONFIG_PACKAGE_luci-i18n-firewall-ja=y 215 | CONFIG_PACKAGE_luci-i18n-firewall-ko=y 216 | CONFIG_PACKAGE_luci-i18n-firewall-mr=y 217 | CONFIG_PACKAGE_luci-i18n-firewall-ms=y 218 | CONFIG_PACKAGE_luci-i18n-firewall-nl=y 219 | CONFIG_PACKAGE_luci-i18n-firewall-no=y 220 | CONFIG_PACKAGE_luci-i18n-firewall-pl=y 221 | CONFIG_PACKAGE_luci-i18n-firewall-pt=y 222 | CONFIG_PACKAGE_luci-i18n-firewall-pt-br=y 223 | CONFIG_PACKAGE_luci-i18n-firewall-ro=y 224 | CONFIG_PACKAGE_luci-i18n-firewall-ru=y 225 | CONFIG_PACKAGE_luci-i18n-firewall-sk=y 226 | CONFIG_PACKAGE_luci-i18n-firewall-sv=y 227 | CONFIG_PACKAGE_luci-i18n-firewall-tr=y 228 | CONFIG_PACKAGE_luci-i18n-firewall-uk=y 229 | CONFIG_PACKAGE_luci-i18n-firewall-vi=y 230 | CONFIG_PACKAGE_luci-i18n-firewall-zh-cn=y 231 | CONFIG_PACKAGE_luci-i18n-firewall-zh-tw=y 232 | CONFIG_PACKAGE_luci-i18n-opkg-ar=y 233 | CONFIG_PACKAGE_luci-i18n-opkg-bg=y 234 | CONFIG_PACKAGE_luci-i18n-opkg-bn=y 235 | CONFIG_PACKAGE_luci-i18n-opkg-ca=y 236 | CONFIG_PACKAGE_luci-i18n-opkg-cs=y 237 | CONFIG_PACKAGE_luci-i18n-opkg-da=y 238 | CONFIG_PACKAGE_luci-i18n-opkg-de=y 239 | CONFIG_PACKAGE_luci-i18n-opkg-el=y 240 | CONFIG_PACKAGE_luci-i18n-opkg-es=y 241 | CONFIG_PACKAGE_luci-i18n-opkg-fi=y 242 | CONFIG_PACKAGE_luci-i18n-opkg-fr=y 243 | CONFIG_PACKAGE_luci-i18n-opkg-he=y 244 | CONFIG_PACKAGE_luci-i18n-opkg-hi=y 245 | CONFIG_PACKAGE_luci-i18n-opkg-hu=y 246 | CONFIG_PACKAGE_luci-i18n-opkg-it=y 247 | CONFIG_PACKAGE_luci-i18n-opkg-ja=y 248 | CONFIG_PACKAGE_luci-i18n-opkg-ko=y 249 | CONFIG_PACKAGE_luci-i18n-opkg-mr=y 250 | CONFIG_PACKAGE_luci-i18n-opkg-ms=y 251 | CONFIG_PACKAGE_luci-i18n-opkg-no=y 252 | CONFIG_PACKAGE_luci-i18n-opkg-pl=y 253 | CONFIG_PACKAGE_luci-i18n-opkg-pt=y 254 | CONFIG_PACKAGE_luci-i18n-opkg-pt-br=y 255 | CONFIG_PACKAGE_luci-i18n-opkg-ro=y 256 | CONFIG_PACKAGE_luci-i18n-opkg-ru=y 257 | CONFIG_PACKAGE_luci-i18n-opkg-sk=y 258 | CONFIG_PACKAGE_luci-i18n-opkg-sv=y 259 | CONFIG_PACKAGE_luci-i18n-opkg-tr=y 260 | CONFIG_PACKAGE_luci-i18n-opkg-uk=y 261 | CONFIG_PACKAGE_luci-i18n-opkg-vi=y 262 | CONFIG_PACKAGE_luci-i18n-opkg-zh-cn=y 263 | CONFIG_PACKAGE_luci-i18n-opkg-zh-tw=y 264 | CONFIG_PACKAGE_luci-i18n-sqm-ar=y 265 | CONFIG_PACKAGE_luci-i18n-sqm-bg=y 266 | CONFIG_PACKAGE_luci-i18n-sqm-bn=y 267 | CONFIG_PACKAGE_luci-i18n-sqm-ca=y 268 | CONFIG_PACKAGE_luci-i18n-sqm-cs=y 269 | CONFIG_PACKAGE_luci-i18n-sqm-da=y 270 | CONFIG_PACKAGE_luci-i18n-sqm-de=y 271 | CONFIG_PACKAGE_luci-i18n-sqm-el=y 272 | CONFIG_PACKAGE_luci-i18n-sqm-es=y 273 | CONFIG_PACKAGE_luci-i18n-sqm-fi=y 274 | CONFIG_PACKAGE_luci-i18n-sqm-fr=y 275 | CONFIG_PACKAGE_luci-i18n-sqm-he=y 276 | CONFIG_PACKAGE_luci-i18n-sqm-hi=y 277 | CONFIG_PACKAGE_luci-i18n-sqm-hu=y 278 | CONFIG_PACKAGE_luci-i18n-sqm-it=y 279 | CONFIG_PACKAGE_luci-i18n-sqm-ja=y 280 | CONFIG_PACKAGE_luci-i18n-sqm-ko=y 281 | CONFIG_PACKAGE_luci-i18n-sqm-mr=y 282 | CONFIG_PACKAGE_luci-i18n-sqm-ms=y 283 | CONFIG_PACKAGE_luci-i18n-sqm-no=y 284 | CONFIG_PACKAGE_luci-i18n-sqm-pl=y 285 | CONFIG_PACKAGE_luci-i18n-sqm-pt=y 286 | CONFIG_PACKAGE_luci-i18n-sqm-pt-br=y 287 | CONFIG_PACKAGE_luci-i18n-sqm-ro=y 288 | CONFIG_PACKAGE_luci-i18n-sqm-ru=y 289 | CONFIG_PACKAGE_luci-i18n-sqm-sk=y 290 | CONFIG_PACKAGE_luci-i18n-sqm-sv=y 291 | CONFIG_PACKAGE_luci-i18n-sqm-tr=y 292 | CONFIG_PACKAGE_luci-i18n-sqm-uk=y 293 | CONFIG_PACKAGE_luci-i18n-sqm-vi=y 294 | CONFIG_PACKAGE_luci-i18n-sqm-zh-cn=y 295 | CONFIG_PACKAGE_luci-i18n-sqm-zh-tw=y 296 | CONFIG_PACKAGE_luci-i18n-upnp-ar=y 297 | CONFIG_PACKAGE_luci-i18n-upnp-bg=y 298 | CONFIG_PACKAGE_luci-i18n-upnp-bn=y 299 | CONFIG_PACKAGE_luci-i18n-upnp-ca=y 300 | CONFIG_PACKAGE_luci-i18n-upnp-cs=y 301 | CONFIG_PACKAGE_luci-i18n-upnp-da=y 302 | CONFIG_PACKAGE_luci-i18n-upnp-de=y 303 | CONFIG_PACKAGE_luci-i18n-upnp-el=y 304 | CONFIG_PACKAGE_luci-i18n-upnp-es=y 305 | CONFIG_PACKAGE_luci-i18n-upnp-fi=y 306 | CONFIG_PACKAGE_luci-i18n-upnp-fr=y 307 | CONFIG_PACKAGE_luci-i18n-upnp-he=y 308 | CONFIG_PACKAGE_luci-i18n-upnp-hi=y 309 | CONFIG_PACKAGE_luci-i18n-upnp-hu=y 310 | CONFIG_PACKAGE_luci-i18n-upnp-it=y 311 | CONFIG_PACKAGE_luci-i18n-upnp-ja=y 312 | CONFIG_PACKAGE_luci-i18n-upnp-ko=y 313 | CONFIG_PACKAGE_luci-i18n-upnp-mr=y 314 | CONFIG_PACKAGE_luci-i18n-upnp-ms=y 315 | CONFIG_PACKAGE_luci-i18n-upnp-no=y 316 | CONFIG_PACKAGE_luci-i18n-upnp-pl=y 317 | CONFIG_PACKAGE_luci-i18n-upnp-pt=y 318 | CONFIG_PACKAGE_luci-i18n-upnp-pt-br=y 319 | CONFIG_PACKAGE_luci-i18n-upnp-ro=y 320 | CONFIG_PACKAGE_luci-i18n-upnp-ru=y 321 | CONFIG_PACKAGE_luci-i18n-upnp-sk=y 322 | CONFIG_PACKAGE_luci-i18n-upnp-sv=y 323 | CONFIG_PACKAGE_luci-i18n-upnp-tr=y 324 | CONFIG_PACKAGE_luci-i18n-upnp-uk=y 325 | CONFIG_PACKAGE_luci-i18n-upnp-vi=y 326 | CONFIG_PACKAGE_luci-i18n-upnp-zh-cn=y 327 | CONFIG_PACKAGE_luci-i18n-upnp-zh-tw=y 328 | CONFIG_PACKAGE_luci-i18n-wireguard-ar=y 329 | CONFIG_PACKAGE_luci-i18n-wireguard-bg=y 330 | CONFIG_PACKAGE_luci-i18n-wireguard-bn=y 331 | CONFIG_PACKAGE_luci-i18n-wireguard-ca=y 332 | CONFIG_PACKAGE_luci-i18n-wireguard-cs=y 333 | CONFIG_PACKAGE_luci-i18n-wireguard-da=y 334 | CONFIG_PACKAGE_luci-i18n-wireguard-de=y 335 | CONFIG_PACKAGE_luci-i18n-wireguard-el=y 336 | CONFIG_PACKAGE_luci-i18n-wireguard-es=y 337 | CONFIG_PACKAGE_luci-i18n-wireguard-fi=y 338 | CONFIG_PACKAGE_luci-i18n-wireguard-fr=y 339 | CONFIG_PACKAGE_luci-i18n-wireguard-he=y 340 | CONFIG_PACKAGE_luci-i18n-wireguard-hi=y 341 | CONFIG_PACKAGE_luci-i18n-wireguard-hu=y 342 | CONFIG_PACKAGE_luci-i18n-wireguard-it=y 343 | CONFIG_PACKAGE_luci-i18n-wireguard-ja=y 344 | CONFIG_PACKAGE_luci-i18n-wireguard-ko=y 345 | CONFIG_PACKAGE_luci-i18n-wireguard-mr=y 346 | CONFIG_PACKAGE_luci-i18n-wireguard-ms=y 347 | CONFIG_PACKAGE_luci-i18n-wireguard-no=y 348 | CONFIG_PACKAGE_luci-i18n-wireguard-pl=y 349 | CONFIG_PACKAGE_luci-i18n-wireguard-pt=y 350 | CONFIG_PACKAGE_luci-i18n-wireguard-pt-br=y 351 | CONFIG_PACKAGE_luci-i18n-wireguard-ro=y 352 | CONFIG_PACKAGE_luci-i18n-wireguard-ru=y 353 | CONFIG_PACKAGE_luci-i18n-wireguard-sk=y 354 | CONFIG_PACKAGE_luci-i18n-wireguard-sv=y 355 | CONFIG_PACKAGE_luci-i18n-wireguard-tr=y 356 | CONFIG_PACKAGE_luci-i18n-wireguard-uk=y 357 | CONFIG_PACKAGE_luci-i18n-wireguard-vi=y 358 | CONFIG_PACKAGE_luci-i18n-wireguard-zh-cn=y 359 | CONFIG_PACKAGE_luci-i18n-wireguard-zh-tw=y 360 | CONFIG_PACKAGE_luci-lib-base=y 361 | CONFIG_PACKAGE_luci-lib-ip=y 362 | CONFIG_PACKAGE_luci-lib-jsonc=y 363 | CONFIG_PACKAGE_luci-lib-nixio=y 364 | CONFIG_PACKAGE_luci-mod-admin-full=y 365 | CONFIG_PACKAGE_luci-mod-network=y 366 | CONFIG_PACKAGE_luci-mod-status=y 367 | CONFIG_PACKAGE_luci-mod-system=y 368 | CONFIG_PACKAGE_luci-proto-ipv6=y 369 | CONFIG_PACKAGE_luci-proto-ppp=y 370 | CONFIG_PACKAGE_luci-proto-wireguard=y 371 | CONFIG_PACKAGE_luci-ssl-openssl=y 372 | CONFIG_PACKAGE_luci-theme-bootstrap=y 373 | CONFIG_PACKAGE_miniupnpd-nftables=y 374 | CONFIG_PACKAGE_nano=y 375 | CONFIG_PACKAGE_openssl-util=y 376 | CONFIG_PACKAGE_rpcd=y 377 | CONFIG_PACKAGE_rpcd-mod-file=y 378 | CONFIG_PACKAGE_rpcd-mod-iwinfo=y 379 | CONFIG_PACKAGE_rpcd-mod-luci=y 380 | CONFIG_PACKAGE_rpcd-mod-rrdns=y 381 | CONFIG_PACKAGE_sqm-scripts=y 382 | CONFIG_PACKAGE_tc-mod-iptables=y 383 | CONFIG_PACKAGE_tc-tiny=y 384 | CONFIG_PACKAGE_tcpdump=y 385 | CONFIG_PACKAGE_terminfo=y 386 | CONFIG_PACKAGE_uhttpd=y 387 | CONFIG_PACKAGE_uhttpd-mod-ubus=y 388 | CONFIG_PACKAGE_wireguard-tools=y 389 | # CONFIG_PACKAGE_wpad-basic-wolfssl is not set 390 | CONFIG_PACKAGE_wpad-openssl=y 391 | CONFIG_PACKAGE_xtables-nft=y 392 | CONFIG_PACKAGE_zlib=y 393 | CONFIG_PKG_ASLR_PIE_ALL=y 394 | # CONFIG_PKG_ASLR_PIE_REGULAR is not set 395 | # CONFIG_PKG_CC_STACKPROTECTOR_REGULAR is not set 396 | CONFIG_PKG_CC_STACKPROTECTOR_STRONG=y 397 | # CONFIG_PKG_FORTIFY_SOURCE_1 is not set 398 | CONFIG_PKG_FORTIFY_SOURCE_2=y 399 | CONFIG_REPRODUCIBLE_DEBUG_INFO=y 400 | CONFIG_STRIP_KERNEL_EXPORTS=y 401 | # CONFIG_TARGET_ROOTFS_TARGZ is not set 402 | CONFIG_VERSIONOPT=y 403 | CONFIG_VERSION_BUG_URL="https://gitlab.com/divested/Divested-WRT/-/issues" 404 | CONFIG_VERSION_CODE="" 405 | CONFIG_VERSION_CODE_FILENAMES=y 406 | CONFIG_VERSION_DIST="Divested-WRT" 407 | CONFIG_VERSION_FILENAMES=y 408 | CONFIG_VERSION_HOME_URL="https://divested.dev/unofficial-openwrt-builds/mvebu-linksys" 409 | CONFIG_VERSION_HWREV="" 410 | CONFIG_VERSION_MANUFACTURER="Divested Computing Group" 411 | CONFIG_VERSION_MANUFACTURER_URL="https://divested.dev" 412 | CONFIG_VERSION_NUMBER="" 413 | CONFIG_VERSION_PRODUCT="" 414 | CONFIG_VERSION_REPO="https://downloads.openwrt.org/snapshots" 415 | CONFIG_VERSION_SUPPORT_URL="https://forum.openwrt.org/t/divested-wrt-no-nonsense-linksys-wrt-builds/80522" 416 | CONFIG_WPA_MBO_SUPPORT=y 417 | # CONFIG_WPA_WOLFSSL is not set 418 | -------------------------------------------------------------------------------- /patches/LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /seeds/config-mvebu_cortexa9: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_mvebu=y 2 | CONFIG_TARGET_mvebu_cortexa9=y 3 | CONFIG_TARGET_MULTI_PROFILE=y 4 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_buffalo_ls421de=y 5 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_buffalo_ls421de="" 6 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_ctera_c200-v2=y 7 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_ctera_c200-v2="" 8 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_cznic_turris-omnia=y 9 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_cznic_turris-omnia="" 10 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_globalscale_mirabox=y 11 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_globalscale_mirabox="" 12 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_iptime_nas1dual=y 13 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_iptime_nas1dual="" 14 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_kobol_helios4=y 15 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_kobol_helios4="" 16 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1200ac=y 17 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_linksys_wrt1200ac="" 18 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900ac-v2=y 19 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_linksys_wrt1900ac-v2="" 20 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900ac-v1=y 21 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_linksys_wrt1900ac-v1="" 22 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt3200acm=y 23 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_linksys_wrt3200acm="" 24 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900acs=y 25 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_linksys_wrt1900acs="" 26 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt32x=y 27 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_linksys_wrt32x="" 28 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a370-db=y 29 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_marvell_a370-db="" 30 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a370-rd=y 31 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_marvell_a370-rd="" 32 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a385-db-ap=y 33 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_marvell_a385-db-ap="" 34 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a388-rd=y 35 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_marvell_a388-rd="" 36 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_axp-gp=y 37 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_marvell_axp-gp="" 38 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_axp-db=y 39 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_marvell_axp-db="" 40 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_plathome_openblocks-ax3-4=y 41 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_plathome_openblocks-ax3-4="" 42 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_solidrun_clearfog-base-a1=y 43 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_solidrun_clearfog-base-a1="" 44 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_solidrun_clearfog-pro-a1=y 45 | CONFIG_TARGET_DEVICE_PACKAGES_mvebu_cortexa9_DEVICE_solidrun_clearfog-pro-a1="" 46 | # CONFIG_ATH9K_HWRNG is not set 47 | CONFIG_BUSYBOX_DEFAULT_PIE=y 48 | CONFIG_FEED_telephony=m 49 | CONFIG_FSTOOLS_OVL_MOUNT_COMPRESS_ZLIB=y 50 | CONFIG_IMAGEOPT=y 51 | CONFIG_IPK_FILES_CHECKSUMS=y 52 | CONFIG_KERNEL_BUILD_DOMAIN="dcg.v1" 53 | CONFIG_KERNEL_BUILD_USER="emy" 54 | # CONFIG_KERNEL_CC_STACKPROTECTOR_REGULAR is not set 55 | CONFIG_KERNEL_CC_STACKPROTECTOR_STRONG=y 56 | # CONFIG_KERNEL_CRASH_DUMP is not set 57 | # CONFIG_KERNEL_DEBUG_INFO is not set 58 | # CONFIG_KERNEL_DEBUG_KERNEL is not set 59 | # CONFIG_KERNEL_ELF_CORE is not set 60 | # CONFIG_KERNEL_IO_URING is not set 61 | # CONFIG_KERNEL_KALLSYMS is not set 62 | # CONFIG_KERNEL_KEXEC is not set 63 | # CONFIG_KERNEL_MAGIC_SYSRQ is not set 64 | CONFIG_KERNEL_STACKPROTECTOR_STRONG=y 65 | # CONFIG_KERNEL_SWAP is not set 66 | # CONFIG_LUA_ECO_MBEDTLS is not set 67 | CONFIG_LUA_ECO_OPENSSL=y 68 | CONFIG_LUCI_LANG_ar=y 69 | CONFIG_LUCI_LANG_bg=y 70 | CONFIG_LUCI_LANG_bn_BD=y 71 | CONFIG_LUCI_LANG_ca=y 72 | CONFIG_LUCI_LANG_cs=y 73 | CONFIG_LUCI_LANG_da=y 74 | CONFIG_LUCI_LANG_de=y 75 | CONFIG_LUCI_LANG_el=y 76 | CONFIG_LUCI_LANG_es=y 77 | CONFIG_LUCI_LANG_fi=y 78 | CONFIG_LUCI_LANG_fr=y 79 | CONFIG_LUCI_LANG_he=y 80 | CONFIG_LUCI_LANG_hi=y 81 | CONFIG_LUCI_LANG_hu=y 82 | CONFIG_LUCI_LANG_it=y 83 | CONFIG_LUCI_LANG_ja=y 84 | CONFIG_LUCI_LANG_ko=y 85 | CONFIG_LUCI_LANG_mr=y 86 | CONFIG_LUCI_LANG_ms=y 87 | CONFIG_LUCI_LANG_nb_NO=y 88 | CONFIG_LUCI_LANG_nl=y 89 | CONFIG_LUCI_LANG_pl=y 90 | CONFIG_LUCI_LANG_pt=y 91 | CONFIG_LUCI_LANG_pt_BR=y 92 | CONFIG_LUCI_LANG_ro=y 93 | CONFIG_LUCI_LANG_ru=y 94 | CONFIG_LUCI_LANG_sk=y 95 | CONFIG_LUCI_LANG_sv=y 96 | CONFIG_LUCI_LANG_tr=y 97 | CONFIG_LUCI_LANG_uk=y 98 | CONFIG_LUCI_LANG_vi=y 99 | CONFIG_LUCI_LANG_zh_Hans=y 100 | CONFIG_LUCI_LANG_zh_Hant=y 101 | CONFIG_LUCI_SRCDIET=y 102 | CONFIG_OPENSSL_ENGINE=y 103 | CONFIG_OPENSSL_OPTIMIZE_SPEED=y 104 | CONFIG_OPENSSL_PREFER_CHACHA_OVER_GCM=y 105 | CONFIG_OPENSSL_WITH_ASM=y 106 | CONFIG_OPENSSL_WITH_CHACHA_POLY1305=y 107 | CONFIG_OPENSSL_WITH_CMS=y 108 | CONFIG_OPENSSL_WITH_DEPRECATED=y 109 | CONFIG_OPENSSL_WITH_ERROR_MESSAGES=y 110 | CONFIG_OPENSSL_WITH_PSK=y 111 | CONFIG_OPENSSL_WITH_SRP=y 112 | CONFIG_OPENSSL_WITH_TLS13=y 113 | CONFIG_PACKAGE_banip=y 114 | CONFIG_PACKAGE_bmon=y 115 | CONFIG_PACKAGE_ca-certificates=y 116 | CONFIG_PACKAGE_cgi-io=y 117 | CONFIG_PACKAGE_confuse=y 118 | # CONFIG_PACKAGE_dnsmasq is not set 119 | CONFIG_PACKAGE_dnsmasq-full=y 120 | CONFIG_PACKAGE_dnsmasq_full_auth=y 121 | CONFIG_PACKAGE_dnsmasq_full_conntrack=y 122 | CONFIG_PACKAGE_dnsmasq_full_dhcp=y 123 | CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y 124 | CONFIG_PACKAGE_dnsmasq_full_dnssec=y 125 | CONFIG_PACKAGE_dnsmasq_full_nftset=y 126 | CONFIG_PACKAGE_dnsmasq_full_noid=y 127 | CONFIG_PACKAGE_htop=y 128 | CONFIG_PACKAGE_ip6tables-nft=y 129 | CONFIG_PACKAGE_iperf3=y 130 | CONFIG_PACKAGE_iptables-mod-ipopt=y 131 | CONFIG_PACKAGE_iptables-nft=y 132 | CONFIG_PACKAGE_irqbalance=y 133 | CONFIG_PACKAGE_kmod-crypto-authenc=y 134 | CONFIG_PACKAGE_kmod-crypto-cbc=m 135 | CONFIG_PACKAGE_kmod-crypto-cts=m 136 | CONFIG_PACKAGE_kmod-crypto-deflate=m 137 | CONFIG_PACKAGE_kmod-crypto-des=m 138 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20=y 139 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=y 140 | CONFIG_PACKAGE_kmod-crypto-lib-curve25519=y 141 | CONFIG_PACKAGE_kmod-crypto-lib-poly1305=y 142 | CONFIG_PACKAGE_kmod-crypto-md5=m 143 | CONFIG_PACKAGE_kmod-crypto-sha1=m 144 | CONFIG_PACKAGE_kmod-crypto-sha512=m 145 | CONFIG_PACKAGE_kmod-crypto-xts=m 146 | CONFIG_PACKAGE_kmod-cryptodev=y 147 | CONFIG_PACKAGE_kmod-ifb=y 148 | CONFIG_PACKAGE_kmod-ip6tables=y 149 | CONFIG_PACKAGE_kmod-ipt-core=y 150 | CONFIG_PACKAGE_kmod-ipt-ipopt=y 151 | CONFIG_PACKAGE_kmod-ipt-ipset=y 152 | CONFIG_PACKAGE_kmod-lib-zlib-deflate=m 153 | CONFIG_PACKAGE_kmod-lib-zlib-inflate=m 154 | CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y 155 | CONFIG_PACKAGE_kmod-nf-ipt=y 156 | CONFIG_PACKAGE_kmod-nf-ipt6=y 157 | CONFIG_PACKAGE_kmod-nf-nat6=y 158 | CONFIG_PACKAGE_kmod-nft-compat=y 159 | CONFIG_PACKAGE_kmod-sched-cake=y 160 | CONFIG_PACKAGE_kmod-sched-core=y 161 | CONFIG_PACKAGE_kmod-tun=y 162 | CONFIG_PACKAGE_kmod-udptunnel4=y 163 | CONFIG_PACKAGE_kmod-udptunnel6=y 164 | CONFIG_PACKAGE_kmod-wireguard=y 165 | CONFIG_PACKAGE_libatomic=y 166 | CONFIG_PACKAGE_libbpf=y 167 | CONFIG_PACKAGE_libcap-ng=y 168 | CONFIG_PACKAGE_libelf=y 169 | CONFIG_PACKAGE_libgmp=y 170 | CONFIG_PACKAGE_libip4tc=y 171 | CONFIG_PACKAGE_libip6tc=y 172 | CONFIG_PACKAGE_libiperf3=y 173 | CONFIG_PACKAGE_libiptext=y 174 | CONFIG_PACKAGE_libiptext-nft=y 175 | CONFIG_PACKAGE_libiptext6=y 176 | CONFIG_PACKAGE_libiwinfo-lua=y 177 | CONFIG_PACKAGE_liblua=y 178 | CONFIG_PACKAGE_liblucihttp=y 179 | CONFIG_PACKAGE_liblucihttp-lua=y 180 | CONFIG_PACKAGE_liblucihttp-ucode=y 181 | # CONFIG_PACKAGE_libmbedtls is not set 182 | CONFIG_PACKAGE_libncurses=y 183 | CONFIG_PACKAGE_libnetfilter-conntrack=y 184 | CONFIG_PACKAGE_libnettle=y 185 | CONFIG_PACKAGE_libnfnetlink=y 186 | CONFIG_PACKAGE_libnl-core=y 187 | CONFIG_PACKAGE_libnl-route=y 188 | CONFIG_PACKAGE_libopenssl=y 189 | CONFIG_PACKAGE_libopenssl-conf=y 190 | CONFIG_PACKAGE_libopenssl-devcrypto=y 191 | CONFIG_PACKAGE_libpcap=y 192 | CONFIG_PACKAGE_libubus-lua=y 193 | CONFIG_PACKAGE_libuci-lua=y 194 | # CONFIG_PACKAGE_libustream-mbedtls is not set 195 | CONFIG_PACKAGE_libustream-openssl=y 196 | CONFIG_PACKAGE_libxtables=y 197 | CONFIG_PACKAGE_lua=y 198 | CONFIG_PACKAGE_luci=y 199 | CONFIG_PACKAGE_luci-app-advanced-reboot=y 200 | CONFIG_PACKAGE_luci-app-banip=y 201 | CONFIG_PACKAGE_luci-app-firewall=y 202 | CONFIG_PACKAGE_luci-app-opkg=y 203 | CONFIG_PACKAGE_luci-app-sqm=y 204 | CONFIG_PACKAGE_luci-app-upnp=y 205 | CONFIG_PACKAGE_luci-base=y 206 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ar=y 207 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-bg=y 208 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-bn=y 209 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ca=y 210 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-cs=y 211 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-da=y 212 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-de=y 213 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-el=y 214 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-es=y 215 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-fi=y 216 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-fr=y 217 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-he=y 218 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-hi=y 219 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-hu=y 220 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-it=y 221 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ja=y 222 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ko=y 223 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-mr=y 224 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ms=y 225 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-no=y 226 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pl=y 227 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pt=y 228 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pt-br=y 229 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ro=y 230 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ru=y 231 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-sk=y 232 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-sv=y 233 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-tr=y 234 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-uk=y 235 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-vi=y 236 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-zh-cn=y 237 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-zh-tw=y 238 | CONFIG_PACKAGE_luci-i18n-banip-ar=y 239 | CONFIG_PACKAGE_luci-i18n-banip-bg=y 240 | CONFIG_PACKAGE_luci-i18n-banip-bn=y 241 | CONFIG_PACKAGE_luci-i18n-banip-ca=y 242 | CONFIG_PACKAGE_luci-i18n-banip-cs=y 243 | CONFIG_PACKAGE_luci-i18n-banip-da=y 244 | CONFIG_PACKAGE_luci-i18n-banip-de=y 245 | CONFIG_PACKAGE_luci-i18n-banip-el=y 246 | CONFIG_PACKAGE_luci-i18n-banip-es=y 247 | CONFIG_PACKAGE_luci-i18n-banip-fi=y 248 | CONFIG_PACKAGE_luci-i18n-banip-fr=y 249 | CONFIG_PACKAGE_luci-i18n-banip-he=y 250 | CONFIG_PACKAGE_luci-i18n-banip-hi=y 251 | CONFIG_PACKAGE_luci-i18n-banip-hu=y 252 | CONFIG_PACKAGE_luci-i18n-banip-it=y 253 | CONFIG_PACKAGE_luci-i18n-banip-ja=y 254 | CONFIG_PACKAGE_luci-i18n-banip-ko=y 255 | CONFIG_PACKAGE_luci-i18n-banip-mr=y 256 | CONFIG_PACKAGE_luci-i18n-banip-ms=y 257 | CONFIG_PACKAGE_luci-i18n-banip-nl=y 258 | CONFIG_PACKAGE_luci-i18n-banip-no=y 259 | CONFIG_PACKAGE_luci-i18n-banip-pl=y 260 | CONFIG_PACKAGE_luci-i18n-banip-pt=y 261 | CONFIG_PACKAGE_luci-i18n-banip-pt-br=y 262 | CONFIG_PACKAGE_luci-i18n-banip-ro=y 263 | CONFIG_PACKAGE_luci-i18n-banip-ru=y 264 | CONFIG_PACKAGE_luci-i18n-banip-sk=y 265 | CONFIG_PACKAGE_luci-i18n-banip-sv=y 266 | CONFIG_PACKAGE_luci-i18n-banip-tr=y 267 | CONFIG_PACKAGE_luci-i18n-banip-uk=y 268 | CONFIG_PACKAGE_luci-i18n-banip-vi=y 269 | CONFIG_PACKAGE_luci-i18n-banip-zh-cn=y 270 | CONFIG_PACKAGE_luci-i18n-banip-zh-tw=y 271 | CONFIG_PACKAGE_luci-i18n-base-ar=y 272 | CONFIG_PACKAGE_luci-i18n-base-bg=y 273 | CONFIG_PACKAGE_luci-i18n-base-bn=y 274 | CONFIG_PACKAGE_luci-i18n-base-ca=y 275 | CONFIG_PACKAGE_luci-i18n-base-cs=y 276 | CONFIG_PACKAGE_luci-i18n-base-da=y 277 | CONFIG_PACKAGE_luci-i18n-base-de=y 278 | CONFIG_PACKAGE_luci-i18n-base-el=y 279 | CONFIG_PACKAGE_luci-i18n-base-es=y 280 | CONFIG_PACKAGE_luci-i18n-base-fi=y 281 | CONFIG_PACKAGE_luci-i18n-base-fr=y 282 | CONFIG_PACKAGE_luci-i18n-base-he=y 283 | CONFIG_PACKAGE_luci-i18n-base-hi=y 284 | CONFIG_PACKAGE_luci-i18n-base-hu=y 285 | CONFIG_PACKAGE_luci-i18n-base-it=y 286 | CONFIG_PACKAGE_luci-i18n-base-ja=y 287 | CONFIG_PACKAGE_luci-i18n-base-ko=y 288 | CONFIG_PACKAGE_luci-i18n-base-mr=y 289 | CONFIG_PACKAGE_luci-i18n-base-ms=y 290 | CONFIG_PACKAGE_luci-i18n-base-nl=y 291 | CONFIG_PACKAGE_luci-i18n-base-no=y 292 | CONFIG_PACKAGE_luci-i18n-base-pl=y 293 | CONFIG_PACKAGE_luci-i18n-base-pt=y 294 | CONFIG_PACKAGE_luci-i18n-base-pt-br=y 295 | CONFIG_PACKAGE_luci-i18n-base-ro=y 296 | CONFIG_PACKAGE_luci-i18n-base-ru=y 297 | CONFIG_PACKAGE_luci-i18n-base-sk=y 298 | CONFIG_PACKAGE_luci-i18n-base-sv=y 299 | CONFIG_PACKAGE_luci-i18n-base-tr=y 300 | CONFIG_PACKAGE_luci-i18n-base-uk=y 301 | CONFIG_PACKAGE_luci-i18n-base-vi=y 302 | CONFIG_PACKAGE_luci-i18n-base-zh-cn=y 303 | CONFIG_PACKAGE_luci-i18n-base-zh-tw=y 304 | CONFIG_PACKAGE_luci-i18n-firewall-ar=y 305 | CONFIG_PACKAGE_luci-i18n-firewall-bg=y 306 | CONFIG_PACKAGE_luci-i18n-firewall-bn=y 307 | CONFIG_PACKAGE_luci-i18n-firewall-ca=y 308 | CONFIG_PACKAGE_luci-i18n-firewall-cs=y 309 | CONFIG_PACKAGE_luci-i18n-firewall-da=y 310 | CONFIG_PACKAGE_luci-i18n-firewall-de=y 311 | CONFIG_PACKAGE_luci-i18n-firewall-el=y 312 | CONFIG_PACKAGE_luci-i18n-firewall-es=y 313 | CONFIG_PACKAGE_luci-i18n-firewall-fi=y 314 | CONFIG_PACKAGE_luci-i18n-firewall-fr=y 315 | CONFIG_PACKAGE_luci-i18n-firewall-he=y 316 | CONFIG_PACKAGE_luci-i18n-firewall-hi=y 317 | CONFIG_PACKAGE_luci-i18n-firewall-hu=y 318 | CONFIG_PACKAGE_luci-i18n-firewall-it=y 319 | CONFIG_PACKAGE_luci-i18n-firewall-ja=y 320 | CONFIG_PACKAGE_luci-i18n-firewall-ko=y 321 | CONFIG_PACKAGE_luci-i18n-firewall-mr=y 322 | CONFIG_PACKAGE_luci-i18n-firewall-ms=y 323 | CONFIG_PACKAGE_luci-i18n-firewall-nl=y 324 | CONFIG_PACKAGE_luci-i18n-firewall-no=y 325 | CONFIG_PACKAGE_luci-i18n-firewall-pl=y 326 | CONFIG_PACKAGE_luci-i18n-firewall-pt=y 327 | CONFIG_PACKAGE_luci-i18n-firewall-pt-br=y 328 | CONFIG_PACKAGE_luci-i18n-firewall-ro=y 329 | CONFIG_PACKAGE_luci-i18n-firewall-ru=y 330 | CONFIG_PACKAGE_luci-i18n-firewall-sk=y 331 | CONFIG_PACKAGE_luci-i18n-firewall-sv=y 332 | CONFIG_PACKAGE_luci-i18n-firewall-tr=y 333 | CONFIG_PACKAGE_luci-i18n-firewall-uk=y 334 | CONFIG_PACKAGE_luci-i18n-firewall-vi=y 335 | CONFIG_PACKAGE_luci-i18n-firewall-zh-cn=y 336 | CONFIG_PACKAGE_luci-i18n-firewall-zh-tw=y 337 | CONFIG_PACKAGE_luci-i18n-opkg-ar=y 338 | CONFIG_PACKAGE_luci-i18n-opkg-bg=y 339 | CONFIG_PACKAGE_luci-i18n-opkg-bn=y 340 | CONFIG_PACKAGE_luci-i18n-opkg-ca=y 341 | CONFIG_PACKAGE_luci-i18n-opkg-cs=y 342 | CONFIG_PACKAGE_luci-i18n-opkg-da=y 343 | CONFIG_PACKAGE_luci-i18n-opkg-de=y 344 | CONFIG_PACKAGE_luci-i18n-opkg-el=y 345 | CONFIG_PACKAGE_luci-i18n-opkg-es=y 346 | CONFIG_PACKAGE_luci-i18n-opkg-fi=y 347 | CONFIG_PACKAGE_luci-i18n-opkg-fr=y 348 | CONFIG_PACKAGE_luci-i18n-opkg-he=y 349 | CONFIG_PACKAGE_luci-i18n-opkg-hi=y 350 | CONFIG_PACKAGE_luci-i18n-opkg-hu=y 351 | CONFIG_PACKAGE_luci-i18n-opkg-it=y 352 | CONFIG_PACKAGE_luci-i18n-opkg-ja=y 353 | CONFIG_PACKAGE_luci-i18n-opkg-ko=y 354 | CONFIG_PACKAGE_luci-i18n-opkg-mr=y 355 | CONFIG_PACKAGE_luci-i18n-opkg-ms=y 356 | CONFIG_PACKAGE_luci-i18n-opkg-no=y 357 | CONFIG_PACKAGE_luci-i18n-opkg-pl=y 358 | CONFIG_PACKAGE_luci-i18n-opkg-pt=y 359 | CONFIG_PACKAGE_luci-i18n-opkg-pt-br=y 360 | CONFIG_PACKAGE_luci-i18n-opkg-ro=y 361 | CONFIG_PACKAGE_luci-i18n-opkg-ru=y 362 | CONFIG_PACKAGE_luci-i18n-opkg-sk=y 363 | CONFIG_PACKAGE_luci-i18n-opkg-sv=y 364 | CONFIG_PACKAGE_luci-i18n-opkg-tr=y 365 | CONFIG_PACKAGE_luci-i18n-opkg-uk=y 366 | CONFIG_PACKAGE_luci-i18n-opkg-vi=y 367 | CONFIG_PACKAGE_luci-i18n-opkg-zh-cn=y 368 | CONFIG_PACKAGE_luci-i18n-opkg-zh-tw=y 369 | CONFIG_PACKAGE_luci-i18n-sqm-ar=y 370 | CONFIG_PACKAGE_luci-i18n-sqm-bg=y 371 | CONFIG_PACKAGE_luci-i18n-sqm-bn=y 372 | CONFIG_PACKAGE_luci-i18n-sqm-ca=y 373 | CONFIG_PACKAGE_luci-i18n-sqm-cs=y 374 | CONFIG_PACKAGE_luci-i18n-sqm-da=y 375 | CONFIG_PACKAGE_luci-i18n-sqm-de=y 376 | CONFIG_PACKAGE_luci-i18n-sqm-el=y 377 | CONFIG_PACKAGE_luci-i18n-sqm-es=y 378 | CONFIG_PACKAGE_luci-i18n-sqm-fi=y 379 | CONFIG_PACKAGE_luci-i18n-sqm-fr=y 380 | CONFIG_PACKAGE_luci-i18n-sqm-he=y 381 | CONFIG_PACKAGE_luci-i18n-sqm-hi=y 382 | CONFIG_PACKAGE_luci-i18n-sqm-hu=y 383 | CONFIG_PACKAGE_luci-i18n-sqm-it=y 384 | CONFIG_PACKAGE_luci-i18n-sqm-ja=y 385 | CONFIG_PACKAGE_luci-i18n-sqm-ko=y 386 | CONFIG_PACKAGE_luci-i18n-sqm-mr=y 387 | CONFIG_PACKAGE_luci-i18n-sqm-ms=y 388 | CONFIG_PACKAGE_luci-i18n-sqm-no=y 389 | CONFIG_PACKAGE_luci-i18n-sqm-pl=y 390 | CONFIG_PACKAGE_luci-i18n-sqm-pt=y 391 | CONFIG_PACKAGE_luci-i18n-sqm-pt-br=y 392 | CONFIG_PACKAGE_luci-i18n-sqm-ro=y 393 | CONFIG_PACKAGE_luci-i18n-sqm-ru=y 394 | CONFIG_PACKAGE_luci-i18n-sqm-sk=y 395 | CONFIG_PACKAGE_luci-i18n-sqm-sv=y 396 | CONFIG_PACKAGE_luci-i18n-sqm-tr=y 397 | CONFIG_PACKAGE_luci-i18n-sqm-uk=y 398 | CONFIG_PACKAGE_luci-i18n-sqm-vi=y 399 | CONFIG_PACKAGE_luci-i18n-sqm-zh-cn=y 400 | CONFIG_PACKAGE_luci-i18n-sqm-zh-tw=y 401 | CONFIG_PACKAGE_luci-i18n-upnp-ar=y 402 | CONFIG_PACKAGE_luci-i18n-upnp-bg=y 403 | CONFIG_PACKAGE_luci-i18n-upnp-bn=y 404 | CONFIG_PACKAGE_luci-i18n-upnp-ca=y 405 | CONFIG_PACKAGE_luci-i18n-upnp-cs=y 406 | CONFIG_PACKAGE_luci-i18n-upnp-da=y 407 | CONFIG_PACKAGE_luci-i18n-upnp-de=y 408 | CONFIG_PACKAGE_luci-i18n-upnp-el=y 409 | CONFIG_PACKAGE_luci-i18n-upnp-es=y 410 | CONFIG_PACKAGE_luci-i18n-upnp-fi=y 411 | CONFIG_PACKAGE_luci-i18n-upnp-fr=y 412 | CONFIG_PACKAGE_luci-i18n-upnp-he=y 413 | CONFIG_PACKAGE_luci-i18n-upnp-hi=y 414 | CONFIG_PACKAGE_luci-i18n-upnp-hu=y 415 | CONFIG_PACKAGE_luci-i18n-upnp-it=y 416 | CONFIG_PACKAGE_luci-i18n-upnp-ja=y 417 | CONFIG_PACKAGE_luci-i18n-upnp-ko=y 418 | CONFIG_PACKAGE_luci-i18n-upnp-mr=y 419 | CONFIG_PACKAGE_luci-i18n-upnp-ms=y 420 | CONFIG_PACKAGE_luci-i18n-upnp-no=y 421 | CONFIG_PACKAGE_luci-i18n-upnp-pl=y 422 | CONFIG_PACKAGE_luci-i18n-upnp-pt=y 423 | CONFIG_PACKAGE_luci-i18n-upnp-pt-br=y 424 | CONFIG_PACKAGE_luci-i18n-upnp-ro=y 425 | CONFIG_PACKAGE_luci-i18n-upnp-ru=y 426 | CONFIG_PACKAGE_luci-i18n-upnp-sk=y 427 | CONFIG_PACKAGE_luci-i18n-upnp-sv=y 428 | CONFIG_PACKAGE_luci-i18n-upnp-tr=y 429 | CONFIG_PACKAGE_luci-i18n-upnp-uk=y 430 | CONFIG_PACKAGE_luci-i18n-upnp-vi=y 431 | CONFIG_PACKAGE_luci-i18n-upnp-zh-cn=y 432 | CONFIG_PACKAGE_luci-i18n-upnp-zh-tw=y 433 | CONFIG_PACKAGE_luci-lib-base=y 434 | CONFIG_PACKAGE_luci-lib-ip=y 435 | CONFIG_PACKAGE_luci-lib-jsonc=y 436 | CONFIG_PACKAGE_luci-lib-nixio=y 437 | CONFIG_PACKAGE_luci-light=y 438 | CONFIG_PACKAGE_luci-mod-admin-full=y 439 | CONFIG_PACKAGE_luci-mod-network=y 440 | CONFIG_PACKAGE_luci-mod-status=y 441 | CONFIG_PACKAGE_luci-mod-system=y 442 | CONFIG_PACKAGE_luci-proto-ipv6=y 443 | CONFIG_PACKAGE_luci-proto-ppp=y 444 | CONFIG_PACKAGE_luci-proto-wireguard=y 445 | CONFIG_PACKAGE_luci-ssl-openssl=y 446 | CONFIG_PACKAGE_luci-theme-bootstrap=y 447 | CONFIG_PACKAGE_miniupnpd-nftables=y 448 | CONFIG_PACKAGE_nano=y 449 | CONFIG_PACKAGE_openssl-util=y 450 | CONFIG_PACKAGE_rpcd=y 451 | CONFIG_PACKAGE_rpcd-mod-file=y 452 | CONFIG_PACKAGE_rpcd-mod-iwinfo=y 453 | CONFIG_PACKAGE_rpcd-mod-luci=y 454 | CONFIG_PACKAGE_rpcd-mod-rpcsys=y 455 | CONFIG_PACKAGE_rpcd-mod-rrdns=y 456 | CONFIG_PACKAGE_rpcd-mod-ucode=y 457 | CONFIG_PACKAGE_sqm-scripts=y 458 | CONFIG_PACKAGE_tc-mod-iptables=y 459 | CONFIG_PACKAGE_tc-tiny=y 460 | CONFIG_PACKAGE_tcpdump=y 461 | CONFIG_PACKAGE_terminfo=y 462 | CONFIG_PACKAGE_ucode-mod-html=y 463 | CONFIG_PACKAGE_ucode-mod-math=y 464 | CONFIG_PACKAGE_uhttpd=y 465 | CONFIG_PACKAGE_uhttpd-mod-ubus=y 466 | CONFIG_PACKAGE_wireguard-tools=y 467 | # CONFIG_PACKAGE_wpad-basic-mbedtls is not set 468 | CONFIG_PACKAGE_wpad-openssl=y 469 | CONFIG_PACKAGE_xtables-nft=y 470 | CONFIG_PACKAGE_zlib=y 471 | CONFIG_PKG_ASLR_PIE_ALL=y 472 | # CONFIG_PKG_ASLR_PIE_REGULAR is not set 473 | # CONFIG_PKG_CC_STACKPROTECTOR_REGULAR is not set 474 | CONFIG_PKG_CC_STACKPROTECTOR_STRONG=y 475 | # CONFIG_PKG_FORTIFY_SOURCE_1 is not set 476 | CONFIG_PKG_FORTIFY_SOURCE_2=y 477 | CONFIG_REPRODUCIBLE_DEBUG_INFO=y 478 | CONFIG_STRIP_KERNEL_EXPORTS=y 479 | # CONFIG_TARGET_ROOTFS_TARGZ is not set 480 | CONFIG_VERSIONOPT=y 481 | CONFIG_VERSION_BUG_URL="https://gitlab.com/divested/Divested-WRT/-/issues" 482 | CONFIG_VERSION_CODE="" 483 | CONFIG_VERSION_CODE_FILENAMES=y 484 | CONFIG_VERSION_DIST="Divested-WRT" 485 | CONFIG_VERSION_FILENAMES=y 486 | CONFIG_VERSION_HOME_URL="https://divested.dev/unofficial-openwrt-builds/mvebu-linksys" 487 | CONFIG_VERSION_HWREV="" 488 | CONFIG_VERSION_MANUFACTURER="Divested Computing Group" 489 | CONFIG_VERSION_MANUFACTURER_URL="https://divested.dev" 490 | CONFIG_VERSION_NUMBER="" 491 | CONFIG_VERSION_PRODUCT="" 492 | CONFIG_VERSION_REPO="https://downloads.openwrt.org/snapshots" 493 | CONFIG_VERSION_SUPPORT_URL="https://forum.openwrt.org/t/divested-wrt-no-nonsense-linksys-wrt-builds/80522" 494 | CONFIG_WPA_MBO_SUPPORT=y 495 | # CONFIG_PACKAGE_dnsmasq_full_tftp is not set 496 | -------------------------------------------------------------------------------- /20251107-00/config.buildinfo: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_mvebu=y 2 | CONFIG_TARGET_mvebu_cortexa9=y 3 | CONFIG_TARGET_MULTI_PROFILE=y 4 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_buffalo_ls421de=y 5 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_ctera_c200-v2=y 6 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_cznic_turris-omnia=y 7 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_globalscale_mirabox=y 8 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_iptime_nas1dual=y 9 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_kobol_helios4=y 10 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1200ac=y 11 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900ac-v2=y 12 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900ac-v1=y 13 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt3200acm=y 14 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900acs=y 15 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt32x=y 16 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a370-db=y 17 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a370-rd=y 18 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a385-db-ap=y 19 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a388-rd=y 20 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_axp-gp=y 21 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_axp-db=y 22 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_plathome_openblocks-ax3-4=y 23 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_solidrun_clearfog-base-a1=y 24 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_solidrun_clearfog-pro-a1=y 25 | # CONFIG_ATH9K_HWRNG is not set 26 | CONFIG_BUSYBOX_DEFAULT_PIE=y 27 | # CONFIG_DRIVER_11AX_SUPPORT is not set 28 | CONFIG_FEED_telephony=m 29 | CONFIG_FSTOOLS_OVL_MOUNT_COMPRESS_ZLIB=y 30 | CONFIG_IMAGEOPT=y 31 | # CONFIG_KERNEL_BTRFS_FS_POSIX_ACL is not set 32 | CONFIG_KERNEL_BUILD_DOMAIN="dcg.v1" 33 | CONFIG_KERNEL_BUILD_USER="emy" 34 | # CONFIG_KERNEL_CC_STACKPROTECTOR_REGULAR is not set 35 | CONFIG_KERNEL_CC_STACKPROTECTOR_STRONG=y 36 | # CONFIG_KERNEL_CIFS_ACL is not set 37 | # CONFIG_KERNEL_CRASH_DUMP is not set 38 | # CONFIG_KERNEL_DEBUG_INFO is not set 39 | # CONFIG_KERNEL_ELF_CORE is not set 40 | # CONFIG_KERNEL_EROFS_FS_POSIX_ACL is not set 41 | # CONFIG_KERNEL_EXT4_FS_POSIX_ACL is not set 42 | # CONFIG_KERNEL_EXT4_FS_SECURITY is not set 43 | # CONFIG_KERNEL_F2FS_FS_POSIX_ACL is not set 44 | # CONFIG_KERNEL_F2FS_FS_SECURITY is not set 45 | # CONFIG_KERNEL_FS_POSIX_ACL is not set 46 | # CONFIG_KERNEL_HFSPLUS_FS_POSIX_ACL is not set 47 | # CONFIG_KERNEL_HFS_FS_POSIX_ACL is not set 48 | # CONFIG_KERNEL_JFFS2_FS_POSIX_ACL is not set 49 | # CONFIG_KERNEL_JFFS2_FS_SECURITY is not set 50 | # CONFIG_KERNEL_JFS_POSIX_ACL is not set 51 | # CONFIG_KERNEL_KALLSYMS is not set 52 | # CONFIG_KERNEL_KEXEC is not set 53 | # CONFIG_KERNEL_MAGIC_SYSRQ is not set 54 | # CONFIG_KERNEL_NET_L3_MASTER_DEV is not set 55 | # CONFIG_KERNEL_NFS_ACL_SUPPORT is not set 56 | # CONFIG_KERNEL_PAGE_POOL is not set 57 | # CONFIG_KERNEL_REISER_FS_POSIX_ACL is not set 58 | CONFIG_KERNEL_STACKPROTECTOR_STRONG=y 59 | # CONFIG_KERNEL_SWAP is not set 60 | # CONFIG_KERNEL_TMPFS_POSIX_ACL is not set 61 | # CONFIG_KERNEL_UBIFS_FS_SECURITY is not set 62 | # CONFIG_KERNEL_WERROR is not set 63 | # CONFIG_KERNEL_XFS_POSIX_ACL is not set 64 | # CONFIG_LUA_ECO_MBEDTLS is not set 65 | CONFIG_LUA_ECO_OPENSSL=y 66 | CONFIG_LUCI_LANG_ar=y 67 | CONFIG_LUCI_LANG_bg=y 68 | CONFIG_LUCI_LANG_bn_BD=y 69 | CONFIG_LUCI_LANG_ca=y 70 | CONFIG_LUCI_LANG_cs=y 71 | CONFIG_LUCI_LANG_da=y 72 | CONFIG_LUCI_LANG_de=y 73 | CONFIG_LUCI_LANG_el=y 74 | CONFIG_LUCI_LANG_es=y 75 | CONFIG_LUCI_LANG_fi=y 76 | CONFIG_LUCI_LANG_fr=y 77 | CONFIG_LUCI_LANG_he=y 78 | CONFIG_LUCI_LANG_hi=y 79 | CONFIG_LUCI_LANG_hu=y 80 | CONFIG_LUCI_LANG_it=y 81 | CONFIG_LUCI_LANG_ja=y 82 | CONFIG_LUCI_LANG_ko=y 83 | CONFIG_LUCI_LANG_mr=y 84 | CONFIG_LUCI_LANG_ms=y 85 | CONFIG_LUCI_LANG_nb_NO=y 86 | CONFIG_LUCI_LANG_nl=y 87 | CONFIG_LUCI_LANG_pl=y 88 | CONFIG_LUCI_LANG_pt=y 89 | CONFIG_LUCI_LANG_pt_BR=y 90 | CONFIG_LUCI_LANG_ro=y 91 | CONFIG_LUCI_LANG_ru=y 92 | CONFIG_LUCI_LANG_sk=y 93 | CONFIG_LUCI_LANG_sv=y 94 | CONFIG_LUCI_LANG_tr=y 95 | CONFIG_LUCI_LANG_uk=y 96 | CONFIG_LUCI_LANG_vi=y 97 | CONFIG_LUCI_LANG_zh_Hans=y 98 | CONFIG_LUCI_LANG_zh_Hant=y 99 | CONFIG_LUCI_SRCDIET=y 100 | CONFIG_OPENSSL_OPTIMIZE_SPEED=y 101 | # CONFIG_OPENSSL_WITH_IDEA is not set 102 | # CONFIG_OPENSSL_WITH_MDC2 is not set 103 | # CONFIG_OPENSSL_WITH_SEED is not set 104 | # CONFIG_OPENSSL_WITH_WHIRLPOOL is not set 105 | # CONFIG_PACKAGE_apk-mbedtls is not set 106 | CONFIG_PACKAGE_apk-openssl=y 107 | CONFIG_PACKAGE_banip=y 108 | CONFIG_PACKAGE_bmon=y 109 | CONFIG_PACKAGE_ca-certificates=y 110 | CONFIG_PACKAGE_cgi-io=y 111 | CONFIG_PACKAGE_confuse=y 112 | # CONFIG_PACKAGE_dnsmasq is not set 113 | CONFIG_PACKAGE_dnsmasq-full=y 114 | CONFIG_PACKAGE_dnsmasq_full_auth=y 115 | CONFIG_PACKAGE_dnsmasq_full_conntrack=y 116 | CONFIG_PACKAGE_dnsmasq_full_dhcp=y 117 | CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y 118 | CONFIG_PACKAGE_dnsmasq_full_dnssec=y 119 | CONFIG_PACKAGE_dnsmasq_full_nftset=y 120 | CONFIG_PACKAGE_dnsmasq_full_noid=y 121 | CONFIG_PACKAGE_htop=y 122 | CONFIG_PACKAGE_ip-tiny=y 123 | CONFIG_PACKAGE_ip6tables-nft=y 124 | CONFIG_PACKAGE_iperf3=y 125 | CONFIG_PACKAGE_iptables-mod-ipopt=y 126 | CONFIG_PACKAGE_iptables-nft=y 127 | CONFIG_PACKAGE_irqbalance=y 128 | CONFIG_PACKAGE_iwinfo=y 129 | CONFIG_PACKAGE_kmod-crypto-acompress=m 130 | CONFIG_PACKAGE_kmod-crypto-authenc=y 131 | CONFIG_PACKAGE_kmod-crypto-cbc=m 132 | CONFIG_PACKAGE_kmod-crypto-cts=m 133 | CONFIG_PACKAGE_kmod-crypto-deflate=m 134 | CONFIG_PACKAGE_kmod-crypto-des=m 135 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20=y 136 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=y 137 | CONFIG_PACKAGE_kmod-crypto-lib-curve25519=y 138 | CONFIG_PACKAGE_kmod-crypto-lib-poly1305=y 139 | CONFIG_PACKAGE_kmod-crypto-md5=m 140 | CONFIG_PACKAGE_kmod-crypto-sha1=m 141 | CONFIG_PACKAGE_kmod-crypto-sha256=y 142 | CONFIG_PACKAGE_kmod-crypto-xts=m 143 | CONFIG_PACKAGE_kmod-cryptodev=y 144 | CONFIG_PACKAGE_kmod-ifb=y 145 | CONFIG_PACKAGE_kmod-ip6tables=y 146 | CONFIG_PACKAGE_kmod-ipt-conntrack=y 147 | CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y 148 | CONFIG_PACKAGE_kmod-ipt-core=y 149 | CONFIG_PACKAGE_kmod-ipt-ipopt=y 150 | CONFIG_PACKAGE_kmod-ipt-ipset=y 151 | CONFIG_PACKAGE_kmod-lib-zlib-deflate=m 152 | CONFIG_PACKAGE_kmod-lib-zlib-inflate=m 153 | # CONFIG_PACKAGE_kmod-mt7915-firmware is not set 154 | # CONFIG_PACKAGE_kmod-mt7915e is not set 155 | CONFIG_PACKAGE_kmod-nf-conncount=y 156 | CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y 157 | CONFIG_PACKAGE_kmod-nf-ipt=y 158 | CONFIG_PACKAGE_kmod-nf-ipt6=y 159 | CONFIG_PACKAGE_kmod-nf-nat6=y 160 | CONFIG_PACKAGE_kmod-nft-compat=y 161 | CONFIG_PACKAGE_kmod-sched-cake=y 162 | CONFIG_PACKAGE_kmod-sched-core=y 163 | CONFIG_PACKAGE_kmod-sched-ctinfo=y 164 | CONFIG_PACKAGE_kmod-tun=y 165 | CONFIG_PACKAGE_kmod-udptunnel4=y 166 | CONFIG_PACKAGE_kmod-udptunnel6=y 167 | CONFIG_PACKAGE_kmod-wireguard=y 168 | # CONFIG_PACKAGE_knot-resolver_dnstap is not set 169 | CONFIG_PACKAGE_libbpf=y 170 | CONFIG_PACKAGE_libcap-ng=y 171 | CONFIG_PACKAGE_libelf=y 172 | CONFIG_PACKAGE_libgmp=y 173 | CONFIG_PACKAGE_libip4tc=y 174 | CONFIG_PACKAGE_libip6tc=y 175 | CONFIG_PACKAGE_libiperf3=y 176 | CONFIG_PACKAGE_libiptext=y 177 | CONFIG_PACKAGE_libiptext-nft=y 178 | CONFIG_PACKAGE_libiptext6=y 179 | CONFIG_PACKAGE_libiwinfo=y 180 | CONFIG_PACKAGE_libiwinfo-data=y 181 | CONFIG_PACKAGE_libiwinfo-lua=y 182 | CONFIG_PACKAGE_liblua=y 183 | CONFIG_PACKAGE_liblucihttp=y 184 | CONFIG_PACKAGE_liblucihttp-lua=y 185 | CONFIG_PACKAGE_liblucihttp-ucode=y 186 | # CONFIG_PACKAGE_libmbedtls is not set 187 | CONFIG_PACKAGE_libncurses=y 188 | CONFIG_PACKAGE_libnetfilter-conntrack=y 189 | CONFIG_PACKAGE_libnettle=y 190 | CONFIG_PACKAGE_libnfnetlink=y 191 | CONFIG_PACKAGE_libnl-core=y 192 | CONFIG_PACKAGE_libnl-route=y 193 | CONFIG_PACKAGE_libopenssl-conf=y 194 | CONFIG_PACKAGE_libopenssl-devcrypto=y 195 | CONFIG_PACKAGE_libopenssl-legacy=y 196 | CONFIG_PACKAGE_libpcap=y 197 | CONFIG_PACKAGE_libubus-lua=y 198 | CONFIG_PACKAGE_libuci-lua=y 199 | # CONFIG_PACKAGE_libustream-mbedtls is not set 200 | CONFIG_PACKAGE_libustream-openssl=y 201 | CONFIG_PACKAGE_libxtables=y 202 | CONFIG_PACKAGE_lua=y 203 | CONFIG_PACKAGE_luci=y 204 | CONFIG_PACKAGE_luci-app-advanced-reboot=y 205 | CONFIG_PACKAGE_luci-app-banip=y 206 | CONFIG_PACKAGE_luci-app-firewall=y 207 | CONFIG_PACKAGE_luci-app-package-manager=y 208 | CONFIG_PACKAGE_luci-app-sqm=y 209 | CONFIG_PACKAGE_luci-app-upnp=y 210 | CONFIG_PACKAGE_luci-base=y 211 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ar=y 212 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-bg=y 213 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-bn=y 214 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ca=y 215 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-cs=y 216 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-da=y 217 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-de=y 218 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-el=y 219 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-es=y 220 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-fi=y 221 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-fr=y 222 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-he=y 223 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-hi=y 224 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-hu=y 225 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-it=y 226 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ja=y 227 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ko=y 228 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-mr=y 229 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ms=y 230 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-nl=y 231 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-no=y 232 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pl=y 233 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pt=y 234 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pt-br=y 235 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ro=y 236 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ru=y 237 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-sk=y 238 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-sv=y 239 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-tr=y 240 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-uk=y 241 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-vi=y 242 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-zh-cn=y 243 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-zh-tw=y 244 | CONFIG_PACKAGE_luci-i18n-banip-ar=y 245 | CONFIG_PACKAGE_luci-i18n-banip-bg=y 246 | CONFIG_PACKAGE_luci-i18n-banip-bn=y 247 | CONFIG_PACKAGE_luci-i18n-banip-ca=y 248 | CONFIG_PACKAGE_luci-i18n-banip-cs=y 249 | CONFIG_PACKAGE_luci-i18n-banip-da=y 250 | CONFIG_PACKAGE_luci-i18n-banip-de=y 251 | CONFIG_PACKAGE_luci-i18n-banip-el=y 252 | CONFIG_PACKAGE_luci-i18n-banip-es=y 253 | CONFIG_PACKAGE_luci-i18n-banip-fi=y 254 | CONFIG_PACKAGE_luci-i18n-banip-fr=y 255 | CONFIG_PACKAGE_luci-i18n-banip-he=y 256 | CONFIG_PACKAGE_luci-i18n-banip-hi=y 257 | CONFIG_PACKAGE_luci-i18n-banip-hu=y 258 | CONFIG_PACKAGE_luci-i18n-banip-it=y 259 | CONFIG_PACKAGE_luci-i18n-banip-ja=y 260 | CONFIG_PACKAGE_luci-i18n-banip-ko=y 261 | CONFIG_PACKAGE_luci-i18n-banip-mr=y 262 | CONFIG_PACKAGE_luci-i18n-banip-ms=y 263 | CONFIG_PACKAGE_luci-i18n-banip-nl=y 264 | CONFIG_PACKAGE_luci-i18n-banip-no=y 265 | CONFIG_PACKAGE_luci-i18n-banip-pl=y 266 | CONFIG_PACKAGE_luci-i18n-banip-pt=y 267 | CONFIG_PACKAGE_luci-i18n-banip-pt-br=y 268 | CONFIG_PACKAGE_luci-i18n-banip-ro=y 269 | CONFIG_PACKAGE_luci-i18n-banip-ru=y 270 | CONFIG_PACKAGE_luci-i18n-banip-sk=y 271 | CONFIG_PACKAGE_luci-i18n-banip-sv=y 272 | CONFIG_PACKAGE_luci-i18n-banip-tr=y 273 | CONFIG_PACKAGE_luci-i18n-banip-uk=y 274 | CONFIG_PACKAGE_luci-i18n-banip-vi=y 275 | CONFIG_PACKAGE_luci-i18n-banip-zh-cn=y 276 | CONFIG_PACKAGE_luci-i18n-banip-zh-tw=y 277 | CONFIG_PACKAGE_luci-i18n-base-ar=y 278 | CONFIG_PACKAGE_luci-i18n-base-bg=y 279 | CONFIG_PACKAGE_luci-i18n-base-bn=y 280 | CONFIG_PACKAGE_luci-i18n-base-ca=y 281 | CONFIG_PACKAGE_luci-i18n-base-cs=y 282 | CONFIG_PACKAGE_luci-i18n-base-da=y 283 | CONFIG_PACKAGE_luci-i18n-base-de=y 284 | CONFIG_PACKAGE_luci-i18n-base-el=y 285 | CONFIG_PACKAGE_luci-i18n-base-es=y 286 | CONFIG_PACKAGE_luci-i18n-base-fi=y 287 | CONFIG_PACKAGE_luci-i18n-base-fr=y 288 | CONFIG_PACKAGE_luci-i18n-base-he=y 289 | CONFIG_PACKAGE_luci-i18n-base-hi=y 290 | CONFIG_PACKAGE_luci-i18n-base-hu=y 291 | CONFIG_PACKAGE_luci-i18n-base-it=y 292 | CONFIG_PACKAGE_luci-i18n-base-ja=y 293 | CONFIG_PACKAGE_luci-i18n-base-ko=y 294 | CONFIG_PACKAGE_luci-i18n-base-mr=y 295 | CONFIG_PACKAGE_luci-i18n-base-ms=y 296 | CONFIG_PACKAGE_luci-i18n-base-nl=y 297 | CONFIG_PACKAGE_luci-i18n-base-no=y 298 | CONFIG_PACKAGE_luci-i18n-base-pl=y 299 | CONFIG_PACKAGE_luci-i18n-base-pt=y 300 | CONFIG_PACKAGE_luci-i18n-base-pt-br=y 301 | CONFIG_PACKAGE_luci-i18n-base-ro=y 302 | CONFIG_PACKAGE_luci-i18n-base-ru=y 303 | CONFIG_PACKAGE_luci-i18n-base-sk=y 304 | CONFIG_PACKAGE_luci-i18n-base-sv=y 305 | CONFIG_PACKAGE_luci-i18n-base-tr=y 306 | CONFIG_PACKAGE_luci-i18n-base-uk=y 307 | CONFIG_PACKAGE_luci-i18n-base-vi=y 308 | CONFIG_PACKAGE_luci-i18n-base-zh-cn=y 309 | CONFIG_PACKAGE_luci-i18n-base-zh-tw=y 310 | CONFIG_PACKAGE_luci-i18n-firewall-ar=y 311 | CONFIG_PACKAGE_luci-i18n-firewall-bg=y 312 | CONFIG_PACKAGE_luci-i18n-firewall-bn=y 313 | CONFIG_PACKAGE_luci-i18n-firewall-ca=y 314 | CONFIG_PACKAGE_luci-i18n-firewall-cs=y 315 | CONFIG_PACKAGE_luci-i18n-firewall-da=y 316 | CONFIG_PACKAGE_luci-i18n-firewall-de=y 317 | CONFIG_PACKAGE_luci-i18n-firewall-el=y 318 | CONFIG_PACKAGE_luci-i18n-firewall-es=y 319 | CONFIG_PACKAGE_luci-i18n-firewall-fi=y 320 | CONFIG_PACKAGE_luci-i18n-firewall-fr=y 321 | CONFIG_PACKAGE_luci-i18n-firewall-he=y 322 | CONFIG_PACKAGE_luci-i18n-firewall-hi=y 323 | CONFIG_PACKAGE_luci-i18n-firewall-hu=y 324 | CONFIG_PACKAGE_luci-i18n-firewall-it=y 325 | CONFIG_PACKAGE_luci-i18n-firewall-ja=y 326 | CONFIG_PACKAGE_luci-i18n-firewall-ko=y 327 | CONFIG_PACKAGE_luci-i18n-firewall-mr=y 328 | CONFIG_PACKAGE_luci-i18n-firewall-ms=y 329 | CONFIG_PACKAGE_luci-i18n-firewall-nl=y 330 | CONFIG_PACKAGE_luci-i18n-firewall-no=y 331 | CONFIG_PACKAGE_luci-i18n-firewall-pl=y 332 | CONFIG_PACKAGE_luci-i18n-firewall-pt=y 333 | CONFIG_PACKAGE_luci-i18n-firewall-pt-br=y 334 | CONFIG_PACKAGE_luci-i18n-firewall-ro=y 335 | CONFIG_PACKAGE_luci-i18n-firewall-ru=y 336 | CONFIG_PACKAGE_luci-i18n-firewall-sk=y 337 | CONFIG_PACKAGE_luci-i18n-firewall-sv=y 338 | CONFIG_PACKAGE_luci-i18n-firewall-tr=y 339 | CONFIG_PACKAGE_luci-i18n-firewall-uk=y 340 | CONFIG_PACKAGE_luci-i18n-firewall-vi=y 341 | CONFIG_PACKAGE_luci-i18n-firewall-zh-cn=y 342 | CONFIG_PACKAGE_luci-i18n-firewall-zh-tw=y 343 | CONFIG_PACKAGE_luci-i18n-package-manager-ar=y 344 | CONFIG_PACKAGE_luci-i18n-package-manager-bg=y 345 | CONFIG_PACKAGE_luci-i18n-package-manager-bn=y 346 | CONFIG_PACKAGE_luci-i18n-package-manager-ca=y 347 | CONFIG_PACKAGE_luci-i18n-package-manager-cs=y 348 | CONFIG_PACKAGE_luci-i18n-package-manager-da=y 349 | CONFIG_PACKAGE_luci-i18n-package-manager-de=y 350 | CONFIG_PACKAGE_luci-i18n-package-manager-el=y 351 | CONFIG_PACKAGE_luci-i18n-package-manager-es=y 352 | CONFIG_PACKAGE_luci-i18n-package-manager-fi=y 353 | CONFIG_PACKAGE_luci-i18n-package-manager-fr=y 354 | CONFIG_PACKAGE_luci-i18n-package-manager-he=y 355 | CONFIG_PACKAGE_luci-i18n-package-manager-hi=y 356 | CONFIG_PACKAGE_luci-i18n-package-manager-hu=y 357 | CONFIG_PACKAGE_luci-i18n-package-manager-it=y 358 | CONFIG_PACKAGE_luci-i18n-package-manager-ja=y 359 | CONFIG_PACKAGE_luci-i18n-package-manager-ko=y 360 | CONFIG_PACKAGE_luci-i18n-package-manager-mr=y 361 | CONFIG_PACKAGE_luci-i18n-package-manager-ms=y 362 | CONFIG_PACKAGE_luci-i18n-package-manager-nl=y 363 | CONFIG_PACKAGE_luci-i18n-package-manager-no=y 364 | CONFIG_PACKAGE_luci-i18n-package-manager-pl=y 365 | CONFIG_PACKAGE_luci-i18n-package-manager-pt=y 366 | CONFIG_PACKAGE_luci-i18n-package-manager-pt-br=y 367 | CONFIG_PACKAGE_luci-i18n-package-manager-ro=y 368 | CONFIG_PACKAGE_luci-i18n-package-manager-ru=y 369 | CONFIG_PACKAGE_luci-i18n-package-manager-sk=y 370 | CONFIG_PACKAGE_luci-i18n-package-manager-sv=y 371 | CONFIG_PACKAGE_luci-i18n-package-manager-tr=y 372 | CONFIG_PACKAGE_luci-i18n-package-manager-uk=y 373 | CONFIG_PACKAGE_luci-i18n-package-manager-vi=y 374 | CONFIG_PACKAGE_luci-i18n-package-manager-zh-cn=y 375 | CONFIG_PACKAGE_luci-i18n-package-manager-zh-tw=y 376 | CONFIG_PACKAGE_luci-i18n-sqm-ar=y 377 | CONFIG_PACKAGE_luci-i18n-sqm-bg=y 378 | CONFIG_PACKAGE_luci-i18n-sqm-bn=y 379 | CONFIG_PACKAGE_luci-i18n-sqm-ca=y 380 | CONFIG_PACKAGE_luci-i18n-sqm-cs=y 381 | CONFIG_PACKAGE_luci-i18n-sqm-da=y 382 | CONFIG_PACKAGE_luci-i18n-sqm-de=y 383 | CONFIG_PACKAGE_luci-i18n-sqm-el=y 384 | CONFIG_PACKAGE_luci-i18n-sqm-es=y 385 | CONFIG_PACKAGE_luci-i18n-sqm-fi=y 386 | CONFIG_PACKAGE_luci-i18n-sqm-fr=y 387 | CONFIG_PACKAGE_luci-i18n-sqm-he=y 388 | CONFIG_PACKAGE_luci-i18n-sqm-hi=y 389 | CONFIG_PACKAGE_luci-i18n-sqm-hu=y 390 | CONFIG_PACKAGE_luci-i18n-sqm-it=y 391 | CONFIG_PACKAGE_luci-i18n-sqm-ja=y 392 | CONFIG_PACKAGE_luci-i18n-sqm-ko=y 393 | CONFIG_PACKAGE_luci-i18n-sqm-mr=y 394 | CONFIG_PACKAGE_luci-i18n-sqm-ms=y 395 | CONFIG_PACKAGE_luci-i18n-sqm-nl=y 396 | CONFIG_PACKAGE_luci-i18n-sqm-no=y 397 | CONFIG_PACKAGE_luci-i18n-sqm-pl=y 398 | CONFIG_PACKAGE_luci-i18n-sqm-pt=y 399 | CONFIG_PACKAGE_luci-i18n-sqm-pt-br=y 400 | CONFIG_PACKAGE_luci-i18n-sqm-ro=y 401 | CONFIG_PACKAGE_luci-i18n-sqm-ru=y 402 | CONFIG_PACKAGE_luci-i18n-sqm-sk=y 403 | CONFIG_PACKAGE_luci-i18n-sqm-sv=y 404 | CONFIG_PACKAGE_luci-i18n-sqm-tr=y 405 | CONFIG_PACKAGE_luci-i18n-sqm-uk=y 406 | CONFIG_PACKAGE_luci-i18n-sqm-vi=y 407 | CONFIG_PACKAGE_luci-i18n-sqm-zh-cn=y 408 | CONFIG_PACKAGE_luci-i18n-sqm-zh-tw=y 409 | CONFIG_PACKAGE_luci-i18n-upnp-ar=y 410 | CONFIG_PACKAGE_luci-i18n-upnp-bg=y 411 | CONFIG_PACKAGE_luci-i18n-upnp-bn=y 412 | CONFIG_PACKAGE_luci-i18n-upnp-ca=y 413 | CONFIG_PACKAGE_luci-i18n-upnp-cs=y 414 | CONFIG_PACKAGE_luci-i18n-upnp-da=y 415 | CONFIG_PACKAGE_luci-i18n-upnp-de=y 416 | CONFIG_PACKAGE_luci-i18n-upnp-el=y 417 | CONFIG_PACKAGE_luci-i18n-upnp-es=y 418 | CONFIG_PACKAGE_luci-i18n-upnp-fi=y 419 | CONFIG_PACKAGE_luci-i18n-upnp-fr=y 420 | CONFIG_PACKAGE_luci-i18n-upnp-he=y 421 | CONFIG_PACKAGE_luci-i18n-upnp-hi=y 422 | CONFIG_PACKAGE_luci-i18n-upnp-hu=y 423 | CONFIG_PACKAGE_luci-i18n-upnp-it=y 424 | CONFIG_PACKAGE_luci-i18n-upnp-ja=y 425 | CONFIG_PACKAGE_luci-i18n-upnp-ko=y 426 | CONFIG_PACKAGE_luci-i18n-upnp-mr=y 427 | CONFIG_PACKAGE_luci-i18n-upnp-ms=y 428 | CONFIG_PACKAGE_luci-i18n-upnp-nl=y 429 | CONFIG_PACKAGE_luci-i18n-upnp-no=y 430 | CONFIG_PACKAGE_luci-i18n-upnp-pl=y 431 | CONFIG_PACKAGE_luci-i18n-upnp-pt=y 432 | CONFIG_PACKAGE_luci-i18n-upnp-pt-br=y 433 | CONFIG_PACKAGE_luci-i18n-upnp-ro=y 434 | CONFIG_PACKAGE_luci-i18n-upnp-ru=y 435 | CONFIG_PACKAGE_luci-i18n-upnp-sk=y 436 | CONFIG_PACKAGE_luci-i18n-upnp-sv=y 437 | CONFIG_PACKAGE_luci-i18n-upnp-tr=y 438 | CONFIG_PACKAGE_luci-i18n-upnp-uk=y 439 | CONFIG_PACKAGE_luci-i18n-upnp-vi=y 440 | CONFIG_PACKAGE_luci-i18n-upnp-zh-cn=y 441 | CONFIG_PACKAGE_luci-i18n-upnp-zh-tw=y 442 | CONFIG_PACKAGE_luci-lib-base=y 443 | CONFIG_PACKAGE_luci-lib-ip=y 444 | CONFIG_PACKAGE_luci-lib-jsonc=y 445 | CONFIG_PACKAGE_luci-lib-nixio=y 446 | CONFIG_PACKAGE_luci-lib-uqr=y 447 | CONFIG_PACKAGE_luci-light=y 448 | CONFIG_PACKAGE_luci-mod-admin-full=y 449 | CONFIG_PACKAGE_luci-mod-network=y 450 | CONFIG_PACKAGE_luci-mod-status=y 451 | CONFIG_PACKAGE_luci-mod-system=y 452 | CONFIG_PACKAGE_luci-proto-ipv6=y 453 | CONFIG_PACKAGE_luci-proto-ppp=y 454 | CONFIG_PACKAGE_luci-proto-wireguard=y 455 | CONFIG_PACKAGE_luci-ssl-openssl=y 456 | CONFIG_PACKAGE_luci-theme-bootstrap=y 457 | CONFIG_PACKAGE_miniupnpd-nftables=y 458 | CONFIG_PACKAGE_nano=y 459 | CONFIG_PACKAGE_openssl-util=y 460 | CONFIG_PACKAGE_opkg=y 461 | CONFIG_PACKAGE_resolveip=y 462 | CONFIG_PACKAGE_rpcd=y 463 | CONFIG_PACKAGE_rpcd-mod-file=y 464 | CONFIG_PACKAGE_rpcd-mod-iwinfo=y 465 | CONFIG_PACKAGE_rpcd-mod-luci=y 466 | CONFIG_PACKAGE_rpcd-mod-rpcsys=y 467 | CONFIG_PACKAGE_rpcd-mod-rrdns=y 468 | CONFIG_PACKAGE_rpcd-mod-ucode=y 469 | CONFIG_PACKAGE_sqm-scripts=y 470 | CONFIG_PACKAGE_tc-tiny=y 471 | CONFIG_PACKAGE_tcpdump=y 472 | CONFIG_PACKAGE_terminfo=y 473 | CONFIG_PACKAGE_ucode-mod-html=y 474 | CONFIG_PACKAGE_ucode-mod-log=y 475 | CONFIG_PACKAGE_ucode-mod-math=y 476 | CONFIG_PACKAGE_uhttpd=y 477 | CONFIG_PACKAGE_uhttpd-mod-ubus=y 478 | CONFIG_PACKAGE_wireguard-tools=y 479 | # CONFIG_PACKAGE_wpad-basic-mbedtls is not set 480 | CONFIG_PACKAGE_wpad-openssl=y 481 | CONFIG_PACKAGE_xtables-nft=y 482 | CONFIG_PKG_ASLR_PIE_ALL=y 483 | # CONFIG_PKG_ASLR_PIE_REGULAR is not set 484 | # CONFIG_PKG_CC_STACKPROTECTOR_REGULAR is not set 485 | CONFIG_PKG_CC_STACKPROTECTOR_STRONG=y 486 | # CONFIG_PKG_FORTIFY_SOURCE_1 is not set 487 | CONFIG_PKG_FORTIFY_SOURCE_2=y 488 | CONFIG_REPRODUCIBLE_DEBUG_INFO=y 489 | # CONFIG_TARGET_ROOTFS_TARGZ is not set 490 | # CONFIG_USE_FS_ACL_ATTR is not set 491 | CONFIG_VERSIONOPT=y 492 | CONFIG_VERSION_BUG_URL="https://gitlab.com/divested/Divested-WRT/-/issues" 493 | CONFIG_VERSION_CODE="" 494 | CONFIG_VERSION_CODE_FILENAMES=y 495 | CONFIG_VERSION_DIST="Divested-WRT" 496 | CONFIG_VERSION_FILENAMES=y 497 | CONFIG_VERSION_FIRMWARE_URL="" 498 | CONFIG_VERSION_HOME_URL="https://divested.dev/unofficial-openwrt-builds/mvebu-linksys" 499 | CONFIG_VERSION_HWREV="" 500 | CONFIG_VERSION_MANUFACTURER="Divested Computing Group" 501 | CONFIG_VERSION_MANUFACTURER_URL="https://divested.dev" 502 | CONFIG_VERSION_NUMBER="" 503 | CONFIG_VERSION_PRODUCT="" 504 | CONFIG_VERSION_REPO="https://downloads.openwrt.org/snapshots" 505 | CONFIG_VERSION_SUPPORT_URL="https://forum.openwrt.org/t/divested-wrt-no-nonsense-linksys-wrt-builds/80522" 506 | # CONFIG_WIFI_SCRIPTS_UCODE is not set 507 | # CONFIG_HTOP_LMSENSORS is not set 508 | # CONFIG_PACKAGE_dnsmasq_full_tftp is not set 509 | -------------------------------------------------------------------------------- /20251107-00/divested-wrt-snapshot-r31707+9-38753dea64-mvebu-cortexa9.manifest: -------------------------------------------------------------------------------- 1 | apk-openssl - 3.0.0_pre20251007-r1 2 | ath10k-board-qca988x - 20251021-r1 3 | ath10k-firmware-qca988x-ct - 2023.04.04-r1 4 | banip - 1.5.6-r7 5 | base-files - 1672~38753dea64 6 | bmon - 4.0-r1 7 | busybox - 1.37.0-r5 8 | ca-bundle - 20250419-r1 9 | ca-certificates - 20250419-r1 10 | cgi-io - 2025.10.04~d4b9fb11-r1 11 | confuse - 3.3-r2 12 | dnsmasq-full - 2.91-r2 13 | dropbear - 2025.88-r4 14 | e2fsprogs - 1.47.2-r1 15 | firewall4 - 2025.03.17~b6e51575-r1 16 | fstools - 2025.10.03~12858e28-r1 17 | fwtool - 2025.10.03~04cd252e-r1 18 | getrandom - 2025.10.03~c75525a5-r1 19 | hostapd-common - 2025.08.26~ca266cc2-r1 20 | htop - 3.4.1-r1 21 | ip-tiny - 6.14.0-r1 22 | ip6tables-nft - 1.8.10-r2 23 | iperf3 - 3.19.1-r1 24 | iptables-mod-ipopt - 1.8.10-r2 25 | iptables-nft - 1.8.10-r2 26 | irqbalance - 1.9.4-r1 27 | iw - 6.17-r1 28 | iwinfo - 2025.10.19~904f1145-r1 29 | jansson4 - 2.14-r3 30 | jshn - 2025.10.04~c163d7ab-r1 31 | jsonfilter - 2025.10.04~f4fe702d-r1 32 | kernel - 6.12.57~363be772a918e1d7b0271d02abc46bf1-r1 33 | kmod-ata-core - 6.12.57-r1 34 | kmod-ath - 6.12.57.6.16-r1 35 | kmod-ath10k-ct - 6.12.57.2025.04.30~23ee90f0-r1 36 | kmod-ath9k - 6.12.57.6.16-r1 37 | kmod-ath9k-common - 6.12.57.6.16-r1 38 | kmod-bluetooth - 6.12.57-r1 39 | kmod-btmrvl - 6.12.57-r1 40 | kmod-cfg80211 - 6.12.57.6.16-r1 41 | kmod-crypto-aead - 6.12.57-r1 42 | kmod-crypto-authenc - 6.12.57-r1 43 | kmod-crypto-ccm - 6.12.57-r1 44 | kmod-crypto-cmac - 6.12.57-r1 45 | kmod-crypto-crc32c - 6.12.57-r1 46 | kmod-crypto-ctr - 6.12.57-r1 47 | kmod-crypto-ecb - 6.12.57-r1 48 | kmod-crypto-ecdh - 6.12.57-r1 49 | kmod-crypto-gcm - 6.12.57-r1 50 | kmod-crypto-geniv - 6.12.57-r1 51 | kmod-crypto-gf128 - 6.12.57-r1 52 | kmod-crypto-ghash - 6.12.57-r1 53 | kmod-crypto-hash - 6.12.57-r1 54 | kmod-crypto-hmac - 6.12.57-r1 55 | kmod-crypto-kpp - 6.12.57-r1 56 | kmod-crypto-lib-chacha20 - 6.12.57-r1 57 | kmod-crypto-lib-chacha20poly1305 - 6.12.57-r1 58 | kmod-crypto-lib-curve25519 - 6.12.57-r1 59 | kmod-crypto-lib-poly1305 - 6.12.57-r1 60 | kmod-crypto-manager - 6.12.57-r1 61 | kmod-crypto-null - 6.12.57-r1 62 | kmod-crypto-rng - 6.12.57-r1 63 | kmod-crypto-seqiv - 6.12.57-r1 64 | kmod-crypto-sha256 - 6.12.57-r1 65 | kmod-crypto-sha3 - 6.12.57-r1 66 | kmod-crypto-sha512 - 6.12.57-r1 67 | kmod-cryptodev - 6.12.57.1.14-r1 68 | kmod-dsa - 6.12.57-r1 69 | kmod-dsa-mv88e6xxx - 6.12.57-r1 70 | kmod-eeprom-at24 - 6.12.57-r1 71 | kmod-fs-exportfs - 6.12.57-r1 72 | kmod-fs-vfat - 6.12.57-r1 73 | kmod-fs-xfs - 6.12.57-r1 74 | kmod-gpio-button-hotplug - 6.12.57-r5 75 | kmod-hid - 6.12.57-r1 76 | kmod-hwmon-core - 6.12.57-r1 77 | kmod-hwmon-drivetemp - 6.12.57-r1 78 | kmod-hwmon-gpiofan - 6.12.57-r1 79 | kmod-hwmon-nct7802 - 6.12.57-r1 80 | kmod-i2c-core - 6.12.57-r1 81 | kmod-i2c-mux - 6.12.57-r1 82 | kmod-i2c-mux-pca954x - 6.12.57-r1 83 | kmod-ifb - 6.12.57-r1 84 | kmod-input-core - 6.12.57-r1 85 | kmod-input-evdev - 6.12.57-r1 86 | kmod-ip6tables - 6.12.57-r1 87 | kmod-ipt-conntrack - 6.12.57-r1 88 | kmod-ipt-conntrack-extra - 6.12.57-r1 89 | kmod-ipt-core - 6.12.57-r1 90 | kmod-ipt-ipopt - 6.12.57-r1 91 | kmod-ipt-ipset - 6.12.57-r1 92 | kmod-leds-turris-omnia - 6.12.57-r1 93 | kmod-lib-crc-ccitt - 6.12.57-r1 94 | kmod-lib-crc16 - 6.12.57-r1 95 | kmod-lib-crc32c - 6.12.57-r1 96 | kmod-libphy - 6.12.57-r1 97 | kmod-linkstation-poweroff - 6.12.57-r1 98 | kmod-mac80211 - 6.12.57.6.16-r1 99 | kmod-md-mod - 6.12.57-r1 100 | kmod-md-raid0 - 6.12.57-r1 101 | kmod-md-raid1 - 6.12.57-r1 102 | kmod-mdio-devres - 6.12.57-r1 103 | kmod-mmc - 6.12.57-r1 104 | kmod-mwifiex-sdio - 6.12.57.6.16-r1 105 | kmod-mwlwifi - 6.12.57.2025.02.06~db97edf2-r2 106 | kmod-net-selftests - 6.12.57-r1 107 | kmod-nf-conncount - 6.12.57-r1 108 | kmod-nf-conntrack - 6.12.57-r1 109 | kmod-nf-conntrack-netlink - 6.12.57-r1 110 | kmod-nf-conntrack6 - 6.12.57-r1 111 | kmod-nf-flow - 6.12.57-r1 112 | kmod-nf-ipt - 6.12.57-r1 113 | kmod-nf-ipt6 - 6.12.57-r1 114 | kmod-nf-log - 6.12.57-r1 115 | kmod-nf-log6 - 6.12.57-r1 116 | kmod-nf-nat - 6.12.57-r1 117 | kmod-nf-nat6 - 6.12.57-r1 118 | kmod-nf-reject - 6.12.57-r1 119 | kmod-nf-reject6 - 6.12.57-r1 120 | kmod-nfnetlink - 6.12.57-r1 121 | kmod-nft-compat - 6.12.57-r1 122 | kmod-nft-core - 6.12.57-r1 123 | kmod-nft-fib - 6.12.57-r1 124 | kmod-nft-nat - 6.12.57-r1 125 | kmod-nft-offload - 6.12.57-r1 126 | kmod-nls-base - 6.12.57-r1 127 | kmod-nls-cp437 - 6.12.57-r1 128 | kmod-nls-iso8859-1 - 6.12.57-r1 129 | kmod-nls-utf8 - 6.12.57-r1 130 | kmod-phy-marvell - 6.12.57-r1 131 | kmod-phylink - 6.12.57-r1 132 | kmod-ppp - 6.12.57-r1 133 | kmod-pppoe - 6.12.57-r1 134 | kmod-pppox - 6.12.57-r1 135 | kmod-pps - 6.12.57-r1 136 | kmod-ptp - 6.12.57-r1 137 | kmod-random-core - 6.12.57-r1 138 | kmod-regmap-core - 6.12.57-r1 139 | kmod-regmap-i2c - 6.12.57-r1 140 | kmod-rtc-rs5c372a - 6.12.57-r1 141 | kmod-rtc-s35390a - 6.12.57-r1 142 | kmod-sched-cake - 6.12.57-r1 143 | kmod-sched-core - 6.12.57-r1 144 | kmod-sched-ctinfo - 6.12.57-r1 145 | kmod-scsi-core - 6.12.57-r1 146 | kmod-slhc - 6.12.57-r1 147 | kmod-tun - 6.12.57-r1 148 | kmod-turris-omnia-mcu - 6.12.57-r1 149 | kmod-udptunnel4 - 6.12.57-r1 150 | kmod-udptunnel6 - 6.12.57-r1 151 | kmod-usb-common - 6.12.57-r1 152 | kmod-usb-core - 6.12.57-r1 153 | kmod-usb-ledtrig-usbport - 6.12.57-r1 154 | kmod-usb-xhci-hcd - 6.12.57-r1 155 | kmod-usb-xhci-pci-renesas - 6.12.57-r1 156 | kmod-usb3 - 6.12.57-r1 157 | kmod-wireguard - 6.12.57-r1 158 | libatomic1 - 14.3.0-r5 159 | libblkid1 - 2.41.1-r2 160 | libblobmsg-json20251004 - 2025.10.04~c163d7ab-r1 161 | libbpf1 - 1.5.0-r1 162 | libc - 1.2.5-r5 163 | libcap-ng - 0.8.4-r1 164 | libcomerr0 - 1.47.2-r1 165 | libe2p2 - 1.47.2-r1 166 | libelf1 - 0.192-r1 167 | libext2fs2 - 1.47.2-r1 168 | libf2fs6 - 1.16.0-r4 169 | libgcc1 - 14.3.0-r5 170 | libgmp10 - 6.3.0-r2 171 | libip4tc2 - 1.8.10-r2 172 | libip6tc2 - 1.8.10-r2 173 | libiperf3 - 3.19.1-r1 174 | libiptext-nft0 - 1.8.10-r2 175 | libiptext0 - 1.8.10-r2 176 | libiptext6-0 - 1.8.10-r2 177 | libiwinfo-data - 2025.10.19~904f1145-r1 178 | libiwinfo-lua - 2025.10.19~904f1145-r1 179 | libiwinfo20230701 - 2025.10.19~904f1145-r1 180 | libjson-c5 - 0.18-r1 181 | libjson-script20251004 - 2025.10.04~c163d7ab-r1 182 | liblua5.1.5 - 5.1.5-r11 183 | liblucihttp-lua - 2023.03.15~9b5b683f-r1 184 | liblucihttp-ucode - 2023.03.15~9b5b683f-r1 185 | liblucihttp0 - 2023.03.15~9b5b683f-r1 186 | libmnl0 - 1.0.5-r1 187 | libncurses6 - 6.4-r3 188 | libnetfilter-conntrack3 - 1.1.0-r1 189 | libnettle8 - 3.10.1-r1 190 | libnfnetlink0 - 1.0.2-r1 191 | libnftnl11 - 1.3.0-r1 192 | libnl-core200 - 3.11.0-r1 193 | libnl-route200 - 3.11.0-r1 194 | libnl-tiny1 - 2025.10.03~feca1d34-r1 195 | libopenssl-conf - 3.5.4-r1 196 | libopenssl-devcrypto - 3.5.4-r1 197 | libopenssl-legacy - 3.5.4-r1 198 | libopenssl3 - 3.5.4-r1 199 | libpcap1 - 1.10.5-r3 200 | libpthread - 1.2.5-r5 201 | librt - 1.2.5-r5 202 | libsmartcols1 - 2.41.1-r2 203 | libss2 - 1.47.2-r1 204 | libubox20251004 - 2025.10.04~c163d7ab-r1 205 | libubus-lua - 2025.10.17~60e04048-r1 206 | libubus20251017 - 2025.10.17~60e04048-r1 207 | libuci-lua - 2025.10.05~5e69edac-r1 208 | libuci20250120 - 2025.10.05~5e69edac-r1 209 | libuclient20201210 - 2025.10.03~dc909ca7-r1 210 | libucode20230711 - 2025.09.29~1090abb1-r1 211 | libudebug - 2025.09.28~5327524e 212 | libustream-openssl20201210 - 2025.10.03~5a81c108-r1 213 | libuuid1 - 2.41.1-r2 214 | libxtables12 - 1.8.10-r2 215 | logd - 2025.10.03~c75525a5-r1 216 | lua - 5.1.5-r11 217 | luci - 24.297.79519~bcd13b9 218 | luci-app-advanced-reboot - 1.1.0-r1 219 | luci-app-banip - 25.299.70681~0f97532 220 | luci-app-firewall - 25.305.79393~f9e6538 221 | luci-app-package-manager - 25.180.63438~8b5dfab 222 | luci-app-sqm - 25.013.61063~8019484 223 | luci-app-upnp - 24.359.60853~075b59f 224 | luci-base - 25.309.76277~89b55a7 225 | luci-i18n-advanced-reboot-ar - 25.303.13639~ebb90f9 226 | luci-i18n-advanced-reboot-bg - 25.303.13639~ebb90f9 227 | luci-i18n-advanced-reboot-bn - 25.303.13639~ebb90f9 228 | luci-i18n-advanced-reboot-ca - 25.303.13639~ebb90f9 229 | luci-i18n-advanced-reboot-cs - 25.303.13639~ebb90f9 230 | luci-i18n-advanced-reboot-da - 25.303.13639~ebb90f9 231 | luci-i18n-advanced-reboot-de - 25.303.13639~ebb90f9 232 | luci-i18n-advanced-reboot-el - 25.303.13639~ebb90f9 233 | luci-i18n-advanced-reboot-es - 25.303.13639~ebb90f9 234 | luci-i18n-advanced-reboot-fi - 25.303.13639~ebb90f9 235 | luci-i18n-advanced-reboot-fr - 25.303.13639~ebb90f9 236 | luci-i18n-advanced-reboot-he - 25.303.13639~ebb90f9 237 | luci-i18n-advanced-reboot-hi - 25.303.13639~ebb90f9 238 | luci-i18n-advanced-reboot-hu - 25.303.13639~ebb90f9 239 | luci-i18n-advanced-reboot-it - 25.303.13639~ebb90f9 240 | luci-i18n-advanced-reboot-ja - 25.303.13639~ebb90f9 241 | luci-i18n-advanced-reboot-ko - 25.303.13639~ebb90f9 242 | luci-i18n-advanced-reboot-mr - 25.303.13639~ebb90f9 243 | luci-i18n-advanced-reboot-ms - 25.303.13639~ebb90f9 244 | luci-i18n-advanced-reboot-nl - 25.303.13639~ebb90f9 245 | luci-i18n-advanced-reboot-no - 25.303.13639~ebb90f9 246 | luci-i18n-advanced-reboot-pl - 25.303.13639~ebb90f9 247 | luci-i18n-advanced-reboot-pt - 25.303.13639~ebb90f9 248 | luci-i18n-advanced-reboot-pt-br - 25.303.13639~ebb90f9 249 | luci-i18n-advanced-reboot-ro - 25.303.13639~ebb90f9 250 | luci-i18n-advanced-reboot-ru - 25.303.13639~ebb90f9 251 | luci-i18n-advanced-reboot-sk - 25.303.13639~ebb90f9 252 | luci-i18n-advanced-reboot-sv - 25.303.13639~ebb90f9 253 | luci-i18n-advanced-reboot-tr - 25.303.13639~ebb90f9 254 | luci-i18n-advanced-reboot-uk - 25.303.13639~ebb90f9 255 | luci-i18n-advanced-reboot-vi - 25.303.13639~ebb90f9 256 | luci-i18n-advanced-reboot-zh-cn - 25.303.13639~ebb90f9 257 | luci-i18n-advanced-reboot-zh-tw - 25.303.13639~ebb90f9 258 | luci-i18n-banip-ar - 25.309.75035~fee454a 259 | luci-i18n-banip-bg - 25.309.75035~fee454a 260 | luci-i18n-banip-bn - 25.309.75035~fee454a 261 | luci-i18n-banip-ca - 25.309.75035~fee454a 262 | luci-i18n-banip-cs - 25.309.75035~fee454a 263 | luci-i18n-banip-da - 25.309.75035~fee454a 264 | luci-i18n-banip-de - 25.309.75035~fee454a 265 | luci-i18n-banip-el - 25.309.75035~fee454a 266 | luci-i18n-banip-es - 25.309.75035~fee454a 267 | luci-i18n-banip-fi - 25.309.75035~fee454a 268 | luci-i18n-banip-fr - 25.309.75035~fee454a 269 | luci-i18n-banip-he - 25.309.75035~fee454a 270 | luci-i18n-banip-hi - 25.309.75035~fee454a 271 | luci-i18n-banip-hu - 25.309.75035~fee454a 272 | luci-i18n-banip-it - 25.309.75035~fee454a 273 | luci-i18n-banip-ja - 25.309.75035~fee454a 274 | luci-i18n-banip-ko - 25.309.75035~fee454a 275 | luci-i18n-banip-mr - 25.309.75035~fee454a 276 | luci-i18n-banip-ms - 25.309.75035~fee454a 277 | luci-i18n-banip-nl - 25.309.75035~fee454a 278 | luci-i18n-banip-no - 25.309.75035~fee454a 279 | luci-i18n-banip-pl - 25.309.75035~fee454a 280 | luci-i18n-banip-pt - 25.309.75035~fee454a 281 | luci-i18n-banip-pt-br - 25.309.75035~fee454a 282 | luci-i18n-banip-ro - 25.309.75035~fee454a 283 | luci-i18n-banip-ru - 25.309.75035~fee454a 284 | luci-i18n-banip-sk - 25.309.75035~fee454a 285 | luci-i18n-banip-sv - 25.309.75035~fee454a 286 | luci-i18n-banip-tr - 25.309.75035~fee454a 287 | luci-i18n-banip-uk - 25.309.75035~fee454a 288 | luci-i18n-banip-vi - 25.309.75035~fee454a 289 | luci-i18n-banip-zh-cn - 25.309.75035~fee454a 290 | luci-i18n-banip-zh-tw - 25.309.75035~fee454a 291 | luci-i18n-base-ar - 25.309.75035~fee454a 292 | luci-i18n-base-bg - 25.309.75035~fee454a 293 | luci-i18n-base-bn - 25.309.75035~fee454a 294 | luci-i18n-base-ca - 25.309.75035~fee454a 295 | luci-i18n-base-cs - 25.309.75035~fee454a 296 | luci-i18n-base-da - 25.309.75035~fee454a 297 | luci-i18n-base-de - 25.309.75035~fee454a 298 | luci-i18n-base-el - 25.309.75035~fee454a 299 | luci-i18n-base-es - 25.309.75035~fee454a 300 | luci-i18n-base-fi - 25.309.75035~fee454a 301 | luci-i18n-base-fr - 25.309.75035~fee454a 302 | luci-i18n-base-he - 25.309.75035~fee454a 303 | luci-i18n-base-hi - 25.309.75035~fee454a 304 | luci-i18n-base-hu - 25.309.75035~fee454a 305 | luci-i18n-base-it - 25.309.75035~fee454a 306 | luci-i18n-base-ja - 25.309.75035~fee454a 307 | luci-i18n-base-ko - 25.309.75035~fee454a 308 | luci-i18n-base-mr - 25.309.75035~fee454a 309 | luci-i18n-base-ms - 25.309.75035~fee454a 310 | luci-i18n-base-nl - 25.309.75035~fee454a 311 | luci-i18n-base-no - 25.309.75035~fee454a 312 | luci-i18n-base-pl - 25.309.75035~fee454a 313 | luci-i18n-base-pt - 25.309.75035~fee454a 314 | luci-i18n-base-pt-br - 25.309.75035~fee454a 315 | luci-i18n-base-ro - 25.309.75035~fee454a 316 | luci-i18n-base-ru - 25.309.75035~fee454a 317 | luci-i18n-base-sk - 25.309.75035~fee454a 318 | luci-i18n-base-sv - 25.309.75035~fee454a 319 | luci-i18n-base-tr - 25.309.75035~fee454a 320 | luci-i18n-base-uk - 25.309.75035~fee454a 321 | luci-i18n-base-vi - 25.309.75035~fee454a 322 | luci-i18n-base-zh-cn - 25.309.75035~fee454a 323 | luci-i18n-base-zh-tw - 25.309.75035~fee454a 324 | luci-i18n-firewall-ar - 25.309.75035~fee454a 325 | luci-i18n-firewall-bg - 25.309.75035~fee454a 326 | luci-i18n-firewall-bn - 25.309.75035~fee454a 327 | luci-i18n-firewall-ca - 25.309.75035~fee454a 328 | luci-i18n-firewall-cs - 25.309.75035~fee454a 329 | luci-i18n-firewall-da - 25.309.75035~fee454a 330 | luci-i18n-firewall-de - 25.309.75035~fee454a 331 | luci-i18n-firewall-el - 25.309.75035~fee454a 332 | luci-i18n-firewall-es - 25.309.75035~fee454a 333 | luci-i18n-firewall-fi - 25.309.75035~fee454a 334 | luci-i18n-firewall-fr - 25.309.75035~fee454a 335 | luci-i18n-firewall-he - 25.309.75035~fee454a 336 | luci-i18n-firewall-hi - 25.309.75035~fee454a 337 | luci-i18n-firewall-hu - 25.309.75035~fee454a 338 | luci-i18n-firewall-it - 25.309.75035~fee454a 339 | luci-i18n-firewall-ja - 25.309.75035~fee454a 340 | luci-i18n-firewall-ko - 25.309.75035~fee454a 341 | luci-i18n-firewall-mr - 25.309.75035~fee454a 342 | luci-i18n-firewall-ms - 25.309.75035~fee454a 343 | luci-i18n-firewall-nl - 25.309.75035~fee454a 344 | luci-i18n-firewall-no - 25.309.75035~fee454a 345 | luci-i18n-firewall-pl - 25.309.75035~fee454a 346 | luci-i18n-firewall-pt - 25.309.75035~fee454a 347 | luci-i18n-firewall-pt-br - 25.309.75035~fee454a 348 | luci-i18n-firewall-ro - 25.309.75035~fee454a 349 | luci-i18n-firewall-ru - 25.309.75035~fee454a 350 | luci-i18n-firewall-sk - 25.309.75035~fee454a 351 | luci-i18n-firewall-sv - 25.309.75035~fee454a 352 | luci-i18n-firewall-tr - 25.309.75035~fee454a 353 | luci-i18n-firewall-uk - 25.309.75035~fee454a 354 | luci-i18n-firewall-vi - 25.309.75035~fee454a 355 | luci-i18n-firewall-zh-cn - 25.309.75035~fee454a 356 | luci-i18n-firewall-zh-tw - 25.309.75035~fee454a 357 | luci-i18n-package-manager-ar - 25.306.50674~c0864e6 358 | luci-i18n-package-manager-bg - 25.306.50674~c0864e6 359 | luci-i18n-package-manager-bn - 25.306.50674~c0864e6 360 | luci-i18n-package-manager-ca - 25.306.50674~c0864e6 361 | luci-i18n-package-manager-cs - 25.306.50674~c0864e6 362 | luci-i18n-package-manager-da - 25.306.50674~c0864e6 363 | luci-i18n-package-manager-de - 25.306.50674~c0864e6 364 | luci-i18n-package-manager-el - 25.306.50674~c0864e6 365 | luci-i18n-package-manager-es - 25.306.50674~c0864e6 366 | luci-i18n-package-manager-fi - 25.306.50674~c0864e6 367 | luci-i18n-package-manager-fr - 25.306.50674~c0864e6 368 | luci-i18n-package-manager-he - 25.306.50674~c0864e6 369 | luci-i18n-package-manager-hi - 25.306.50674~c0864e6 370 | luci-i18n-package-manager-hu - 25.306.50674~c0864e6 371 | luci-i18n-package-manager-it - 25.306.50674~c0864e6 372 | luci-i18n-package-manager-ja - 25.306.50674~c0864e6 373 | luci-i18n-package-manager-ko - 25.306.50674~c0864e6 374 | luci-i18n-package-manager-mr - 25.306.50674~c0864e6 375 | luci-i18n-package-manager-ms - 25.306.50674~c0864e6 376 | luci-i18n-package-manager-nl - 25.306.50674~c0864e6 377 | luci-i18n-package-manager-no - 25.306.50674~c0864e6 378 | luci-i18n-package-manager-pl - 25.306.50674~c0864e6 379 | luci-i18n-package-manager-pt - 25.306.50674~c0864e6 380 | luci-i18n-package-manager-pt-br - 25.306.50674~c0864e6 381 | luci-i18n-package-manager-ro - 25.306.50674~c0864e6 382 | luci-i18n-package-manager-ru - 25.306.50674~c0864e6 383 | luci-i18n-package-manager-sk - 25.306.50674~c0864e6 384 | luci-i18n-package-manager-sv - 25.306.50674~c0864e6 385 | luci-i18n-package-manager-tr - 25.306.50674~c0864e6 386 | luci-i18n-package-manager-uk - 25.306.50674~c0864e6 387 | luci-i18n-package-manager-vi - 25.306.50674~c0864e6 388 | luci-i18n-package-manager-zh-cn - 25.306.50674~c0864e6 389 | luci-i18n-package-manager-zh-tw - 25.306.50674~c0864e6 390 | luci-i18n-sqm-ar - 25.288.04105~791da4c 391 | luci-i18n-sqm-bg - 25.288.04105~791da4c 392 | luci-i18n-sqm-bn - 25.288.04105~791da4c 393 | luci-i18n-sqm-ca - 25.288.04105~791da4c 394 | luci-i18n-sqm-cs - 25.288.04105~791da4c 395 | luci-i18n-sqm-da - 25.288.04105~791da4c 396 | luci-i18n-sqm-de - 25.288.04105~791da4c 397 | luci-i18n-sqm-el - 25.288.04105~791da4c 398 | luci-i18n-sqm-es - 25.288.04105~791da4c 399 | luci-i18n-sqm-fi - 25.288.04105~791da4c 400 | luci-i18n-sqm-fr - 25.288.04105~791da4c 401 | luci-i18n-sqm-he - 25.288.04105~791da4c 402 | luci-i18n-sqm-hi - 25.288.04105~791da4c 403 | luci-i18n-sqm-hu - 25.288.04105~791da4c 404 | luci-i18n-sqm-it - 25.288.04105~791da4c 405 | luci-i18n-sqm-ja - 25.288.04105~791da4c 406 | luci-i18n-sqm-ko - 25.288.04105~791da4c 407 | luci-i18n-sqm-mr - 25.288.04105~791da4c 408 | luci-i18n-sqm-ms - 25.288.04105~791da4c 409 | luci-i18n-sqm-nl - 25.288.04105~791da4c 410 | luci-i18n-sqm-no - 25.288.04105~791da4c 411 | luci-i18n-sqm-pl - 25.288.04105~791da4c 412 | luci-i18n-sqm-pt - 25.288.04105~791da4c 413 | luci-i18n-sqm-pt-br - 25.288.04105~791da4c 414 | luci-i18n-sqm-ro - 25.288.04105~791da4c 415 | luci-i18n-sqm-ru - 25.288.04105~791da4c 416 | luci-i18n-sqm-sk - 25.288.04105~791da4c 417 | luci-i18n-sqm-sv - 25.288.04105~791da4c 418 | luci-i18n-sqm-tr - 25.288.04105~791da4c 419 | luci-i18n-sqm-uk - 25.288.04105~791da4c 420 | luci-i18n-sqm-vi - 25.288.04105~791da4c 421 | luci-i18n-sqm-zh-cn - 25.288.04105~791da4c 422 | luci-i18n-sqm-zh-tw - 25.288.04105~791da4c 423 | luci-i18n-upnp-ar - 25.306.50674~c0864e6 424 | luci-i18n-upnp-bg - 25.306.50674~c0864e6 425 | luci-i18n-upnp-bn - 25.306.50674~c0864e6 426 | luci-i18n-upnp-ca - 25.306.50674~c0864e6 427 | luci-i18n-upnp-cs - 25.306.50674~c0864e6 428 | luci-i18n-upnp-da - 25.306.50674~c0864e6 429 | luci-i18n-upnp-de - 25.306.50674~c0864e6 430 | luci-i18n-upnp-el - 25.306.50674~c0864e6 431 | luci-i18n-upnp-es - 25.306.50674~c0864e6 432 | luci-i18n-upnp-fi - 25.306.50674~c0864e6 433 | luci-i18n-upnp-fr - 25.306.50674~c0864e6 434 | luci-i18n-upnp-he - 25.306.50674~c0864e6 435 | luci-i18n-upnp-hi - 25.306.50674~c0864e6 436 | luci-i18n-upnp-hu - 25.306.50674~c0864e6 437 | luci-i18n-upnp-it - 25.306.50674~c0864e6 438 | luci-i18n-upnp-ja - 25.306.50674~c0864e6 439 | luci-i18n-upnp-ko - 25.306.50674~c0864e6 440 | luci-i18n-upnp-mr - 25.306.50674~c0864e6 441 | luci-i18n-upnp-ms - 25.306.50674~c0864e6 442 | luci-i18n-upnp-nl - 25.306.50674~c0864e6 443 | luci-i18n-upnp-no - 25.306.50674~c0864e6 444 | luci-i18n-upnp-pl - 25.306.50674~c0864e6 445 | luci-i18n-upnp-pt - 25.306.50674~c0864e6 446 | luci-i18n-upnp-pt-br - 25.306.50674~c0864e6 447 | luci-i18n-upnp-ro - 25.306.50674~c0864e6 448 | luci-i18n-upnp-ru - 25.306.50674~c0864e6 449 | luci-i18n-upnp-sk - 25.306.50674~c0864e6 450 | luci-i18n-upnp-sv - 25.306.50674~c0864e6 451 | luci-i18n-upnp-tr - 25.306.50674~c0864e6 452 | luci-i18n-upnp-uk - 25.306.50674~c0864e6 453 | luci-i18n-upnp-vi - 25.306.50674~c0864e6 454 | luci-i18n-upnp-zh-cn - 25.306.50674~c0864e6 455 | luci-i18n-upnp-zh-tw - 25.306.50674~c0864e6 456 | luci-lib-base - 24.079.46064~3e3005c 457 | luci-lib-ip - 24.322.80622~82bde8c 458 | luci-lib-jsonc - 24.322.80622~5de2030 459 | luci-lib-nixio - 25.268.46512~3ee5ad3 460 | luci-lib-uqr - 24.179.65301~b2e7441 461 | luci-light - 23.024.33244~34dee82 462 | luci-mod-admin-full - 19.253.48496~3f93650 463 | luci-mod-network - 25.307.78280~c935260 464 | luci-mod-status - 25.306.05255~a8f18e7 465 | luci-mod-system - 25.306.63270~1299531 466 | luci-proto-ipv6 - 25.247.44965~183ab68 467 | luci-proto-ppp - 25.300.60856~87375a5 468 | luci-proto-wireguard - 25.301.71451~f52d047 469 | luci-ssl-openssl - 24.328.43591~9e70c9a 470 | luci-theme-bootstrap - 25.294.51947~6e26342 471 | miniupnpd-nftables - 2.3.7-r1 472 | mkf2fs - 1.16.0-r4 473 | mtd - 26 474 | mwifiex-sdio-firmware - 20251021-r1 475 | mwlwifi-firmware-88w8864 - 2025.02.06~db97edf2-r2 476 | mwlwifi-firmware-88w8964 - 2025.02.06~db97edf2-r2 477 | nano - 8.6-r2 478 | netifd - 2025.10.20~777f5942-r1 479 | nftables-json - 1.1.5-r1 480 | odhcp6c - 2025.11.04~b3e1db42-r1 481 | odhcpd-ipv6only - 2025.11.04~d44af6dd-r1 482 | omnia-eeprom - 0.1-r1 483 | omnia-mcu-firmware - 4.1-r1 484 | omnia-mcutool - 2024.08.05~3833ade1-r1 485 | openssl-util - 3.5.4-r1 486 | openwrt-keyring - 2024.11.01~fbae29d7-r1 487 | opkg - 2025.11.05~80503d94-r1 488 | partx-utils - 2.41.1-r2 489 | ppp - 2.5.2-r2 490 | ppp-mod-pppoe - 2.5.2-r2 491 | procd - 2025.10.04~3b3501ab-r1 492 | procd-seccomp - 2025.10.04~3b3501ab-r1 493 | procd-ujail - 2025.10.04~3b3501ab-r1 494 | resolveip - 2 495 | rpcd - 2025.10.03~cfb93f10-r1 496 | rpcd-mod-file - 2025.10.03~cfb93f10-r1 497 | rpcd-mod-iwinfo - 2025.10.03~cfb93f10-r1 498 | rpcd-mod-luci - 20240305-r1 499 | rpcd-mod-rpcsys - 2025.10.03~cfb93f10-r1 500 | rpcd-mod-rrdns - 20170710 501 | rpcd-mod-ucode - 2025.10.03~cfb93f10-r1 502 | sqm-scripts - 1.6.0-r1 503 | tc-tiny - 6.14.0-r1 504 | tcpdump - 4.99.5-r1 505 | terminfo - 6.4-r3 506 | ubi-utils - 2.2.1-r1 507 | uboot-envtools - 2025.10-r1 508 | ubox - 2025.10.03~c75525a5-r1 509 | ubus - 2025.10.17~60e04048-r1 510 | ubusd - 2025.10.17~60e04048-r1 511 | uci - 2025.10.05~5e69edac-r1 512 | uclient-fetch - 2025.10.03~dc909ca7-r1 513 | ucode - 2025.09.29~1090abb1-r1 514 | ucode-mod-digest - 2025.09.29~1090abb1-r1 515 | ucode-mod-fs - 2025.09.29~1090abb1-r1 516 | ucode-mod-html - 1 517 | ucode-mod-log - 2025.09.29~1090abb1-r1 518 | ucode-mod-math - 2025.09.29~1090abb1-r1 519 | ucode-mod-nl80211 - 2025.09.29~1090abb1-r1 520 | ucode-mod-rtnl - 2025.09.29~1090abb1-r1 521 | ucode-mod-ubus - 2025.09.29~1090abb1-r1 522 | ucode-mod-uci - 2025.09.29~1090abb1-r1 523 | ucode-mod-uloop - 2025.09.29~1090abb1-r1 524 | uhttpd - 2025.10.03~ebb92e6b-r1 525 | uhttpd-mod-ubus - 2025.10.03~ebb92e6b-r1 526 | urandom-seed - 3 527 | urngd - 2025.10.03~f17e33d9-r1 528 | usign - 2025.10.03~c4c72b1b-r1 529 | wifi-scripts - 1.0-r1 530 | wireguard-tools - 1.0.20250521-r1 531 | wireless-regdb - 2025.07.10-r1 532 | wpad-openssl - 2025.08.26~ca266cc2-r1 533 | xtables-nft - 1.8.10-r2 534 | zlib - 1.3.1-r1 535 | -------------------------------------------------------------------------------- /20251121-00/config.buildinfo: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_mvebu=y 2 | CONFIG_TARGET_mvebu_cortexa9=y 3 | CONFIG_TARGET_MULTI_PROFILE=y 4 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_buffalo_ls421de=y 5 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_ctera_c200-v2=y 6 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_cznic_turris-omnia=y 7 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_globalscale_mirabox=y 8 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_iptime_nas1dual=y 9 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_kobol_helios4=y 10 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1200ac=y 11 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900ac-v2=y 12 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900ac-v1=y 13 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt3200acm=y 14 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt1900acs=y 15 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_linksys_wrt32x=y 16 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a370-db=y 17 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a370-rd=y 18 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a385-db-ap=y 19 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_a388-rd=y 20 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_axp-gp=y 21 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_marvell_axp-db=y 22 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_plathome_openblocks-ax3-4=y 23 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_solidrun_clearfog-base-a1=y 24 | CONFIG_TARGET_DEVICE_mvebu_cortexa9_DEVICE_solidrun_clearfog-pro-a1=y 25 | # CONFIG_ATH9K_HWRNG is not set 26 | CONFIG_BUSYBOX_DEFAULT_PIE=y 27 | # CONFIG_DRIVER_11AX_SUPPORT is not set 28 | CONFIG_FEED_telephony=m 29 | CONFIG_FSTOOLS_OVL_MOUNT_COMPRESS_ZLIB=y 30 | CONFIG_IMAGEOPT=y 31 | # CONFIG_KERNEL_BTRFS_FS_POSIX_ACL is not set 32 | CONFIG_KERNEL_BUILD_DOMAIN="dcg.v1" 33 | CONFIG_KERNEL_BUILD_USER="emy" 34 | # CONFIG_KERNEL_CC_STACKPROTECTOR_REGULAR is not set 35 | CONFIG_KERNEL_CC_STACKPROTECTOR_STRONG=y 36 | # CONFIG_KERNEL_CIFS_ACL is not set 37 | # CONFIG_KERNEL_CRASH_DUMP is not set 38 | # CONFIG_KERNEL_DEBUG_INFO is not set 39 | # CONFIG_KERNEL_ELF_CORE is not set 40 | # CONFIG_KERNEL_EROFS_FS_POSIX_ACL is not set 41 | # CONFIG_KERNEL_EXT4_FS_POSIX_ACL is not set 42 | # CONFIG_KERNEL_EXT4_FS_SECURITY is not set 43 | # CONFIG_KERNEL_F2FS_FS_POSIX_ACL is not set 44 | # CONFIG_KERNEL_F2FS_FS_SECURITY is not set 45 | # CONFIG_KERNEL_FS_POSIX_ACL is not set 46 | # CONFIG_KERNEL_HFSPLUS_FS_POSIX_ACL is not set 47 | # CONFIG_KERNEL_HFS_FS_POSIX_ACL is not set 48 | # CONFIG_KERNEL_JFFS2_FS_POSIX_ACL is not set 49 | # CONFIG_KERNEL_JFFS2_FS_SECURITY is not set 50 | # CONFIG_KERNEL_JFS_POSIX_ACL is not set 51 | # CONFIG_KERNEL_KALLSYMS is not set 52 | # CONFIG_KERNEL_KEXEC is not set 53 | # CONFIG_KERNEL_MAGIC_SYSRQ is not set 54 | # CONFIG_KERNEL_NET_L3_MASTER_DEV is not set 55 | # CONFIG_KERNEL_NFS_ACL_SUPPORT is not set 56 | # CONFIG_KERNEL_PAGE_POOL is not set 57 | # CONFIG_KERNEL_REISER_FS_POSIX_ACL is not set 58 | CONFIG_KERNEL_STACKPROTECTOR_STRONG=y 59 | # CONFIG_KERNEL_SWAP is not set 60 | # CONFIG_KERNEL_TMPFS_POSIX_ACL is not set 61 | # CONFIG_KERNEL_UBIFS_FS_SECURITY is not set 62 | # CONFIG_KERNEL_WERROR is not set 63 | # CONFIG_KERNEL_XFS_POSIX_ACL is not set 64 | CONFIG_LUCI_LANG_ar=y 65 | CONFIG_LUCI_LANG_bg=y 66 | CONFIG_LUCI_LANG_bn_BD=y 67 | CONFIG_LUCI_LANG_ca=y 68 | CONFIG_LUCI_LANG_cs=y 69 | CONFIG_LUCI_LANG_da=y 70 | CONFIG_LUCI_LANG_de=y 71 | CONFIG_LUCI_LANG_el=y 72 | CONFIG_LUCI_LANG_es=y 73 | CONFIG_LUCI_LANG_fi=y 74 | CONFIG_LUCI_LANG_fr=y 75 | CONFIG_LUCI_LANG_he=y 76 | CONFIG_LUCI_LANG_hi=y 77 | CONFIG_LUCI_LANG_hu=y 78 | CONFIG_LUCI_LANG_it=y 79 | CONFIG_LUCI_LANG_ja=y 80 | CONFIG_LUCI_LANG_ko=y 81 | CONFIG_LUCI_LANG_mr=y 82 | CONFIG_LUCI_LANG_ms=y 83 | CONFIG_LUCI_LANG_nb_NO=y 84 | CONFIG_LUCI_LANG_nl=y 85 | CONFIG_LUCI_LANG_pl=y 86 | CONFIG_LUCI_LANG_pt=y 87 | CONFIG_LUCI_LANG_pt_BR=y 88 | CONFIG_LUCI_LANG_ro=y 89 | CONFIG_LUCI_LANG_ru=y 90 | CONFIG_LUCI_LANG_sk=y 91 | CONFIG_LUCI_LANG_sv=y 92 | CONFIG_LUCI_LANG_tr=y 93 | CONFIG_LUCI_LANG_uk=y 94 | CONFIG_LUCI_LANG_vi=y 95 | CONFIG_LUCI_LANG_zh_Hans=y 96 | CONFIG_LUCI_LANG_zh_Hant=y 97 | CONFIG_LUCI_SRCDIET=y 98 | CONFIG_OPENSSL_OPTIMIZE_SPEED=y 99 | # CONFIG_OPENSSL_WITH_IDEA is not set 100 | # CONFIG_OPENSSL_WITH_MDC2 is not set 101 | # CONFIG_OPENSSL_WITH_SEED is not set 102 | # CONFIG_OPENSSL_WITH_WHIRLPOOL is not set 103 | # CONFIG_PACKAGE_apk-mbedtls is not set 104 | CONFIG_PACKAGE_apk-openssl=y 105 | CONFIG_PACKAGE_attendedsysupgrade-common=y 106 | CONFIG_PACKAGE_banip=y 107 | CONFIG_PACKAGE_bmon=y 108 | CONFIG_PACKAGE_ca-certificates=y 109 | CONFIG_PACKAGE_cgi-io=y 110 | CONFIG_PACKAGE_confuse=y 111 | # CONFIG_PACKAGE_dnsmasq is not set 112 | CONFIG_PACKAGE_dnsmasq-full=y 113 | CONFIG_PACKAGE_dnsmasq_full_auth=y 114 | CONFIG_PACKAGE_dnsmasq_full_conntrack=y 115 | CONFIG_PACKAGE_dnsmasq_full_dhcp=y 116 | CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y 117 | CONFIG_PACKAGE_dnsmasq_full_dnssec=y 118 | CONFIG_PACKAGE_dnsmasq_full_nftset=y 119 | CONFIG_PACKAGE_dnsmasq_full_noid=y 120 | CONFIG_PACKAGE_htop=y 121 | CONFIG_PACKAGE_ip-tiny=y 122 | CONFIG_PACKAGE_ip6tables-nft=y 123 | CONFIG_PACKAGE_iperf3=y 124 | CONFIG_PACKAGE_iptables-mod-ipopt=y 125 | CONFIG_PACKAGE_iptables-nft=y 126 | CONFIG_PACKAGE_irqbalance=y 127 | CONFIG_PACKAGE_iwinfo=y 128 | CONFIG_PACKAGE_kmod-crypto-acompress=m 129 | CONFIG_PACKAGE_kmod-crypto-authenc=y 130 | CONFIG_PACKAGE_kmod-crypto-cbc=m 131 | CONFIG_PACKAGE_kmod-crypto-cts=m 132 | CONFIG_PACKAGE_kmod-crypto-deflate=m 133 | CONFIG_PACKAGE_kmod-crypto-des=m 134 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20=y 135 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=y 136 | CONFIG_PACKAGE_kmod-crypto-lib-curve25519=y 137 | CONFIG_PACKAGE_kmod-crypto-lib-poly1305=y 138 | CONFIG_PACKAGE_kmod-crypto-md5=m 139 | CONFIG_PACKAGE_kmod-crypto-sha1=m 140 | CONFIG_PACKAGE_kmod-crypto-sha256=y 141 | CONFIG_PACKAGE_kmod-crypto-xts=m 142 | CONFIG_PACKAGE_kmod-cryptodev=y 143 | CONFIG_PACKAGE_kmod-ifb=y 144 | CONFIG_PACKAGE_kmod-ip6tables=y 145 | CONFIG_PACKAGE_kmod-ipt-conntrack=y 146 | CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y 147 | CONFIG_PACKAGE_kmod-ipt-core=y 148 | CONFIG_PACKAGE_kmod-ipt-ipopt=y 149 | CONFIG_PACKAGE_kmod-ipt-ipset=y 150 | CONFIG_PACKAGE_kmod-lib-zlib-deflate=m 151 | CONFIG_PACKAGE_kmod-lib-zlib-inflate=m 152 | # CONFIG_PACKAGE_kmod-mt7915-firmware is not set 153 | # CONFIG_PACKAGE_kmod-mt7915e is not set 154 | CONFIG_PACKAGE_kmod-nf-conncount=y 155 | CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y 156 | CONFIG_PACKAGE_kmod-nf-ipt=y 157 | CONFIG_PACKAGE_kmod-nf-ipt6=y 158 | CONFIG_PACKAGE_kmod-nf-nat6=y 159 | CONFIG_PACKAGE_kmod-nft-compat=y 160 | CONFIG_PACKAGE_kmod-sched-cake=y 161 | CONFIG_PACKAGE_kmod-sched-core=y 162 | CONFIG_PACKAGE_kmod-sched-ctinfo=y 163 | CONFIG_PACKAGE_kmod-tun=y 164 | CONFIG_PACKAGE_kmod-udptunnel4=y 165 | CONFIG_PACKAGE_kmod-udptunnel6=y 166 | CONFIG_PACKAGE_kmod-wireguard=y 167 | # CONFIG_PACKAGE_knot-resolver_dnstap is not set 168 | CONFIG_PACKAGE_libbpf=y 169 | CONFIG_PACKAGE_libcap-ng=y 170 | CONFIG_PACKAGE_libelf=y 171 | CONFIG_PACKAGE_libgmp=y 172 | CONFIG_PACKAGE_libip4tc=y 173 | CONFIG_PACKAGE_libip6tc=y 174 | CONFIG_PACKAGE_libiperf3=y 175 | CONFIG_PACKAGE_libiptext=y 176 | CONFIG_PACKAGE_libiptext-nft=y 177 | CONFIG_PACKAGE_libiptext6=y 178 | CONFIG_PACKAGE_libiwinfo=y 179 | CONFIG_PACKAGE_libiwinfo-data=y 180 | CONFIG_PACKAGE_libiwinfo-lua=y 181 | CONFIG_PACKAGE_liblua=y 182 | CONFIG_PACKAGE_liblucihttp=y 183 | CONFIG_PACKAGE_liblucihttp-lua=y 184 | CONFIG_PACKAGE_liblucihttp-ucode=y 185 | # CONFIG_PACKAGE_libmbedtls is not set 186 | CONFIG_PACKAGE_libncurses=y 187 | CONFIG_PACKAGE_libnetfilter-conntrack=y 188 | CONFIG_PACKAGE_libnettle=y 189 | CONFIG_PACKAGE_libnfnetlink=y 190 | CONFIG_PACKAGE_libnl-core=y 191 | CONFIG_PACKAGE_libnl-route=y 192 | CONFIG_PACKAGE_libopenssl-conf=y 193 | CONFIG_PACKAGE_libopenssl-devcrypto=y 194 | CONFIG_PACKAGE_libopenssl-legacy=y 195 | CONFIG_PACKAGE_libpcap=y 196 | CONFIG_PACKAGE_libubus-lua=y 197 | CONFIG_PACKAGE_libuci-lua=y 198 | # CONFIG_PACKAGE_libustream-mbedtls is not set 199 | CONFIG_PACKAGE_libustream-openssl=y 200 | CONFIG_PACKAGE_libxtables=y 201 | CONFIG_PACKAGE_lua=y 202 | CONFIG_PACKAGE_luci=y 203 | CONFIG_PACKAGE_luci-app-advanced-reboot=y 204 | CONFIG_PACKAGE_luci-app-attendedsysupgrade=y 205 | CONFIG_PACKAGE_luci-app-banip=y 206 | CONFIG_PACKAGE_luci-app-firewall=y 207 | CONFIG_PACKAGE_luci-app-package-manager=y 208 | CONFIG_PACKAGE_luci-app-sqm=y 209 | CONFIG_PACKAGE_luci-app-upnp=y 210 | CONFIG_PACKAGE_luci-base=y 211 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ar=y 212 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-bg=y 213 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-bn=y 214 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ca=y 215 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-cs=y 216 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-da=y 217 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-de=y 218 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-el=y 219 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-es=y 220 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-fi=y 221 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-fr=y 222 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-he=y 223 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-hi=y 224 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-hu=y 225 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-it=y 226 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ja=y 227 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ko=y 228 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-mr=y 229 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ms=y 230 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-nl=y 231 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-no=y 232 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pl=y 233 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pt=y 234 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-pt-br=y 235 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ro=y 236 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-ru=y 237 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-sk=y 238 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-sv=y 239 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-tr=y 240 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-uk=y 241 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-vi=y 242 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-zh-cn=y 243 | CONFIG_PACKAGE_luci-i18n-advanced-reboot-zh-tw=y 244 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-ar=y 245 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-bg=y 246 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-bn=y 247 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-ca=y 248 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-cs=y 249 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-da=y 250 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-de=y 251 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-el=y 252 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-es=y 253 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-fi=y 254 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-fr=y 255 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-he=y 256 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-hi=y 257 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-hu=y 258 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-it=y 259 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-ja=y 260 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-ko=y 261 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-mr=y 262 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-ms=y 263 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-nl=y 264 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-no=y 265 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-pl=y 266 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-pt=y 267 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-pt-br=y 268 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-ro=y 269 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-ru=y 270 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-sk=y 271 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-sv=y 272 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-tr=y 273 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-uk=y 274 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-vi=y 275 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-zh-cn=y 276 | CONFIG_PACKAGE_luci-i18n-attendedsysupgrade-zh-tw=y 277 | CONFIG_PACKAGE_luci-i18n-banip-ar=y 278 | CONFIG_PACKAGE_luci-i18n-banip-bg=y 279 | CONFIG_PACKAGE_luci-i18n-banip-bn=y 280 | CONFIG_PACKAGE_luci-i18n-banip-ca=y 281 | CONFIG_PACKAGE_luci-i18n-banip-cs=y 282 | CONFIG_PACKAGE_luci-i18n-banip-da=y 283 | CONFIG_PACKAGE_luci-i18n-banip-de=y 284 | CONFIG_PACKAGE_luci-i18n-banip-el=y 285 | CONFIG_PACKAGE_luci-i18n-banip-es=y 286 | CONFIG_PACKAGE_luci-i18n-banip-fi=y 287 | CONFIG_PACKAGE_luci-i18n-banip-fr=y 288 | CONFIG_PACKAGE_luci-i18n-banip-he=y 289 | CONFIG_PACKAGE_luci-i18n-banip-hi=y 290 | CONFIG_PACKAGE_luci-i18n-banip-hu=y 291 | CONFIG_PACKAGE_luci-i18n-banip-it=y 292 | CONFIG_PACKAGE_luci-i18n-banip-ja=y 293 | CONFIG_PACKAGE_luci-i18n-banip-ko=y 294 | CONFIG_PACKAGE_luci-i18n-banip-mr=y 295 | CONFIG_PACKAGE_luci-i18n-banip-ms=y 296 | CONFIG_PACKAGE_luci-i18n-banip-nl=y 297 | CONFIG_PACKAGE_luci-i18n-banip-no=y 298 | CONFIG_PACKAGE_luci-i18n-banip-pl=y 299 | CONFIG_PACKAGE_luci-i18n-banip-pt=y 300 | CONFIG_PACKAGE_luci-i18n-banip-pt-br=y 301 | CONFIG_PACKAGE_luci-i18n-banip-ro=y 302 | CONFIG_PACKAGE_luci-i18n-banip-ru=y 303 | CONFIG_PACKAGE_luci-i18n-banip-sk=y 304 | CONFIG_PACKAGE_luci-i18n-banip-sv=y 305 | CONFIG_PACKAGE_luci-i18n-banip-tr=y 306 | CONFIG_PACKAGE_luci-i18n-banip-uk=y 307 | CONFIG_PACKAGE_luci-i18n-banip-vi=y 308 | CONFIG_PACKAGE_luci-i18n-banip-zh-cn=y 309 | CONFIG_PACKAGE_luci-i18n-banip-zh-tw=y 310 | CONFIG_PACKAGE_luci-i18n-base-ar=y 311 | CONFIG_PACKAGE_luci-i18n-base-bg=y 312 | CONFIG_PACKAGE_luci-i18n-base-bn=y 313 | CONFIG_PACKAGE_luci-i18n-base-ca=y 314 | CONFIG_PACKAGE_luci-i18n-base-cs=y 315 | CONFIG_PACKAGE_luci-i18n-base-da=y 316 | CONFIG_PACKAGE_luci-i18n-base-de=y 317 | CONFIG_PACKAGE_luci-i18n-base-el=y 318 | CONFIG_PACKAGE_luci-i18n-base-es=y 319 | CONFIG_PACKAGE_luci-i18n-base-fi=y 320 | CONFIG_PACKAGE_luci-i18n-base-fr=y 321 | CONFIG_PACKAGE_luci-i18n-base-he=y 322 | CONFIG_PACKAGE_luci-i18n-base-hi=y 323 | CONFIG_PACKAGE_luci-i18n-base-hu=y 324 | CONFIG_PACKAGE_luci-i18n-base-it=y 325 | CONFIG_PACKAGE_luci-i18n-base-ja=y 326 | CONFIG_PACKAGE_luci-i18n-base-ko=y 327 | CONFIG_PACKAGE_luci-i18n-base-mr=y 328 | CONFIG_PACKAGE_luci-i18n-base-ms=y 329 | CONFIG_PACKAGE_luci-i18n-base-nl=y 330 | CONFIG_PACKAGE_luci-i18n-base-no=y 331 | CONFIG_PACKAGE_luci-i18n-base-pl=y 332 | CONFIG_PACKAGE_luci-i18n-base-pt=y 333 | CONFIG_PACKAGE_luci-i18n-base-pt-br=y 334 | CONFIG_PACKAGE_luci-i18n-base-ro=y 335 | CONFIG_PACKAGE_luci-i18n-base-ru=y 336 | CONFIG_PACKAGE_luci-i18n-base-sk=y 337 | CONFIG_PACKAGE_luci-i18n-base-sv=y 338 | CONFIG_PACKAGE_luci-i18n-base-tr=y 339 | CONFIG_PACKAGE_luci-i18n-base-uk=y 340 | CONFIG_PACKAGE_luci-i18n-base-vi=y 341 | CONFIG_PACKAGE_luci-i18n-base-zh-cn=y 342 | CONFIG_PACKAGE_luci-i18n-base-zh-tw=y 343 | CONFIG_PACKAGE_luci-i18n-firewall-ar=y 344 | CONFIG_PACKAGE_luci-i18n-firewall-bg=y 345 | CONFIG_PACKAGE_luci-i18n-firewall-bn=y 346 | CONFIG_PACKAGE_luci-i18n-firewall-ca=y 347 | CONFIG_PACKAGE_luci-i18n-firewall-cs=y 348 | CONFIG_PACKAGE_luci-i18n-firewall-da=y 349 | CONFIG_PACKAGE_luci-i18n-firewall-de=y 350 | CONFIG_PACKAGE_luci-i18n-firewall-el=y 351 | CONFIG_PACKAGE_luci-i18n-firewall-es=y 352 | CONFIG_PACKAGE_luci-i18n-firewall-fi=y 353 | CONFIG_PACKAGE_luci-i18n-firewall-fr=y 354 | CONFIG_PACKAGE_luci-i18n-firewall-he=y 355 | CONFIG_PACKAGE_luci-i18n-firewall-hi=y 356 | CONFIG_PACKAGE_luci-i18n-firewall-hu=y 357 | CONFIG_PACKAGE_luci-i18n-firewall-it=y 358 | CONFIG_PACKAGE_luci-i18n-firewall-ja=y 359 | CONFIG_PACKAGE_luci-i18n-firewall-ko=y 360 | CONFIG_PACKAGE_luci-i18n-firewall-mr=y 361 | CONFIG_PACKAGE_luci-i18n-firewall-ms=y 362 | CONFIG_PACKAGE_luci-i18n-firewall-nl=y 363 | CONFIG_PACKAGE_luci-i18n-firewall-no=y 364 | CONFIG_PACKAGE_luci-i18n-firewall-pl=y 365 | CONFIG_PACKAGE_luci-i18n-firewall-pt=y 366 | CONFIG_PACKAGE_luci-i18n-firewall-pt-br=y 367 | CONFIG_PACKAGE_luci-i18n-firewall-ro=y 368 | CONFIG_PACKAGE_luci-i18n-firewall-ru=y 369 | CONFIG_PACKAGE_luci-i18n-firewall-sk=y 370 | CONFIG_PACKAGE_luci-i18n-firewall-sv=y 371 | CONFIG_PACKAGE_luci-i18n-firewall-tr=y 372 | CONFIG_PACKAGE_luci-i18n-firewall-uk=y 373 | CONFIG_PACKAGE_luci-i18n-firewall-vi=y 374 | CONFIG_PACKAGE_luci-i18n-firewall-zh-cn=y 375 | CONFIG_PACKAGE_luci-i18n-firewall-zh-tw=y 376 | CONFIG_PACKAGE_luci-i18n-package-manager-ar=y 377 | CONFIG_PACKAGE_luci-i18n-package-manager-bg=y 378 | CONFIG_PACKAGE_luci-i18n-package-manager-bn=y 379 | CONFIG_PACKAGE_luci-i18n-package-manager-ca=y 380 | CONFIG_PACKAGE_luci-i18n-package-manager-cs=y 381 | CONFIG_PACKAGE_luci-i18n-package-manager-da=y 382 | CONFIG_PACKAGE_luci-i18n-package-manager-de=y 383 | CONFIG_PACKAGE_luci-i18n-package-manager-el=y 384 | CONFIG_PACKAGE_luci-i18n-package-manager-es=y 385 | CONFIG_PACKAGE_luci-i18n-package-manager-fi=y 386 | CONFIG_PACKAGE_luci-i18n-package-manager-fr=y 387 | CONFIG_PACKAGE_luci-i18n-package-manager-he=y 388 | CONFIG_PACKAGE_luci-i18n-package-manager-hi=y 389 | CONFIG_PACKAGE_luci-i18n-package-manager-hu=y 390 | CONFIG_PACKAGE_luci-i18n-package-manager-it=y 391 | CONFIG_PACKAGE_luci-i18n-package-manager-ja=y 392 | CONFIG_PACKAGE_luci-i18n-package-manager-ko=y 393 | CONFIG_PACKAGE_luci-i18n-package-manager-mr=y 394 | CONFIG_PACKAGE_luci-i18n-package-manager-ms=y 395 | CONFIG_PACKAGE_luci-i18n-package-manager-nl=y 396 | CONFIG_PACKAGE_luci-i18n-package-manager-no=y 397 | CONFIG_PACKAGE_luci-i18n-package-manager-pl=y 398 | CONFIG_PACKAGE_luci-i18n-package-manager-pt=y 399 | CONFIG_PACKAGE_luci-i18n-package-manager-pt-br=y 400 | CONFIG_PACKAGE_luci-i18n-package-manager-ro=y 401 | CONFIG_PACKAGE_luci-i18n-package-manager-ru=y 402 | CONFIG_PACKAGE_luci-i18n-package-manager-sk=y 403 | CONFIG_PACKAGE_luci-i18n-package-manager-sv=y 404 | CONFIG_PACKAGE_luci-i18n-package-manager-tr=y 405 | CONFIG_PACKAGE_luci-i18n-package-manager-uk=y 406 | CONFIG_PACKAGE_luci-i18n-package-manager-vi=y 407 | CONFIG_PACKAGE_luci-i18n-package-manager-zh-cn=y 408 | CONFIG_PACKAGE_luci-i18n-package-manager-zh-tw=y 409 | CONFIG_PACKAGE_luci-i18n-sqm-ar=y 410 | CONFIG_PACKAGE_luci-i18n-sqm-bg=y 411 | CONFIG_PACKAGE_luci-i18n-sqm-bn=y 412 | CONFIG_PACKAGE_luci-i18n-sqm-ca=y 413 | CONFIG_PACKAGE_luci-i18n-sqm-cs=y 414 | CONFIG_PACKAGE_luci-i18n-sqm-da=y 415 | CONFIG_PACKAGE_luci-i18n-sqm-de=y 416 | CONFIG_PACKAGE_luci-i18n-sqm-el=y 417 | CONFIG_PACKAGE_luci-i18n-sqm-es=y 418 | CONFIG_PACKAGE_luci-i18n-sqm-fi=y 419 | CONFIG_PACKAGE_luci-i18n-sqm-fr=y 420 | CONFIG_PACKAGE_luci-i18n-sqm-he=y 421 | CONFIG_PACKAGE_luci-i18n-sqm-hi=y 422 | CONFIG_PACKAGE_luci-i18n-sqm-hu=y 423 | CONFIG_PACKAGE_luci-i18n-sqm-it=y 424 | CONFIG_PACKAGE_luci-i18n-sqm-ja=y 425 | CONFIG_PACKAGE_luci-i18n-sqm-ko=y 426 | CONFIG_PACKAGE_luci-i18n-sqm-mr=y 427 | CONFIG_PACKAGE_luci-i18n-sqm-ms=y 428 | CONFIG_PACKAGE_luci-i18n-sqm-nl=y 429 | CONFIG_PACKAGE_luci-i18n-sqm-no=y 430 | CONFIG_PACKAGE_luci-i18n-sqm-pl=y 431 | CONFIG_PACKAGE_luci-i18n-sqm-pt=y 432 | CONFIG_PACKAGE_luci-i18n-sqm-pt-br=y 433 | CONFIG_PACKAGE_luci-i18n-sqm-ro=y 434 | CONFIG_PACKAGE_luci-i18n-sqm-ru=y 435 | CONFIG_PACKAGE_luci-i18n-sqm-sk=y 436 | CONFIG_PACKAGE_luci-i18n-sqm-sv=y 437 | CONFIG_PACKAGE_luci-i18n-sqm-tr=y 438 | CONFIG_PACKAGE_luci-i18n-sqm-uk=y 439 | CONFIG_PACKAGE_luci-i18n-sqm-vi=y 440 | CONFIG_PACKAGE_luci-i18n-sqm-zh-cn=y 441 | CONFIG_PACKAGE_luci-i18n-sqm-zh-tw=y 442 | CONFIG_PACKAGE_luci-i18n-upnp-ar=y 443 | CONFIG_PACKAGE_luci-i18n-upnp-bg=y 444 | CONFIG_PACKAGE_luci-i18n-upnp-bn=y 445 | CONFIG_PACKAGE_luci-i18n-upnp-ca=y 446 | CONFIG_PACKAGE_luci-i18n-upnp-cs=y 447 | CONFIG_PACKAGE_luci-i18n-upnp-da=y 448 | CONFIG_PACKAGE_luci-i18n-upnp-de=y 449 | CONFIG_PACKAGE_luci-i18n-upnp-el=y 450 | CONFIG_PACKAGE_luci-i18n-upnp-es=y 451 | CONFIG_PACKAGE_luci-i18n-upnp-fi=y 452 | CONFIG_PACKAGE_luci-i18n-upnp-fr=y 453 | CONFIG_PACKAGE_luci-i18n-upnp-he=y 454 | CONFIG_PACKAGE_luci-i18n-upnp-hi=y 455 | CONFIG_PACKAGE_luci-i18n-upnp-hu=y 456 | CONFIG_PACKAGE_luci-i18n-upnp-it=y 457 | CONFIG_PACKAGE_luci-i18n-upnp-ja=y 458 | CONFIG_PACKAGE_luci-i18n-upnp-ko=y 459 | CONFIG_PACKAGE_luci-i18n-upnp-mr=y 460 | CONFIG_PACKAGE_luci-i18n-upnp-ms=y 461 | CONFIG_PACKAGE_luci-i18n-upnp-nl=y 462 | CONFIG_PACKAGE_luci-i18n-upnp-no=y 463 | CONFIG_PACKAGE_luci-i18n-upnp-pl=y 464 | CONFIG_PACKAGE_luci-i18n-upnp-pt=y 465 | CONFIG_PACKAGE_luci-i18n-upnp-pt-br=y 466 | CONFIG_PACKAGE_luci-i18n-upnp-ro=y 467 | CONFIG_PACKAGE_luci-i18n-upnp-ru=y 468 | CONFIG_PACKAGE_luci-i18n-upnp-sk=y 469 | CONFIG_PACKAGE_luci-i18n-upnp-sv=y 470 | CONFIG_PACKAGE_luci-i18n-upnp-tr=y 471 | CONFIG_PACKAGE_luci-i18n-upnp-uk=y 472 | CONFIG_PACKAGE_luci-i18n-upnp-vi=y 473 | CONFIG_PACKAGE_luci-i18n-upnp-zh-cn=y 474 | CONFIG_PACKAGE_luci-i18n-upnp-zh-tw=y 475 | CONFIG_PACKAGE_luci-lib-base=y 476 | CONFIG_PACKAGE_luci-lib-ip=y 477 | CONFIG_PACKAGE_luci-lib-jsonc=y 478 | CONFIG_PACKAGE_luci-lib-nixio=y 479 | CONFIG_PACKAGE_luci-lib-uqr=y 480 | CONFIG_PACKAGE_luci-light=y 481 | CONFIG_PACKAGE_luci-mod-admin-full=y 482 | CONFIG_PACKAGE_luci-mod-network=y 483 | CONFIG_PACKAGE_luci-mod-status=y 484 | CONFIG_PACKAGE_luci-mod-system=y 485 | CONFIG_PACKAGE_luci-proto-ipv6=y 486 | CONFIG_PACKAGE_luci-proto-ppp=y 487 | CONFIG_PACKAGE_luci-proto-wireguard=y 488 | CONFIG_PACKAGE_luci-ssl-openssl=y 489 | CONFIG_PACKAGE_luci-theme-bootstrap=y 490 | CONFIG_PACKAGE_miniupnpd-nftables=y 491 | CONFIG_PACKAGE_nano=y 492 | CONFIG_PACKAGE_openssl-util=y 493 | CONFIG_PACKAGE_opkg=y 494 | CONFIG_PACKAGE_resolveip=y 495 | CONFIG_PACKAGE_rpcd=y 496 | CONFIG_PACKAGE_rpcd-mod-file=y 497 | CONFIG_PACKAGE_rpcd-mod-iwinfo=y 498 | CONFIG_PACKAGE_rpcd-mod-luci=y 499 | CONFIG_PACKAGE_rpcd-mod-rpcsys=y 500 | CONFIG_PACKAGE_rpcd-mod-rrdns=y 501 | CONFIG_PACKAGE_rpcd-mod-ucode=y 502 | CONFIG_PACKAGE_sqm-scripts=y 503 | CONFIG_PACKAGE_tc-tiny=y 504 | CONFIG_PACKAGE_tcpdump=y 505 | CONFIG_PACKAGE_terminfo=y 506 | CONFIG_PACKAGE_ucode-mod-html=y 507 | CONFIG_PACKAGE_ucode-mod-log=y 508 | CONFIG_PACKAGE_ucode-mod-math=y 509 | CONFIG_PACKAGE_uhttpd=y 510 | CONFIG_PACKAGE_uhttpd-mod-ubus=y 511 | CONFIG_PACKAGE_wireguard-tools=y 512 | # CONFIG_PACKAGE_wpad-basic-mbedtls is not set 513 | CONFIG_PACKAGE_wpad-openssl=y 514 | CONFIG_PACKAGE_xtables-nft=y 515 | CONFIG_PKG_ASLR_PIE_ALL=y 516 | # CONFIG_PKG_ASLR_PIE_REGULAR is not set 517 | # CONFIG_PKG_CC_STACKPROTECTOR_REGULAR is not set 518 | CONFIG_PKG_CC_STACKPROTECTOR_STRONG=y 519 | # CONFIG_PKG_FORTIFY_SOURCE_1 is not set 520 | CONFIG_PKG_FORTIFY_SOURCE_2=y 521 | CONFIG_REPRODUCIBLE_DEBUG_INFO=y 522 | # CONFIG_TARGET_ROOTFS_TARGZ is not set 523 | # CONFIG_USE_FS_ACL_ATTR is not set 524 | CONFIG_VERSIONOPT=y 525 | CONFIG_VERSION_BUG_URL="https://gitlab.com/divested/Divested-WRT/-/issues" 526 | CONFIG_VERSION_CODE="" 527 | CONFIG_VERSION_CODE_FILENAMES=y 528 | CONFIG_VERSION_DIST="Divested-WRT" 529 | CONFIG_VERSION_FILENAMES=y 530 | CONFIG_VERSION_FIRMWARE_URL="" 531 | CONFIG_VERSION_HOME_URL="https://divested.dev/unofficial-openwrt-builds/mvebu-linksys" 532 | CONFIG_VERSION_HWREV="" 533 | CONFIG_VERSION_MANUFACTURER="Divested Computing Group" 534 | CONFIG_VERSION_MANUFACTURER_URL="https://divested.dev" 535 | CONFIG_VERSION_NUMBER="" 536 | CONFIG_VERSION_PRODUCT="" 537 | CONFIG_VERSION_REPO="https://downloads.openwrt.org/snapshots" 538 | CONFIG_VERSION_SUPPORT_URL="https://forum.openwrt.org/t/divested-wrt-no-nonsense-linksys-wrt-builds/80522" 539 | # CONFIG_WIFI_SCRIPTS_UCODE is not set 540 | # CONFIG_HTOP_LMSENSORS is not set 541 | # CONFIG_PACKAGE_dnsmasq_full_tftp is not set 542 | --------------------------------------------------------------------------------