From 9dcde4fc39cfdc517ef1fc7fb370f1057dcdba72 Mon Sep 17 00:00:00 2001 From: aooom Date: Sat, 7 Oct 2017 20:19:36 +0800 Subject: [PATCH 1/7] =?UTF-8?q?add=20wifidog=20SSID=E4=BF=AE=E5=A4=8D=20CP?= =?UTF-8?q?U=E4=BF=A1=E6=81=AF=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package/base-files/files/bin/inform | 47 ++++ package/base-files/files/etc/init.d/boot | 3 +- .../mac80211/files/lib/wifi/mac80211.sh | 14 +- package/lean/apfree_wifidog/Makefile | 66 +++++ package/lean/apfree_wifidog/files/apfree.ca | 23 ++ package/lean/apfree_wifidog/files/apfree.crt | 82 ++++++ package/lean/apfree_wifidog/files/apfree.key | 27 ++ package/lean/apfree_wifidog/files/wdping | 7 + .../lean/apfree_wifidog/files/wifidog.conf | 17 ++ .../lean/apfree_wifidog/files/wifidog.init | 248 ++++++++++++++++++ .../default-settings/i18n/default.zh-cn.po | 19 ++ package/lean/luci-app-apfree_wifidog/Makefile | 14 + .../luasrc/controller/apfree_wifidog.lua | 64 +++++ .../luasrc/model/cbi/apfree_wifidog.lua | 101 +++++++ .../view/apfree_wifidog/client_list.htm | 83 ++++++ .../root/etc/uci-defaults/90_luci_wifidog | 11 + package/libs/libevent2/Makefile | 25 +- target/linux/ar71xx/image/tp-link.mk | 4 +- 18 files changed, 839 insertions(+), 16 deletions(-) create mode 100644 package/base-files/files/bin/inform create mode 100755 package/lean/apfree_wifidog/Makefile create mode 100644 package/lean/apfree_wifidog/files/apfree.ca create mode 100644 package/lean/apfree_wifidog/files/apfree.crt create mode 100644 package/lean/apfree_wifidog/files/apfree.key create mode 100755 package/lean/apfree_wifidog/files/wdping create mode 100644 package/lean/apfree_wifidog/files/wifidog.conf create mode 100644 package/lean/apfree_wifidog/files/wifidog.init create mode 100644 package/lean/luci-app-apfree_wifidog/Makefile create mode 100644 package/lean/luci-app-apfree_wifidog/luasrc/controller/apfree_wifidog.lua create mode 100644 package/lean/luci-app-apfree_wifidog/luasrc/model/cbi/apfree_wifidog.lua create mode 100644 package/lean/luci-app-apfree_wifidog/luasrc/view/apfree_wifidog/client_list.htm create mode 100755 package/lean/luci-app-apfree_wifidog/root/etc/uci-defaults/90_luci_wifidog diff --git a/package/base-files/files/bin/inform b/package/base-files/files/bin/inform new file mode 100644 index 000000000..bca4fac45 --- /dev/null +++ b/package/base-files/files/bin/inform @@ -0,0 +1,47 @@ +#!/bin/sh + +dmesg >/tmp/log/mesg && rm /tmp/log/inform + +a1=`cat /proc/cpuinfo|grep -i -E 'cpu.*clock'|awk -F: '{print $2/1}'` +a2=`grep Clock /tmp/log/mesg|sed 's/^.*CPU//g'|sed 's/DDR.*//g'|awk -F'[:M]' '{print $2/1}'` + +if [ ! $a1 > '0' ]; then + if [ ! $a2 > '0' ]; then + echo unknown >> /tmp/log/inform + else + echo $a2 >> /tmp/log/inform + fi +else + echo $a1 >> /tmp/log/inform +fi + + +b1=`grep 'DDR:' /tmp/log/mesg|sed 's/^.*DDR//g'|sed 's/AHB.*//g'|awk -F '[:.]' '{print $2/1}'` +b2=`grep memory.*@ /tmp/log/mesg|awk -F '[:@]' '{print $2/10000}'` + +if [ ! $b1 > '0' ]; then + if [ ! $b2 > '0' ]; then + echo unknown >> /tmp/log/inform + else + echo $b2 >> /tmp/log/inform + fi +else + echo $b1 >> /tmp/log/inform +fi + + +c1=`cat /proc/cpuinfo |grep -i Flash /proc/cpuinfo | awk '{print $3/1}'` +c2=`grep -i Kbyte /tmp/log/mesg|cut -d '(' -f2|awk '{print $1/1024}'` + +if [ ! $c1 > '0' ]; then + if [ ! $c2 > '0' ]; then + echo unknown >> /tmp/log/inform + else + echo $c2 >> /tmp/log/inform + fi +else + echo $c1 >> /tmp/log/inform +fi + +rm /tmp/log/mesg && cat /tmp/log/inform + diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot index 31f245ffc..d69fbc163 100755 --- a/package/base-files/files/etc/init.d/boot +++ b/package/base-files/files/etc/init.d/boot @@ -45,7 +45,8 @@ boot() { /bin/config_generate uci_apply_defaults - + /bin/inform + # temporary hack until configd exists /sbin/reload_config } diff --git a/package/kernel/mac80211/files/lib/wifi/mac80211.sh b/package/kernel/mac80211/files/lib/wifi/mac80211.sh index ad2af3b29..c91d6b1e0 100644 --- a/package/kernel/mac80211/files/lib/wifi/mac80211.sh +++ b/package/kernel/mac80211/files/lib/wifi/mac80211.sh @@ -92,6 +92,7 @@ detect_mac80211() { htmode="VHT80" } + [ -n "$htmode" ] && ht_capab="set wireless.radio${devidx}.htmode=$htmode" if [ -x /usr/bin/readlink -a -h /sys/class/ieee80211/${dev} ]; then @@ -99,6 +100,7 @@ detect_mac80211() { else path="" fi + if [ -n "$path" ]; then path="${path##/sys/devices/}" case "$path" in @@ -109,6 +111,15 @@ detect_mac80211() { dev_id="set wireless.radio${devidx}.macaddr=$(cat /sys/class/ieee80211/${dev}/macaddress)" fi + if [ $mode_band == "a" ]; then + ssid_5g="_5G" + else + ssid_5g="_2.4G" + fi + [ -f /lib/03_set_wifi_mac ] && ./lib/03_set_wifi_mac + Mac=`cat /sys/class/ieee80211/${dev}/macaddress|awk -F ":" '{print $4""$5""$6 }'| tr a-z A-Z` + Wifi_name="LEDE${ssid_5g}_${Mac}" + uci -q batch <<-EOF set wireless.radio${devidx}=wifi-device set wireless.radio${devidx}.type=mac80211 @@ -116,12 +127,13 @@ detect_mac80211() { set wireless.radio${devidx}.hwmode=11${mode_band} ${dev_id} ${ht_capab} + set wireless.radio${devidx}.noscan=1 set wireless.default_radio${devidx}=wifi-iface set wireless.default_radio${devidx}.device=radio${devidx} set wireless.default_radio${devidx}.network=lan set wireless.default_radio${devidx}.mode=ap - set wireless.default_radio${devidx}.ssid=LEDE + set wireless.default_radio${devidx}.ssid=${Wifi_name} set wireless.default_radio${devidx}.encryption=none EOF uci -q commit wireless diff --git a/package/lean/apfree_wifidog/Makefile b/package/lean/apfree_wifidog/Makefile new file mode 100755 index 000000000..958e18983 --- /dev/null +++ b/package/lean/apfree_wifidog/Makefile @@ -0,0 +1,66 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=apfree_wifidog +PKG_VERSION:=2.06.1395 +PKG_RELEASE=1 + + +PKG_LICENSE:=GPL-2.0 +PKG_MAINTAINER:=Dengfeng Liu +PKG_LICENSE_FILES:=COPYING + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL:=https://github.com/liudf0716/apfree_wifidog.git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_VERSION:=$(PKG_VERSION) +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz +PKG_MIRROR_HASH:=dc1a052bd61c1224dda9548475c1feda9332c40fc2190ca6e4901d432379b51c + +PKG_INSTALL:=1 +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/cmake.mk + +define Package/$(PKG_NAME) + SUBMENU:=Captive Portals + SECTION:=net + CATEGORY:=Network + DEPENDS:=+zlib +iptables-mod-extra +iptables-mod-ipopt +kmod-ipt-nat +iptables-mod-nat-extra \ + +libpthread +libopenssl +@OPENSSL_WITH_EC +@OPENSSL_WITH_DEPRECATED +@OPENSSL_WITH_PSK +libjson-c +ipset +libip4tc +libevent2 +libevent2-openssl \ + +fping +libmosquitto +libuci + TITLE:=Apfree's wireless captive portal solution + URL:=http://www.kunteng.org +endef + +define Package/$(PKG_NAME)/description + The ApFree Wifidog project is a complete and embeddable captive + portal solution for wireless community groups or individuals + who wish to open a free Hotspot while still preventing abuse + of their Internet connection. + It's enhanced wifidog +endef + +define Package/$(PKG_NAME)/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/wifidog $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/wdctl $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libhttpd.so* $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) ./files/wdping $(1)/usr/sbin/ + $(INSTALL_DIR) $(1)/etc + $(INSTALL_DATA) $(PKG_BUILD_DIR)/wifidog-msg.html $(1)/etc/ + $(INSTALL_DATA) $(PKG_BUILD_DIR)/wifidog-redir.html $(1)/etc/ + $(INSTALL_DATA) $(PKG_BUILD_DIR)/wifidog-redir.html.front $(1)/etc/ + $(INSTALL_DATA) $(PKG_BUILD_DIR)/wifidog-redir.html.rear $(1)/etc/ + $(INSTALL_DATA) $(PKG_BUILD_DIR)/authserver-offline.html $(1)/etc/ + $(INSTALL_DATA) $(PKG_BUILD_DIR)/internet-offline.html $(1)/etc/ + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/wifidog.init $(1)/etc/init.d/wifidog + $(INSTALL_DIR) $(1)/etc/config + $(CP) ./files/wifidog.conf $(1)/etc/config/wifidog + $(CP) ./files/apfree.* $(1)/etc/ +endef + +$(eval $(call BuildPackage,$(PKG_NAME))) diff --git a/package/lean/apfree_wifidog/files/apfree.ca b/package/lean/apfree_wifidog/files/apfree.ca new file mode 100644 index 000000000..41a3c091e --- /dev/null +++ b/package/lean/apfree_wifidog/files/apfree.ca @@ -0,0 +1,23 @@ +-----BEGIN CERTIFICATE----- +MIIDvTCCAqWgAwIBAgIJAIw1/wUaVzVRMA0GCSqGSIb3DQEBCwUAMHUxCzAJBgNV +BAYTAkNOMQswCQYDVQQIDAJiajEUMBIGA1UECgwLa3VudGVuZy5vcmcxDDAKBgNV +BAsMA3ImZDEUMBIGA1UEAwwLbGl1ZGVuZ2ZlbmcxHzAdBgkqhkiG9w0BCQEWEGxp +dWRmMDcxNkBxcS5jb20wHhcNMTYxMTE3MDY0MTUyWhcNMjYxMTE1MDY0MTUyWjB1 +MQswCQYDVQQGEwJDTjELMAkGA1UECAwCYmoxFDASBgNVBAoMC2t1bnRlbmcub3Jn +MQwwCgYDVQQLDANyJmQxFDASBgNVBAMMC2xpdWRlbmdmZW5nMR8wHQYJKoZIhvcN +AQkBFhBsaXVkZjA3MTZAcXEuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEA6y4V4H0wwlXp3SUUsFe5rSfeH51JLW+zYMYZZA4W7kRib1VOe2CcWDxb +rAC+WXYJYcpIfvwis3KnIGhB85e4I0+WO10V/O3CIzJD2ScQbPFKLkJRgjf3uGr5 +iYYXlygO/MxAPFKgUuROXovFO/+j2ZDGdG1JdP67xVSWmmrgDvRTHK7/TWIuZkq6 +bMaUZtRrhIo+jJsPl2TqFPyCQiwTyEOfm1Cbb7xeIvUX/FMzHhFbJgNn2SlJ9s84 +PuSUGGGWmZF9g/yQSCfSUai8UNXPbiH9yWXvIsrwm8OFLOl+d5vit5KRKGgU2I2X +cbUTfMDoO38KqcO0QWmp1vGuhWb0CQIDAQABo1AwTjAdBgNVHQ4EFgQU18zkLjCQ +cwTZlUW9QqMZG+1bbW0wHwYDVR0jBBgwFoAU18zkLjCQcwTZlUW9QqMZG+1bbW0w +DAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAbJ/OzA+ZkWFJWD+nCYiS +7ElDSOcsV7EJ423OzxqvpGfuDIOmViaj+oMa4oqtwEUhga/gQT0JkXiNsezz3LCZ +3gcwSN3+ZNX1HN0REfUZ8l5ygRL+F1xMHBDWCkNCp/R/25GmzGy6bLXPcMWmqWPC +qbVEHsz/wfCWtgWwNuQFAL6xVSfse1qatJz9i9/zMOiLgiqVXpuoftcUcObCLai7 +X09I1Q0gxeFMSLs0K/zTdA6eIXxFId+bYVoc/twl/yS9f+SDT9pdXIt3AthqF5Om +oSMc++egkCmCUxYv99xk6YOgOzvwvf9EBbRgQ4Xxo5PZ2zb9te54awpFU0Byb5de +jA== +-----END CERTIFICATE----- diff --git a/package/lean/apfree_wifidog/files/apfree.crt b/package/lean/apfree_wifidog/files/apfree.crt new file mode 100644 index 000000000..dce42cec2 --- /dev/null +++ b/package/lean/apfree_wifidog/files/apfree.crt @@ -0,0 +1,82 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 10103261736457418066 (0x8c35ff051a573552) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C=CN, ST=bj, O=kunteng.org, OU=r&d, CN=liudengfeng/emailAddress=liudf0716@qq.com + Validity + Not Before: Nov 17 06:48:49 2016 GMT + Not After : Nov 17 06:48:49 2017 GMT + Subject: C=CN, ST=BJ, L=BJ, O=KUNTENG, OU=RD, CN=APFREE + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d4:9a:a1:2c:ee:37:14:60:87:24:ce:98:7d:b6: + 33:ab:4c:9c:fb:cf:c4:99:e5:20:4f:29:5f:59:9a: + 31:3b:1f:ae:65:9f:8e:3b:de:9f:02:09:b9:e3:44: + 1e:7c:e3:23:0c:d5:81:2d:6e:73:d1:e3:af:a8:5f: + ce:91:44:5a:e2:ef:cb:95:43:3f:b1:d7:3d:ee:f9: + a2:38:b8:3e:21:73:7e:93:ce:fd:41:77:ad:ad:09: + a3:96:03:ac:db:68:56:8a:93:e1:04:5c:94:11:b5: + 3d:55:3d:7e:f7:85:c4:48:20:d8:42:68:7a:6c:18: + 12:7b:d4:d0:f8:d4:27:fa:77:95:6b:19:cf:0e:37: + 3c:e5:44:56:b1:4b:e4:30:b1:7e:91:4e:9f:f5:c2: + ff:fe:6a:8b:9a:2e:de:bd:37:a4:de:5d:9a:d0:30: + 6e:ad:87:c9:b4:2a:57:81:6f:7e:44:e5:9e:a4:4c: + 9a:8e:4c:1c:57:6e:b0:c5:95:4b:dd:b0:00:45:e6: + d0:d4:52:99:c2:c6:71:d7:a5:03:ee:1b:05:fe:b3: + 6c:15:71:45:68:3a:60:b2:cc:e9:9d:8a:30:73:53: + 8c:75:7a:da:80:f6:74:3f:19:64:af:5f:ee:75:e2: + d3:63:8e:57:62:cc:28:54:2b:16:26:03:69:a8:6a: + 63:81 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: + CA:FALSE + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 4B:46:E7:5E:26:B0:87:DD:43:01:FE:21:6C:73:FD:8F:9B:DC:C6:1B + X509v3 Authority Key Identifier: + keyid:D7:CC:E4:2E:30:90:73:04:D9:95:45:BD:42:A3:19:1B:ED:5B:6D:6D + + Signature Algorithm: sha256WithRSAEncryption + 41:f6:ae:74:24:fe:f5:0d:3a:50:1c:60:0a:ba:6c:e0:7a:8c: + 44:11:83:b3:13:d5:1b:90:bb:e1:0a:de:a5:41:29:f6:7c:c0: + 27:f9:c5:89:2b:7f:0e:3f:20:09:0b:5a:66:ac:ef:90:8a:8f: + 05:ea:89:ac:26:4a:41:23:88:9a:f7:94:48:00:31:ca:2d:12: + 14:23:bc:7f:2c:ae:04:c1:87:35:8c:10:16:56:c0:95:ec:84: + 80:9e:91:fa:d5:47:c2:03:fe:86:5f:47:90:60:50:a8:33:e2: + 7d:7f:18:cb:ea:a8:05:d7:2d:6e:86:5f:3e:24:6f:c0:a3:22: + f6:8b:0b:29:8a:a0:b8:30:3d:33:e3:26:94:23:36:f3:45:ac: + 70:e7:a5:77:0f:01:65:ed:63:c7:0a:cf:5d:11:48:29:35:ca: + 5f:d2:5e:91:84:f9:69:dc:5e:64:70:44:0a:5a:a9:7c:a3:be: + 60:16:09:74:69:06:93:d7:05:51:20:7c:52:7a:65:fe:70:af: + c8:50:70:de:6d:83:88:14:cb:8b:67:0d:1c:8f:74:c0:a8:c9: + 1b:c2:1f:0b:f3:4f:01:cb:f8:96:c4:f1:b4:38:cf:c1:22:6c: + 82:e1:a9:2d:9d:77:a1:46:04:2c:26:17:43:e2:a9:b3:5b:db: + a3:c5:f1:46 +-----BEGIN CERTIFICATE----- +MIIDyjCCArKgAwIBAgIJAIw1/wUaVzVSMA0GCSqGSIb3DQEBCwUAMHUxCzAJBgNV +BAYTAkNOMQswCQYDVQQIDAJiajEUMBIGA1UECgwLa3VudGVuZy5vcmcxDDAKBgNV +BAsMA3ImZDEUMBIGA1UEAwwLbGl1ZGVuZ2ZlbmcxHzAdBgkqhkiG9w0BCQEWEGxp +dWRmMDcxNkBxcS5jb20wHhcNMTYxMTE3MDY0ODQ5WhcNMTcxMTE3MDY0ODQ5WjBX +MQswCQYDVQQGEwJDTjELMAkGA1UECAwCQkoxCzAJBgNVBAcMAkJKMRAwDgYDVQQK +DAdLVU5URU5HMQswCQYDVQQLDAJSRDEPMA0GA1UEAwwGQVBGUkVFMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1JqhLO43FGCHJM6YfbYzq0yc+8/EmeUg +TylfWZoxOx+uZZ+OO96fAgm540QefOMjDNWBLW5z0eOvqF/OkURa4u/LlUM/sdc9 +7vmiOLg+IXN+k879QXetrQmjlgOs22hWipPhBFyUEbU9VT1+94XESCDYQmh6bBgS +e9TQ+NQn+neVaxnPDjc85URWsUvkMLF+kU6f9cL//mqLmi7evTek3l2a0DBurYfJ +tCpXgW9+ROWepEyajkwcV26wxZVL3bAARebQ1FKZwsZx16UD7hsF/rNsFXFFaDpg +sszpnYowc1OMdXragPZ0Pxlkr1/udeLTY45XYswoVCsWJgNpqGpjgQIDAQABo3sw +eTAJBgNVHRMEAjAAMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRlZCBD +ZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUS0bnXiawh91DAf4hbHP9j5vcxhswHwYDVR0j +BBgwFoAU18zkLjCQcwTZlUW9QqMZG+1bbW0wDQYJKoZIhvcNAQELBQADggEBAEH2 +rnQk/vUNOlAcYAq6bOB6jEQRg7MT1RuQu+EK3qVBKfZ8wCf5xYkrfw4/IAkLWmas +75CKjwXqiawmSkEjiJr3lEgAMcotEhQjvH8srgTBhzWMEBZWwJXshICekfrVR8ID +/oZfR5BgUKgz4n1/GMvqqAXXLW6GXz4kb8CjIvaLCymKoLgwPTPjJpQjNvNFrHDn +pXcPAWXtY8cKz10RSCk1yl/SXpGE+WncXmRwRApaqXyjvmAWCXRpBpPXBVEgfFJ6 +Zf5wr8hQcN5tg4gUy4tnDRyPdMCoyRvCHwvzTwHL+JbE8bQ4z8EibILhqS2dd6FG +BCwmF0PiqbNb26PF8UY= +-----END CERTIFICATE----- diff --git a/package/lean/apfree_wifidog/files/apfree.key b/package/lean/apfree_wifidog/files/apfree.key new file mode 100644 index 000000000..87f80473a --- /dev/null +++ b/package/lean/apfree_wifidog/files/apfree.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpQIBAAKCAQEA1JqhLO43FGCHJM6YfbYzq0yc+8/EmeUgTylfWZoxOx+uZZ+O +O96fAgm540QefOMjDNWBLW5z0eOvqF/OkURa4u/LlUM/sdc97vmiOLg+IXN+k879 +QXetrQmjlgOs22hWipPhBFyUEbU9VT1+94XESCDYQmh6bBgSe9TQ+NQn+neVaxnP +Djc85URWsUvkMLF+kU6f9cL//mqLmi7evTek3l2a0DBurYfJtCpXgW9+ROWepEya +jkwcV26wxZVL3bAARebQ1FKZwsZx16UD7hsF/rNsFXFFaDpgsszpnYowc1OMdXra +gPZ0Pxlkr1/udeLTY45XYswoVCsWJgNpqGpjgQIDAQABAoIBAQCBJemQxKh63WRb +DJD/lKXwghq+sOip39DvpZ9Ba/RKCSXEn9ckMUkAUO41y1SF4uiQzEWrVnRO5PP4 +4TI3doGLZ8WQx4gyvSDnQYe00t8TLPiQS2X21f+PpNJVt6fSpKAlkE1Ze++KjkFS +vYeaTwz8D8+vD46GiVz5Ej9bWG1srQpauQoaweUWfqJMdBCg00g9jgNRoenQcs+1 +bD7BteMHnZH3FSeFfGVgz91Ne3FvAFAMmM/xoCoasARAG3qGh9AyDW+xfgVCYy8H +d8m9K4JYpevtOP8FNUNnu98LY4KSVTkgyV+7Roxuw8CCmUvDQDVNFbTcIyYBjz2s +nFDwIniRAoGBAPINrIPPbkKZfssmop8pn2uF/FH54pfs3YS01pu4Vaai8pkRWVL0 +7Vvf9RA+PJOp7TnZ+D+WMh6JqRK2tlPNRM9gVXvxZ6q68vskECLaejpJpGzSmkLs +1zok2fQoQCJkmrJGgdaTjORekThunBJC9B6U9O2J+NwYFebNq+dddRFtAoGBAODa +kpDHPoawI41cYsXXfiZAuWW4gQPtBbR2mdtjJefylWewRlFg5/ybmzfvyRyHKpUg +zL3TuWIROdPkeIQchL2dGyfXjpuc7lB0r+lE7aKv1DaZnKpOp95AU3yalp8qoz/p +fuE2RfItJG+TrFrSksYikTIfTWWhUjUw9lRYReHlAoGBAOrNpOoAUH8+kybShbJM +GB+fy9JhyxOBbKmNGxnXyQ5qx1cA41t7yLz1Fa76EJ1Vm5AhB5X3RwskkuRaZagJ +WZSpaINg/CU8UPSaWSTWNvdP9Laz3XzKb0Yx9VPJr90tJnuFtfHHFEd8DPdnJPL6 +DAGWkbnTu5sVqjlIjldT63pJAoGBAJI684h+W1aCpIxhYccijuLXwvq5VAY2ljg3 +zXWU9Gj1JV8Kj6CK8jQhCoAFTHhmGzZi32QwlmaFp2L7OblJRrZ9vtRZZmAjXgUq +7eA5uIXN7agYnH9RqfBrSyBE9OHMe+CrvJ1Ai5qk6wY5NqTWPyfmASFkpBQNJwZ6 +sihGRCRVAoGAaHHf1jjm3zYva/Z+KGb/e3l5zCVILW8yXQ9xeb4XanyCEAu2jBm6 +xRIRE+3M/S7UCEYFFpWGup96mIMmf+Ke48dl2Y6OW1wV14wK81RWtbo1EcGruINh +3kdY+7uf4QFhagz+E3cRlbDvvrG8eT3Om1/nVcfeCdknCq/dM/5aTfo= +-----END RSA PRIVATE KEY----- diff --git a/package/lean/apfree_wifidog/files/wdping b/package/lean/apfree_wifidog/files/wdping new file mode 100755 index 000000000..1174e1acc --- /dev/null +++ b/package/lean/apfree_wifidog/files/wdping @@ -0,0 +1,7 @@ +#!/bin/sh +IP=$1 +[ -x /usr/sbin/fping ] && { + fping -t 100 -c 1 $IP &> /dev/null && echo 1 || echo 0 +} || { + ping -w 1 -c 1 $IP &> /dev/null && echo 1 || echo 0 +} diff --git a/package/lean/apfree_wifidog/files/wifidog.conf b/package/lean/apfree_wifidog/files/wifidog.conf new file mode 100644 index 000000000..82850f975 --- /dev/null +++ b/package/lean/apfree_wifidog/files/wifidog.conf @@ -0,0 +1,17 @@ +config wifidog + option gateway_interface 'br-lan' + option auth_server_hostname 'entrance.kunteng.org' + option auth_server_port 80 + option auth_server_path '/wifidog/' + option check_interval 60 + option client_timeout 72000 + option httpd_max_conn 200 + option pool_mode 1 + option thread_number 5 + option queue_size 20 + option wired_passed 0 + +config mqtt 'mqtt' + option mqtt_hostname 'wifidog.kunteng.org' + option mqtt_port '8883' + option mqtt_topic '' diff --git a/package/lean/apfree_wifidog/files/wifidog.init b/package/lean/apfree_wifidog/files/wifidog.init new file mode 100644 index 000000000..d0be3cb04 --- /dev/null +++ b/package/lean/apfree_wifidog/files/wifidog.init @@ -0,0 +1,248 @@ +#!/bin/sh /etc/rc.common +# Copyright (C) 2006 OpenWrt.org +START=65 + +USE_PROCD=1 +PROG=/usr/bin/wifidog +CONFIGFILE=/tmp/wifidog.conf + +EXTRA_COMMANDS="status" +EXTRA_HELP=" status Print the status of the service" + +service_trigger() { + procd_add_reload_trigger "wifidog" +} + +echo_firewall_rule() { + echo " FirewallRule $1" +} + +prepare_mqtt_conf() { + local cfg=$1 + local serveraddr + local serverport + + config_get serveraddr "$cfg" "serveraddr" + config_get serverport "$cfg" "serverport" + [ -z "$serveraddr" -o -z "$serverport" ] && return 1 + + cat <<-EOF >>$CONFIGFILE + + MQTT { + ServerAddr $serveraddr + ServerPort $serverport + } +EOF + + sed -i -e '/^$/d' $CONFIGFILE +} + +prepare_wifidog_conf() { + local cfg=$1 + local enable + local gateway_id + local gateway_interface + local auth_server_hostname + local auth_server_http_port + local auth_server_path + local auth_server_path_login + local auth_server_path_portal + local auth_server_path_msg + local auth_server_path_ping + local auth_server_path_auth + local delta_traffic + local check_interval + local client_timeout + local httpd_max_conn + local trusted_domains + local js_filter + local trusted_maclist + local untrusted_maclist + local pool_mode + local thread_number + local queue_size + local wired_passed + local trusted_iplist + local trusted_pan_domains + local proxy_port + local no_auth + local apple_cna + local update_domain_interval + local dns_timeout + + [ -f $CONFIGFILE ] && rm $CONFIGFILE + + config_get enable "$cfg" "enable" 1 + [ $enable = "1" ] || return + + local default_gateway_id=`ifconfig br-lan|grep HWaddr|awk '{print $5}'|sed s/://g` + + local external_interface=`uci show network.wan.ifname|cut -d'=' -f 2|sed -e "s/'//g"` + + config_get gateway_id "$cfg" "gateway_id" $default_gateway_id + config_get gateway_interface "$cfg" "gateway_interface" "br-lan" + config_get auth_server_hostname "$cfg" "auth_server_hostname" + config_get auth_server_port "$cfg" "auth_server_port" "80" + config_get auth_server_path "$cfg" "auth_server_path" "/wifidog/" + config_get auth_server_path_login "$cfg" "auth_server_path_login" + config_get auth_server_path_portal "$cfg" "auth_server_path_portal" + config_get auth_server_path_msg "$cfg" "auth_server_path_msg" + config_get auth_server_path_ping "$cfg" "auth_server_path_ping" + config_get auth_server_path_auth "$cfg" "auth_server_path_auth" + config_get delta_traffic "$cfg" "delta_traffic" + config_get check_interval "$cfg" "check_interval" "60" + config_get js_filter "$cfg" "js_filter" 1 + config_get client_timeout "$cfg" "client_timeout" "5" + config_get httpd_max_conn "$cfg" "httpd_max_conn" "200" + config_get trusted_domains "$cfg" "trusted_domains" + config_get trusted_maclist "$cfg" "trusted_maclist" + config_get untrusted_maclist "$cfg" "untrusted_maclist" + config_get pool_mode "$cfg" "pool_mode" 0 + config_get thread_number "$cfg" "thread_number" 20 + config_get queue_size "$cfg" "queue_size" 200 + config_get wired_passed "$cfg" "wired_passed" 1 + config_get trusted_iplist "$cfg" "trusted_iplist" + config_get trusted_pan_domains "$cfg" "trusted_pan_domains" + config_get proxy_port "$cfg" "proxy_port" + config_get no_auth "$cfg" "no_auth" + config_get apple_cna "$cfg" "bypass_apple_cna" + config_get update_domain_interval "$cfg" "update_domain_interval" + config_get dns_timeout "$cfg" "dns_timeout" + + local set_auth_server_path_login=`[ -n "$auth_server_path_login" ] && echo " LoginScriptPathFragment $auth_server_path_login"` + local set_auth_server_path_portal=`[ -n "$auth_server_path_portal" ] && echo " PortalScriptPathFragment $auth_server_path_portal"` + local set_auth_server_path_msg=`[ -n "$auth_server_path_msg" ] && echo " MsgScriptPathFragment $auth_server_path_msg"` + local set_auth_server_path_ping=`[ -n "$auth_server_path_ping" ] && echo " PingScriptPathFragment $auth_server_path_ping"` + local set_auth_server_path_auth=`[ -n "$auth_server_path_auth" ] && echo " AuthScriptPathFragment $auth_server_path_auth"` + local set_delta_traffic=`[ -n "$delta_traffic" ] && echo "DeltaTraffic $delta_traffic"` + local set_trusted_maclist=`[ -n "$trusted_maclist" ] && echo "TrustedMACList $trusted_maclist"` + local set_untrusted_maclist=`[ -n "$untrusted_maclist" ] && echo "UntrustedMACList $untrusted_maclist"` + local set_trusted_domains=`[ -n "$trusted_domains" ] && echo "TrustedDomains $trusted_domains"` + local set_trusted_iplist=`[ -n "$trusted_iplist" ] && echo "TrustedIpList $trusted_iplist"` + local set_trusted_pan_domains=`[ -n "$trusted_pan_domains" ] && echo "TrustedPanDomains" $trusted_pan_domains` + local set_proxy_port=`[ -n "$proxy_port" ] && echo "Proxyport" $proxy_port` + local set_no_auth=`[ -n "$no_auth" ] && echo "NoAuth" $no_auth` + local set_firewall_rule_global=`config_list_foreach "$cfg" "firewall_rule_global" echo_firewall_rule` + local set_firewall_rule_validating_users=`config_list_foreach "$cfg" "firewall_rule_validating_users" echo_firewall_rule` + local set_firewall_rule_known_users=`config_list_foreach "$cfg" "firewall_rule_known_users" echo_firewall_rule` + local set_firewall_rule_auth_is_down=`config_list_foreach "$cfg" "firewall_rule_auth_is_down" echo_firewall_rule` + local set_firewall_rule_unknown_users=`config_list_foreach "$cfg" "firewall_rule_unknown_users" echo_firewall_rule` + local set_firewall_rule_locked_users=`config_list_foreach "$cfg" "firewall_rule_locked_users" echo_firewall_rule` + local set_apple_cna=`[ -n "$apple_cna" ] && echo "BypassAppleCNA" $apple_cna` + local set_update_domain_interval=`[ -n "$update_domain_interval" ] && echo "UpdateDomainInterval" $update_domain_interval` + local set_dns_timeout=`[ -n "$dns_timeout" ] && echo "DNSTimeout" $dns_timeout` + + cat <<-EOF >$CONFIGFILE + GatewayID $gateway_id + GatewayInterface $gateway_interface + Externalinterface $external_interface + + AuthServer { + Hostname $auth_server_hostname + HTTPPort $auth_server_port + Path $auth_server_path + $set_auth_server_path_login + $set_auth_server_path_portal + $set_auth_server_path_msg + $set_auth_server_path_ping + $set_auth_server_path_auth + } + + $set_delta_traffic + CheckInterval $check_interval + ClientTimeout $client_timeout + JsFilter $js_filter + WiredPassed $wired_passed + + HTTPDMaxConn $httpd_max_conn + + PoolMode $pool_mode + ThreadNumber $thread_number + QueueSize $queue_size + + $set_trusted_domains + + $set_untrusted_maclist + + $set_trusted_maclist + + $set_trusted_iplist + + $set_trusted_pan_domains + + $set_proxy_port + + $set_no_auth + + $set_apple_cna + + $set_update_domain_interval + + $set_dns_timeout + + FirewallRuleSet global { + $set_firewall_rule_global + } + + FirewallRuleSet validating-users { + $set_firewall_rule_validating_users + FirewallRule allow to 0.0.0.0/0 + } + + FirewallRuleSet known-users { + $set_firewall_rule_known_users + FirewallRule allow to 0.0.0.0/0 + } + + FirewallRuleSet auth-is-down { + $set_firewall_rule_auth_is_down + } + + FirewallRuleSet unknown-users { + $set_firewall_rule_unknown_users + FirewallRule allow udp port 53 + FirewallRule allow tcp port 53 + FirewallRule allow udp port 67 + FirewallRule allow tcp port 67 + } + + FirewallRuleSet locked-users { + $set_firewall_rule_locked_users + FirewallRule block to 0.0.0.0/0 + } +EOF +} + +init_config() { + config_load wifidog + config_foreach prepare_wifidog_conf wifidog + + [ ! -f $CONFIGFILE ] && { + echo "no wifidog.conf, exit....." + stop + exit + } + + config_foreach prepare_mqtt_conf mqtt +} + +start_service() { + init_config + + procd_open_instance + # -s: log to syslog + # -f: run in foreground + procd_set_param command $PROG -c $CONFIGFILE -f -d 0 + procd_set_param respawn # respawn automatically if something died + procd_set_param file $CONFIGFILE + procd_close_instance +} + +reload_service() { + rc_procd start_service "$@" + return 0 +} + +status() { + /usr/bin/wdctl status +} diff --git a/package/lean/default-settings/i18n/default.zh-cn.po b/package/lean/default-settings/i18n/default.zh-cn.po index 0597e5af5..d8e897e02 100644 --- a/package/lean/default-settings/i18n/default.zh-cn.po +++ b/package/lean/default-settings/i18n/default.zh-cn.po @@ -7,4 +7,23 @@ msgstr "架构" msgid "CPU Temperature" msgstr "CPU温度" +msgid "CPU Info" +msgstr "CPU信息" +msgid "CPU frequency" +msgstr "CPU频率" + +msgid "RAM frequency" +msgstr "RAM频率" + +msgid "Flash Size" +msgstr "闪存" + +msgid "Free Memory" +msgstr "释放内存" + +msgid "Core" +msgstr "核心数" + +msgid "Thread" +msgstr "线程数" \ No newline at end of file diff --git a/package/lean/luci-app-apfree_wifidog/Makefile b/package/lean/luci-app-apfree_wifidog/Makefile new file mode 100644 index 000000000..e91830477 --- /dev/null +++ b/package/lean/luci-app-apfree_wifidog/Makefile @@ -0,0 +1,14 @@ +# +# Copyright (C) 2008-2014 The LuCI Team +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI support for ApFree WifiDog +LUCI_PKGARCH:=all + +include $(TOPDIR)/feeds/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/package/lean/luci-app-apfree_wifidog/luasrc/controller/apfree_wifidog.lua b/package/lean/luci-app-apfree_wifidog/luasrc/controller/apfree_wifidog.lua new file mode 100644 index 000000000..4a7ef7a27 --- /dev/null +++ b/package/lean/luci-app-apfree_wifidog/luasrc/controller/apfree_wifidog.lua @@ -0,0 +1,64 @@ +-- Copyright (C) 2016 zhangzf@kunteng.org +-- Licensed to the public under the GNU General Public License v3. + +module("luci.controller.apfree_wifidog", package.seeall) + +function index() + entry({"admin", "services", "apfreeWifiDog"}, cbi("apfree_wifidog"), _("WifiDog"), 40).index = true + entry({"admin", "services", "apfreeWifiDog", "getClientList"}, call("getClientList")) +end + +function getClientList() + local RespDate = {} + local RespCode = 0 + local HostName, IPAddr, MacAddr, Download, Upload, LoginTime + + local WdctlCMD = "wdctl status | grep -e '^ ' | sed -r 's/^ +//' 2>/dev/null" + + local UpTime = luci.util.exec("wdctl status | grep Uptime | cut -d ' ' -f 2-6") + if UpTime == "" then + RespCode = 1 + else + local function initDate() + HostName = "unknow" + IPAddr = "" + MacAddr = "" + Download = 0 + Upload = 0 + LoginTime = "0" + end + + local ClientList = {} + for _, Line in pairs(luci.util.execl(WdctlCMD)) do + if Line:match('^(IP:)') == "IP:" then + IPAddr, MacAddr = Line:match('^IP: (%S+) MAC: (%S+)') + elseif Line:match('^(First Login:)') == "First Login:" then + LoginTime = Line:match('^First Login: (%d+)') + elseif Line:match('^(Name:)') == "Name:" then + HostName = Line:match('^Name: (%S+)') + elseif Line:match('^(Downloaded:)') == "Downloaded:" then + Download = Line:match('^Downloaded: (%d+)') + elseif Line:match('^(Uploaded:)') == "Uploaded:" then + Upload = Line:match('^Uploaded: (%d+)') + + table.insert(ClientList, { + ['hostname'] = HostName, + ['ipaddr'] = IPAddr, + ['macaddr'] = MacAddr, + ['download'] = Download, + ['upload'] = Upload, + ['logintime'] = os.difftime(os.time(), tonumber(LoginTime) or 0), + }) + + initDate() + end + end + + RespDate["clients"] = ClientList + RespDate["uptime"] = UpTime + end + + RespDate["code"] = RespCode + luci.http.prepare_content("application/json") + luci.http.write_json(RespDate) +end \ No newline at end of file diff --git a/package/lean/luci-app-apfree_wifidog/luasrc/model/cbi/apfree_wifidog.lua b/package/lean/luci-app-apfree_wifidog/luasrc/model/cbi/apfree_wifidog.lua new file mode 100644 index 000000000..506cd8498 --- /dev/null +++ b/package/lean/luci-app-apfree_wifidog/luasrc/model/cbi/apfree_wifidog.lua @@ -0,0 +1,101 @@ +-- Copyright (C) 2016 zhangzf@kunteng.org +-- Licensed to the public under the GNU General Public License v3. + +local sys = require "luci.sys" +local opkg = require "luci.model.ipkg" + +local packageName = "wifidog" +local m, s, o + +local function get_status() + if luci.sys.call("pidof %s >/dev/null" %{packageName}) == 0 then + local UpTime = luci.util.exec("wdctl status | grep Uptime | cut -d ' ' -f 2-6") + local StatusUrl = "http://" .. luci.http.getenv('SERVER_NAME') .. ":2060/wifidog/status" + + return translate("已运行 " .. UpTime .."") -- .." 查看更多") + else + return translate("WifiDog 程序未启动") + end +end + +if opkg.status(packageName)[packageName] then + return Map(packageName, translate("ApFree_WifiDog"), translate('Wifidog is not installed..')) +end + +m = Map("wifidog", translate("ApFree_WifiDog"), translate("ApFree WiFiDog" .. + "在完全兼容原版WiFiDog的基础上,在功能、性能和稳定性方面做了大量工作、改进及优化," .. + "目前在坤腾固件中广泛使用,使用ApFree WiFidog的在线路由器数量达到1万多台且还在继续增长..." )) + +s = m:section(TypedSection, "wifidog", translate("运行状态"), get_status()) +s.anonymous = true + +s = m:section(TypedSection, "wifidog", translate("程序配置")) +s.anonymous = true +s.addremove = false + +s:tab("general", translate("基本设置")) +s:tab("policy", translate("访问控制")) +s:tab("advanced", translate("高级设置")) + +-- 基本设置 +Enable = s:taboption("general", Flag, "enable", translate("启用"),translate("打开或关闭认证")) +Enable.rmempty = false +Enable.default = "1" + +GatewayID = s:taboption("general",Value, "gateway_id", translate("设备 ID"), translate("默认为设备MAC地址")) +GatewayID.placeholder = luci.util.exec("ifconfig br-lan| grep HWaddr | awk -F \" \" '{print $5}' | awk '$1~//{print;exit}' | sed 's/://g'") + +s:taboption("general", Value, "auth_server_hostname", translate("认证服务器"), translate("认证服务器地址, 可填写域名或IP")) + +ServerPort = s:taboption("general", Value, "auth_server_port", translate("服务器端口"), translate("认证服务器HTTP服务端口")) +ServerPort.datatype = "port" + +s:taboption("general", Value, "auth_server_path", translate("服务器路径"), translate("服务端WEB目录,必须以'/'结尾,列'/wifidog/'")) + +-- 高级设置 +WiredPass = s:taboption("advanced", Flag, "wired_passed", translate("有线免认证"), translate("仅 KunTeng 固件支持")) +WiredPass.rmempty = false + +PoolMode = s:taboption("advanced",Flag, "pool_mode", translate("线程池模式"),translate("是否开启线程池")) +PoolMode.rmempty = false + +ThreadNumber = s:taboption("advanced", Value, "thread_number", translate("线程数"), translate("设置线程池中的最大线程数")) +ThreadNumber.datatype = "uinteger" +ThreadNumber:depends("pool_mode", "1") +ThreadNumber.default = "5" + +QueueSize = s:taboption("advanced", Value, "queue_size", translate("队列大小"), translate("线程池的任务队列长度")) +QueueSizedatatype = "uinteger" +QueueSize:depends("pool_mode", "1") +QueueSize.default = "20" + +GatewayInterface = s:taboption("advanced", Value, "gateway_interface", translate("内网接口"), translate("指定开启portal认证的网络接口,默认'br-lan'")) +GatewayInterface.default = "br-lan" +for _, e in ipairs(sys.net.devices()) do + if e ~= "lo" then GatewayInterface:value(e) end +end + +CheckInterval = s:taboption("advanced", Value, "check_interval", translate("检查间隔"), translate("接入客户端在线检测间隔,默认60秒")) +CheckInterval.datatype = "uinteger" +CheckInterval.default = "60" + +ClientTimeout = s:taboption("advanced", Value, "client_timeout", translate("超时时间"), translate("客户离线后在此时间段内重新连接不需要再次认证,默认5分")) +ClientTimeout.datatype = "uinteger" +ClientTimeout.default = "5" + +MaxConnections = s:taboption("advanced", Value, "httpd_max_conn", translate("最大接入用户数"), translate("最大可同时在线的用户数")) +MaxConnections.datatype = "uinteger" +MaxConnections.default = "200" + +-- 访问控制 +s:taboption("policy", Value, "trusted_domains", translate("域名白名单"), translate("不用通过认证既可访问的网址,不含\"http://\", 多个URL请用 ,号隔开")) + +s:taboption("policy", Value, "trusted_iplist", translate("IP白名单"), translate("不用通过认证既可连接的ip, 多个地址请用 ,号隔开")) + +s:taboption("policy", Value, "trusted_maclist", translate("MAC白名单"), translate("非强制认证的用户MAC,多个MAC请用 ,号隔开")) + +s:taboption("policy", Value, "untrusted_maclist", translate("MAC黑名单"), translate("禁止访问网络的MAC,多个MAC请用 ,号隔开")) + +m:section(SimpleSection).template = "apfree_wifidog/client_list" + +return m \ No newline at end of file diff --git a/package/lean/luci-app-apfree_wifidog/luasrc/view/apfree_wifidog/client_list.htm b/package/lean/luci-app-apfree_wifidog/luasrc/view/apfree_wifidog/client_list.htm new file mode 100644 index 000000000..c4de2f06e --- /dev/null +++ b/package/lean/luci-app-apfree_wifidog/luasrc/view/apfree_wifidog/client_list.htm @@ -0,0 +1,83 @@ + + +
+ <%:已认证客户端%> + + + + + + + + + + + + +
<%:主机名%><%:IP 地址%><%:MAC 地址%><%:上传%><%:下载%><%:在线时长%>

<%:Collecting data...%>
+
diff --git a/package/lean/luci-app-apfree_wifidog/root/etc/uci-defaults/90_luci_wifidog b/package/lean/luci-app-apfree_wifidog/root/etc/uci-defaults/90_luci_wifidog new file mode 100755 index 000000000..3541117e3 --- /dev/null +++ b/package/lean/luci-app-apfree_wifidog/root/etc/uci-defaults/90_luci_wifidog @@ -0,0 +1,11 @@ +#!/bin/sh + +uci -q batch <<-EOF >/dev/null + delete ucitrack.@wifidog[-1] + add ucitrack wifidog + set ucitrack.@wifidog[-1].init=wifidog + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 \ No newline at end of file diff --git a/package/libs/libevent2/Makefile b/package/libs/libevent2/Makefile index 99034bb22..2107870b9 100644 --- a/package/libs/libevent2/Makefile +++ b/package/libs/libevent2/Makefile @@ -8,14 +8,15 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libevent2 -PKG_VERSION:=2.0.22 +PKG_VERSION:=2.1.8 PKG_RELEASE:=1 -PKG_BUILD_DIR:=$(BUILD_DIR)/libevent-$(PKG_VERSION)-stable +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL=https://github.com/libevent/libevent.git +PKG_SOURCE_VERSION:=release-2.1.8-stable +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=libevent-$(PKG_VERSION)-stable.tar.gz -PKG_SOURCE_URL:=@SF/levent -PKG_HASH:=71c2c49f0adadacfdbe6332a372c38cf9c8b7895bb73dabeaa53cdcc1d4e1fa3 -PKG_MAINTAINER:=Jo-Philipp Wich +PKG_MAINTAINER:=Dengfeng Liu PKG_LICENSE:=BSD-3-Clause PKG_FIXUP:=autoreconf @@ -29,6 +30,7 @@ define Package/libevent2/Default CATEGORY:=Libraries TITLE:=Event notification URL:=http://www.monkey.org/~provos/libevent/ + DEPENDS+=+libopenssl endef define Package/libevent2/Default/description @@ -82,7 +84,6 @@ endef define Package/libevent2-openssl $(call Package/libevent2/Default) TITLE+= OpenSSL library (version 2.0) - DEPENDS+=+libopenssl endef define Package/libevent2-openssl/description @@ -120,34 +121,34 @@ define Build/InstallDev $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/ $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent*.{la,a,so} $(1)/usr/lib/ - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent*-2.0.so* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent*-2.1.so* $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libevent*.pc $(1)/usr/lib/pkgconfig/ endef define Package/libevent2/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent-2.0.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent-2.1.so.* $(1)/usr/lib/ endef define Package/libevent2-core/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_core-2.0.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_core-2.1.so.* $(1)/usr/lib/ endef define Package/libevent2-extra/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_extra-2.0.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_extra-2.1.so.* $(1)/usr/lib/ endef define Package/libevent2-openssl/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_openssl-2.0.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_openssl-2.1.so.* $(1)/usr/lib/ endef define Package/libevent2-pthreads/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_pthreads-2.0.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libevent_pthreads-2.1.so.* $(1)/usr/lib/ endef $(eval $(call BuildPackage,libevent2)) diff --git a/target/linux/ar71xx/image/tp-link.mk b/target/linux/ar71xx/image/tp-link.mk index 74540b92a..7f3c0198f 100644 --- a/target/linux/ar71xx/image/tp-link.mk +++ b/target/linux/ar71xx/image/tp-link.mk @@ -746,7 +746,7 @@ define Device/tl-wr710n-v2.1 endef define Device/tl-wr720n-v3 - $(Device/tplink-8mlzma) + $(Device/tplink-16mlzma) DEVICE_TITLE := TP-LINK TL-WR720N v3 DEVICE_PACKAGES := kmod-usb-core kmod-usb2 BOARDNAME := TL-WR720N-v3 @@ -976,7 +976,7 @@ define Device/tl-wr842n-v1 endef define Device/tl-wr842n-v2 - $(Device/tplink-8mlzma) + $(Device/tplink-16mlzma) DEVICE_TITLE := TP-LINK TL-WR842N/ND v2 DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-usb-ledtrig-usbport BOARDNAME := TL-WR842N-v2 From ed4d9a2aee6171b41113e1730f547c5fac390371 Mon Sep 17 00:00:00 2001 From: aooom Date: Thu, 12 Oct 2017 15:31:23 +0800 Subject: [PATCH 2/7] fix double flash display error --- package/base-files/files/bin/inform | 47 ------------------- package/base-files/files/etc/init.d/boot | 3 +- .../default-settings/i18n/default.zh-cn.po | 8 +++- 3 files changed, 8 insertions(+), 50 deletions(-) delete mode 100644 package/base-files/files/bin/inform diff --git a/package/base-files/files/bin/inform b/package/base-files/files/bin/inform deleted file mode 100644 index bca4fac45..000000000 --- a/package/base-files/files/bin/inform +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh - -dmesg >/tmp/log/mesg && rm /tmp/log/inform - -a1=`cat /proc/cpuinfo|grep -i -E 'cpu.*clock'|awk -F: '{print $2/1}'` -a2=`grep Clock /tmp/log/mesg|sed 's/^.*CPU//g'|sed 's/DDR.*//g'|awk -F'[:M]' '{print $2/1}'` - -if [ ! $a1 > '0' ]; then - if [ ! $a2 > '0' ]; then - echo unknown >> /tmp/log/inform - else - echo $a2 >> /tmp/log/inform - fi -else - echo $a1 >> /tmp/log/inform -fi - - -b1=`grep 'DDR:' /tmp/log/mesg|sed 's/^.*DDR//g'|sed 's/AHB.*//g'|awk -F '[:.]' '{print $2/1}'` -b2=`grep memory.*@ /tmp/log/mesg|awk -F '[:@]' '{print $2/10000}'` - -if [ ! $b1 > '0' ]; then - if [ ! $b2 > '0' ]; then - echo unknown >> /tmp/log/inform - else - echo $b2 >> /tmp/log/inform - fi -else - echo $b1 >> /tmp/log/inform -fi - - -c1=`cat /proc/cpuinfo |grep -i Flash /proc/cpuinfo | awk '{print $3/1}'` -c2=`grep -i Kbyte /tmp/log/mesg|cut -d '(' -f2|awk '{print $1/1024}'` - -if [ ! $c1 > '0' ]; then - if [ ! $c2 > '0' ]; then - echo unknown >> /tmp/log/inform - else - echo $c2 >> /tmp/log/inform - fi -else - echo $c1 >> /tmp/log/inform -fi - -rm /tmp/log/mesg && cat /tmp/log/inform - diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot index d69fbc163..31f245ffc 100755 --- a/package/base-files/files/etc/init.d/boot +++ b/package/base-files/files/etc/init.d/boot @@ -45,8 +45,7 @@ boot() { /bin/config_generate uci_apply_defaults - /bin/inform - + # temporary hack until configd exists /sbin/reload_config } diff --git a/package/lean/default-settings/i18n/default.zh-cn.po b/package/lean/default-settings/i18n/default.zh-cn.po index d8e897e02..e12688fca 100644 --- a/package/lean/default-settings/i18n/default.zh-cn.po +++ b/package/lean/default-settings/i18n/default.zh-cn.po @@ -7,6 +7,9 @@ msgstr "架构" msgid "CPU Temperature" msgstr "CPU温度" +msgid "CPU Model" +msgstr "处理器型号" + msgid "CPU Info" msgstr "CPU信息" @@ -22,8 +25,11 @@ msgstr "闪存" msgid "Free Memory" msgstr "释放内存" +msgid "ShadowsocksR Pro" +msgstr "虾都缩壳" + msgid "Core" msgstr "核心数" msgid "Thread" -msgstr "线程数" \ No newline at end of file +msgstr "线程数" From 1c0ea0853c889ee7898534bba596aebeecccb023 Mon Sep 17 00:00:00 2001 From: aooom Date: Thu, 2 Nov 2017 23:13:25 +0800 Subject: [PATCH 3/7] mac80211.sh fix --- package/kernel/mac80211/files/lib/wifi/mac80211.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/package/kernel/mac80211/files/lib/wifi/mac80211.sh b/package/kernel/mac80211/files/lib/wifi/mac80211.sh index b6853cf02..2d970a2b3 100644 --- a/package/kernel/mac80211/files/lib/wifi/mac80211.sh +++ b/package/kernel/mac80211/files/lib/wifi/mac80211.sh @@ -92,7 +92,6 @@ detect_mac80211() { htmode="VHT80" } - [ -n "$htmode" ] && ht_capab="set wireless.radio${devidx}.htmode=$htmode" if [ -x /usr/bin/readlink -a -h /sys/class/ieee80211/${dev} ]; then @@ -100,7 +99,6 @@ detect_mac80211() { else path="" fi - if [ -n "$path" ]; then path="${path##/sys/devices/}" case "$path" in @@ -127,12 +125,8 @@ detect_mac80211() { set wireless.radio${devidx}.hwmode=11${mode_band} ${dev_id} ${ht_capab} -<<<<<<< HEAD set wireless.radio${devidx}.noscan=1 -======= set wireless.radio${devidx}.disabled=0 ->>>>>>> upstream/master - set wireless.default_radio${devidx}=wifi-iface set wireless.default_radio${devidx}.device=radio${devidx} set wireless.default_radio${devidx}.network=lan From 56897edf2b5dfed0ac805695bba6f3d80556e716 Mon Sep 17 00:00:00 2001 From: aooom Date: Thu, 2 Nov 2017 23:34:32 +0800 Subject: [PATCH 4/7] merge tp-link.mk --- target/linux/ar71xx/image/tp-link.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/target/linux/ar71xx/image/tp-link.mk b/target/linux/ar71xx/image/tp-link.mk index d0a0b3303..574438c1d 100644 --- a/target/linux/ar71xx/image/tp-link.mk +++ b/target/linux/ar71xx/image/tp-link.mk @@ -760,7 +760,7 @@ define Device/tl-wr710n-v2.1 endef define Device/tl-wr720n-v3 - $(Device/tplink-16mlzma) + $(Device/tplink-8mlzma) DEVICE_TITLE := TP-LINK TL-WR720N v3 DEVICE_PACKAGES := kmod-usb-core kmod-usb2 BOARDNAME := TL-WR720N-v3 @@ -990,7 +990,7 @@ define Device/tl-wr842n-v1 endef define Device/tl-wr842n-v2 - $(Device/tplink-16mlzma) + $(Device/tplink-8mlzma) DEVICE_TITLE := TP-LINK TL-WR842N/ND v2 DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-usb-ledtrig-usbport BOARDNAME := TL-WR842N-v2 @@ -1117,4 +1117,4 @@ define Device/tl-wr942n-v1 MTDPARTS := spi0.0:128k(u-boot)ro,1344k(kernel),13120k(rootfs),64k(product-info)ro,64k(partition-table)ro,256k(oem-config)ro,1344k(oem-vars)ro,64k(ART)ro,14464k@0x20000(firmware) SUPPORTED_DEVICES := tl-wr942n-v1 endef -TARGET_DEVICES += tl-wr940n-v4 tl-wr941nd-v2 tl-wr941nd-v3 tl-wr941nd-v4 tl-wr941nd-v5 tl-wr941nd-v6 tl-wr941nd-v6-cn +TARGET_DEVICES += tl-wr940n-v4 tl-wr941nd-v2 tl-wr941nd-v3 tl-wr941nd-v4 tl-wr941nd-v5 tl-wr941nd-v6 tl-wr941nd-v6-cn \ No newline at end of file From a77e38387242caaccd3107fa3b151370b928ccff Mon Sep 17 00:00:00 2001 From: aooom <31819771+aooom@users.noreply.github.com> Date: Mon, 9 Apr 2018 15:05:11 +0800 Subject: [PATCH 5/7] Delete AR71XX.config git push fault --- AR71XX.config | 5198 ------------------------------------------------- 1 file changed, 5198 deletions(-) delete mode 100644 AR71XX.config diff --git a/AR71XX.config b/AR71XX.config deleted file mode 100644 index 76ca8cfc9..000000000 --- a/AR71XX.config +++ /dev/null @@ -1,5198 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# LEDE Configuration -# -CONFIG_MODULES=y -CONFIG_HAVE_DOT_CONFIG=y -# CONFIG_TARGET_sunxi is not set -# CONFIG_TARGET_apm821xx is not set -# CONFIG_TARGET_ath25 is not set -CONFIG_TARGET_ar71xx=y -# CONFIG_TARGET_at91 is not set -# CONFIG_TARGET_brcm2708 is not set -# CONFIG_TARGET_bcm53xx is not set -# CONFIG_TARGET_brcm47xx is not set -# CONFIG_TARGET_brcm63xx is not set -# CONFIG_TARGET_cns3xxx is not set -# CONFIG_TARGET_octeon is not set -# CONFIG_TARGET_gemini is not set -# CONFIG_TARGET_mpc85xx is not set -# CONFIG_TARGET_imx6 is not set -# CONFIG_TARGET_mxs is not set -# CONFIG_TARGET_adm8668 is not set -# CONFIG_TARGET_adm5120 is not set -# CONFIG_TARGET_xburst is not set -# CONFIG_TARGET_ixp4xx is not set -# CONFIG_TARGET_lantiq is not set -# CONFIG_TARGET_malta is not set -# CONFIG_TARGET_pistachio is not set -# CONFIG_TARGET_mvebu is not set -# CONFIG_TARGET_kirkwood is not set -# CONFIG_TARGET_mediatek is not set -# CONFIG_TARGET_ramips is not set -# CONFIG_TARGET_rb532 is not set -# CONFIG_TARGET_mcs814x is not set -# CONFIG_TARGET_layerscape is not set -# CONFIG_TARGET_oxnas is not set -# CONFIG_TARGET_armvirt is not set -# CONFIG_TARGET_ipq806x is not set -# CONFIG_TARGET_au1000 is not set -# CONFIG_TARGET_arc770 is not set -# CONFIG_TARGET_archs38 is not set -# CONFIG_TARGET_ar7 is not set -# CONFIG_TARGET_omap is not set -# CONFIG_TARGET_uml is not set -# CONFIG_TARGET_zynq is not set -# CONFIG_TARGET_x86 is not set -CONFIG_TARGET_ar71xx_generic=y -# CONFIG_TARGET_ar71xx_nand is not set -# CONFIG_TARGET_ar71xx_mikrotik is not set -# CONFIG_TARGET_MULTI_PROFILE is not set -# CONFIG_TARGET_ar71xx_generic_Default is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_carambola2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_lima is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALFAAP120C is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ap121f is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALFAAP96 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_HORNETUB is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_HORNETUBx2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALFANX is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TUBE2H16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TUBE2H8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_fritz300e is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_sc1750 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_sc300m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_sc450 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_c-55 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALL0258N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALL0305 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALL0315N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_antminer-s1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_antminer-s3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_antrouter-r1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_arduino-yun is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP121_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP121_8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP132 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP135 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP136_010 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP136_020 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP96 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DB120 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_PB42 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_PB44 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_A02RBW300N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_BXU2000N2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_F9K1115V2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_bhr-4grv2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WHRG301N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WHRHPG300N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WHRHPGN is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WLAEAG300N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZR450HP2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZR600DHP is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZRHPAG300H is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZRHPG300NH is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZRHPG300NH2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZRHPG450H is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e316n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e320n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e355ac is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e380ac-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e380ac-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e520n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e530n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WP543_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WP543_4M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WP543_8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WPE72_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WPE72_4M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WPE72_8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj342 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj344 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj531 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj558 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj563 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dap-2695-a1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DGL5500A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DHP1565A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR505A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR600A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR601A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR601B1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615C1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615E1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615E4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615I1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615I3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR825B1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR825C1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR835A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dir-869-a1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_EBR2310C1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dragino2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_el-m150 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_el-mini is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ew-dorin is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ew-dorin-router is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_EAP300V2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ens202ext is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_EPG5000 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ESR1750 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ESR900 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_FR54RTR is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-inet-6408A-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-inet-6416A-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-domino is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-ar150 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-ar300 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-ar300m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-mifi is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-usb150 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_minibox-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_oolite is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_hiwifi-hc6361 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WRT160NL is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WRT400N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mr12 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mr16 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mc-mac1200r is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mw4530r-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_smart-300 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNDAP360 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndr3700 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndr3700v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndr3800 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndr3800ch is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndrmac is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndrmacv2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_REALWNR1000V2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR1000V2_VC is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR2000 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR2000V3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR2000V4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR2200 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_REALWNR612V2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WPN824N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_omy-g1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_omy-x1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_N150R is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_onion-omega is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_som9331 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_A60 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MR1750 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MR600 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MR900 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_OM2P is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_OM5PAC is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_OM5P is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe505n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_r602n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_pqi-air-pen is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MZKW04NU is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MZKW300NH is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cap324 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cap324-nocloud is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cr3000-nocloud is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cr3000 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cr5000-nocloud is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cr5000 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DLRTDEV01 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_qihoo-c301 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP143_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP143_8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP147_010 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP152_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ap531b0 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_rnx-n360rt is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_CAP4200AG is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_EAP7660D is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WLR8100 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_bsb is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c25-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c5-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c59-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c7-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c7-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c7-v2-il is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr7500-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c7-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe210-220-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe510-520-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_eap120-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_re450-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr10u-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr11u-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr11u-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr12u-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr13u-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3020-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3040-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3040-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3220-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3220-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3420-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3420-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr6400-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa701nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa701nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa7210n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa730re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa750re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa7510n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa801nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa801nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa801nd-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa830re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa830re-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa850re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa850re-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa855re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa860re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa901nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa901nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa901nd-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa901nd-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr3320-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr3500-v1 is not set -CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr3600-v1=y -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr4300-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr4300-v1-il is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr4310-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr4900-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr6500-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wpa8630-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1041n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1043nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1043nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1043nd-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1043nd-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr2543-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr703n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr710n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr710n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr710n-v2.1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr720n-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr720n-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v6 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr741nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr741nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr741nd-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr741nd-v5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr743nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr743nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr802n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr802n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr810n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr840n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr840n-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v1.5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v10 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v11 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v12 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v7 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v8 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v9 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr842n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr842n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr842n-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr843nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr847n-v8 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr940n-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v6 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v6-cn is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wbs210-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wbs510-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW632BRP is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW652BRP_FW is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW652BRP_RECOVERY is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW673GRU is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW712BR is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW732BR is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW823DRU is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tellstick-znet-lite is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-air-gateway is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-air-gateway-pro is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-airrouter is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-bullet-m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-ls-sr71 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-loco-m-xw is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-nano-m-xw is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-nano-m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_rw2458n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rocket-m-ti is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rocket-m-xw is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rocket-m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rs is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rspro is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifi is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifiac-lite is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifiac-mesh is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifiac-pro is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifi-outdoor is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubdev01 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wrtnode2q is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dr531 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_weio is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mynet-n600 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mynet-n750 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MYNETREXT is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ap90q is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe830 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe870 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_sr3200 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_xd3200 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_zbt-we1526 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ZCN1523H28 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ZCN1523H516 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_NBG_460N_550N_550NH is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_NBG6616 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dLAN_Hotspot is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dLAN_pro_1200_ac is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dLAN_pro_500_wp is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_JA76PF is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_JA76PF2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_JWAP003 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_jwap230 is not set -CONFIG_HAS_SUBTARGETS=y -CONFIG_HAS_DEVICES=y -CONFIG_TARGET_BOARD="ar71xx" -CONFIG_TARGET_SUBTARGET="generic" -CONFIG_TARGET_PROFILE="DEVICE_tl-wdr3600-v1" -CONFIG_TARGET_ARCH_PACKAGES="mips_24kc" -CONFIG_DEFAULT_TARGET_OPTIMIZATION="-Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc" -CONFIG_CPU_TYPE="24kc" -CONFIG_LINUX_4_4=y -CONFIG_DEFAULT_automount=y -CONFIG_DEFAULT_base-files=y -CONFIG_DEFAULT_block-mount=y -CONFIG_DEFAULT_busybox=y -CONFIG_DEFAULT_default-settings=y -CONFIG_DEFAULT_dnsmasq-full=y -CONFIG_DEFAULT_dropbear=y -CONFIG_DEFAULT_firewall=y -CONFIG_DEFAULT_fstools=y -CONFIG_DEFAULT_ip6tables=y -CONFIG_DEFAULT_ipset-lists=y -CONFIG_DEFAULT_iptables=y -CONFIG_DEFAULT_iptables-mod-nat-extra=y -CONFIG_DEFAULT_iwinfo=y -CONFIG_DEFAULT_kmod-ath9k=y -CONFIG_DEFAULT_kmod-gpio-button-hotplug=y -CONFIG_DEFAULT_kmod-macvlan=y -CONFIG_DEFAULT_kmod-nf-nathelper=y -CONFIG_DEFAULT_kmod-nf-nathelper-extra=y -CONFIG_DEFAULT_kmod-usb-core=y -CONFIG_DEFAULT_kmod-usb-ledtrig-usbport=y -CONFIG_DEFAULT_kmod-usb2=y -CONFIG_DEFAULT_libc=y -CONFIG_DEFAULT_libgcc=y -CONFIG_DEFAULT_logd=y -CONFIG_DEFAULT_luci=y -CONFIG_DEFAULT_luci-app-adbyby-plus=y -CONFIG_DEFAULT_luci-app-autoreboot=y -CONFIG_DEFAULT_luci-app-ddns=y -CONFIG_DEFAULT_luci-app-filetransfer=y -CONFIG_DEFAULT_luci-app-ipsec-vpnd=y -CONFIG_DEFAULT_luci-app-nlbwmon=y -CONFIG_DEFAULT_luci-app-pptp-server=y -CONFIG_DEFAULT_luci-app-sfe=y -CONFIG_DEFAULT_luci-app-shadowsocksr-pro=y -CONFIG_DEFAULT_luci-app-sqm=y -CONFIG_DEFAULT_luci-app-upnp=y -CONFIG_DEFAULT_luci-app-usb-printer=y -CONFIG_DEFAULT_luci-app-vlmcsd=y -CONFIG_DEFAULT_luci-app-vsftpd=y -CONFIG_DEFAULT_luci-app-wifischedule=y -CONFIG_DEFAULT_luci-app-wol=y -CONFIG_DEFAULT_mtd=y -CONFIG_DEFAULT_netifd=y -CONFIG_DEFAULT_opkg=y -CONFIG_DEFAULT_ppp=y -CONFIG_DEFAULT_ppp-mod-pppoe=y -CONFIG_DEFAULT_swconfig=y -CONFIG_DEFAULT_uboot-envtools=y -CONFIG_DEFAULT_uci=y -CONFIG_DEFAULT_uclient-fetch=y -CONFIG_DEFAULT_wpad-mini=y -CONFIG_AUDIO_SUPPORT=y -CONFIG_GPIO_SUPPORT=y -CONFIG_PCI_SUPPORT=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_GADGET_SUPPORT=y -CONFIG_BIG_ENDIAN=y -CONFIG_USES_DEVICETREE=y -CONFIG_USES_SQUASHFS=y -CONFIG_HAS_MIPS16=y -CONFIG_mips=y -CONFIG_ARCH="mips" - -# -# Target Images -# -# CONFIG_TARGET_ROOTFS_INITRAMFS is not set -CONFIG_EXTERNAL_CPIO="" - -# -# Root filesystem archives -# -# CONFIG_TARGET_ROOTFS_CPIOGZ is not set -# CONFIG_TARGET_ROOTFS_TARGZ is not set - -# -# Root filesystem images -# -# CONFIG_TARGET_ROOTFS_EXT4FS is not set -CONFIG_TARGET_ROOTFS_SQUASHFS=y -CONFIG_TARGET_SQUASHFS_BLOCK_SIZE=1024 -CONFIG_TARGET_UBIFS_FREE_SPACE_FIXUP=y -CONFIG_TARGET_UBIFS_JOURNAL_SIZE="" - -# -# Image Options -# - -# -# Global build settings -# -# CONFIG_ALL_NONSHARED is not set -# CONFIG_ALL_KMODS is not set -# CONFIG_ALL is not set -# CONFIG_BUILDBOT is not set -CONFIG_SIGNED_PACKAGES=y - -# -# General build options -# -# CONFIG_DISPLAY_SUPPORT is not set -CONFIG_BUILD_PATENTED=y -# CONFIG_BUILD_NLS is not set -CONFIG_SHADOW_PASSWORDS=y -# CONFIG_CLEAN_IPKG is not set -# CONFIG_INCLUDE_CONFIG is not set -# CONFIG_COLLECT_KERNEL_DEBUG is not set - -# -# Kernel build options -# -CONFIG_KERNEL_BUILD_USER="" -CONFIG_KERNEL_BUILD_DOMAIN="" -CONFIG_KERNEL_PRINTK=y -CONFIG_KERNEL_CRASHLOG=y -CONFIG_KERNEL_SWAP=y -CONFIG_KERNEL_DEBUG_FS=y -# CONFIG_KERNEL_PERF_EVENTS is not set -# CONFIG_KERNEL_PROFILING is not set -CONFIG_KERNEL_KALLSYMS=y -# CONFIG_KERNEL_FTRACE is not set -CONFIG_KERNEL_DEBUG_KERNEL=y -CONFIG_KERNEL_DEBUG_INFO=y -# CONFIG_KERNEL_DYNAMIC_DEBUG is not set -# CONFIG_KERNEL_KPROBES is not set -# CONFIG_KERNEL_AIO is not set -# CONFIG_KERNEL_FHANDLE is not set -# CONFIG_KERNEL_FANOTIFY is not set -# CONFIG_KERNEL_BLK_DEV_BSG is not set -CONFIG_KERNEL_MAGIC_SYSRQ=y -# CONFIG_KERNEL_DEBUG_PINCTRL is not set -# CONFIG_KERNEL_DEBUG_GPIO is not set -CONFIG_KERNEL_COREDUMP=y -CONFIG_KERNEL_ELF_CORE=y -# CONFIG_KERNEL_PROVE_LOCKING is not set -CONFIG_KERNEL_PRINTK_TIME=y -# CONFIG_KERNEL_SLABINFO is not set -# CONFIG_KERNEL_PROC_PAGE_MONITOR is not set -CONFIG_KERNEL_RELAY=y -# CONFIG_KERNEL_KEXEC is not set -# CONFIG_USE_RFKILL is not set -# CONFIG_USE_SPARSE is not set -# CONFIG_KERNEL_DEVTMPFS is not set -# CONFIG_KERNEL_KEYS is not set -# CONFIG_KERNEL_CGROUPS is not set -# CONFIG_KERNEL_NAMESPACES is not set -# CONFIG_KERNEL_LXC_MISC is not set -# CONFIG_KERNEL_SECCOMP_FILTER is not set -# CONFIG_KERNEL_SECCOMP is not set -CONFIG_KERNEL_IPV6=y -CONFIG_KERNEL_IPV6_MULTIPLE_TABLES=y -CONFIG_KERNEL_IPV6_SUBTREES=y -CONFIG_KERNEL_IPV6_MROUTE=y -# CONFIG_KERNEL_IPV6_PIMSM_V2 is not set -# CONFIG_KERNEL_IP_PNP is not set - -# -# Filesystem ACL and attr support options -# -# CONFIG_USE_FS_ACL_ATTR is not set -# CONFIG_KERNEL_FS_POSIX_ACL is not set -# CONFIG_KERNEL_BTRFS_FS_POSIX_ACL is not set -# CONFIG_KERNEL_EXT4_FS_POSIX_ACL is not set -# CONFIG_KERNEL_F2FS_FS_POSIX_ACL is not set -# CONFIG_KERNEL_JFFS2_FS_POSIX_ACL is not set -# CONFIG_KERNEL_TMPFS_POSIX_ACL is not set -# CONFIG_KERNEL_CIFS_ACL is not set -# CONFIG_KERNEL_HFS_FS_POSIX_ACL is not set -# CONFIG_KERNEL_HFSPLUG_FS_POSIX_ACL is not set -# CONFIG_KERNEL_NFS_ACL_SUPPORT is not set -# CONFIG_KERNEL_NFS_V3_ACL_SUPPORT is not set -# CONFIG_KERNEL_NFSD_V2_ACL_SUPPORT is not set -# CONFIG_KERNEL_NFSD_V3_ACL_SUPPORT is not set -# CONFIG_KERNEL_REISER_FS_POSIX_ACL is not set -# CONFIG_KERNEL_XFS_POSIX_ACL is not set -# CONFIG_KERNEL_JFS_POSIX_ACL is not set -# CONFIG_KERNEL_DEVMEM is not set -# CONFIG_KERNEL_DEVKMEM is not set - -# -# Package build options -# -# CONFIG_DEBUG is not set -CONFIG_IPV6=y - -# -# Stripping options -# -# CONFIG_NO_STRIP is not set -# CONFIG_USE_STRIP is not set -CONFIG_USE_SSTRIP=y -# CONFIG_STRIP_KERNEL_EXPORTS is not set -# CONFIG_USE_MKLIBS is not set -CONFIG_USE_UCLIBCXX=y -# CONFIG_USE_LIBSTDCXX is not set - -# -# Hardening build options -# -CONFIG_PKG_CHECK_FORMAT_SECURITY=y -# CONFIG_PKG_CC_STACKPROTECTOR_NONE is not set -CONFIG_PKG_CC_STACKPROTECTOR_REGULAR=y -# CONFIG_KERNEL_CC_STACKPROTECTOR_NONE is not set -CONFIG_KERNEL_CC_STACKPROTECTOR_REGULAR=y -# CONFIG_KERNEL_CC_STACKPROTECTOR_STRONG is not set -# CONFIG_PKG_FORTIFY_SOURCE_NONE is not set -CONFIG_PKG_FORTIFY_SOURCE_1=y -# CONFIG_PKG_FORTIFY_SOURCE_2 is not set -# CONFIG_PKG_RELRO_NONE is not set -# CONFIG_PKG_RELRO_PARTIAL is not set -CONFIG_PKG_RELRO_FULL=y -# CONFIG_DEVEL is not set -# CONFIG_BROKEN is not set -CONFIG_BINARY_FOLDER="" -CONFIG_DOWNLOAD_FOLDER="" -CONFIG_LOCALMIRROR="" -CONFIG_AUTOREBUILD=y -# CONFIG_AUTOREMOVE is not set -CONFIG_BUILD_SUFFIX="" -CONFIG_TARGET_ROOTFS_DIR="" -# CONFIG_CCACHE is not set -CONFIG_EXTERNAL_KERNEL_TREE="" -CONFIG_KERNEL_GIT_CLONE_URI="" -CONFIG_EXTRA_OPTIMIZATION="-fno-caller-saves -fno-plt" -CONFIG_TARGET_OPTIMIZATION="-Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc" -CONFIG_SOFT_FLOAT=y -CONFIG_USE_MIPS16=y -# CONFIG_EXTRA_TARGET_ARCH is not set -CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="" -CONFIG_EXTRA_GCC_CONFIG_OPTIONS="" -# CONFIG_SJLJ_EXCEPTIONS is not set -# CONFIG_INSTALL_LIBGCJ is not set -# CONFIG_INSTALL_GFORTRAN is not set -CONFIG_GDB=y -CONFIG_USE_MUSL=y -CONFIG_BINUTILS_VERSION_2_28=y -CONFIG_BINUTILS_VERSION="2.28" -CONFIG_GCC_VERSION="5.4.0" -CONFIG_LIBC="musl" -CONFIG_TARGET_SUFFIX="musl" -# CONFIG_IB is not set -# CONFIG_SDK is not set -# CONFIG_MAKE_TOOLCHAIN is not set -# CONFIG_IMAGEOPT is not set -# CONFIG_PREINITOPT is not set -CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y -# CONFIG_TARGET_PREINIT_DISABLE_FAILSAFE is not set -CONFIG_TARGET_PREINIT_TIMEOUT=2 -# CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set -# CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set -CONFIG_TARGET_PREINIT_IFNAME="" -CONFIG_TARGET_PREINIT_IP="192.168.1.1" -CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0" -CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255" -# CONFIG_INITOPT is not set -CONFIG_TARGET_INIT_PATH="/usr/sbin:/usr/bin:/sbin:/bin" -CONFIG_TARGET_INIT_ENV="" -CONFIG_TARGET_INIT_CMD="/sbin/init" -CONFIG_TARGET_INIT_SUPPRESS_STDERR=y -# CONFIG_VERSIONOPT is not set -CONFIG_PER_FEED_REPO=y -CONFIG_PER_FEED_REPO_ADD_DISABLED=y -CONFIG_PER_FEED_REPO_ADD_COMMENTED=y -CONFIG_FEED_packages=y -CONFIG_FEED_luci=y -CONFIG_FEED_routing=y -CONFIG_FEED_telephony=y - -# -# Base system -# -CONFIG_PACKAGE_base-files=y -CONFIG_PACKAGE_block-mount=y -# CONFIG_PACKAGE_blockd is not set -# CONFIG_PACKAGE_bridge is not set -CONFIG_PACKAGE_busybox=y -# CONFIG_BUSYBOX_CUSTOM is not set -CONFIG_BUSYBOX_DEFAULT_HAVE_DOT_CONFIG=y -# CONFIG_BUSYBOX_DEFAULT_DESKTOP is not set -# CONFIG_BUSYBOX_DEFAULT_EXTRA_COMPAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEDORA_COMPAT is not set -CONFIG_BUSYBOX_DEFAULT_INCLUDE_SUSv2=y -# CONFIG_BUSYBOX_DEFAULT_USE_PORTABLE_CODE is not set -CONFIG_BUSYBOX_DEFAULT_PLATFORM_LINUX=y -CONFIG_BUSYBOX_DEFAULT_SHOW_USAGE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE_USAGE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_COMPRESS_USAGE=y -# CONFIG_BUSYBOX_DEFAULT_BUSYBOX is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSTALLER is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_NO_USR is not set -# CONFIG_BUSYBOX_DEFAULT_PAM is not set -CONFIG_BUSYBOX_DEFAULT_LONG_OPTS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DEVPTS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CLEAN_UP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UTMP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WTMP is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDFILE=y -CONFIG_BUSYBOX_DEFAULT_PID_FILE_PATH="/var/run" -CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG_QUIET is not set -# CONFIG_BUSYBOX_DEFAULT_SELINUX is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_PREFER_APPLETS=y -CONFIG_BUSYBOX_DEFAULT_BUSYBOX_EXEC_PATH="/proc/self/exe" -CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOG=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HAVE_RPC is not set -# CONFIG_BUSYBOX_DEFAULT_STATIC is not set -# CONFIG_BUSYBOX_DEFAULT_PIE is not set -# CONFIG_BUSYBOX_DEFAULT_NOMMU is not set -# CONFIG_BUSYBOX_DEFAULT_BUILD_LIBBUSYBOX is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INDIVIDUAL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SHARED_BUSYBOX is not set -CONFIG_BUSYBOX_DEFAULT_LFS=y -CONFIG_BUSYBOX_DEFAULT_CROSS_COMPILER_PREFIX="" -CONFIG_BUSYBOX_DEFAULT_SYSROOT="" -CONFIG_BUSYBOX_DEFAULT_EXTRA_CFLAGS="" -CONFIG_BUSYBOX_DEFAULT_EXTRA_LDFLAGS="" -CONFIG_BUSYBOX_DEFAULT_EXTRA_LDLIBS="" -CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_SYMLINKS=y -# CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_HARDLINKS is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_SCRIPT_WRAPPERS is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_DONT is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_SYMLINK is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_HARDLINK is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set -CONFIG_BUSYBOX_DEFAULT_PREFIX="./_install" -# CONFIG_BUSYBOX_DEFAULT_DEBUG is not set -# CONFIG_BUSYBOX_DEFAULT_DEBUG_PESSIMIZE is not set -# CONFIG_BUSYBOX_DEFAULT_DEBUG_SANITIZE is not set -# CONFIG_BUSYBOX_DEFAULT_UNIT_TEST is not set -# CONFIG_BUSYBOX_DEFAULT_WERROR is not set -CONFIG_BUSYBOX_DEFAULT_NO_DEBUG_LIB=y -# CONFIG_BUSYBOX_DEFAULT_DMALLOC is not set -# CONFIG_BUSYBOX_DEFAULT_EFENCE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_BSS_TAIL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RTMINMAX is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_USE_MALLOC is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_GO_ON_STACK=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_GO_IN_BSS is not set -CONFIG_BUSYBOX_DEFAULT_PASSWORD_MINLEN=6 -CONFIG_BUSYBOX_DEFAULT_MD5_SMALL=1 -CONFIG_BUSYBOX_DEFAULT_SHA3_SMALL=1 -CONFIG_BUSYBOX_DEFAULT_FEATURE_FAST_TOP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ETC_NETWORKS is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_MAX_LEN=512 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_VI is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_HISTORY=256 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_SAVEHISTORY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_SAVE_ON_EXIT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_REVERSE_SEARCH is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TAB_COMPLETION=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_USERNAME_COMPLETION is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_FANCY_PROMPT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_ASK_TERMINAL is not set -# CONFIG_BUSYBOX_DEFAULT_LOCALE_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_USING_LOCALE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_UNICODE_IN_ENV is not set -CONFIG_BUSYBOX_DEFAULT_SUBST_WCHAR=0 -CONFIG_BUSYBOX_DEFAULT_LAST_SUPPORTED_WCHAR=0 -# CONFIG_BUSYBOX_DEFAULT_UNICODE_COMBINING_WCHARS is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_WIDE_WCHARS is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_BIDI_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_NEUTRAL_TABLE is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_PRESERVE_BROKEN is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_NON_POSIX_CP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE_CP_MESSAGE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_SENDFILE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_COPYBUF_KB=4 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SKIP_ROOTFS is not set -# CONFIG_BUSYBOX_DEFAULT_MONOTONIC_SYSCALL is not set -CONFIG_BUSYBOX_DEFAULT_IOCTL_HEX2STR_ERROR=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HWIB is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_XZ is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_LZMA is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_BZ2 is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_GZ=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_Z is not set -# CONFIG_BUSYBOX_DEFAULT_AR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_AR_LONG_FILENAMES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_AR_CREATE is not set -# CONFIG_BUSYBOX_DEFAULT_UNCOMPRESS is not set -CONFIG_BUSYBOX_DEFAULT_GUNZIP=y -CONFIG_BUSYBOX_DEFAULT_ZCAT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GUNZIP_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_BUNZIP2=y -CONFIG_BUSYBOX_DEFAULT_BZCAT=y -# CONFIG_BUSYBOX_DEFAULT_UNLZMA is not set -# CONFIG_BUSYBOX_DEFAULT_LZCAT is not set -# CONFIG_BUSYBOX_DEFAULT_LZMA is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LZMA_FAST is not set -# CONFIG_BUSYBOX_DEFAULT_UNXZ is not set -# CONFIG_BUSYBOX_DEFAULT_XZCAT is not set -# CONFIG_BUSYBOX_DEFAULT_XZ is not set -# CONFIG_BUSYBOX_DEFAULT_BZIP2 is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_BZIP2_DECOMPRESS=y -# CONFIG_BUSYBOX_DEFAULT_CPIO is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CPIO_O is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CPIO_P is not set -# CONFIG_BUSYBOX_DEFAULT_DPKG is not set -# CONFIG_BUSYBOX_DEFAULT_DPKG_DEB is not set -CONFIG_BUSYBOX_DEFAULT_GZIP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_GZIP_FAST=0 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_LEVELS is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_DECOMPRESS=y -# CONFIG_BUSYBOX_DEFAULT_LZOP is not set -# CONFIG_BUSYBOX_DEFAULT_UNLZOP is not set -# CONFIG_BUSYBOX_DEFAULT_LZOPCAT is not set -# CONFIG_BUSYBOX_DEFAULT_LZOP_COMPR_HIGH is not set -# CONFIG_BUSYBOX_DEFAULT_RPM is not set -# CONFIG_BUSYBOX_DEFAULT_RPM2CPIO is not set -CONFIG_BUSYBOX_DEFAULT_TAR=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_CREATE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_AUTODETECT is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_FROM=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_GNU_EXTENSIONS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_TO_COMMAND is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_UNAME_GNAME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_NOPRESERVE_TIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_SELINUX is not set -# CONFIG_BUSYBOX_DEFAULT_UNZIP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNZIP_CDF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNZIP_BZIP2 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNZIP_LZMA is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNZIP_XZ is not set -CONFIG_BUSYBOX_DEFAULT_BASENAME=y -CONFIG_BUSYBOX_DEFAULT_CAT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CATV is not set -CONFIG_BUSYBOX_DEFAULT_CHGRP=y -CONFIG_BUSYBOX_DEFAULT_CHMOD=y -CONFIG_BUSYBOX_DEFAULT_CHOWN=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_CHROOT=y -# CONFIG_BUSYBOX_DEFAULT_CKSUM is not set -# CONFIG_BUSYBOX_DEFAULT_COMM is not set -CONFIG_BUSYBOX_DEFAULT_CP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CP_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_CUT=y -CONFIG_BUSYBOX_DEFAULT_DATE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_ISOFMT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_NANO is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_COMPAT is not set -CONFIG_BUSYBOX_DEFAULT_DD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_SIGNAL_HANDLING=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_THIRD_STATUS_LINE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_IBS_OBS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_STATUS is not set -CONFIG_BUSYBOX_DEFAULT_DF=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DF_FANCY is not set -CONFIG_BUSYBOX_DEFAULT_DIRNAME=y -# CONFIG_BUSYBOX_DEFAULT_DOS2UNIX is not set -# CONFIG_BUSYBOX_DEFAULT_UNIX2DOS is not set -CONFIG_BUSYBOX_DEFAULT_DU=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y -CONFIG_BUSYBOX_DEFAULT_ECHO=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO=y -CONFIG_BUSYBOX_DEFAULT_ENV=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ENV_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_EXPAND is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EXPAND_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_UNEXPAND is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNEXPAND_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_EXPR=y -CONFIG_BUSYBOX_DEFAULT_EXPR_MATH_SUPPORT_64=y -# CONFIG_BUSYBOX_DEFAULT_FACTOR is not set -CONFIG_BUSYBOX_DEFAULT_FALSE=y -# CONFIG_BUSYBOX_DEFAULT_FOLD is not set -CONFIG_BUSYBOX_DEFAULT_FSYNC=y -CONFIG_BUSYBOX_DEFAULT_HEAD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD=y -# CONFIG_BUSYBOX_DEFAULT_HOSTID is not set -CONFIG_BUSYBOX_DEFAULT_ID=y -# CONFIG_BUSYBOX_DEFAULT_GROUPS is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_LINK is not set -CONFIG_BUSYBOX_DEFAULT_LN=y -# CONFIG_BUSYBOX_DEFAULT_LOGNAME is not set -CONFIG_BUSYBOX_DEFAULT_LS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_FILETYPES=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_FOLLOWLINKS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_RECURSIVE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_WIDTH=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_SORTFILES=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_TIMESTAMPS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_USERNAME=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_COLOR=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_COLOR_IS_DEFAULT=y -CONFIG_BUSYBOX_DEFAULT_MD5SUM=y -# CONFIG_BUSYBOX_DEFAULT_SHA1SUM is not set -CONFIG_BUSYBOX_DEFAULT_SHA256SUM=y -# CONFIG_BUSYBOX_DEFAULT_SHA512SUM is not set -# CONFIG_BUSYBOX_DEFAULT_SHA3SUM is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MD5_SHA1_SUM_CHECK=y -CONFIG_BUSYBOX_DEFAULT_MKDIR=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MKDIR_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_MKFIFO=y -CONFIG_BUSYBOX_DEFAULT_MKNOD=y -CONFIG_BUSYBOX_DEFAULT_MV=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MV_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_NICE=y -# CONFIG_BUSYBOX_DEFAULT_NL is not set -# CONFIG_BUSYBOX_DEFAULT_NOHUP is not set -# CONFIG_BUSYBOX_DEFAULT_NPROC is not set -# CONFIG_BUSYBOX_DEFAULT_OD is not set -# CONFIG_BUSYBOX_DEFAULT_PASTE is not set -# CONFIG_BUSYBOX_DEFAULT_PRINTENV is not set -CONFIG_BUSYBOX_DEFAULT_PRINTF=y -CONFIG_BUSYBOX_DEFAULT_PWD=y -CONFIG_BUSYBOX_DEFAULT_READLINK=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_READLINK_FOLLOW=y -# CONFIG_BUSYBOX_DEFAULT_REALPATH is not set -CONFIG_BUSYBOX_DEFAULT_RM=y -CONFIG_BUSYBOX_DEFAULT_RMDIR=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RMDIR_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_SEQ=y -# CONFIG_BUSYBOX_DEFAULT_SHRED is not set -# CONFIG_BUSYBOX_DEFAULT_SHUF is not set -CONFIG_BUSYBOX_DEFAULT_SLEEP=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_SLEEP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FLOAT_SLEEP is not set -CONFIG_BUSYBOX_DEFAULT_SORT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SORT_BIG is not set -# CONFIG_BUSYBOX_DEFAULT_SPLIT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SPLIT_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_STAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_STAT_FORMAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_STAT_FILESYSTEM is not set -# CONFIG_BUSYBOX_DEFAULT_STTY is not set -# CONFIG_BUSYBOX_DEFAULT_SUM is not set -CONFIG_BUSYBOX_DEFAULT_SYNC=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SYNC_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_TAC is not set -CONFIG_BUSYBOX_DEFAULT_TAIL=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_TAIL=y -CONFIG_BUSYBOX_DEFAULT_TEE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TEE_USE_BLOCK_IO=y -CONFIG_BUSYBOX_DEFAULT_TEST=y -CONFIG_BUSYBOX_DEFAULT_TEST1=y -CONFIG_BUSYBOX_DEFAULT_TEST2=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TEST_64=y -CONFIG_BUSYBOX_DEFAULT_TOUCH=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOUCH_NODEREF is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TOUCH_SUSV3=y -CONFIG_BUSYBOX_DEFAULT_TR=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TR_CLASSES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TR_EQUIV is not set -CONFIG_BUSYBOX_DEFAULT_TRUE=y -# CONFIG_BUSYBOX_DEFAULT_TRUNCATE is not set -# CONFIG_BUSYBOX_DEFAULT_TTY is not set -CONFIG_BUSYBOX_DEFAULT_UNAME=y -CONFIG_BUSYBOX_DEFAULT_UNAME_OSNAME="GNU/Linux" -CONFIG_BUSYBOX_DEFAULT_UNIQ=y -# CONFIG_BUSYBOX_DEFAULT_UNLINK is not set -# CONFIG_BUSYBOX_DEFAULT_USLEEP is not set -# CONFIG_BUSYBOX_DEFAULT_UUDECODE is not set -# CONFIG_BUSYBOX_DEFAULT_BASE64 is not set -# CONFIG_BUSYBOX_DEFAULT_UUENCODE is not set -CONFIG_BUSYBOX_DEFAULT_WC=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WC_LARGE is not set -# CONFIG_BUSYBOX_DEFAULT_WHO is not set -# CONFIG_BUSYBOX_DEFAULT_W is not set -# CONFIG_BUSYBOX_DEFAULT_USERS is not set -# CONFIG_BUSYBOX_DEFAULT_WHOAMI is not set -CONFIG_BUSYBOX_DEFAULT_YES=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_PRESERVE_HARDLINKS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_HUMAN_READABLE=y -# CONFIG_BUSYBOX_DEFAULT_CHVT is not set -CONFIG_BUSYBOX_DEFAULT_CLEAR=y -# CONFIG_BUSYBOX_DEFAULT_DEALLOCVT is not set -# CONFIG_BUSYBOX_DEFAULT_DUMPKMAP is not set -# CONFIG_BUSYBOX_DEFAULT_FGCONSOLE is not set -# CONFIG_BUSYBOX_DEFAULT_KBD_MODE is not set -# CONFIG_BUSYBOX_DEFAULT_LOADFONT is not set -# CONFIG_BUSYBOX_DEFAULT_SETFONT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SETFONT_TEXTUAL_MAP is not set -CONFIG_BUSYBOX_DEFAULT_DEFAULT_SETFONT_DIR="" -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LOADFONT_PSF2 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LOADFONT_RAW is not set -# CONFIG_BUSYBOX_DEFAULT_LOADKMAP is not set -# CONFIG_BUSYBOX_DEFAULT_OPENVT is not set -CONFIG_BUSYBOX_DEFAULT_RESET=y -# CONFIG_BUSYBOX_DEFAULT_RESIZE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RESIZE_PRINT is not set -# CONFIG_BUSYBOX_DEFAULT_SETCONSOLE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SETCONSOLE_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_SETKEYCODES is not set -# CONFIG_BUSYBOX_DEFAULT_SETLOGCONS is not set -# CONFIG_BUSYBOX_DEFAULT_SHOWKEY is not set -CONFIG_BUSYBOX_DEFAULT_MKTEMP=y -# CONFIG_BUSYBOX_DEFAULT_PIPE_PROGRESS is not set -# CONFIG_BUSYBOX_DEFAULT_RUN_PARTS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_FANCY is not set -CONFIG_BUSYBOX_DEFAULT_START_STOP_DAEMON=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_WHICH=y -CONFIG_BUSYBOX_DEFAULT_AWK=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_AWK_LIBM=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_AWK_GNU_EXTENSIONS=y -CONFIG_BUSYBOX_DEFAULT_CMP=y -# CONFIG_BUSYBOX_DEFAULT_DIFF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DIFF_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DIFF_DIR is not set -# CONFIG_BUSYBOX_DEFAULT_ED is not set -# CONFIG_BUSYBOX_DEFAULT_PATCH is not set -CONFIG_BUSYBOX_DEFAULT_SED=y -CONFIG_BUSYBOX_DEFAULT_VI=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_MAX_LEN=1024 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_8BIT is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_COLON=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_YANKMARK=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SEARCH=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_REGEX_SEARCH is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_USE_SIGNALS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_DOT_CMD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_READONLY=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SETOPTS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SET=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_WIN_RESIZE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_ASK_TERMINAL=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO_QUEUE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO_QUEUE_MAX=0 -CONFIG_BUSYBOX_DEFAULT_FEATURE_ALLOW_EXEC=y -CONFIG_BUSYBOX_DEFAULT_FIND=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PRINT0=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MTIME=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MMIN is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PERM=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_TYPE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_XDEV=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MAXDEPTH=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_NEWER is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_INUM is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_EXEC=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_USER=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_GROUP=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_NOT=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PAREN=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_SIZE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_DELETE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PATH=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_REGEX=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_CONTEXT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_LINKS is not set -CONFIG_BUSYBOX_DEFAULT_GREP=y -CONFIG_BUSYBOX_DEFAULT_EGREP=y -CONFIG_BUSYBOX_DEFAULT_FGREP=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_GREP_CONTEXT=y -CONFIG_BUSYBOX_DEFAULT_XARGS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_CONFIRMATION=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_QUOTES=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_TERMOPT=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ZERO_TERM=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_REPL_STR is not set -# CONFIG_BUSYBOX_DEFAULT_BOOTCHARTD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_CONFIG_FILE is not set -CONFIG_BUSYBOX_DEFAULT_HALT=y -CONFIG_BUSYBOX_DEFAULT_POWEROFF=y -CONFIG_BUSYBOX_DEFAULT_REBOOT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CALL_TELINIT is not set -CONFIG_BUSYBOX_DEFAULT_TELINIT_PATH="" -# CONFIG_BUSYBOX_DEFAULT_INIT is not set -# CONFIG_BUSYBOX_DEFAULT_LINUXRC is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_INITTAB is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_KILL_REMOVED is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_KILL_DELAY=0 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_SCTTY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_SYSLOG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_QUIET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_COREDUMPS is not set -CONFIG_BUSYBOX_DEFAULT_INIT_TERMINAL_TYPE="" -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_MODIFY_CMDLINE is not set -# CONFIG_BUSYBOX_DEFAULT_MESG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MESG_ENABLE_ONLY_GROUP is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SHADOWPASSWDS=y -# CONFIG_BUSYBOX_DEFAULT_USE_BB_PWD_GRP is not set -# CONFIG_BUSYBOX_DEFAULT_USE_BB_SHADOW is not set -# CONFIG_BUSYBOX_DEFAULT_USE_BB_CRYPT is not set -# CONFIG_BUSYBOX_DEFAULT_USE_BB_CRYPT_SHA is not set -# CONFIG_BUSYBOX_DEFAULT_ADD_SHELL is not set -# CONFIG_BUSYBOX_DEFAULT_REMOVE_SHELL is not set -# CONFIG_BUSYBOX_DEFAULT_ADDGROUP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDGROUP_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDUSER_TO_GROUP is not set -# CONFIG_BUSYBOX_DEFAULT_ADDUSER is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDUSER_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_NAMES is not set -CONFIG_BUSYBOX_DEFAULT_LAST_ID=0 -CONFIG_BUSYBOX_DEFAULT_FIRST_SYSTEM_ID=0 -CONFIG_BUSYBOX_DEFAULT_LAST_SYSTEM_ID=0 -# CONFIG_BUSYBOX_DEFAULT_CHPASSWD is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_DEFAULT_PASSWD_ALGO="md5" -# CONFIG_BUSYBOX_DEFAULT_CRYPTPW is not set -# CONFIG_BUSYBOX_DEFAULT_MKPASSWD is not set -# CONFIG_BUSYBOX_DEFAULT_DELUSER is not set -# CONFIG_BUSYBOX_DEFAULT_DELGROUP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DEL_USER_FROM_GROUP is not set -# CONFIG_BUSYBOX_DEFAULT_GETTY is not set -CONFIG_BUSYBOX_DEFAULT_LOGIN=y -CONFIG_BUSYBOX_DEFAULT_LOGIN_SESSION_AS_CHILD=y -# CONFIG_BUSYBOX_DEFAULT_LOGIN_SCRIPTS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NOLOGIN is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SECURETTY is not set -CONFIG_BUSYBOX_DEFAULT_PASSWD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_PASSWD_WEAK_CHECK=y -# CONFIG_BUSYBOX_DEFAULT_SU is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_SYSLOG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_CHECKS_SHELLS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY is not set -# CONFIG_BUSYBOX_DEFAULT_SULOGIN is not set -# CONFIG_BUSYBOX_DEFAULT_VLOCK is not set -# CONFIG_BUSYBOX_DEFAULT_CHATTR is not set -# CONFIG_BUSYBOX_DEFAULT_FSCK is not set -# CONFIG_BUSYBOX_DEFAULT_LSATTR is not set -# CONFIG_BUSYBOX_DEFAULT_TUNE2FS is not set -# CONFIG_BUSYBOX_DEFAULT_MODPROBE_SMALL is not set -# CONFIG_BUSYBOX_DEFAULT_DEPMOD is not set -# CONFIG_BUSYBOX_DEFAULT_INSMOD is not set -# CONFIG_BUSYBOX_DEFAULT_LSMOD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set -# CONFIG_BUSYBOX_DEFAULT_MODINFO is not set -# CONFIG_BUSYBOX_DEFAULT_MODPROBE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_BLACKLIST is not set -# CONFIG_BUSYBOX_DEFAULT_RMMOD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CMDLINE_MODULE_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_2_4_MODULES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_VERSION_CHECKING is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOADINKMEM is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOAD_MAP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOAD_MAP_FULL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_TAINTED_MODULE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_TRY_MMAP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MODUTILS_ALIAS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MODUTILS_SYMBOLS is not set -CONFIG_BUSYBOX_DEFAULT_DEFAULT_MODULES_DIR="" -CONFIG_BUSYBOX_DEFAULT_DEFAULT_DEPMOD_FILE="" -# CONFIG_BUSYBOX_DEFAULT_ACPID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ACPID_COMPAT is not set -# CONFIG_BUSYBOX_DEFAULT_BLKDISCARD is not set -# CONFIG_BUSYBOX_DEFAULT_BLKID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BLKID_TYPE is not set -# CONFIG_BUSYBOX_DEFAULT_BLOCKDEV is not set -# CONFIG_BUSYBOX_DEFAULT_CAL is not set -CONFIG_BUSYBOX_DEFAULT_DMESG=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DMESG_PRETTY=y -# CONFIG_BUSYBOX_DEFAULT_FALLOCATE is not set -# CONFIG_BUSYBOX_DEFAULT_FATATTR is not set -# CONFIG_BUSYBOX_DEFAULT_FBSET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FBSET_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FBSET_READMODE is not set -# CONFIG_BUSYBOX_DEFAULT_FDFORMAT is not set -# CONFIG_BUSYBOX_DEFAULT_FDISK is not set -# CONFIG_BUSYBOX_DEFAULT_FDISK_SUPPORT_LARGE_DISKS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FDISK_WRITABLE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_AIX_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SGI_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SUN_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_OSF_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GPT_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FDISK_ADVANCED is not set -# CONFIG_BUSYBOX_DEFAULT_FINDFS is not set -# CONFIG_BUSYBOX_DEFAULT_FLOCK is not set -# CONFIG_BUSYBOX_DEFAULT_FDFLUSH is not set -# CONFIG_BUSYBOX_DEFAULT_FREERAMDISK is not set -# CONFIG_BUSYBOX_DEFAULT_FSCK_MINIX is not set -# CONFIG_BUSYBOX_DEFAULT_FSFREEZE is not set -# CONFIG_BUSYBOX_DEFAULT_FSTRIM is not set -# CONFIG_BUSYBOX_DEFAULT_GETOPT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GETOPT_LONG is not set -CONFIG_BUSYBOX_DEFAULT_HEXDUMP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HEXDUMP_REVERSE is not set -# CONFIG_BUSYBOX_DEFAULT_HD is not set -# CONFIG_BUSYBOX_DEFAULT_XXD is not set -CONFIG_BUSYBOX_DEFAULT_HWCLOCK=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HWCLOCK_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HWCLOCK_ADJTIME_FHS is not set -# CONFIG_BUSYBOX_DEFAULT_IPCRM is not set -# CONFIG_BUSYBOX_DEFAULT_IPCS is not set -# CONFIG_BUSYBOX_DEFAULT_LOSETUP is not set -# CONFIG_BUSYBOX_DEFAULT_LSPCI is not set -# CONFIG_BUSYBOX_DEFAULT_LSUSB is not set -# CONFIG_BUSYBOX_DEFAULT_MDEV is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_CONF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_RENAME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_RENAME_REGEXP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_EXEC is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_LOAD_FIRMWARE is not set -# CONFIG_BUSYBOX_DEFAULT_MKE2FS is not set -# CONFIG_BUSYBOX_DEFAULT_MKFS_EXT2 is not set -# CONFIG_BUSYBOX_DEFAULT_MKFS_MINIX is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MINIX2 is not set -# CONFIG_BUSYBOX_DEFAULT_MKFS_REISER is not set -# CONFIG_BUSYBOX_DEFAULT_MKDOSFS is not set -# CONFIG_BUSYBOX_DEFAULT_MKFS_VFAT is not set -CONFIG_BUSYBOX_DEFAULT_MKSWAP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MKSWAP_UUID is not set -# CONFIG_BUSYBOX_DEFAULT_MORE is not set -CONFIG_BUSYBOX_DEFAULT_MOUNT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FAKE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_VERBOSE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_HELPERS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_NFS is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_CIFS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FLAGS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FSTAB=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_OTHERTAB is not set -# CONFIG_BUSYBOX_DEFAULT_NSENTER is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NSENTER_LONG_OPTS is not set -CONFIG_BUSYBOX_DEFAULT_PIVOT_ROOT=y -# CONFIG_BUSYBOX_DEFAULT_RDATE is not set -# CONFIG_BUSYBOX_DEFAULT_RDEV is not set -# CONFIG_BUSYBOX_DEFAULT_READPROFILE is not set -# CONFIG_BUSYBOX_DEFAULT_REV is not set -# CONFIG_BUSYBOX_DEFAULT_RTCWAKE is not set -# CONFIG_BUSYBOX_DEFAULT_SCRIPT is not set -# CONFIG_BUSYBOX_DEFAULT_SCRIPTREPLAY is not set -# CONFIG_BUSYBOX_DEFAULT_SETARCH is not set -# CONFIG_BUSYBOX_DEFAULT_LINUX32 is not set -# CONFIG_BUSYBOX_DEFAULT_LINUX64 is not set -# CONFIG_BUSYBOX_DEFAULT_SETPRIV is not set -# CONFIG_BUSYBOX_DEFAULT_SWAPON is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SWAPON_DISCARD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SWAPON_PRI is not set -# CONFIG_BUSYBOX_DEFAULT_SWAPOFF is not set -CONFIG_BUSYBOX_DEFAULT_SWITCH_ROOT=y -# CONFIG_BUSYBOX_DEFAULT_UEVENT is not set -CONFIG_BUSYBOX_DEFAULT_UMOUNT=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_UMOUNT_ALL=y -# CONFIG_BUSYBOX_DEFAULT_UNSHARE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LOOP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LOOP_CREATE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MTAB_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_VOLUMEID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_BCACHE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_BTRFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_CRAMFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_EXFAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_EXT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_F2FS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_FAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_HFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_ISO9660 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_JFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LINUXRAID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LINUXSWAP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LUKS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_NILFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_NTFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_OCFS2 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_REISERFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_ROMFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_SQUASHFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_SYSV is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_UBIFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_UDF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_XFS is not set -# CONFIG_BUSYBOX_DEFAULT_ADJTIMEX is not set -# CONFIG_BUSYBOX_DEFAULT_BBCONFIG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_COMPRESS_BBCONFIG is not set -# CONFIG_BUSYBOX_DEFAULT_BEEP is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_BEEP_FREQ=0 -CONFIG_BUSYBOX_DEFAULT_FEATURE_BEEP_LENGTH_MS=0 -# CONFIG_BUSYBOX_DEFAULT_CHAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_NOFAIL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_TTY_HIFI is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_IMPLICIT_CR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_SWALLOW_OPTS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_SEND_ESCAPES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_VAR_ABORT_LEN is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_CLR_ABORT is not set -# CONFIG_BUSYBOX_DEFAULT_CHRT is not set -# CONFIG_BUSYBOX_DEFAULT_CONSPY is not set -CONFIG_BUSYBOX_DEFAULT_CROND=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_D is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_CALL_SENDMAIL is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_DIR="/etc" -CONFIG_BUSYBOX_DEFAULT_CRONTAB=y -# CONFIG_BUSYBOX_DEFAULT_DC is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DC_LIBM is not set -# CONFIG_BUSYBOX_DEFAULT_DEVFSD is not set -# CONFIG_BUSYBOX_DEFAULT_DEVFSD_MODLOAD is not set -# CONFIG_BUSYBOX_DEFAULT_DEVFSD_FG_NP is not set -# CONFIG_BUSYBOX_DEFAULT_DEVFSD_VERBOSE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DEVFS is not set -# CONFIG_BUSYBOX_DEFAULT_DEVMEM is not set -# CONFIG_BUSYBOX_DEFAULT_EJECT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EJECT_SCSI is not set -# CONFIG_BUSYBOX_DEFAULT_FBSPLASH is not set -# CONFIG_BUSYBOX_DEFAULT_FLASH_ERASEALL is not set -# CONFIG_BUSYBOX_DEFAULT_FLASH_LOCK is not set -# CONFIG_BUSYBOX_DEFAULT_FLASH_UNLOCK is not set -# CONFIG_BUSYBOX_DEFAULT_FLASHCP is not set -# CONFIG_BUSYBOX_DEFAULT_HDPARM is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_GET_IDENTITY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_GETSET_DMA is not set -# CONFIG_BUSYBOX_DEFAULT_I2CGET is not set -# CONFIG_BUSYBOX_DEFAULT_I2CSET is not set -# CONFIG_BUSYBOX_DEFAULT_I2CDUMP is not set -# CONFIG_BUSYBOX_DEFAULT_I2CDETECT is not set -# CONFIG_BUSYBOX_DEFAULT_INOTIFYD is not set -# CONFIG_BUSYBOX_DEFAULT_IONICE is not set -# CONFIG_BUSYBOX_DEFAULT_LAST is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LAST_FANCY is not set -CONFIG_BUSYBOX_DEFAULT_LESS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_MAXLINES=9999999 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_BRACKETS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_FLAGS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_TRUNCATE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_MARKS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_REGEXP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_WINCH is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_ASK_TERMINAL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_DASHCMD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_LINENUMS is not set -CONFIG_BUSYBOX_DEFAULT_LOCK=y -# CONFIG_BUSYBOX_DEFAULT_LSSCSI is not set -# CONFIG_BUSYBOX_DEFAULT_MAKEDEVS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MAKEDEVS_LEAF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MAKEDEVS_TABLE is not set -# CONFIG_BUSYBOX_DEFAULT_MAN is not set -# CONFIG_BUSYBOX_DEFAULT_MICROCOM is not set -# CONFIG_BUSYBOX_DEFAULT_MOUNTPOINT is not set -# CONFIG_BUSYBOX_DEFAULT_MT is not set -# CONFIG_BUSYBOX_DEFAULT_NANDWRITE is not set -# CONFIG_BUSYBOX_DEFAULT_NANDDUMP is not set -# CONFIG_BUSYBOX_DEFAULT_PARTPROBE is not set -# CONFIG_BUSYBOX_DEFAULT_RAIDAUTORUN is not set -# CONFIG_BUSYBOX_DEFAULT_READAHEAD is not set -# CONFIG_BUSYBOX_DEFAULT_RFKILL is not set -# CONFIG_BUSYBOX_DEFAULT_RUNLEVEL is not set -# CONFIG_BUSYBOX_DEFAULT_RX is not set -# CONFIG_BUSYBOX_DEFAULT_SETSERIAL is not set -# CONFIG_BUSYBOX_DEFAULT_SETSID is not set -CONFIG_BUSYBOX_DEFAULT_STRINGS=y -# CONFIG_BUSYBOX_DEFAULT_TASKSET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TASKSET_FANCY is not set -CONFIG_BUSYBOX_DEFAULT_TIME=y -# CONFIG_BUSYBOX_DEFAULT_TIMEOUT is not set -# CONFIG_BUSYBOX_DEFAULT_TTYSIZE is not set -# CONFIG_BUSYBOX_DEFAULT_UBIATTACH is not set -# CONFIG_BUSYBOX_DEFAULT_UBIDETACH is not set -# CONFIG_BUSYBOX_DEFAULT_UBIMKVOL is not set -# CONFIG_BUSYBOX_DEFAULT_UBIRMVOL is not set -# CONFIG_BUSYBOX_DEFAULT_UBIRSVOL is not set -# CONFIG_BUSYBOX_DEFAULT_UBIUPDATEVOL is not set -# CONFIG_BUSYBOX_DEFAULT_UBIRENAME is not set -# CONFIG_BUSYBOX_DEFAULT_VOLNAME is not set -# CONFIG_BUSYBOX_DEFAULT_WALL is not set -# CONFIG_BUSYBOX_DEFAULT_WATCHDOG is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IPV6=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNIX_LOCAL is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_PREFER_IPV4_ADDRESS=y -CONFIG_BUSYBOX_DEFAULT_VERBOSE_RESOLUTION_ERRORS=y -# CONFIG_BUSYBOX_DEFAULT_ARP is not set -# CONFIG_BUSYBOX_DEFAULT_ARPING is not set -CONFIG_BUSYBOX_DEFAULT_BRCTL=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_BRCTL_FANCY=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_BRCTL_SHOW=y -# CONFIG_BUSYBOX_DEFAULT_DNSD is not set -# CONFIG_BUSYBOX_DEFAULT_ETHER_WAKE is not set -# CONFIG_BUSYBOX_DEFAULT_FTPD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPD_WRITE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPD_ACCEPT_BROKEN_LIST is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPD_AUTHENTICATION is not set -# CONFIG_BUSYBOX_DEFAULT_FTPGET is not set -# CONFIG_BUSYBOX_DEFAULT_FTPPUT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPGETPUT_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_HOSTNAME is not set -# CONFIG_BUSYBOX_DEFAULT_DNSDOMAINNAME is not set -# CONFIG_BUSYBOX_DEFAULT_HTTPD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_RANGES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_SETUID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_BASIC_AUTH is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_AUTH_MD5 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_CGI is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_ENCODE_URL_STR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_ERROR_PAGES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_PROXY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_GZIP is not set -CONFIG_BUSYBOX_DEFAULT_IFCONFIG=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_STATUS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_SLIP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_HW=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_BROADCAST_PLUS=y -# CONFIG_BUSYBOX_DEFAULT_IFENSLAVE is not set -# CONFIG_BUSYBOX_DEFAULT_IFPLUGD is not set -# CONFIG_BUSYBOX_DEFAULT_IFUP is not set -# CONFIG_BUSYBOX_DEFAULT_IFDOWN is not set -CONFIG_BUSYBOX_DEFAULT_IFUPDOWN_IFSTATE_PATH="" -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV4 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV6 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_MAPPING is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set -# CONFIG_BUSYBOX_DEFAULT_INETD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_RPC is not set -CONFIG_BUSYBOX_DEFAULT_IP=y -# CONFIG_BUSYBOX_DEFAULT_IPADDR is not set -# CONFIG_BUSYBOX_DEFAULT_IPLINK is not set -# CONFIG_BUSYBOX_DEFAULT_IPROUTE is not set -# CONFIG_BUSYBOX_DEFAULT_IPTUNNEL is not set -# CONFIG_BUSYBOX_DEFAULT_IPRULE is not set -# CONFIG_BUSYBOX_DEFAULT_IPNEIGH is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ADDRESS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_LINK=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ROUTE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ROUTE_DIR="/etc/iproute2" -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_TUNNEL is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_RULE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_NEIGH=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_RARE_PROTOCOLS is not set -# CONFIG_BUSYBOX_DEFAULT_IPCALC is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IPCALC_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IPCALC_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FAKEIDENTD is not set -# CONFIG_BUSYBOX_DEFAULT_NAMEIF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NAMEIF_EXTENDED is not set -# CONFIG_BUSYBOX_DEFAULT_NBDCLIENT is not set -CONFIG_BUSYBOX_DEFAULT_NC=y -# CONFIG_BUSYBOX_DEFAULT_NC_SERVER is not set -# CONFIG_BUSYBOX_DEFAULT_NC_EXTRA is not set -# CONFIG_BUSYBOX_DEFAULT_NC_110_COMPAT is not set -CONFIG_BUSYBOX_DEFAULT_NETMSG=y -CONFIG_BUSYBOX_DEFAULT_NETSTAT=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_NETSTAT_WIDE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_NETSTAT_PRG=y -# CONFIG_BUSYBOX_DEFAULT_NSLOOKUP is not set -CONFIG_BUSYBOX_DEFAULT_NSLOOKUP_LEDE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NSLOOKUP_LEDE_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_NTPD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_NTPD_SERVER=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NTPD_CONF is not set -CONFIG_BUSYBOX_DEFAULT_PING=y -CONFIG_BUSYBOX_DEFAULT_PING6=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_PING=y -# CONFIG_BUSYBOX_DEFAULT_PSCAN is not set -CONFIG_BUSYBOX_DEFAULT_ROUTE=y -# CONFIG_BUSYBOX_DEFAULT_SLATTACH is not set -# CONFIG_BUSYBOX_DEFAULT_SSL_CLIENT is not set -# CONFIG_BUSYBOX_DEFAULT_TCPSVD is not set -# CONFIG_BUSYBOX_DEFAULT_UDPSVD is not set -# CONFIG_BUSYBOX_DEFAULT_TELNET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_WIDTH is not set -# CONFIG_BUSYBOX_DEFAULT_TELNETD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNETD_STANDALONE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNETD_INETD_WAIT is not set -# CONFIG_BUSYBOX_DEFAULT_TFTP is not set -# CONFIG_BUSYBOX_DEFAULT_TFTPD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_GET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_PUT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_BLOCKSIZE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_PROGRESS_BAR is not set -# CONFIG_BUSYBOX_DEFAULT_TFTP_DEBUG is not set -# CONFIG_BUSYBOX_DEFAULT_TLS is not set -CONFIG_BUSYBOX_DEFAULT_TRACEROUTE=y -CONFIG_BUSYBOX_DEFAULT_TRACEROUTE6=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_VERBOSE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_USE_ICMP is not set -# CONFIG_BUSYBOX_DEFAULT_TUNCTL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TUNCTL_UG is not set -# CONFIG_BUSYBOX_DEFAULT_VCONFIG is not set -# CONFIG_BUSYBOX_DEFAULT_WGET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_STATUSBAR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_AUTHENTICATION is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_TIMEOUT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_HTTPS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_OPENSSL is not set -# CONFIG_BUSYBOX_DEFAULT_WHOIS is not set -# CONFIG_BUSYBOX_DEFAULT_ZCIP is not set -# CONFIG_BUSYBOX_DEFAULT_UDHCPC6 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC3646 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC4704 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC4833 is not set -# CONFIG_BUSYBOX_DEFAULT_UDHCPD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set -CONFIG_BUSYBOX_DEFAULT_DHCPD_LEASES_FILE="" -# CONFIG_BUSYBOX_DEFAULT_DUMPLEASES is not set -# CONFIG_BUSYBOX_DEFAULT_DHCPRELAY is not set -CONFIG_BUSYBOX_DEFAULT_UDHCPC=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC_ARPING is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC_SANITIZEOPT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_PORT is not set -CONFIG_BUSYBOX_DEFAULT_UDHCP_DEBUG=0 -CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_RFC3397=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_8021Q is not set -CONFIG_BUSYBOX_DEFAULT_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" -CONFIG_BUSYBOX_DEFAULT_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 -CONFIG_BUSYBOX_DEFAULT_IFUPDOWN_UDHCPC_CMD_OPTIONS="" -# CONFIG_BUSYBOX_DEFAULT_LPD is not set -# CONFIG_BUSYBOX_DEFAULT_LPR is not set -# CONFIG_BUSYBOX_DEFAULT_LPQ is not set -# CONFIG_BUSYBOX_DEFAULT_MAKEMIME is not set -# CONFIG_BUSYBOX_DEFAULT_POPMAILDIR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_POPMAILDIR_DELIVERY is not set -# CONFIG_BUSYBOX_DEFAULT_REFORMIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_REFORMIME_COMPAT is not set -# CONFIG_BUSYBOX_DEFAULT_SENDMAIL is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MIME_CHARSET="" -CONFIG_BUSYBOX_DEFAULT_FREE=y -# CONFIG_BUSYBOX_DEFAULT_FUSER is not set -# CONFIG_BUSYBOX_DEFAULT_IOSTAT is not set -CONFIG_BUSYBOX_DEFAULT_KILL=y -CONFIG_BUSYBOX_DEFAULT_KILLALL=y -# CONFIG_BUSYBOX_DEFAULT_KILLALL5 is not set -# CONFIG_BUSYBOX_DEFAULT_LSOF is not set -# CONFIG_BUSYBOX_DEFAULT_MPSTAT is not set -# CONFIG_BUSYBOX_DEFAULT_NMETER is not set -CONFIG_BUSYBOX_DEFAULT_PGREP=y -# CONFIG_BUSYBOX_DEFAULT_PKILL is not set -CONFIG_BUSYBOX_DEFAULT_PIDOF=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDOF_SINGLE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDOF_OMIT is not set -# CONFIG_BUSYBOX_DEFAULT_PMAP is not set -# CONFIG_BUSYBOX_DEFAULT_POWERTOP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_POWERTOP_INTERACTIVE is not set -CONFIG_BUSYBOX_DEFAULT_PS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_WIDE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_LONG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_TIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_ADDITIONAL_COLUMNS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_UNUSUAL_SYSTEMS is not set -# CONFIG_BUSYBOX_DEFAULT_PSTREE is not set -# CONFIG_BUSYBOX_DEFAULT_PWDX is not set -# CONFIG_BUSYBOX_DEFAULT_RENICE is not set -# CONFIG_BUSYBOX_DEFAULT_SMEMCAP is not set -CONFIG_BUSYBOX_DEFAULT_BB_SYSCTL=y -CONFIG_BUSYBOX_DEFAULT_TOP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_INTERACTIVE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_SMP_CPU is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_DECIMALS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_SMP_PROCESS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOPMEM is not set -CONFIG_BUSYBOX_DEFAULT_UPTIME=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UPTIME_UTMP_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_WATCH is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SHOW_THREADS is not set -# CONFIG_BUSYBOX_DEFAULT_CHPST is not set -# CONFIG_BUSYBOX_DEFAULT_SETUIDGID is not set -# CONFIG_BUSYBOX_DEFAULT_ENVUIDGID is not set -# CONFIG_BUSYBOX_DEFAULT_ENVDIR is not set -# CONFIG_BUSYBOX_DEFAULT_SOFTLIMIT is not set -# CONFIG_BUSYBOX_DEFAULT_RUNSV is not set -# CONFIG_BUSYBOX_DEFAULT_RUNSVDIR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RUNSVDIR_LOG is not set -# CONFIG_BUSYBOX_DEFAULT_SV is not set -CONFIG_BUSYBOX_DEFAULT_SV_DEFAULT_SERVICE_DIR="" -# CONFIG_BUSYBOX_DEFAULT_SVC is not set -# CONFIG_BUSYBOX_DEFAULT_SVLOGD is not set -# CONFIG_BUSYBOX_DEFAULT_CHCON is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHCON_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_GETENFORCE is not set -# CONFIG_BUSYBOX_DEFAULT_GETSEBOOL is not set -# CONFIG_BUSYBOX_DEFAULT_LOAD_POLICY is not set -# CONFIG_BUSYBOX_DEFAULT_MATCHPATHCON is not set -# CONFIG_BUSYBOX_DEFAULT_RUNCON is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RUNCON_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_SELINUXENABLED is not set -# CONFIG_BUSYBOX_DEFAULT_SESTATUS is not set -# CONFIG_BUSYBOX_DEFAULT_SETENFORCE is not set -# CONFIG_BUSYBOX_DEFAULT_SETFILES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SETFILES_CHECK_OPTION is not set -# CONFIG_BUSYBOX_DEFAULT_RESTORECON is not set -# CONFIG_BUSYBOX_DEFAULT_SETSEBOOL is not set -CONFIG_BUSYBOX_DEFAULT_SH_IS_ASH=y -# CONFIG_BUSYBOX_DEFAULT_SH_IS_HUSH is not set -# CONFIG_BUSYBOX_DEFAULT_SH_IS_NONE is not set -# CONFIG_BUSYBOX_DEFAULT_BASH_IS_ASH is not set -# CONFIG_BUSYBOX_DEFAULT_BASH_IS_HUSH is not set -CONFIG_BUSYBOX_DEFAULT_BASH_IS_NONE=y -CONFIG_BUSYBOX_DEFAULT_ASH=y -# CONFIG_BUSYBOX_DEFAULT_ASH_OPTIMIZE_FOR_SIZE is not set -CONFIG_BUSYBOX_DEFAULT_ASH_INTERNAL_GLOB=y -CONFIG_BUSYBOX_DEFAULT_ASH_BASH_COMPAT=y -CONFIG_BUSYBOX_DEFAULT_ASH_JOB_CONTROL=y -CONFIG_BUSYBOX_DEFAULT_ASH_ALIAS=y -# CONFIG_BUSYBOX_DEFAULT_ASH_RANDOM_SUPPORT is not set -CONFIG_BUSYBOX_DEFAULT_ASH_EXPAND_PRMT=y -# CONFIG_BUSYBOX_DEFAULT_ASH_IDLE_TIMEOUT is not set -# CONFIG_BUSYBOX_DEFAULT_ASH_MAIL is not set -CONFIG_BUSYBOX_DEFAULT_ASH_ECHO=y -CONFIG_BUSYBOX_DEFAULT_ASH_PRINTF=y -CONFIG_BUSYBOX_DEFAULT_ASH_TEST=y -# CONFIG_BUSYBOX_DEFAULT_ASH_HELP is not set -CONFIG_BUSYBOX_DEFAULT_ASH_GETOPTS=y -CONFIG_BUSYBOX_DEFAULT_ASH_CMDCMD=y -# CONFIG_BUSYBOX_DEFAULT_CTTYHACK is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_BASH_COMPAT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_BRACE_EXPANSION is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_HELP is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_INTERACTIVE is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_SAVEHISTORY is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_JOB is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_TICK is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_IF is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_LOOPS is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_CASE is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_FUNCTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_LOCAL is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_RANDOM_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_MODE_X is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_ECHO is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_PRINTF is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_TEST is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_EXPORT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_EXPORT_N is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_KILL is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_WAIT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_TRAP is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_TYPE is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_READ is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_SET is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_UNSET is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_ULIMIT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_UMASK is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_MEMLEAK is not set -# CONFIG_BUSYBOX_DEFAULT_MSH is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_MATH=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_MATH_64=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_EXTRA_QUIET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_STANDALONE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_NOFORK=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_HISTFILESIZE is not set -# CONFIG_BUSYBOX_DEFAULT_KLOGD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_KLOGD_KLOGCTL is not set -CONFIG_BUSYBOX_DEFAULT_LOGGER=y -# CONFIG_BUSYBOX_DEFAULT_LOGREAD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LOGREAD_REDUCED_LOCKING is not set -# CONFIG_BUSYBOX_DEFAULT_SYSLOGD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ROTATE_LOGFILE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_REMOTE_LOG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_DUP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_CFG is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IPC_SYSLOG is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_KMSG_SYSLOG is not set -# CONFIG_PACKAGE_ca-bundle is not set -# CONFIG_PACKAGE_ca-certificates is not set -# CONFIG_PACKAGE_dnsmasq is not set -# CONFIG_PACKAGE_dnsmasq-dhcpv6 is not set -CONFIG_PACKAGE_dnsmasq-full=y -CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y -CONFIG_PACKAGE_dnsmasq_full_dnssec=y -CONFIG_PACKAGE_dnsmasq_full_auth=y -CONFIG_PACKAGE_dnsmasq_full_ipset=y -CONFIG_PACKAGE_dnsmasq_full_conntrack=y -CONFIG_PACKAGE_dnsmasq_full_noid=y -# CONFIG_PACKAGE_dnsmasq_full_broken_rtc is not set -CONFIG_PACKAGE_dropbear=y - -# -# Configuration -# -CONFIG_DROPBEAR_CURVE25519=y -# CONFIG_DROPBEAR_ECC is not set -# CONFIG_PACKAGE_ead is not set -CONFIG_PACKAGE_firewall=y -CONFIG_PACKAGE_fstools=y -CONFIG_PACKAGE_fwtool=y -CONFIG_PACKAGE_jsonfilter=y -CONFIG_PACKAGE_lede-keyring=y -# CONFIG_PACKAGE_libatomic is not set -CONFIG_PACKAGE_libc=y -CONFIG_PACKAGE_libgcc=y -# CONFIG_PACKAGE_libgomp is not set -CONFIG_PACKAGE_libpthread=y -CONFIG_PACKAGE_librt=y -CONFIG_PACKAGE_libstdcpp=y -CONFIG_PACKAGE_logd=y -# CONFIG_PACKAGE_mksh is not set -CONFIG_PACKAGE_mtd=y -CONFIG_PACKAGE_netifd=y -# CONFIG_PACKAGE_nvram is not set -# CONFIG_PACKAGE_om-watchdog is not set -CONFIG_PACKAGE_opkg=y -CONFIG_PACKAGE_procd=y - -# -# Configuration -# -# CONFIG_PROCD_SHOW_BOOT is not set -# CONFIG_PROCD_ZRAM_TMPFS is not set -# CONFIG_PACKAGE_qos-scripts is not set -# CONFIG_PACKAGE_resolveip is not set -CONFIG_PACKAGE_rpcd=y -# CONFIG_PACKAGE_rpcd-mod-attendedsysupgrade is not set -# CONFIG_PACKAGE_rpcd-mod-file is not set -# CONFIG_PACKAGE_rpcd-mod-iwinfo is not set -# CONFIG_PACKAGE_rpcd-mod-packagelist is not set -# CONFIG_PACKAGE_rpcd-mod-rpcsys is not set -# CONFIG_PACKAGE_snapshot-tool is not set -CONFIG_PACKAGE_sqm-scripts=y -# CONFIG_PACKAGE_sqm-scripts-extra is not set -CONFIG_PACKAGE_swconfig=y -CONFIG_PACKAGE_ubox=y -CONFIG_PACKAGE_ubus=y -CONFIG_PACKAGE_ubusd=y -CONFIG_PACKAGE_uci=y -CONFIG_PACKAGE_usign=y -# CONFIG_PACKAGE_wireless-tools is not set -# CONFIG_PACKAGE_zram-swap is not set - -# -# Administration -# - -# -# openwisp -# -# CONFIG_PACKAGE_openwisp-config-cyassl is not set -# CONFIG_PACKAGE_openwisp-config-mbedtls is not set -# CONFIG_PACKAGE_openwisp-config-nossl is not set -# CONFIG_PACKAGE_openwisp-config-openssl is not set - -# -# zabbix -# -# CONFIG_PACKAGE_zabbix-agentd is not set -# CONFIG_PACKAGE_zabbix-extra-mac80211 is not set -# CONFIG_PACKAGE_zabbix-extra-network is not set -# CONFIG_PACKAGE_zabbix-extra-wifi is not set -# CONFIG_PACKAGE_zabbix-get is not set -# CONFIG_PACKAGE_zabbix-proxy is not set -# CONFIG_PACKAGE_zabbix-sender is not set -# CONFIG_PACKAGE_zabbix-server is not set -# CONFIG_PACKAGE_htop is not set -# CONFIG_PACKAGE_ipmitool is not set -# CONFIG_PACKAGE_monit is not set -# CONFIG_PACKAGE_monit-nossl is not set -# CONFIG_PACKAGE_muninlite is not set -# CONFIG_PACKAGE_netdata is not set -# CONFIG_PACKAGE_sudo is not set -# CONFIG_PACKAGE_syslog-ng is not set - -# -# Boot Loaders -# - -# -# Development -# - -# -# Libraries -# -# CONFIG_PACKAGE_libncurses-dev is not set -# CONFIG_PACKAGE_zlib-dev is not set -# CONFIG_PACKAGE_ar is not set -# CONFIG_PACKAGE_autoconf is not set -# CONFIG_PACKAGE_automake is not set -# CONFIG_PACKAGE_binutils is not set -# CONFIG_PACKAGE_diffutils is not set -# CONFIG_PACKAGE_gcc is not set -# CONFIG_PACKAGE_gdb is not set -# CONFIG_PACKAGE_gdbserver is not set -# CONFIG_PACKAGE_libtool-bin is not set -# CONFIG_PACKAGE_lpc21isp is not set -# CONFIG_PACKAGE_lttng-tools is not set -# CONFIG_PACKAGE_m4 is not set -# CONFIG_PACKAGE_make is not set -# CONFIG_PACKAGE_objdump is not set -# CONFIG_PACKAGE_patch is not set -# CONFIG_PACKAGE_pkg-config is not set -# CONFIG_PACKAGE_trace-cmd is not set -# CONFIG_PACKAGE_trace-cmd-extra is not set -# CONFIG_PACKAGE_valgrind is not set - -# -# Extra packages -# -CONFIG_PACKAGE_automount=y -CONFIG_PACKAGE_autosamba=y -# CONFIG_PACKAGE_he-6in4 is not set -# CONFIG_PACKAGE_k3wifi is not set - -# -# Firmware -# - -# -# ath10k IPQ4019 Boarddata -# -# CONFIG_PACKAGE_aircard-pcmcia-firmware is not set -# CONFIG_PACKAGE_ar3k-firmware is not set -# CONFIG_PACKAGE_ath10k-firmware-qca4019 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca6174 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9887 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9887-ct is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9888 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9888-ct is not set -# CONFIG_PACKAGE_ath10k-firmware-qca988x is not set -# CONFIG_PACKAGE_ath10k-firmware-qca988x-ct is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9984 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9984-ct is not set -# CONFIG_PACKAGE_ath10k-firmware-qca99x0 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca99x0-ct is not set -# CONFIG_PACKAGE_ath6k-firmware is not set -# CONFIG_PACKAGE_ath9k-htc-firmware is not set -# CONFIG_PACKAGE_b43legacy-firmware is not set -# CONFIG_PACKAGE_bnx2-firmware is not set -# CONFIG_PACKAGE_brcmfmac-firmware-4329-sdio is not set -# CONFIG_PACKAGE_brcmfmac-firmware-43362-sdio is not set -# CONFIG_PACKAGE_brcmfmac-firmware-43430-sdio is not set -# CONFIG_PACKAGE_brcmfmac-firmware-43602a1-pcie is not set -# CONFIG_PACKAGE_brcmfmac-firmware-4366b1-pcie is not set -# CONFIG_PACKAGE_brcmfmac-firmware-usb is not set -# CONFIG_PACKAGE_brcmsmac-firmware is not set -# CONFIG_PACKAGE_carl9170-firmware is not set -# CONFIG_PACKAGE_ibt-firmware is not set -# CONFIG_PACKAGE_iwl3945-firmware is not set -# CONFIG_PACKAGE_iwl4965-firmware is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl100 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl1000 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl105 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl135 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl2000 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl2030 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl3160 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl3168 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl5000 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl5150 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl6000g2 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl6000g2a is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl6000g2b is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl6050 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl7260 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl7265 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl7265d is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl8260c is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl8265 is not set -# CONFIG_PACKAGE_libertas-sdio-firmware is not set -# CONFIG_PACKAGE_libertas-spi-firmware is not set -# CONFIG_PACKAGE_libertas-usb-firmware is not set -# CONFIG_PACKAGE_mt7601u-firmware is not set -# CONFIG_PACKAGE_mwifiex-pcie-firmware is not set -# CONFIG_PACKAGE_mwifiex-sdio-firmware is not set -# CONFIG_PACKAGE_mwl8k-firmware is not set -# CONFIG_PACKAGE_p54-pci-firmware is not set -# CONFIG_PACKAGE_p54-spi-firmware is not set -# CONFIG_PACKAGE_p54-usb-firmware is not set -# CONFIG_PACKAGE_prism54-firmware is not set -# CONFIG_PACKAGE_r8169-firmware is not set -# CONFIG_PACKAGE_rt2800-pci-firmware is not set -# CONFIG_PACKAGE_rt2800-usb-firmware is not set -# CONFIG_PACKAGE_rt61-pci-firmware is not set -# CONFIG_PACKAGE_rt73-usb-firmware is not set -# CONFIG_PACKAGE_rtl8188eu-firmware is not set -# CONFIG_PACKAGE_rtl8192ce-firmware is not set -# CONFIG_PACKAGE_rtl8192cu-firmware is not set -# CONFIG_PACKAGE_rtl8192de-firmware is not set -# CONFIG_PACKAGE_rtl8192se-firmware is not set -# CONFIG_PACKAGE_rtl8192su-firmware is not set -# CONFIG_PACKAGE_rtl8821ae-firmware is not set -# CONFIG_PACKAGE_wl12xx-firmware is not set -# CONFIG_PACKAGE_wl18xx-firmware is not set - -# -# Fonts -# - -# -# DejaVu -# -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuMathTeXGyre is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans-BoldOblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans-ExtraLight is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans-Oblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansCondensed is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansCondensed-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansCondensed-BoldOblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansCondensed-Oblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansMono is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansMono-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansMono-BoldOblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansMono-Oblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerif is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerif-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerif-BoldItalic is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerif-Italic is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerifCondensed is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerifCondensed-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerifCondensed-BoldItalic is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerifCondensed-Italic is not set - -# -# Kernel modules -# - -# -# Block Devices -# -# CONFIG_PACKAGE_kmod-aoe is not set -# CONFIG_PACKAGE_kmod-ata-core is not set -# CONFIG_PACKAGE_kmod-block2mtd is not set -# CONFIG_PACKAGE_kmod-dm is not set -# CONFIG_PACKAGE_kmod-loop is not set -# CONFIG_PACKAGE_kmod-md-mod is not set -# CONFIG_PACKAGE_kmod-nbd is not set -# CONFIG_PACKAGE_kmod-scsi-cdrom is not set -CONFIG_PACKAGE_kmod-scsi-core=y -# CONFIG_PACKAGE_kmod-scsi-generic is not set -# CONFIG_PACKAGE_kmod-scsi-tape is not set - -# -# CAN Support -# -# CONFIG_PACKAGE_kmod-can is not set - -# -# Cryptographic API modules -# -CONFIG_PACKAGE_kmod-crypto-aead=y -CONFIG_PACKAGE_kmod-crypto-authenc=y -CONFIG_PACKAGE_kmod-crypto-cbc=y -# CONFIG_PACKAGE_kmod-crypto-ccm is not set -# CONFIG_PACKAGE_kmod-crypto-cmac is not set -CONFIG_PACKAGE_kmod-crypto-crc32c=y -# CONFIG_PACKAGE_kmod-crypto-ctr is not set -CONFIG_PACKAGE_kmod-crypto-deflate=y -CONFIG_PACKAGE_kmod-crypto-des=y -CONFIG_PACKAGE_kmod-crypto-ecb=y -CONFIG_PACKAGE_kmod-crypto-echainiv=y -# CONFIG_PACKAGE_kmod-crypto-fcrypt is not set -# CONFIG_PACKAGE_kmod-crypto-gcm is not set -# CONFIG_PACKAGE_kmod-crypto-gf128 is not set -# CONFIG_PACKAGE_kmod-crypto-ghash is not set -CONFIG_PACKAGE_kmod-crypto-hash=y -CONFIG_PACKAGE_kmod-crypto-hmac=y -# CONFIG_PACKAGE_kmod-crypto-hw-ccp is not set -# CONFIG_PACKAGE_kmod-crypto-hw-geode is not set -# CONFIG_PACKAGE_kmod-crypto-hw-hifn-795x is not set -# CONFIG_PACKAGE_kmod-crypto-hw-padlock is not set -# CONFIG_PACKAGE_kmod-crypto-hw-talitos is not set -CONFIG_PACKAGE_kmod-crypto-iv=y -CONFIG_PACKAGE_kmod-crypto-manager=y -# CONFIG_PACKAGE_kmod-crypto-md4 is not set -CONFIG_PACKAGE_kmod-crypto-md5=y -# CONFIG_PACKAGE_kmod-crypto-michael-mic is not set -# CONFIG_PACKAGE_kmod-crypto-misc is not set -CONFIG_PACKAGE_kmod-crypto-null=y -# CONFIG_PACKAGE_kmod-crypto-pcbc is not set -CONFIG_PACKAGE_kmod-crypto-pcompress=y -CONFIG_PACKAGE_kmod-crypto-rng=y -# CONFIG_PACKAGE_kmod-crypto-seqiv is not set -CONFIG_PACKAGE_kmod-crypto-sha1=y -CONFIG_PACKAGE_kmod-crypto-sha256=y -# CONFIG_PACKAGE_kmod-crypto-sha512 is not set -# CONFIG_PACKAGE_kmod-crypto-test is not set -# CONFIG_PACKAGE_kmod-crypto-user is not set -CONFIG_PACKAGE_kmod-crypto-wq=y -# CONFIG_PACKAGE_kmod-crypto-xts is not set -# CONFIG_PACKAGE_kmod-cryptodev is not set - -# -# Filesystems -# -# CONFIG_PACKAGE_kmod-fs-afs is not set -# CONFIG_PACKAGE_kmod-fs-autofs4 is not set -# CONFIG_PACKAGE_kmod-fs-btrfs is not set -# CONFIG_PACKAGE_kmod-fs-cifs is not set -CONFIG_PACKAGE_kmod-fs-configfs=y -# CONFIG_PACKAGE_kmod-fs-cramfs is not set -CONFIG_PACKAGE_kmod-fs-exfat=y -# CONFIG_PACKAGE_kmod-fs-exportfs is not set -CONFIG_PACKAGE_kmod-fs-ext4=y -# CONFIG_PACKAGE_kmod-fs-f2fs is not set -# CONFIG_PACKAGE_kmod-fs-fscache is not set -# CONFIG_PACKAGE_kmod-fs-hfs is not set -# CONFIG_PACKAGE_kmod-fs-hfsplus is not set -# CONFIG_PACKAGE_kmod-fs-isofs is not set -# CONFIG_PACKAGE_kmod-fs-jfs is not set -# CONFIG_PACKAGE_kmod-fs-minix is not set -# CONFIG_PACKAGE_kmod-fs-msdos is not set -# CONFIG_PACKAGE_kmod-fs-nfs is not set -# CONFIG_PACKAGE_kmod-fs-nfs-common is not set -# CONFIG_PACKAGE_kmod-fs-nfsd is not set -CONFIG_PACKAGE_kmod-fs-ntfs=y -# CONFIG_PACKAGE_kmod-fs-reiserfs is not set -# CONFIG_PACKAGE_kmod-fs-squashfs is not set -# CONFIG_PACKAGE_kmod-fs-udf is not set -CONFIG_PACKAGE_kmod-fs-vfat=y -# CONFIG_PACKAGE_kmod-fs-xfs is not set -CONFIG_PACKAGE_kmod-fuse=y - -# -# FireWire support -# -# CONFIG_PACKAGE_kmod-firewire is not set - -# -# Hardware Monitoring Support -# -# CONFIG_PACKAGE_kmod-hwmon-core is not set - -# -# I2C support -# -# CONFIG_PACKAGE_kmod-i2c-core is not set -# CONFIG_PACKAGE_kmod-i2c-gpio-custom is not set - -# -# Input modules -# -# CONFIG_PACKAGE_kmod-hid is not set -# CONFIG_PACKAGE_kmod-hid-generic is not set -# CONFIG_PACKAGE_kmod-input-core is not set -# CONFIG_PACKAGE_kmod-input-evdev is not set -# CONFIG_PACKAGE_kmod-input-gpio-encoder is not set -# CONFIG_PACKAGE_kmod-input-gpio-keys is not set -# CONFIG_PACKAGE_kmod-input-gpio-keys-polled is not set -# CONFIG_PACKAGE_kmod-input-joydev is not set -# CONFIG_PACKAGE_kmod-input-matrixkmap is not set -# CONFIG_PACKAGE_kmod-input-polldev is not set -# CONFIG_PACKAGE_kmod-input-uinput is not set - -# -# LED modules -# -# CONFIG_PACKAGE_kmod-leds-gpio is not set -# CONFIG_PACKAGE_kmod-leds-nu801 is not set -# CONFIG_PACKAGE_kmod-leds-pca963x is not set -# CONFIG_PACKAGE_kmod-leds-rb750 is not set -# CONFIG_PACKAGE_kmod-leds-wndr3700-usb is not set -# CONFIG_PACKAGE_kmod-ledtrig-default-on is not set -# CONFIG_PACKAGE_kmod-ledtrig-gpio is not set -# CONFIG_PACKAGE_kmod-ledtrig-heartbeat is not set -# CONFIG_PACKAGE_kmod-ledtrig-netdev is not set -# CONFIG_PACKAGE_kmod-ledtrig-oneshot is not set -# CONFIG_PACKAGE_kmod-ledtrig-timer is not set -# CONFIG_PACKAGE_kmod-ledtrig-transient is not set - -# -# Libraries -# -# CONFIG_PACKAGE_kmod-lib-cordic is not set -CONFIG_PACKAGE_kmod-lib-crc-ccitt=y -# CONFIG_PACKAGE_kmod-lib-crc-itu-t is not set -CONFIG_PACKAGE_kmod-lib-crc16=y -# CONFIG_PACKAGE_kmod-lib-crc32c is not set -# CONFIG_PACKAGE_kmod-lib-crc7 is not set -# CONFIG_PACKAGE_kmod-lib-crc8 is not set -CONFIG_PACKAGE_kmod-lib-textsearch=y -CONFIG_PACKAGE_kmod-lib-zlib-deflate=y -CONFIG_PACKAGE_kmod-lib-zlib-inflate=y - -# -# Native Language Support -# -CONFIG_PACKAGE_kmod-nls-base=y -# CONFIG_PACKAGE_kmod-nls-cp1250 is not set -# CONFIG_PACKAGE_kmod-nls-cp1251 is not set -CONFIG_PACKAGE_kmod-nls-cp437=y -# CONFIG_PACKAGE_kmod-nls-cp775 is not set -# CONFIG_PACKAGE_kmod-nls-cp850 is not set -# CONFIG_PACKAGE_kmod-nls-cp852 is not set -# CONFIG_PACKAGE_kmod-nls-cp862 is not set -# CONFIG_PACKAGE_kmod-nls-cp864 is not set -# CONFIG_PACKAGE_kmod-nls-cp866 is not set -# CONFIG_PACKAGE_kmod-nls-cp932 is not set -# CONFIG_PACKAGE_kmod-nls-cp936 is not set -# CONFIG_PACKAGE_kmod-nls-cp950 is not set -CONFIG_PACKAGE_kmod-nls-iso8859-1=y -# CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set -# CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set -# CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set -# CONFIG_PACKAGE_kmod-nls-iso8859-6 is not set -# CONFIG_PACKAGE_kmod-nls-iso8859-8 is not set -# CONFIG_PACKAGE_kmod-nls-koi8r is not set -CONFIG_PACKAGE_kmod-nls-utf8=y - -# -# Netfilter Extensions -# -# CONFIG_PACKAGE_kmod-arptables is not set -CONFIG_PACKAGE_kmod-br-netfilter=y -# CONFIG_PACKAGE_kmod-ebtables is not set -CONFIG_PACKAGE_kmod-ip6tables=y -# CONFIG_PACKAGE_kmod-ip6tables-extra is not set -# CONFIG_PACKAGE_kmod-ipt-account is not set -# CONFIG_PACKAGE_kmod-ipt-chaos is not set -# CONFIG_PACKAGE_kmod-ipt-cluster is not set -# CONFIG_PACKAGE_kmod-ipt-clusterip is not set -# CONFIG_PACKAGE_kmod-ipt-compat-xtables is not set -# CONFIG_PACKAGE_kmod-ipt-condition is not set -CONFIG_PACKAGE_kmod-ipt-conntrack=y -CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y -CONFIG_PACKAGE_kmod-ipt-core=y -# CONFIG_PACKAGE_kmod-ipt-debug is not set -# CONFIG_PACKAGE_kmod-ipt-delude is not set -# CONFIG_PACKAGE_kmod-ipt-dhcpmac is not set -# CONFIG_PACKAGE_kmod-ipt-dnetmap is not set -CONFIG_PACKAGE_kmod-ipt-extra=y -# CONFIG_PACKAGE_kmod-ipt-filter is not set -# CONFIG_PACKAGE_kmod-ipt-fuzzy is not set -# CONFIG_PACKAGE_kmod-ipt-geoip is not set -# CONFIG_PACKAGE_kmod-ipt-hashlimit is not set -# CONFIG_PACKAGE_kmod-ipt-iface is not set -# CONFIG_PACKAGE_kmod-ipt-ipmark is not set -CONFIG_PACKAGE_kmod-ipt-ipopt=y -# CONFIG_PACKAGE_kmod-ipt-ipp2p is not set -# CONFIG_PACKAGE_kmod-ipt-iprange is not set -CONFIG_PACKAGE_kmod-ipt-ipsec=y -CONFIG_PACKAGE_kmod-ipt-ipset=y -# CONFIG_PACKAGE_kmod-ipt-ipv4options is not set -# CONFIG_PACKAGE_kmod-ipt-led is not set -# CONFIG_PACKAGE_kmod-ipt-length2 is not set -# CONFIG_PACKAGE_kmod-ipt-logmark is not set -# CONFIG_PACKAGE_kmod-ipt-lscan is not set -# CONFIG_PACKAGE_kmod-ipt-lua is not set -CONFIG_PACKAGE_kmod-ipt-nat=y -CONFIG_PACKAGE_kmod-ipt-nat-extra=y -# CONFIG_PACKAGE_kmod-ipt-nat6 is not set -# CONFIG_PACKAGE_kmod-ipt-nathelper-rtsp is not set -# CONFIG_PACKAGE_kmod-ipt-nflog is not set -# CONFIG_PACKAGE_kmod-ipt-nfqueue is not set -# CONFIG_PACKAGE_kmod-ipt-psd is not set -# CONFIG_PACKAGE_kmod-ipt-quota2 is not set -# CONFIG_PACKAGE_kmod-ipt-raw is not set -# CONFIG_PACKAGE_kmod-ipt-raw6 is not set -# CONFIG_PACKAGE_kmod-ipt-rpfilter is not set -# CONFIG_PACKAGE_kmod-ipt-sysrq is not set -# CONFIG_PACKAGE_kmod-ipt-tarpit is not set -# CONFIG_PACKAGE_kmod-ipt-tee is not set -CONFIG_PACKAGE_kmod-ipt-tproxy=y -# CONFIG_PACKAGE_kmod-ipt-u32 is not set -# CONFIG_PACKAGE_kmod-ipt-ulog is not set -CONFIG_PACKAGE_kmod-nf-conntrack=y -CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y -CONFIG_PACKAGE_kmod-nf-conntrack6=y -CONFIG_PACKAGE_kmod-nf-ipt=y -CONFIG_PACKAGE_kmod-nf-ipt6=y -CONFIG_PACKAGE_kmod-nf-nat=y -# CONFIG_PACKAGE_kmod-nf-nat6 is not set -CONFIG_PACKAGE_kmod-nf-nathelper=y -CONFIG_PACKAGE_kmod-nf-nathelper-extra=y -CONFIG_PACKAGE_kmod-nfnetlink=y -# CONFIG_PACKAGE_kmod-nfnetlink-log is not set -# CONFIG_PACKAGE_kmod-nfnetlink-queue is not set -# CONFIG_PACKAGE_kmod-nft-core is not set -# CONFIG_PACKAGE_kmod-nft-nat is not set -# CONFIG_PACKAGE_kmod-nft-nat6 is not set - -# -# Network Devices -# -# CONFIG_PACKAGE_kmod-3c59x is not set -# CONFIG_PACKAGE_kmod-8139cp is not set -# CONFIG_PACKAGE_kmod-8139too is not set -# CONFIG_PACKAGE_kmod-atl1 is not set -# CONFIG_PACKAGE_kmod-atl1c is not set -# CONFIG_PACKAGE_kmod-atl1e is not set -# CONFIG_PACKAGE_kmod-atl2 is not set -# CONFIG_PACKAGE_kmod-b44 is not set -# CONFIG_PACKAGE_kmod-bnx2 is not set -# CONFIG_PACKAGE_kmod-dm9000 is not set -# CONFIG_PACKAGE_kmod-dummy is not set -# CONFIG_PACKAGE_kmod-e100 is not set -# CONFIG_PACKAGE_kmod-e1000 is not set -# CONFIG_PACKAGE_kmod-et131x is not set -# CONFIG_PACKAGE_kmod-ethoc is not set -# CONFIG_PACKAGE_kmod-forcedeth is not set -# CONFIG_PACKAGE_kmod-gigaset is not set -# CONFIG_PACKAGE_kmod-hfcmulti is not set -# CONFIG_PACKAGE_kmod-hfcpci is not set -CONFIG_PACKAGE_kmod-ifb=y -# CONFIG_PACKAGE_kmod-igb is not set -# CONFIG_PACKAGE_kmod-ixgbe is not set -# CONFIG_PACKAGE_kmod-libphy is not set -CONFIG_PACKAGE_kmod-macvlan=y -# CONFIG_PACKAGE_kmod-mii is not set -# CONFIG_PACKAGE_kmod-natsemi is not set -# CONFIG_PACKAGE_kmod-ne2k-pci is not set -# CONFIG_PACKAGE_kmod-of-mdio is not set -# CONFIG_PACKAGE_kmod-pcnet32 is not set -# CONFIG_PACKAGE_kmod-phy-broadcom is not set -# CONFIG_PACKAGE_kmod-ppfe is not set -# CONFIG_PACKAGE_kmod-r6040 is not set -# CONFIG_PACKAGE_kmod-r8169 is not set -# CONFIG_PACKAGE_kmod-siit is not set -# CONFIG_PACKAGE_kmod-sis190 is not set -# CONFIG_PACKAGE_kmod-sis900 is not set -# CONFIG_PACKAGE_kmod-skge is not set -# CONFIG_PACKAGE_kmod-sky2 is not set -# CONFIG_PACKAGE_kmod-solos-pci is not set -# CONFIG_PACKAGE_kmod-spi-ks8995 is not set -# CONFIG_PACKAGE_kmod-swconfig is not set -# CONFIG_PACKAGE_kmod-switch-ip17xx is not set -# CONFIG_PACKAGE_kmod-switch-mvsw61xx is not set -# CONFIG_PACKAGE_kmod-switch-rtl8366-smi is not set -# CONFIG_PACKAGE_kmod-switch-rtl8366rb is not set -# CONFIG_PACKAGE_kmod-switch-rtl8366s is not set -# CONFIG_PACKAGE_kmod-switch-rtl8367b is not set -# CONFIG_PACKAGE_kmod-tg3 is not set -# CONFIG_PACKAGE_kmod-tulip is not set -# CONFIG_PACKAGE_kmod-via-rhine is not set -# CONFIG_PACKAGE_kmod-via-velocity is not set -# CONFIG_PACKAGE_kmod-vmxnet3 is not set - -# -# Network Support -# -# CONFIG_PACKAGE_kmod-appletalk is not set -# CONFIG_PACKAGE_kmod-atm is not set -# CONFIG_PACKAGE_kmod-ax25 is not set -# CONFIG_PACKAGE_kmod-batman-adv is not set -# CONFIG_PACKAGE_kmod-bonding is not set -# CONFIG_PACKAGE_kmod-capi is not set -# CONFIG_PACKAGE_kmod-dnsresolver is not set -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-gre=y -# CONFIG_PACKAGE_kmod-gre6 is not set -# CONFIG_PACKAGE_kmod-ip-vti is not set -# CONFIG_PACKAGE_kmod-ip6-tunnel is not set -# CONFIG_PACKAGE_kmod-ip6-vti is not set -# CONFIG_PACKAGE_kmod-ipip is not set -CONFIG_PACKAGE_kmod-ipsec=y -CONFIG_PACKAGE_kmod-ipsec4=y -CONFIG_PACKAGE_kmod-ipsec6=y -CONFIG_PACKAGE_kmod-iptunnel=y -CONFIG_PACKAGE_kmod-iptunnel4=y -CONFIG_PACKAGE_kmod-iptunnel6=y -# CONFIG_PACKAGE_kmod-isdn4linux is not set -# CONFIG_PACKAGE_kmod-jool is not set -# CONFIG_PACKAGE_kmod-l2tp is not set -# CONFIG_PACKAGE_kmod-l2tp-eth is not set -# CONFIG_PACKAGE_kmod-l2tp-ip is not set -# CONFIG_PACKAGE_kmod-misdn is not set -# CONFIG_PACKAGE_kmod-mpls is not set -CONFIG_PACKAGE_kmod-ppp=y -CONFIG_PACKAGE_kmod-mppe=y -# CONFIG_PACKAGE_kmod-nat46 is not set -# CONFIG_PACKAGE_kmod-netem is not set -# CONFIG_PACKAGE_kmod-nlmon is not set -# CONFIG_PACKAGE_kmod-openvswitch is not set -# CONFIG_PACKAGE_kmod-pktgen is not set -# CONFIG_PACKAGE_kmod-ppp-synctty is not set -# CONFIG_PACKAGE_kmod-pppoa is not set -CONFIG_PACKAGE_kmod-pppoe=y -# CONFIG_PACKAGE_kmod-pppol2tp is not set -CONFIG_PACKAGE_kmod-pppox=y -# CONFIG_PACKAGE_kmod-pptp is not set -# CONFIG_PACKAGE_kmod-sched is not set -CONFIG_PACKAGE_kmod-sched-cake=y -# CONFIG_PACKAGE_kmod-sched-connmark is not set -CONFIG_PACKAGE_kmod-sched-core=y -# CONFIG_PACKAGE_kmod-sctp is not set -CONFIG_PACKAGE_kmod-shortcut-fe=y -# CONFIG_PACKAGE_kmod-shortcut-fe-cm is not set -# CONFIG_PACKAGE_kmod-sit is not set -CONFIG_PACKAGE_kmod-slhc=y -# CONFIG_PACKAGE_kmod-slip is not set -# CONFIG_PACKAGE_kmod-trelay is not set -CONFIG_PACKAGE_kmod-tun=y -# CONFIG_PACKAGE_kmod-veth is not set -# CONFIG_PACKAGE_kmod-vxlan is not set -# CONFIG_PACKAGE_kmod-wireguard is not set - -# -# Other modules -# -# CONFIG_PACKAGE_kmod-6lowpan is not set -# CONFIG_PACKAGE_kmod-ath3k is not set -# CONFIG_PACKAGE_kmod-bcma is not set -# CONFIG_PACKAGE_kmod-bluetooth is not set -# CONFIG_PACKAGE_kmod-bluetooth_6lowpan is not set -# CONFIG_PACKAGE_kmod-bmp085 is not set -# CONFIG_PACKAGE_kmod-bmp085-i2c is not set -# CONFIG_PACKAGE_kmod-bmp085-spi is not set -# CONFIG_PACKAGE_kmod-button-hotplug is not set -# CONFIG_PACKAGE_kmod-echo is not set -# CONFIG_PACKAGE_kmod-eeprom-93cx6 is not set -# CONFIG_PACKAGE_kmod-eeprom-at24 is not set -# CONFIG_PACKAGE_kmod-eeprom-at25 is not set -# CONFIG_PACKAGE_kmod-gpio-beeper is not set -CONFIG_PACKAGE_kmod-gpio-button-hotplug=y -# CONFIG_PACKAGE_kmod-gpio-dev is not set -# CONFIG_PACKAGE_kmod-gpio-mcp23s08 is not set -# CONFIG_PACKAGE_kmod-gpio-nxp-74hc164 is not set -# CONFIG_PACKAGE_kmod-gpio-pca953x is not set -# CONFIG_PACKAGE_kmod-gpio-pcf857x is not set -# CONFIG_PACKAGE_kmod-iio-core is not set -# CONFIG_PACKAGE_kmod-ikconfig is not set -# CONFIG_PACKAGE_kmod-lp is not set -# CONFIG_PACKAGE_kmod-mmc is not set -# CONFIG_PACKAGE_kmod-mtd-rw is not set -# CONFIG_PACKAGE_kmod-mtdtests is not set -# CONFIG_PACKAGE_kmod-pps is not set -# CONFIG_PACKAGE_kmod-pps-gpio is not set -# CONFIG_PACKAGE_kmod-pps-ldisc is not set -# CONFIG_PACKAGE_kmod-ptp is not set -# CONFIG_PACKAGE_kmod-random-core is not set -# CONFIG_PACKAGE_kmod-regmap is not set -# CONFIG_PACKAGE_kmod-rotary-gpio-custom is not set -# CONFIG_PACKAGE_kmod-rtc-ds1307 is not set -# CONFIG_PACKAGE_kmod-rtc-ds1374 is not set -# CONFIG_PACKAGE_kmod-rtc-ds1672 is not set -# CONFIG_PACKAGE_kmod-rtc-isl1208 is not set -# CONFIG_PACKAGE_kmod-rtc-pcf2123 is not set -# CONFIG_PACKAGE_kmod-rtc-pcf8563 is not set -# CONFIG_PACKAGE_kmod-rtc-pt7c4338 is not set -# CONFIG_PACKAGE_kmod-rtc-rs5c372a is not set -# CONFIG_PACKAGE_kmod-sdhci is not set -# CONFIG_PACKAGE_kmod-serial-8250 is not set -# CONFIG_PACKAGE_kmod-softdog is not set -# CONFIG_PACKAGE_kmod-ssb is not set -# CONFIG_PACKAGE_kmod-tpm is not set -# CONFIG_PACKAGE_kmod-tpm-i2c-atmel is not set -# CONFIG_PACKAGE_kmod-tpm-i2c-infineon is not set -# CONFIG_PACKAGE_kmod-w83627hf-wdt is not set -# CONFIG_PACKAGE_kmod-zram is not set - -# -# PCMCIA support -# - -# -# SPI Support -# -# CONFIG_PACKAGE_kmod-mmc-spi is not set -# CONFIG_PACKAGE_kmod-spi-bitbang is not set -# CONFIG_PACKAGE_kmod-spi-dev is not set -# CONFIG_PACKAGE_kmod-spi-gpio is not set -# CONFIG_PACKAGE_kmod-spi-gpio-custom is not set -# CONFIG_PACKAGE_kmod-spi-gpio-old is not set -# CONFIG_PACKAGE_kmod-spi-vsc7385 is not set - -# -# Sound Support -# -# CONFIG_PACKAGE_kmod-sound-core is not set - -# -# USB Support -# -# CONFIG_PACKAGE_kmod-usb-acm is not set -# CONFIG_PACKAGE_kmod-usb-atm is not set -# CONFIG_PACKAGE_kmod-usb-chipidea is not set -# CONFIG_PACKAGE_kmod-usb-cm109 is not set -CONFIG_PACKAGE_kmod-usb-core=y -# CONFIG_PACKAGE_kmod-usb-dwc2 is not set -# CONFIG_PACKAGE_kmod-usb-dwc3 is not set -# CONFIG_PACKAGE_kmod-usb-dwc3-of-simple is not set -CONFIG_PACKAGE_kmod-usb-ehci=y -# CONFIG_PACKAGE_kmod-usb-gadget-ehci-debug is not set -# CONFIG_PACKAGE_kmod-usb-gadget-eth is not set -# CONFIG_PACKAGE_kmod-usb-gadget-mass-storage is not set -# CONFIG_PACKAGE_kmod-usb-gadget-serial is not set -# CONFIG_PACKAGE_kmod-usb-hid is not set -CONFIG_PACKAGE_kmod-usb-ledtrig-usbport=y -# CONFIG_PACKAGE_kmod-usb-net is not set -# CONFIG_PACKAGE_kmod-usb-net2280 is not set -CONFIG_PACKAGE_kmod-usb-ohci=y -# CONFIG_PACKAGE_kmod-usb-ohci-pci is not set -# CONFIG_PACKAGE_kmod-usb-phy-qcom-ipq4019 is not set -CONFIG_PACKAGE_kmod-usb-printer=y -# CONFIG_PACKAGE_kmod-usb-serial is not set -CONFIG_PACKAGE_kmod-usb-storage=y -CONFIG_PACKAGE_kmod-usb-storage-extras=y -# CONFIG_PACKAGE_kmod-usb-uhci is not set -# CONFIG_PACKAGE_kmod-usb-wdm is not set -# CONFIG_PACKAGE_kmod-usb-yealink is not set -CONFIG_PACKAGE_kmod-usb2=y -# CONFIG_PACKAGE_kmod-usb2-pci is not set -# CONFIG_PACKAGE_kmod-usb3 is not set -# CONFIG_PACKAGE_kmod-usbip is not set -# CONFIG_PACKAGE_kmod-usbip-client is not set -# CONFIG_PACKAGE_kmod-usbip-server is not set -# CONFIG_PACKAGE_kmod-usbmon is not set - -# -# Video Support -# -# CONFIG_PACKAGE_kmod-video-core is not set - -# -# Virtualization -# - -# -# Voice over IP -# -# CONFIG_PACKAGE_kmod-dahdi is not set - -# -# W1 support -# -# CONFIG_PACKAGE_kmod-w1 is not set - -# -# WPAN 802.15.4 Support -# -# CONFIG_PACKAGE_kmod-at86rf230 is not set -# CONFIG_PACKAGE_kmod-cc2520 is not set -# CONFIG_PACKAGE_kmod-fakelb is not set -# CONFIG_PACKAGE_kmod-ieee802154 is not set -# CONFIG_PACKAGE_kmod-ieee802154_6lowpan is not set -# CONFIG_PACKAGE_kmod-mac802154 is not set -# CONFIG_PACKAGE_kmod-mrf24j40 is not set - -# -# Wireless Drivers -# -# CONFIG_PACKAGE_kmod-adm8211 is not set -CONFIG_PACKAGE_kmod-ath=y -CONFIG_ATH_USER_REGD=y -# CONFIG_PACKAGE_ATH_DEBUG is not set -CONFIG_PACKAGE_ATH_DFS=y -CONFIG_PACKAGE_kmod-ath10k=y -# CONFIG_PACKAGE_kmod-ath10k-ct is not set -# CONFIG_PACKAGE_kmod-ath5k is not set -# CONFIG_PACKAGE_kmod-ath6kl-sdio is not set -# CONFIG_PACKAGE_kmod-ath6kl-usb is not set -CONFIG_PACKAGE_kmod-ath9k=y -# CONFIG_ATH9K_SUPPORT_PCOEM is not set -# CONFIG_ATH9K_TX99 is not set -CONFIG_ATH9K_UBNTHSR=y -CONFIG_PACKAGE_kmod-ath9k-common=y -# CONFIG_PACKAGE_kmod-ath9k-htc is not set -# CONFIG_PACKAGE_kmod-b43 is not set -# CONFIG_PACKAGE_kmod-b43legacy is not set -# CONFIG_PACKAGE_kmod-brcmfmac is not set -# CONFIG_PACKAGE_kmod-brcmsmac is not set -# CONFIG_PACKAGE_kmod-brcmutil is not set -# CONFIG_PACKAGE_kmod-carl9170 is not set -CONFIG_PACKAGE_kmod-cfg80211=y -# CONFIG_PACKAGE_kmod-hermes is not set -# CONFIG_PACKAGE_kmod-hermes-pci is not set -# CONFIG_PACKAGE_kmod-hermes-plx is not set -# CONFIG_PACKAGE_kmod-iwl-legacy is not set -# CONFIG_PACKAGE_kmod-iwl3945 is not set -# CONFIG_PACKAGE_kmod-iwl4965 is not set -# CONFIG_PACKAGE_kmod-iwlwifi is not set -# CONFIG_PACKAGE_kmod-lib80211 is not set -# CONFIG_PACKAGE_kmod-libertas-sdio is not set -# CONFIG_PACKAGE_kmod-libertas-spi is not set -# CONFIG_PACKAGE_kmod-libertas-usb is not set -CONFIG_PACKAGE_kmod-mac80211=y -CONFIG_PACKAGE_MAC80211_DEBUGFS=y -# CONFIG_PACKAGE_MAC80211_TRACING is not set -CONFIG_PACKAGE_MAC80211_MESH=y -# CONFIG_PACKAGE_kmod-mac80211-hwsim is not set -# CONFIG_PACKAGE_kmod-mt76 is not set -# CONFIG_PACKAGE_kmod-mt76-core is not set -# CONFIG_PACKAGE_kmod-mt7601u is not set -# CONFIG_PACKAGE_kmod-mt7603 is not set -# CONFIG_PACKAGE_kmod-mt76x2 is not set -# CONFIG_PACKAGE_kmod-mwifiex-pcie is not set -# CONFIG_PACKAGE_kmod-mwifiex-sdio is not set -# CONFIG_PACKAGE_kmod-mwl8k is not set -# CONFIG_PACKAGE_kmod-net-prism54 is not set -# CONFIG_PACKAGE_kmod-net-rtl8192su is not set -# CONFIG_PACKAGE_kmod-owl-loader is not set -# CONFIG_PACKAGE_kmod-p54-common is not set -# CONFIG_PACKAGE_kmod-p54-pci is not set -# CONFIG_PACKAGE_kmod-p54-usb is not set -# CONFIG_PACKAGE_kmod-rt2400-pci is not set -# CONFIG_PACKAGE_kmod-rt2500-pci is not set -# CONFIG_PACKAGE_kmod-rt2500-usb is not set -# CONFIG_PACKAGE_kmod-rt2800-pci is not set -# CONFIG_PACKAGE_kmod-rt2800-usb is not set -# CONFIG_PACKAGE_kmod-rt2x00-lib is not set -# CONFIG_PACKAGE_kmod-rt61-pci is not set -# CONFIG_PACKAGE_kmod-rt73-usb is not set -# CONFIG_PACKAGE_kmod-rtl8180 is not set -# CONFIG_PACKAGE_kmod-rtl8187 is not set -# CONFIG_PACKAGE_kmod-rtl8192ce is not set -# CONFIG_PACKAGE_kmod-rtl8192cu is not set -# CONFIG_PACKAGE_kmod-rtl8192de is not set -# CONFIG_PACKAGE_kmod-rtl8192se is not set -# CONFIG_PACKAGE_kmod-rtl8821ae is not set -# CONFIG_PACKAGE_kmod-rtl8xxxu is not set -# CONFIG_PACKAGE_kmod-wl12xx is not set -# CONFIG_PACKAGE_kmod-wl18xx is not set -# CONFIG_PACKAGE_kmod-wlcore is not set -# CONFIG_PACKAGE_kmod-zd1211rw is not set - -# -# Languages -# - -# -# Erlang -# -# CONFIG_PACKAGE_erlang is not set -# CONFIG_PACKAGE_erlang-asn1 is not set -# CONFIG_PACKAGE_erlang-compiler is not set -# CONFIG_PACKAGE_erlang-crypto is not set -# CONFIG_PACKAGE_erlang-hipe is not set -# CONFIG_PACKAGE_erlang-inets is not set -# CONFIG_PACKAGE_erlang-mnesia is not set -# CONFIG_PACKAGE_erlang-runtime-tools is not set -# CONFIG_PACKAGE_erlang-snmp is not set -# CONFIG_PACKAGE_erlang-ssh is not set -# CONFIG_PACKAGE_erlang-ssl is not set -# CONFIG_PACKAGE_erlang-syntax-tools is not set - -# -# Java -# -# CONFIG_PACKAGE_jamvm is not set - -# -# Lua -# -# CONFIG_PACKAGE_dkjson is not set -# CONFIG_PACKAGE_json4lua is not set -CONFIG_PACKAGE_libiwinfo-lua=y -# CONFIG_PACKAGE_lpeg is not set -# CONFIG_PACKAGE_lsqlite3 is not set -CONFIG_PACKAGE_lua=y -# CONFIG_PACKAGE_lua-bencode is not set -# CONFIG_PACKAGE_lua-cjson is not set -# CONFIG_PACKAGE_lua-copas is not set -# CONFIG_PACKAGE_lua-coxpcall is not set -# CONFIG_PACKAGE_lua-examples is not set -# CONFIG_PACKAGE_lua-lzlib is not set -# CONFIG_PACKAGE_lua-md5 is not set -# CONFIG_PACKAGE_lua-mobdebug is not set -# CONFIG_PACKAGE_lua-mosquitto is not set -# CONFIG_PACKAGE_lua-openssl is not set -# CONFIG_PACKAGE_lua-penlight is not set -# CONFIG_PACKAGE_lua-rings is not set -# CONFIG_PACKAGE_lua-rs232 is not set -# CONFIG_PACKAGE_lua-sha2 is not set -# CONFIG_PACKAGE_lua-wsapi-base is not set -# CONFIG_PACKAGE_lua-wsapi-xavante is not set -# CONFIG_PACKAGE_lua-xavante is not set -# CONFIG_PACKAGE_luabitop is not set -# CONFIG_PACKAGE_luac is not set -# CONFIG_PACKAGE_luaexpat is not set -# CONFIG_PACKAGE_luafilesystem is not set -# CONFIG_PACKAGE_luai2c is not set -# CONFIG_PACKAGE_luajit is not set -# CONFIG_PACKAGE_lualanes is not set -# CONFIG_PACKAGE_luaposix is not set -# CONFIG_PACKAGE_luarocks is not set -# CONFIG_PACKAGE_luasec is not set -# CONFIG_PACKAGE_luasoap is not set -# CONFIG_PACKAGE_luasocket is not set -# CONFIG_PACKAGE_luasql-mysql is not set -# CONFIG_PACKAGE_luasql-pgsql is not set -# CONFIG_PACKAGE_luasql-sqlite3 is not set -CONFIG_PACKAGE_luci-lib-fs=y -# CONFIG_PACKAGE_luv is not set -# CONFIG_PACKAGE_lzmq is not set -# CONFIG_PACKAGE_uuid is not set - -# -# Node.js -# -# CONFIG_PACKAGE_node is not set - -# -# Module Selection -# -# CONFIG_NODEJS_ICU is not set -# CONFIG_PACKAGE_node-arduino-firmata is not set -# CONFIG_PACKAGE_node-cylon is not set -# CONFIG_PACKAGE_node-cylon-firmata is not set -# CONFIG_PACKAGE_node-cylon-gpio is not set -# CONFIG_PACKAGE_node-cylon-i2c is not set -# CONFIG_PACKAGE_node-hid is not set -# CONFIG_PACKAGE_node-npm is not set -# CONFIG_PACKAGE_node-serialport is not set - -# -# PHP -# -# CONFIG_PACKAGE_php7 is not set - -# -# Perl -# -# CONFIG_PACKAGE_perl is not set - -# -# Python -# -# CONFIG_PACKAGE_chardet is not set -# CONFIG_PACKAGE_django is not set -# CONFIG_PACKAGE_django-appconf is not set -# CONFIG_PACKAGE_django-compressor is not set -# CONFIG_PACKAGE_django-constance is not set -# CONFIG_PACKAGE_django-jsonfield is not set -# CONFIG_PACKAGE_django-picklefield is not set -# CONFIG_PACKAGE_django-postoffice is not set -# CONFIG_PACKAGE_django-restframework is not set -# CONFIG_PACKAGE_django-statici18n is not set -# CONFIG_PACKAGE_et_xmlfile is not set -# CONFIG_PACKAGE_flup is not set -# CONFIG_PACKAGE_gunicorn is not set -# CONFIG_PACKAGE_jdcal is not set -# CONFIG_PACKAGE_micropython is not set -# CONFIG_PACKAGE_micropython-lib is not set -# CONFIG_PACKAGE_openpyxl is not set -# CONFIG_PACKAGE_pillow is not set -# CONFIG_PACKAGE_python is not set -# CONFIG_PACKAGE_python-asn1crypto is not set -# CONFIG_PACKAGE_python-attrs is not set -# CONFIG_PACKAGE_python-base is not set -# CONFIG_PACKAGE_python-base-src is not set -# CONFIG_PACKAGE_python-cffi is not set -# CONFIG_PACKAGE_python-codecs is not set -# CONFIG_PACKAGE_python-codecs-src is not set -# CONFIG_PACKAGE_python-compiler is not set -# CONFIG_PACKAGE_python-compiler-src is not set -# CONFIG_PACKAGE_python-crcmod is not set -# CONFIG_PACKAGE_python-crypto is not set -# CONFIG_PACKAGE_python-cryptography is not set -# CONFIG_PACKAGE_python-ctypes is not set -# CONFIG_PACKAGE_python-ctypes-src is not set -# CONFIG_PACKAGE_python-curl is not set -# CONFIG_PACKAGE_python-dateutil is not set -# CONFIG_PACKAGE_python-db is not set -# CONFIG_PACKAGE_python-db-src is not set -# CONFIG_PACKAGE_python-decimal is not set -# CONFIG_PACKAGE_python-decimal-src is not set -# CONFIG_PACKAGE_python-dev is not set -# CONFIG_PACKAGE_python-dev-src is not set -# CONFIG_PACKAGE_python-distutils is not set -# CONFIG_PACKAGE_python-distutils-src is not set -# CONFIG_PACKAGE_python-dns is not set -# CONFIG_PACKAGE_python-dpkt is not set -# CONFIG_PACKAGE_python-egenix-mx-base is not set -# CONFIG_PACKAGE_python-email is not set -# CONFIG_PACKAGE_python-email-src is not set -# CONFIG_PACKAGE_python-enum34 is not set -# CONFIG_PACKAGE_python-evdev is not set -# CONFIG_PACKAGE_python-gdbm is not set -# CONFIG_PACKAGE_python-gdbm-src is not set -# CONFIG_PACKAGE_python-gmpy2 is not set -# CONFIG_PACKAGE_python-gnupg is not set -# CONFIG_PACKAGE_python-idna is not set -# CONFIG_PACKAGE_python-ipaddress is not set -# CONFIG_PACKAGE_python-ldap is not set -# CONFIG_PACKAGE_python-lib2to3 is not set -# CONFIG_PACKAGE_python-lib2to3-src is not set -# CONFIG_PACKAGE_python-light is not set -# CONFIG_PACKAGE_python-light-src is not set -# CONFIG_PACKAGE_python-logging is not set -# CONFIG_PACKAGE_python-logging-src is not set -# CONFIG_PACKAGE_python-lxml is not set -# CONFIG_PACKAGE_python-multiprocessing is not set -# CONFIG_PACKAGE_python-multiprocessing-src is not set -# CONFIG_PACKAGE_python-mysql is not set -# CONFIG_PACKAGE_python-ncurses is not set -# CONFIG_PACKAGE_python-ncurses-src is not set -# CONFIG_PACKAGE_python-openssl is not set -# CONFIG_PACKAGE_python-openssl-src is not set -# CONFIG_PACKAGE_python-parsley is not set -# CONFIG_PACKAGE_python-pcapy is not set -# CONFIG_PACKAGE_python-pip is not set -# CONFIG_PACKAGE_python-pip-conf is not set -# CONFIG_PACKAGE_python-pip-src is not set -# CONFIG_PACKAGE_python-ply is not set -# CONFIG_PACKAGE_python-psycopg2 is not set -# CONFIG_PACKAGE_python-pyasn1 is not set -# CONFIG_PACKAGE_python-pyasn1-modules is not set -# CONFIG_PACKAGE_python-pycparser is not set -# CONFIG_PACKAGE_python-pydoc is not set -# CONFIG_PACKAGE_python-pydoc-src is not set -# CONFIG_PACKAGE_python-pyodbc is not set -# CONFIG_PACKAGE_python-pyopenssl is not set -# CONFIG_PACKAGE_python-pyptlib is not set -# CONFIG_PACKAGE_python-pyserial is not set -# CONFIG_PACKAGE_python-service-identity is not set -# CONFIG_PACKAGE_python-setuptools is not set -# CONFIG_PACKAGE_python-setuptools-src is not set -# CONFIG_PACKAGE_python-six is not set -# CONFIG_PACKAGE_python-smbus is not set -# CONFIG_PACKAGE_python-sqlite3 is not set -# CONFIG_PACKAGE_python-sqlite3-src is not set -# CONFIG_PACKAGE_python-src is not set -# CONFIG_PACKAGE_python-txsocksx is not set -# CONFIG_PACKAGE_python-unittest is not set -# CONFIG_PACKAGE_python-unittest-src is not set -# CONFIG_PACKAGE_python-urllib3 is not set -# CONFIG_PACKAGE_python-xml is not set -# CONFIG_PACKAGE_python-xml-src is not set -# CONFIG_PACKAGE_python-yaml is not set -# CONFIG_PACKAGE_python3 is not set -# CONFIG_PACKAGE_python3-asn1crypto is not set -# CONFIG_PACKAGE_python3-asyncio is not set -# CONFIG_PACKAGE_python3-asyncio-src is not set -# CONFIG_PACKAGE_python3-base is not set -# CONFIG_PACKAGE_python3-base-src is not set -# CONFIG_PACKAGE_python3-bottle is not set -# CONFIG_PACKAGE_python3-cffi is not set -# CONFIG_PACKAGE_python3-click is not set -# CONFIG_PACKAGE_python3-codecs is not set -# CONFIG_PACKAGE_python3-codecs-src is not set -# CONFIG_PACKAGE_python3-cryptography is not set -# CONFIG_PACKAGE_python3-ctypes is not set -# CONFIG_PACKAGE_python3-ctypes-src is not set -# CONFIG_PACKAGE_python3-dbm is not set -# CONFIG_PACKAGE_python3-dbm-src is not set -# CONFIG_PACKAGE_python3-decimal is not set -# CONFIG_PACKAGE_python3-decimal-src is not set -# CONFIG_PACKAGE_python3-dev is not set -# CONFIG_PACKAGE_python3-dev-src is not set -# CONFIG_PACKAGE_python3-distutils is not set -# CONFIG_PACKAGE_python3-distutils-src is not set -# CONFIG_PACKAGE_python3-email is not set -# CONFIG_PACKAGE_python3-email-src is not set -# CONFIG_PACKAGE_python3-evdev is not set -# CONFIG_PACKAGE_python3-flask is not set -# CONFIG_PACKAGE_python3-gdbm is not set -# CONFIG_PACKAGE_python3-gdbm-src is not set -# CONFIG_PACKAGE_python3-gnupg is not set -# CONFIG_PACKAGE_python3-idna is not set -# CONFIG_PACKAGE_python3-itsdangerous is not set -# CONFIG_PACKAGE_python3-jinja2 is not set -# CONFIG_PACKAGE_python3-lib2to3 is not set -# CONFIG_PACKAGE_python3-lib2to3-src is not set -# CONFIG_PACKAGE_python3-light is not set -# CONFIG_PACKAGE_python3-light-src is not set -# CONFIG_PACKAGE_python3-logging is not set -# CONFIG_PACKAGE_python3-logging-src is not set -# CONFIG_PACKAGE_python3-lxml is not set -# CONFIG_PACKAGE_python3-lzma is not set -# CONFIG_PACKAGE_python3-lzma-src is not set -# CONFIG_PACKAGE_python3-markupsafe is not set -# CONFIG_PACKAGE_python3-multiprocessing is not set -# CONFIG_PACKAGE_python3-multiprocessing-src is not set -# CONFIG_PACKAGE_python3-ncurses is not set -# CONFIG_PACKAGE_python3-ncurses-src is not set -# CONFIG_PACKAGE_python3-openssl is not set -# CONFIG_PACKAGE_python3-openssl-src is not set -# CONFIG_PACKAGE_python3-pip is not set -# CONFIG_PACKAGE_python3-pip-src is not set -# CONFIG_PACKAGE_python3-ply is not set -# CONFIG_PACKAGE_python3-pyasn1 is not set -# CONFIG_PACKAGE_python3-pyasn1-modules is not set -# CONFIG_PACKAGE_python3-pycparser is not set -# CONFIG_PACKAGE_python3-pydoc is not set -# CONFIG_PACKAGE_python3-pydoc-src is not set -# CONFIG_PACKAGE_python3-pyodbc is not set -# CONFIG_PACKAGE_python3-pyopenssl is not set -# CONFIG_PACKAGE_python3-setuptools is not set -# CONFIG_PACKAGE_python3-setuptools-src is not set -# CONFIG_PACKAGE_python3-six is not set -# CONFIG_PACKAGE_python3-smbus is not set -# CONFIG_PACKAGE_python3-sqlite3 is not set -# CONFIG_PACKAGE_python3-sqlite3-src is not set -# CONFIG_PACKAGE_python3-src is not set -# CONFIG_PACKAGE_python3-unittest is not set -# CONFIG_PACKAGE_python3-unittest-src is not set -# CONFIG_PACKAGE_python3-werkzeug is not set -# CONFIG_PACKAGE_python3-xml is not set -# CONFIG_PACKAGE_python3-xml-src is not set -# CONFIG_PACKAGE_python3-yaml is not set -# CONFIG_PACKAGE_pytz is not set -# CONFIG_PACKAGE_rcssmin is not set -# CONFIG_PACKAGE_simplejson is not set -# CONFIG_PACKAGE_twisted is not set -# CONFIG_PACKAGE_zope-interface is not set - -# -# Ruby -# -# CONFIG_PACKAGE_ruby is not set - -# -# Tcl -# -# CONFIG_PACKAGE_vala is not set - -# -# Libraries -# - -# -# Compression -# -# CONFIG_PACKAGE_libbz2 is not set -# CONFIG_PACKAGE_liblzma is not set -# CONFIG_PACKAGE_libunrar is not set - -# -# Filesystem -# -# CONFIG_PACKAGE_libacl is not set -# CONFIG_PACKAGE_libattr is not set -# CONFIG_PACKAGE_libext2fs is not set -# CONFIG_PACKAGE_libfuse is not set -# CONFIG_PACKAGE_libow is not set -# CONFIG_PACKAGE_libow-capi is not set -# CONFIG_PACKAGE_libsysfs is not set - -# -# Firewall -# -# CONFIG_PACKAGE_libfko is not set -CONFIG_PACKAGE_libip4tc=y -CONFIG_PACKAGE_libip6tc=y -# CONFIG_PACKAGE_libiptc is not set -CONFIG_PACKAGE_libxtables=y - -# -# Instant Messaging -# -# CONFIG_PACKAGE_quasselc is not set - -# -# IoT -# -# CONFIG_PACKAGE_libupm is not set -# CONFIG_PACKAGE_libupm-a110x is not set -# CONFIG_PACKAGE_libupm-ad8232 is not set -# CONFIG_PACKAGE_libupm-adafruitss is not set -# CONFIG_PACKAGE_libupm-adc121c021 is not set -# CONFIG_PACKAGE_libupm-adis16448 is not set -# CONFIG_PACKAGE_libupm-adxl335 is not set -# CONFIG_PACKAGE_libupm-adxl345 is not set -# CONFIG_PACKAGE_libupm-am2315 is not set -# CONFIG_PACKAGE_libupm-apds9002 is not set -# CONFIG_PACKAGE_libupm-at42qt1070 is not set -# CONFIG_PACKAGE_libupm-biss0001 is not set -# CONFIG_PACKAGE_libupm-bmpx8x is not set -# CONFIG_PACKAGE_libupm-buzzer is not set -# CONFIG_PACKAGE_libupm-cjq4435 is not set -# CONFIG_PACKAGE_libupm-ds1307 is not set -# CONFIG_PACKAGE_libupm-ecs1030 is not set -# CONFIG_PACKAGE_libupm-enc03r is not set -# CONFIG_PACKAGE_libupm-flex is not set -# CONFIG_PACKAGE_libupm-gas is not set -# CONFIG_PACKAGE_libupm-gp2y0a is not set -# CONFIG_PACKAGE_libupm-grove is not set -# CONFIG_PACKAGE_libupm-grovecircularled is not set -# CONFIG_PACKAGE_libupm-grovecollision is not set -# CONFIG_PACKAGE_libupm-groveehr is not set -# CONFIG_PACKAGE_libupm-groveeldriver is not set -# CONFIG_PACKAGE_libupm-groveelectromagnet is not set -# CONFIG_PACKAGE_libupm-groveemg is not set -# CONFIG_PACKAGE_libupm-grovegprs is not set -# CONFIG_PACKAGE_libupm-grovegsr is not set -# CONFIG_PACKAGE_libupm-grovelinefinder is not set -# CONFIG_PACKAGE_libupm-grovemd is not set -# CONFIG_PACKAGE_libupm-grovemoisture is not set -# CONFIG_PACKAGE_libupm-groveo2 is not set -# CONFIG_PACKAGE_libupm-grovescam is not set -# CONFIG_PACKAGE_libupm-grovespeaker is not set -# CONFIG_PACKAGE_libupm-grovevdiv is not set -# CONFIG_PACKAGE_libupm-grovewater is not set -# CONFIG_PACKAGE_libupm-grovewfs is not set -# CONFIG_PACKAGE_libupm-guvas12d is not set -# CONFIG_PACKAGE_libupm-h3lis331dl is not set -# CONFIG_PACKAGE_libupm-hcsr04 is not set -# CONFIG_PACKAGE_libupm-hm11 is not set -# CONFIG_PACKAGE_libupm-hmc5883l is not set -# CONFIG_PACKAGE_libupm-hmtrp is not set -# CONFIG_PACKAGE_libupm-hp20x is not set -# CONFIG_PACKAGE_libupm-ht9170 is not set -# CONFIG_PACKAGE_libupm-htu21d is not set -# CONFIG_PACKAGE_libupm-hx711 is not set -# CONFIG_PACKAGE_libupm-i2clcd is not set -# CONFIG_PACKAGE_libupm-ina132 is not set -# CONFIG_PACKAGE_libupm-isd1820 is not set -# CONFIG_PACKAGE_libupm-itg3200 is not set -# CONFIG_PACKAGE_libupm-joystick12 is not set -# CONFIG_PACKAGE_libupm-l298 is not set -# CONFIG_PACKAGE_libupm-ldt0028 is not set -# CONFIG_PACKAGE_libupm-lm35 is not set -# CONFIG_PACKAGE_libupm-lol is not set -# CONFIG_PACKAGE_libupm-loudness is not set -# CONFIG_PACKAGE_libupm-lpd8806 is not set -# CONFIG_PACKAGE_libupm-lsm303 is not set -# CONFIG_PACKAGE_libupm-lsm9ds0 is not set -# CONFIG_PACKAGE_libupm-m24lr64e is not set -# CONFIG_PACKAGE_libupm-max31723 is not set -# CONFIG_PACKAGE_libupm-max31855 is not set -# CONFIG_PACKAGE_libupm-max44000 is not set -# CONFIG_PACKAGE_libupm-max5487 is not set -# CONFIG_PACKAGE_libupm-maxds3231m is not set -# CONFIG_PACKAGE_libupm-maxsonarez is not set -# CONFIG_PACKAGE_libupm-mg811 is not set -# CONFIG_PACKAGE_libupm-mhz16 is not set -# CONFIG_PACKAGE_libupm-mic is not set -# CONFIG_PACKAGE_libupm-mlx90614 is not set -# CONFIG_PACKAGE_libupm-mma7455 is not set -# CONFIG_PACKAGE_libupm-mma7660 is not set -# CONFIG_PACKAGE_libupm-mpl3115a2 is not set -# CONFIG_PACKAGE_libupm-mpr121 is not set -# CONFIG_PACKAGE_libupm-mpu9150 is not set -# CONFIG_PACKAGE_libupm-mq303a is not set -# CONFIG_PACKAGE_libupm-my9221 is not set -# CONFIG_PACKAGE_libupm-nrf24l01 is not set -# CONFIG_PACKAGE_libupm-nrf8001 is not set -# CONFIG_PACKAGE_libupm-nunchuck is not set -# CONFIG_PACKAGE_libupm-otp538u is not set -# CONFIG_PACKAGE_libupm-pn532 is not set -# CONFIG_PACKAGE_libupm-ppd42ns is not set -# CONFIG_PACKAGE_libupm-pulsensor is not set -# CONFIG_PACKAGE_libupm-rfr359f is not set -# CONFIG_PACKAGE_libupm-rgbringcoder is not set -# CONFIG_PACKAGE_libupm-rotaryencoder is not set -# CONFIG_PACKAGE_libupm-rpr220 is not set -# CONFIG_PACKAGE_libupm-servo is not set -# CONFIG_PACKAGE_libupm-si114x is not set -# CONFIG_PACKAGE_libupm-sm130 is not set -# CONFIG_PACKAGE_libupm-st7735 is not set -# CONFIG_PACKAGE_libupm-stepmotor is not set -# CONFIG_PACKAGE_libupm-sx6119 is not set -# CONFIG_PACKAGE_libupm-ta12200 is not set -# CONFIG_PACKAGE_libupm-tcs3414cs is not set -# CONFIG_PACKAGE_libupm-th02 is not set -# CONFIG_PACKAGE_libupm-tm1637 is not set -# CONFIG_PACKAGE_libupm-tsl2561 is not set -# CONFIG_PACKAGE_libupm-ttp223 is not set -# CONFIG_PACKAGE_libupm-ublox6 is not set -# CONFIG_PACKAGE_libupm-uln200xa is not set -# CONFIG_PACKAGE_libupm-waterlevel is not set -# CONFIG_PACKAGE_libupm-wheelencoder is not set -# CONFIG_PACKAGE_libupm-wt5001 is not set -# CONFIG_PACKAGE_libupm-yg1006 is not set -# CONFIG_PACKAGE_libupm-zfm20 is not set - -# -# Languages -# -# CONFIG_PACKAGE_libyaml is not set - -# -# Networking -# -# CONFIG_PACKAGE_libsctp is not set - -# -# SSL -# -# CONFIG_PACKAGE_libcyassl is not set -# CONFIG_PACKAGE_libgnutls is not set -# CONFIG_PACKAGE_libmbedtls is not set -CONFIG_PACKAGE_libopenssl=y -CONFIG_OPENSSL_WITH_EC=y -# CONFIG_OPENSSL_WITH_EC2M is not set -# CONFIG_OPENSSL_WITH_SSL3 is not set -CONFIG_OPENSSL_WITH_DEPRECATED=y -# CONFIG_OPENSSL_WITH_DTLS is not set -# CONFIG_OPENSSL_WITH_COMPRESSION is not set -CONFIG_OPENSSL_WITH_NPN=y -CONFIG_OPENSSL_WITH_PSK=y -CONFIG_OPENSSL_WITH_SRP=y -CONFIG_OPENSSL_THREADS=y -# CONFIG_OPENSSL_HARDWARE_SUPPORT is not set -# CONFIG_OPENSSL_ENGINE_CRYPTO is not set - -# -# Sound -# -# CONFIG_PACKAGE_liblo is not set - -# -# Telephony -# -# CONFIG_PACKAGE_bcg729 is not set -# CONFIG_PACKAGE_dahdi-tools-libtonezone is not set -# CONFIG_PACKAGE_libiksemel is not set -# CONFIG_PACKAGE_libortp is not set -# CONFIG_PACKAGE_libosip2 is not set -# CONFIG_PACKAGE_libpj is not set -# CONFIG_PACKAGE_libpjlib-util is not set -# CONFIG_PACKAGE_libpjmedia is not set -# CONFIG_PACKAGE_libpjnath is not set -# CONFIG_PACKAGE_libpjsip is not set -# CONFIG_PACKAGE_libpjsip-simple is not set -# CONFIG_PACKAGE_libpjsip-ua is not set -# CONFIG_PACKAGE_libpjsua is not set -# CONFIG_PACKAGE_libpjsua2 is not set -# CONFIG_PACKAGE_libre is not set -# CONFIG_PACKAGE_librem is not set -# CONFIG_PACKAGE_libspandsp is not set -# CONFIG_PACKAGE_libsrtp is not set -# CONFIG_PACKAGE_libsrtp2 is not set - -# -# database -# -# CONFIG_PACKAGE_libpq is not set -# CONFIG_PACKAGE_libsqlite3 is not set -# CONFIG_PACKAGE_pgsqlodbc is not set -# CONFIG_PACKAGE_psqlodbca is not set -# CONFIG_PACKAGE_psqlodbcw is not set -# CONFIG_PACKAGE_tdb is not set -# CONFIG_PACKAGE_unixodbc is not set - -# -# libelektra -# -# CONFIG_PACKAGE_libelektra-boost is not set -# CONFIG_PACKAGE_libelektra-core is not set -# CONFIG_PACKAGE_libelektra-cpp is not set -# CONFIG_PACKAGE_libelektra-crypto is not set -# CONFIG_PACKAGE_libelektra-curlget is not set -# CONFIG_PACKAGE_libelektra-dbus is not set -# CONFIG_PACKAGE_libelektra-extra is not set -# CONFIG_PACKAGE_libelektra-lua is not set -# CONFIG_PACKAGE_libelektra-plugins is not set -# CONFIG_PACKAGE_libelektra-python2 is not set -# CONFIG_PACKAGE_libelektra-python3 is not set -# CONFIG_PACKAGE_libelektra-resolvers is not set -# CONFIG_PACKAGE_libelektra-xml is not set -# CONFIG_PACKAGE_libelektra-yajl is not set -# CONFIG_PACKAGE_alsa-lib is not set -# CONFIG_PACKAGE_argp-standalone is not set -# CONFIG_PACKAGE_avro-c is not set -# CONFIG_PACKAGE_bind-libs is not set -# CONFIG_PACKAGE_bluez-libs is not set -# CONFIG_PACKAGE_boost is not set -# CONFIG_PACKAGE_ccid is not set -# CONFIG_PACKAGE_check is not set -# CONFIG_PACKAGE_classpath is not set -# CONFIG_PACKAGE_classpath-tools is not set -# CONFIG_PACKAGE_confuse is not set -# CONFIG_PACKAGE_dtndht is not set -# CONFIG_PACKAGE_fcgi is not set -# CONFIG_PACKAGE_fftw3 is not set -# CONFIG_PACKAGE_fftw3f is not set -# CONFIG_PACKAGE_giflib is not set -# CONFIG_PACKAGE_glib2 is not set -# CONFIG_PACKAGE_glog is not set -# CONFIG_PACKAGE_hidapi is not set -# CONFIG_PACKAGE_ibrcommon is not set -# CONFIG_PACKAGE_ibrdtn is not set -# CONFIG_PACKAGE_icu is not set -# CONFIG_PACKAGE_jansson is not set -# CONFIG_PACKAGE_knot-libdnssec is not set -# CONFIG_PACKAGE_knot-libknot is not set -# CONFIG_PACKAGE_knot-libzscanner is not set -# CONFIG_PACKAGE_libaio is not set -# CONFIG_PACKAGE_libantlr3c is not set -# CONFIG_PACKAGE_libao is not set -# CONFIG_PACKAGE_libapr is not set -# CONFIG_PACKAGE_libaprutil is not set -# CONFIG_PACKAGE_libarchive is not set -# CONFIG_PACKAGE_libarchive-noopenssl is not set -# CONFIG_PACKAGE_libartnet is not set -# CONFIG_PACKAGE_libaudiofile is not set -# CONFIG_PACKAGE_libavahi-client is not set -# CONFIG_PACKAGE_libavahi-compat-libdnssd is not set -# CONFIG_PACKAGE_libavahi-dbus-support is not set -# CONFIG_PACKAGE_libavahi-nodbus-support is not set -# CONFIG_PACKAGE_libavl is not set -# CONFIG_PACKAGE_libbfd is not set -# CONFIG_PACKAGE_libblkid is not set -CONFIG_PACKAGE_libblobmsg-json=y -# CONFIG_PACKAGE_libcanfestival is not set -# CONFIG_PACKAGE_libcap is not set -CONFIG_PACKAGE_libcares=y -# CONFIG_PACKAGE_libcharset is not set -# CONFIG_PACKAGE_libcoap is not set -# CONFIG_PACKAGE_libconfig is not set -# CONFIG_PACKAGE_libcryptopp is not set -# CONFIG_PACKAGE_libcurl is not set -# CONFIG_PACKAGE_libdaemon is not set -# CONFIG_PACKAGE_libdaq is not set -# CONFIG_PACKAGE_libdb47 is not set -# CONFIG_PACKAGE_libdb47xx is not set -# CONFIG_PACKAGE_libdbi is not set -# CONFIG_PACKAGE_libdbus is not set -# CONFIG_PACKAGE_libdevmapper is not set -# CONFIG_PACKAGE_libdmapsharing is not set -# CONFIG_PACKAGE_libdnet is not set -# CONFIG_PACKAGE_libdouble-conversion is not set -# CONFIG_PACKAGE_libdrm is not set -# CONFIG_PACKAGE_libedit is not set -# CONFIG_PACKAGE_libelf1 is not set -# CONFIG_PACKAGE_libecdsautil is not set -# CONFIG_PACKAGE_libesmtp is not set -# CONFIG_PACKAGE_libestr is not set -# CONFIG_PACKAGE_libev is not set -# CONFIG_PACKAGE_libevdev is not set -# CONFIG_PACKAGE_libevent is not set -CONFIG_PACKAGE_libevent2=y -# CONFIG_PACKAGE_libevent2-core is not set -# CONFIG_PACKAGE_libevent2-extra is not set -CONFIG_PACKAGE_libevent2-openssl=y -# CONFIG_PACKAGE_libevent2-pthreads is not set -# CONFIG_PACKAGE_libeventlog is not set -# CONFIG_PACKAGE_libevhtp is not set -# CONFIG_PACKAGE_libexif is not set -# CONFIG_PACKAGE_libexpat is not set -# CONFIG_PACKAGE_libexslt is not set -# CONFIG_PACKAGE_libextractor is not set -# CONFIG_PACKAGE_libf2fs is not set -# CONFIG_PACKAGE_libfaad2 is not set -# CONFIG_PACKAGE_libfastjson is not set -# CONFIG_PACKAGE_libfdisk is not set -# CONFIG_PACKAGE_libfdt is not set -# CONFIG_PACKAGE_libffi is not set -# CONFIG_PACKAGE_libffmpeg-audio-dec is not set -# CONFIG_PACKAGE_libffmpeg-custom is not set -# CONFIG_PACKAGE_libffmpeg-full is not set -# CONFIG_PACKAGE_libffmpeg-mini is not set -# CONFIG_PACKAGE_libflac is not set -# CONFIG_PACKAGE_libfreetype is not set -# CONFIG_PACKAGE_libftdi is not set -# CONFIG_PACKAGE_libftdi1 is not set -# CONFIG_PACKAGE_libgcrypt is not set -# CONFIG_PACKAGE_libgd is not set -# CONFIG_PACKAGE_libgdbm is not set -# CONFIG_PACKAGE_libgee is not set -# CONFIG_PACKAGE_libglpk is not set -CONFIG_PACKAGE_libgmp=y -# CONFIG_PACKAGE_libgnurl is not set -# CONFIG_PACKAGE_libgpg-error is not set -# CONFIG_PACKAGE_libgphoto2 is not set -# CONFIG_PACKAGE_libgps is not set -# CONFIG_PACKAGE_libhamlib is not set -# CONFIG_PACKAGE_libhavege is not set -# CONFIG_PACKAGE_libhiredis is not set -# CONFIG_PACKAGE_libhttp-parser is not set -# CONFIG_PACKAGE_libical is not set -# CONFIG_PACKAGE_libiconv is not set -# CONFIG_PACKAGE_libiconv-full is not set -# CONFIG_PACKAGE_libid3tag is not set -# CONFIG_PACKAGE_libidn is not set -# CONFIG_PACKAGE_libiio is not set -# CONFIG_PACKAGE_libimobiledevice is not set -# CONFIG_PACKAGE_libinput is not set -# CONFIG_PACKAGE_libintl is not set -# CONFIG_PACKAGE_libintl-full is not set -# CONFIG_PACKAGE_libiw is not set -CONFIG_PACKAGE_libiwinfo=y -# CONFIG_PACKAGE_libjpeg is not set -CONFIG_PACKAGE_libjson-c=y -# CONFIG_PACKAGE_libkmod is not set -# CONFIG_PACKAGE_libldns is not set -# CONFIG_PACKAGE_libltdl is not set -CONFIG_PACKAGE_liblua=y -# CONFIG_PACKAGE_liblz4 is not set -# CONFIG_PACKAGE_liblzo is not set -# CONFIG_PACKAGE_libmad is not set -# CONFIG_PACKAGE_libmagic is not set -# CONFIG_PACKAGE_libmcrypt is not set -# CONFIG_PACKAGE_libmicrohttpd is not set -# CONFIG_PACKAGE_libmicrohttpd-no-ssl is not set -# CONFIG_PACKAGE_libminiupnpc is not set -# CONFIG_PACKAGE_libmms is not set -CONFIG_PACKAGE_libmnl=y -# CONFIG_PACKAGE_libmodbus is not set -# CONFIG_PACKAGE_libmosquitto-nossl is not set -CONFIG_PACKAGE_libmosquitto-ssl=y -# CONFIG_PACKAGE_libmosquittopp is not set -# CONFIG_PACKAGE_libmount is not set -# CONFIG_PACKAGE_libmpdclient is not set -# CONFIG_PACKAGE_libmpeg2 is not set -# CONFIG_PACKAGE_libmpg123 is not set -# CONFIG_PACKAGE_libmraa is not set -# CONFIG_PACKAGE_libmysqlclient is not set -# CONFIG_PACKAGE_libmysqlclient-r is not set -# CONFIG_PACKAGE_libnatpmp is not set -# CONFIG_PACKAGE_libncurses is not set -# CONFIG_PACKAGE_libndpi is not set -# CONFIG_PACKAGE_libneon is not set -# CONFIG_PACKAGE_libnet-1.2.x is not set -# CONFIG_PACKAGE_libnetconf2 is not set -# CONFIG_PACKAGE_libnetfilter-acct is not set -CONFIG_PACKAGE_libnetfilter-conntrack=y -# CONFIG_PACKAGE_libnetfilter-cthelper is not set -# CONFIG_PACKAGE_libnetfilter-cttimeout is not set -# CONFIG_PACKAGE_libnetfilter-log is not set -# CONFIG_PACKAGE_libnetfilter-queue is not set -# CONFIG_PACKAGE_libnetsnmp is not set -CONFIG_PACKAGE_libnettle=y - -# -# Configuration -# -# CONFIG_LIBNETTLE_MINI is not set -CONFIG_PACKAGE_libnfnetlink=y -# CONFIG_PACKAGE_libnftnl is not set -# CONFIG_PACKAGE_libnl is not set -# CONFIG_PACKAGE_libnl-core is not set -# CONFIG_PACKAGE_libnl-genl is not set -# CONFIG_PACKAGE_libnl-nf is not set -# CONFIG_PACKAGE_libnl-route is not set -CONFIG_PACKAGE_libnl-tiny=y -# CONFIG_PACKAGE_libnopoll is not set -# CONFIG_PACKAGE_libogg is not set -# CONFIG_PACKAGE_liboil is not set -# CONFIG_PACKAGE_libopcodes is not set -# CONFIG_PACKAGE_libopenldap is not set -# CONFIG_PACKAGE_libopenobex is not set -# CONFIG_PACKAGE_libopensc is not set -# CONFIG_PACKAGE_libopenzwave is not set -# CONFIG_PACKAGE_liboping is not set -# CONFIG_PACKAGE_libopus is not set -# CONFIG_PACKAGE_libout123 is not set -# CONFIG_PACKAGE_libowfat is not set -# CONFIG_PACKAGE_libp11 is not set -# CONFIG_PACKAGE_libpam is not set -# CONFIG_PACKAGE_libpcap is not set -CONFIG_PACKAGE_libpcre=y -# CONFIG_PACKAGE_libpcre16 is not set -# CONFIG_PACKAGE_libpcre2 is not set -# CONFIG_PACKAGE_libpcre2-16 is not set -# CONFIG_PACKAGE_libpcre2-32 is not set -# CONFIG_PACKAGE_libpcrecpp is not set -# CONFIG_PACKAGE_libpcsclite is not set -# CONFIG_PACKAGE_libpkcs11-spy is not set -# CONFIG_PACKAGE_libplist is not set -# CONFIG_PACKAGE_libplistcxx is not set -# CONFIG_PACKAGE_libpng is not set -# CONFIG_PACKAGE_libpopt is not set -# CONFIG_PACKAGE_libpri is not set -# CONFIG_PACKAGE_libprotobuf-c is not set -# CONFIG_PACKAGE_libqrencode is not set -# CONFIG_PACKAGE_libradcli is not set -# CONFIG_PACKAGE_libreadline is not set -# CONFIG_PACKAGE_libredblack is not set -# CONFIG_PACKAGE_libroxml is not set -# CONFIG_PACKAGE_librpc is not set -# CONFIG_PACKAGE_librrd1 is not set -# CONFIG_PACKAGE_librtlsdr is not set -# CONFIG_PACKAGE_libruby is not set -# CONFIG_PACKAGE_libsamplerate is not set -# CONFIG_PACKAGE_libsane is not set -# CONFIG_PACKAGE_libsasl2 is not set -# CONFIG_PACKAGE_libsearpc is not set -# CONFIG_PACKAGE_libseccomp is not set -# CONFIG_PACKAGE_libsensors is not set -# CONFIG_PACKAGE_libshout is not set -# CONFIG_PACKAGE_libshout-full is not set -# CONFIG_PACKAGE_libshout-nossl is not set -# CONFIG_PACKAGE_libsigcxx is not set -# CONFIG_PACKAGE_libsmartcols is not set -# CONFIG_PACKAGE_libsndfile is not set -# CONFIG_PACKAGE_libsoc is not set -# CONFIG_PACKAGE_libsocks is not set -# CONFIG_PACKAGE_libsodium is not set -# CONFIG_PACKAGE_libsoup is not set -# CONFIG_PACKAGE_libsoxr is not set -# CONFIG_PACKAGE_libspeex is not set -# CONFIG_PACKAGE_libspeexdsp is not set -# CONFIG_PACKAGE_libssh is not set -# CONFIG_PACKAGE_libssh2 is not set -# CONFIG_PACKAGE_libstoken is not set -# CONFIG_PACKAGE_libstrophe is not set -# CONFIG_PACKAGE_libtalloc is not set -# CONFIG_PACKAGE_libtasn1 is not set -# CONFIG_PACKAGE_libtheora is not set -# CONFIG_PACKAGE_libtiff is not set -# CONFIG_PACKAGE_libtiffxx is not set -# CONFIG_PACKAGE_libtins is not set -# CONFIG_PACKAGE_libtorrent is not set -CONFIG_PACKAGE_libubox=y -# CONFIG_PACKAGE_libubox-lua is not set -CONFIG_PACKAGE_libubus=y -CONFIG_PACKAGE_libubus-lua=y -CONFIG_PACKAGE_libuci=y -CONFIG_PACKAGE_libuci-lua=y -CONFIG_PACKAGE_libuclient=y -# CONFIG_PACKAGE_libudev-fbsd is not set -# CONFIG_PACKAGE_libudns is not set -# CONFIG_PACKAGE_libuecc is not set -# CONFIG_PACKAGE_libugpio is not set -# CONFIG_PACKAGE_libunbound is not set -# CONFIG_PACKAGE_libunistring is not set -# CONFIG_PACKAGE_libunwind is not set -# CONFIG_PACKAGE_libupnp is not set -# CONFIG_PACKAGE_libupnpp is not set -# CONFIG_PACKAGE_liburcu is not set -# CONFIG_PACKAGE_libusb-1.0 is not set -# CONFIG_PACKAGE_libusb-compat is not set -# CONFIG_PACKAGE_libusbmuxd is not set -# CONFIG_PACKAGE_libustream-cyassl is not set -# CONFIG_PACKAGE_libustream-mbedtls is not set -# CONFIG_PACKAGE_libustream-openssl is not set -CONFIG_PACKAGE_libuuid=y -# CONFIG_PACKAGE_libuv is not set -# CONFIG_PACKAGE_libuvc is not set -# CONFIG_PACKAGE_libv4l is not set -# CONFIG_PACKAGE_libvorbis is not set -# CONFIG_PACKAGE_libvorbisidec is not set -# CONFIG_PACKAGE_libvpx is not set -# CONFIG_PACKAGE_libwebcam is not set -# CONFIG_PACKAGE_libwebsockets-full is not set -# CONFIG_PACKAGE_libwebsockets-openssl is not set -# CONFIG_PACKAGE_libwebsockets-wolfssl is not set -# CONFIG_PACKAGE_libwrap is not set -# CONFIG_PACKAGE_libwxbase is not set -# CONFIG_PACKAGE_libx264 is not set -# CONFIG_PACKAGE_libxerces-c is not set -# CONFIG_PACKAGE_libxerces-c-samples is not set -# CONFIG_PACKAGE_libxml2 is not set -# CONFIG_PACKAGE_libxslt is not set -# CONFIG_PACKAGE_libyang is not set -# CONFIG_PACKAGE_libzdb is not set -# CONFIG_PACKAGE_libzmq-curve is not set -# CONFIG_PACKAGE_libzmq-nc is not set -# CONFIG_PACKAGE_linux-atm is not set -# CONFIG_PACKAGE_loudmouth is not set -# CONFIG_PACKAGE_lttng-ust is not set -# CONFIG_PACKAGE_mtdev is not set -# CONFIG_PACKAGE_musl-fts is not set -# CONFIG_PACKAGE_mxml is not set -# CONFIG_PACKAGE_nacl is not set -# CONFIG_PACKAGE_opencv is not set -# CONFIG_PACKAGE_p11-kit is not set -# CONFIG_PACKAGE_poco is not set -# CONFIG_PACKAGE_protobuf is not set -# CONFIG_PACKAGE_pthsem is not set -CONFIG_PACKAGE_rpcd-mod-rrdns=y -# CONFIG_PACKAGE_rxtx is not set -# CONFIG_PACKAGE_sbc is not set -# CONFIG_PACKAGE_terminfo is not set -# CONFIG_PACKAGE_tinycdb is not set -# CONFIG_PACKAGE_uclibcxx is not set -# CONFIG_PACKAGE_xmlrpc-c is not set -# CONFIG_PACKAGE_xmlrpc-c-client is not set -# CONFIG_PACKAGE_xmlrpc-c-server is not set -# CONFIG_PACKAGE_yajl is not set -CONFIG_PACKAGE_zlib=y - -# -# LuCI -# - -# -# 1. Collections -# -CONFIG_PACKAGE_luci=y -# CONFIG_PACKAGE_luci-ssl is not set -# CONFIG_PACKAGE_luci-ssl-openssl is not set - -# -# 2. Modules -# -CONFIG_PACKAGE_luci-base=y -# CONFIG_LUCI_SRCDIET is not set - -# -# Translations -# -# CONFIG_LUCI_LANG_ca is not set -# CONFIG_LUCI_LANG_cs is not set -# CONFIG_LUCI_LANG_de is not set -# CONFIG_LUCI_LANG_el is not set -# CONFIG_LUCI_LANG_en is not set -# CONFIG_LUCI_LANG_es is not set -# CONFIG_LUCI_LANG_fr is not set -# CONFIG_LUCI_LANG_he is not set -# CONFIG_LUCI_LANG_hu is not set -# CONFIG_LUCI_LANG_it is not set -# CONFIG_LUCI_LANG_ja is not set -# CONFIG_LUCI_LANG_ko is not set -# CONFIG_LUCI_LANG_ms is not set -# CONFIG_LUCI_LANG_no is not set -# CONFIG_LUCI_LANG_pl is not set -# CONFIG_LUCI_LANG_pt is not set -# CONFIG_LUCI_LANG_pt-br is not set -# CONFIG_LUCI_LANG_ro is not set -# CONFIG_LUCI_LANG_ru is not set -# CONFIG_LUCI_LANG_sk is not set -# CONFIG_LUCI_LANG_sv is not set -# CONFIG_LUCI_LANG_tr is not set -# CONFIG_LUCI_LANG_uk is not set -# CONFIG_LUCI_LANG_vi is not set -CONFIG_LUCI_LANG_zh-cn=y -# CONFIG_LUCI_LANG_zh-tw is not set -CONFIG_PACKAGE_luci-mod-admin-full=y -# CONFIG_PACKAGE_luci-mod-failsafe is not set -# CONFIG_PACKAGE_luci-mod-freifunk is not set -# CONFIG_PACKAGE_luci-mod-freifunk-community is not set -# CONFIG_PACKAGE_luci-mod-rpc is not set - -# -# 3. Applications -# -# CONFIG_PACKAGE_luci-app-adblock is not set -CONFIG_PACKAGE_luci-app-adbyby-plus=y -# CONFIG_PACKAGE_luci-app-advanced-reboot is not set -# CONFIG_PACKAGE_luci-app-ahcp is not set -CONFIG_PACKAGE_luci-app-aliddns=y -# CONFIG_PACKAGE_luci-app-amule is not set -CONFIG_PACKAGE_luci-app-apfree_wifidog=y -CONFIG_PACKAGE_luci-app-aria2=y -CONFIG_PACKAGE_luci-app-arpbind=y -# CONFIG_PACKAGE_luci-app-asterisk is not set -# CONFIG_PACKAGE_luci-app-attendedsysupgrade is not set -CONFIG_PACKAGE_luci-app-autoreboot=y -# CONFIG_PACKAGE_luci-app-bcp38 is not set -# CONFIG_PACKAGE_luci-app-bird4 is not set -# CONFIG_PACKAGE_luci-app-bird6 is not set -# CONFIG_PACKAGE_luci-app-bmx6 is not set -# CONFIG_PACKAGE_luci-app-bmx7 is not set -# CONFIG_PACKAGE_luci-app-cjdns is not set -# CONFIG_PACKAGE_luci-app-clamav is not set -# CONFIG_PACKAGE_luci-app-commands is not set -# CONFIG_PACKAGE_luci-app-cshark is not set -CONFIG_PACKAGE_luci-app-ddns=y -# CONFIG_PACKAGE_luci-app-diag-core is not set -# CONFIG_PACKAGE_luci-app-dnscrypt-proxy is not set -# CONFIG_PACKAGE_luci-app-dogcom is not set -# CONFIG_PACKAGE_luci-app-dump1090 is not set -# CONFIG_PACKAGE_luci-app-dynapoint is not set -# CONFIG_PACKAGE_luci-app-e2guardian is not set -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-firewall=y -# CONFIG_PACKAGE_luci-app-freifunk-diagnostics is not set -# CONFIG_PACKAGE_luci-app-freifunk-policyrouting is not set -# CONFIG_PACKAGE_luci-app-freifunk-widgets is not set -# CONFIG_PACKAGE_luci-app-frpc is not set -# CONFIG_PACKAGE_luci-app-fwknopd is not set -CONFIG_PACKAGE_luci-app-hd-idle=y -# CONFIG_PACKAGE_luci-app-hnet is not set -CONFIG_PACKAGE_luci-app-ipsec-vpnd=y -# CONFIG_PACKAGE_luci-app-kcptun is not set -# CONFIG_PACKAGE_luci-app-kuainiao is not set -# CONFIG_PACKAGE_luci-app-meshwizard is not set -# CONFIG_PACKAGE_luci-app-minidlna is not set -# CONFIG_PACKAGE_luci-app-mjpg-streamer is not set -# CONFIG_PACKAGE_luci-app-mmc-over-gpio is not set -# CONFIG_PACKAGE_luci-app-mproxy is not set -# CONFIG_PACKAGE_luci-app-mwan3 is not set -CONFIG_PACKAGE_luci-app-n2n_v2=y -CONFIG_PACKAGE_luci-app-ngrokc=y -CONFIG_PACKAGE_luci-app-nlbwmon=y -# CONFIG_PACKAGE_luci-app-ntpc is not set -# CONFIG_PACKAGE_luci-app-ocserv is not set -# CONFIG_PACKAGE_luci-app-olsr is not set -# CONFIG_PACKAGE_luci-app-olsr-services is not set -# CONFIG_PACKAGE_luci-app-olsr-viz is not set -# CONFIG_PACKAGE_luci-app-openvpn is not set -# CONFIG_PACKAGE_luci-app-openvpn-server is not set -# CONFIG_PACKAGE_luci-app-oscam is not set -# CONFIG_PACKAGE_luci-app-p910nd is not set -# CONFIG_PACKAGE_luci-app-polipo is not set -CONFIG_PACKAGE_luci-app-pptp-server=y -# CONFIG_PACKAGE_luci-app-privoxy is not set -# CONFIG_PACKAGE_luci-app-qos is not set -# CONFIG_PACKAGE_luci-app-radicale is not set -# CONFIG_PACKAGE_luci-app-rp-pppoe-server is not set -CONFIG_PACKAGE_luci-app-samba=y -CONFIG_PACKAGE_luci-app-sfe=y -# CONFIG_PACKAGE_luci-app-shadowsocks-libev is not set -CONFIG_PACKAGE_luci-app-shadowsocksr-pro=y -# CONFIG_PACKAGE_luci-app-shairplay is not set -# CONFIG_PACKAGE_luci-app-shairport is not set -# CONFIG_PACKAGE_luci-app-siitwizard is not set -# CONFIG_PACKAGE_luci-app-simple-adblock is not set -# CONFIG_PACKAGE_luci-app-splash is not set -CONFIG_PACKAGE_luci-app-sqm=y -# CONFIG_PACKAGE_luci-app-squid is not set -# CONFIG_PACKAGE_luci-app-ssrserver-python is not set -# CONFIG_PACKAGE_luci-app-statistics is not set -# CONFIG_PACKAGE_luci-app-syncdial is not set -# CONFIG_PACKAGE_luci-app-tinyproxy is not set -# CONFIG_PACKAGE_luci-app-transmission is not set -# CONFIG_PACKAGE_luci-app-transparent-proxy is not set -# CONFIG_PACKAGE_luci-app-travelmate is not set -# CONFIG_PACKAGE_luci-app-udpxy is not set -# CONFIG_PACKAGE_luci-app-uhttpd is not set -# CONFIG_PACKAGE_luci-app-unbound is not set -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -# CONFIG_PACKAGE_luci-app-vnstat is not set -# CONFIG_PACKAGE_luci-app-vpnbypass is not set -CONFIG_PACKAGE_luci-app-vsftpd=y -# CONFIG_PACKAGE_luci-app-watchcat is not set -CONFIG_PACKAGE_luci-app-wifischedule=y -# CONFIG_PACKAGE_luci-app-wireguard is not set -CONFIG_PACKAGE_luci-app-wol=y -# CONFIG_PACKAGE_luci-app-zerotier is not set - -# -# 4. Themes -# -# CONFIG_PACKAGE_luci-theme-atmaterial is not set -CONFIG_PACKAGE_luci-theme-bootstrap=y -# CONFIG_PACKAGE_luci-theme-freifunk-generic is not set -# CONFIG_PACKAGE_luci-theme-material is not set -# CONFIG_PACKAGE_luci-theme-openwrt is not set - -# -# 5. Protocols -# -# CONFIG_PACKAGE_luci-proto-3g is not set -# CONFIG_PACKAGE_luci-proto-ipip is not set -CONFIG_PACKAGE_luci-proto-ipv6=y -# CONFIG_PACKAGE_luci-proto-ncm is not set -# CONFIG_PACKAGE_luci-proto-openconnect is not set -CONFIG_PACKAGE_luci-proto-ppp=y -# CONFIG_PACKAGE_luci-proto-qmi is not set -# CONFIG_PACKAGE_luci-proto-relay is not set -# CONFIG_PACKAGE_luci-proto-vpnc is not set -# CONFIG_PACKAGE_luci-proto-wireguard is not set - -# -# 6. Libraries -# -# CONFIG_PACKAGE_luci-lib-dracula is not set -# CONFIG_PACKAGE_luci-lib-httpclient is not set -CONFIG_PACKAGE_luci-lib-ip=y -# CONFIG_PACKAGE_luci-lib-jquery-1-4 is not set -# CONFIG_PACKAGE_luci-lib-json is not set -CONFIG_PACKAGE_luci-lib-jsonc=y -# CONFIG_PACKAGE_luci-lib-luaneightbl is not set -CONFIG_PACKAGE_luci-lib-nixio=y -# CONFIG_PACKAGE_luci-lib-px5g is not set - -# -# 9. Freifunk -# -# CONFIG_PACKAGE_freifunk-common is not set -# CONFIG_PACKAGE_freifunk-firewall is not set -# CONFIG_PACKAGE_freifunk-policyrouting is not set -# CONFIG_PACKAGE_freifunk-watchdog is not set -# CONFIG_PACKAGE_meshwizard is not set -CONFIG_PACKAGE_default-settings=y -CONFIG_PACKAGE_luci-i18n-adbyby-plus-zh-cn=y -CONFIG_PACKAGE_luci-i18n-aliddns-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-aria2-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-aria2-sv is not set -CONFIG_PACKAGE_luci-i18n-aria2-zh-cn=y -CONFIG_PACKAGE_luci-i18n-arpbind-zh-cn=y -CONFIG_PACKAGE_luci-i18n-autoreboot-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-base-ca is not set -# CONFIG_PACKAGE_luci-i18n-base-cs is not set -# CONFIG_PACKAGE_luci-i18n-base-de is not set -# CONFIG_PACKAGE_luci-i18n-base-el is not set -# CONFIG_PACKAGE_luci-i18n-base-en is not set -# CONFIG_PACKAGE_luci-i18n-base-es is not set -# CONFIG_PACKAGE_luci-i18n-base-fr is not set -# CONFIG_PACKAGE_luci-i18n-base-he is not set -# CONFIG_PACKAGE_luci-i18n-base-hu is not set -# CONFIG_PACKAGE_luci-i18n-base-it is not set -# CONFIG_PACKAGE_luci-i18n-base-ja is not set -# CONFIG_PACKAGE_luci-i18n-base-ko is not set -# CONFIG_PACKAGE_luci-i18n-base-ms is not set -# CONFIG_PACKAGE_luci-i18n-base-no is not set -# CONFIG_PACKAGE_luci-i18n-base-pl is not set -# CONFIG_PACKAGE_luci-i18n-base-pt is not set -# CONFIG_PACKAGE_luci-i18n-base-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-base-ro is not set -# CONFIG_PACKAGE_luci-i18n-base-ru is not set -# CONFIG_PACKAGE_luci-i18n-base-sk is not set -# CONFIG_PACKAGE_luci-i18n-base-sv is not set -# CONFIG_PACKAGE_luci-i18n-base-tr is not set -# CONFIG_PACKAGE_luci-i18n-base-uk is not set -# CONFIG_PACKAGE_luci-i18n-base-vi is not set -CONFIG_PACKAGE_luci-i18n-base-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-base-zh-tw is not set -# CONFIG_PACKAGE_luci-i18n-ddns-ca is not set -# CONFIG_PACKAGE_luci-i18n-ddns-cs is not set -# CONFIG_PACKAGE_luci-i18n-ddns-de is not set -# CONFIG_PACKAGE_luci-i18n-ddns-el is not set -# CONFIG_PACKAGE_luci-i18n-ddns-es is not set -# CONFIG_PACKAGE_luci-i18n-ddns-fr is not set -# CONFIG_PACKAGE_luci-i18n-ddns-he is not set -# CONFIG_PACKAGE_luci-i18n-ddns-hu is not set -# CONFIG_PACKAGE_luci-i18n-ddns-it is not set -# CONFIG_PACKAGE_luci-i18n-ddns-ja is not set -# CONFIG_PACKAGE_luci-i18n-ddns-no is not set -# CONFIG_PACKAGE_luci-i18n-ddns-pl is not set -# CONFIG_PACKAGE_luci-i18n-ddns-pt is not set -# CONFIG_PACKAGE_luci-i18n-ddns-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-ddns-ro is not set -# CONFIG_PACKAGE_luci-i18n-ddns-ru is not set -# CONFIG_PACKAGE_luci-i18n-ddns-sv is not set -# CONFIG_PACKAGE_luci-i18n-ddns-tr is not set -# CONFIG_PACKAGE_luci-i18n-ddns-uk is not set -# CONFIG_PACKAGE_luci-i18n-ddns-vi is not set -CONFIG_PACKAGE_luci-i18n-ddns-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-ddns-zh-tw is not set -CONFIG_PACKAGE_luci-i18n-filetransfer-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-firewall-ca is not set -# CONFIG_PACKAGE_luci-i18n-firewall-cs is not set -# CONFIG_PACKAGE_luci-i18n-firewall-de is not set -# CONFIG_PACKAGE_luci-i18n-firewall-el is not set -# CONFIG_PACKAGE_luci-i18n-firewall-en is not set -# CONFIG_PACKAGE_luci-i18n-firewall-es is not set -# CONFIG_PACKAGE_luci-i18n-firewall-fr is not set -# CONFIG_PACKAGE_luci-i18n-firewall-he is not set -# CONFIG_PACKAGE_luci-i18n-firewall-hu is not set -# CONFIG_PACKAGE_luci-i18n-firewall-it is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ja is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ko is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ms is not set -# CONFIG_PACKAGE_luci-i18n-firewall-no is not set -# CONFIG_PACKAGE_luci-i18n-firewall-pl is not set -# CONFIG_PACKAGE_luci-i18n-firewall-pt is not set -# CONFIG_PACKAGE_luci-i18n-firewall-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ro is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ru is not set -# CONFIG_PACKAGE_luci-i18n-firewall-sk is not set -# CONFIG_PACKAGE_luci-i18n-firewall-sv is not set -# CONFIG_PACKAGE_luci-i18n-firewall-tr is not set -# CONFIG_PACKAGE_luci-i18n-firewall-uk is not set -# CONFIG_PACKAGE_luci-i18n-firewall-vi is not set -CONFIG_PACKAGE_luci-i18n-firewall-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-firewall-zh-tw is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-ca is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-cs is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-de is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-el is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-en is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-es is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-fr is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-he is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-hu is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-it is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-ja is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-ms is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-no is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-pl is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-pt is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-ro is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-ru is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-sk is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-sv is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-tr is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-uk is not set -# CONFIG_PACKAGE_luci-i18n-hd-idle-vi is not set -CONFIG_PACKAGE_luci-i18n-hd-idle-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-hd-idle-zh-tw is not set -CONFIG_PACKAGE_luci-i18n-ipsec-vpnd-zh-cn=y -CONFIG_PACKAGE_luci-i18n-n2n_v2-zh-cn=y -CONFIG_PACKAGE_luci-i18n-ngrokc-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-nlbwmon-ja is not set -CONFIG_PACKAGE_luci-i18n-nlbwmon-zh-cn=y -CONFIG_PACKAGE_luci-i18n-pptp-server-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-samba-ca is not set -# CONFIG_PACKAGE_luci-i18n-samba-cs is not set -# CONFIG_PACKAGE_luci-i18n-samba-de is not set -# CONFIG_PACKAGE_luci-i18n-samba-el is not set -# CONFIG_PACKAGE_luci-i18n-samba-en is not set -# CONFIG_PACKAGE_luci-i18n-samba-es is not set -# CONFIG_PACKAGE_luci-i18n-samba-fr is not set -# CONFIG_PACKAGE_luci-i18n-samba-he is not set -# CONFIG_PACKAGE_luci-i18n-samba-hu is not set -# CONFIG_PACKAGE_luci-i18n-samba-it is not set -# CONFIG_PACKAGE_luci-i18n-samba-ja is not set -# CONFIG_PACKAGE_luci-i18n-samba-ms is not set -# CONFIG_PACKAGE_luci-i18n-samba-no is not set -# CONFIG_PACKAGE_luci-i18n-samba-pl is not set -# CONFIG_PACKAGE_luci-i18n-samba-pt is not set -# CONFIG_PACKAGE_luci-i18n-samba-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-samba-ro is not set -# CONFIG_PACKAGE_luci-i18n-samba-ru is not set -# CONFIG_PACKAGE_luci-i18n-samba-sk is not set -# CONFIG_PACKAGE_luci-i18n-samba-sv is not set -# CONFIG_PACKAGE_luci-i18n-samba-tr is not set -# CONFIG_PACKAGE_luci-i18n-samba-uk is not set -# CONFIG_PACKAGE_luci-i18n-samba-vi is not set -CONFIG_PACKAGE_luci-i18n-samba-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-samba-zh-tw is not set -CONFIG_PACKAGE_luci-i18n-sfe-zh-cn=y -CONFIG_PACKAGE_luci-i18n-shadowsocksr-pro-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-upnp-ca is not set -# CONFIG_PACKAGE_luci-i18n-upnp-cs is not set -# CONFIG_PACKAGE_luci-i18n-upnp-de is not set -# CONFIG_PACKAGE_luci-i18n-upnp-el is not set -# CONFIG_PACKAGE_luci-i18n-upnp-en is not set -# CONFIG_PACKAGE_luci-i18n-upnp-es is not set -# CONFIG_PACKAGE_luci-i18n-upnp-fr is not set -# CONFIG_PACKAGE_luci-i18n-upnp-he is not set -# CONFIG_PACKAGE_luci-i18n-upnp-hu is not set -# CONFIG_PACKAGE_luci-i18n-upnp-it is not set -# CONFIG_PACKAGE_luci-i18n-upnp-ja is not set -# CONFIG_PACKAGE_luci-i18n-upnp-ms is not set -# CONFIG_PACKAGE_luci-i18n-upnp-no is not set -# CONFIG_PACKAGE_luci-i18n-upnp-pl is not set -# CONFIG_PACKAGE_luci-i18n-upnp-pt is not set -# CONFIG_PACKAGE_luci-i18n-upnp-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-upnp-ro is not set -# CONFIG_PACKAGE_luci-i18n-upnp-ru is not set -# CONFIG_PACKAGE_luci-i18n-upnp-sk is not set -# CONFIG_PACKAGE_luci-i18n-upnp-sv is not set -# CONFIG_PACKAGE_luci-i18n-upnp-tr is not set -# CONFIG_PACKAGE_luci-i18n-upnp-uk is not set -# CONFIG_PACKAGE_luci-i18n-upnp-vi is not set -CONFIG_PACKAGE_luci-i18n-upnp-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-upnp-zh-tw is not set -CONFIG_PACKAGE_luci-i18n-usb-printer-zh-cn=y -CONFIG_PACKAGE_luci-i18n-vlmcsd-zh-cn=y -CONFIG_PACKAGE_luci-i18n-vsftpd-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-wifischedule-it is not set -# CONFIG_PACKAGE_luci-i18n-wifischedule-ja is not set -# CONFIG_PACKAGE_luci-i18n-wifischedule-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-wifischedule-sv is not set -CONFIG_PACKAGE_luci-i18n-wifischedule-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-wol-ca is not set -# CONFIG_PACKAGE_luci-i18n-wol-cs is not set -# CONFIG_PACKAGE_luci-i18n-wol-de is not set -# CONFIG_PACKAGE_luci-i18n-wol-el is not set -# CONFIG_PACKAGE_luci-i18n-wol-en is not set -# CONFIG_PACKAGE_luci-i18n-wol-es is not set -# CONFIG_PACKAGE_luci-i18n-wol-fr is not set -# CONFIG_PACKAGE_luci-i18n-wol-he is not set -# CONFIG_PACKAGE_luci-i18n-wol-hu is not set -# CONFIG_PACKAGE_luci-i18n-wol-it is not set -# CONFIG_PACKAGE_luci-i18n-wol-ja is not set -# CONFIG_PACKAGE_luci-i18n-wol-ms is not set -# CONFIG_PACKAGE_luci-i18n-wol-no is not set -# CONFIG_PACKAGE_luci-i18n-wol-pl is not set -# CONFIG_PACKAGE_luci-i18n-wol-pt is not set -# CONFIG_PACKAGE_luci-i18n-wol-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-wol-ro is not set -# CONFIG_PACKAGE_luci-i18n-wol-ru is not set -# CONFIG_PACKAGE_luci-i18n-wol-sk is not set -# CONFIG_PACKAGE_luci-i18n-wol-sv is not set -# CONFIG_PACKAGE_luci-i18n-wol-tr is not set -# CONFIG_PACKAGE_luci-i18n-wol-uk is not set -# CONFIG_PACKAGE_luci-i18n-wol-vi is not set -CONFIG_PACKAGE_luci-i18n-wol-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-wol-zh-tw is not set - -# -# Mail -# -# CONFIG_PACKAGE_alpine is not set -# CONFIG_PACKAGE_alpine-nossl is not set -# CONFIG_PACKAGE_bogofilter is not set -# CONFIG_PACKAGE_clamsmtp is not set -# CONFIG_PACKAGE_dovecot is not set -# CONFIG_PACKAGE_emailrelay is not set -# CONFIG_PACKAGE_fdm is not set -# CONFIG_PACKAGE_greyfix is not set -# CONFIG_PACKAGE_mailman is not set -# CONFIG_PACKAGE_mailsend is not set -# CONFIG_PACKAGE_mailsend-nossl is not set -# CONFIG_PACKAGE_msmtp is not set -# CONFIG_PACKAGE_msmtp-nossl is not set -# CONFIG_PACKAGE_mutt is not set -# CONFIG_PACKAGE_nail is not set -# CONFIG_PACKAGE_pigeonhole is not set -# CONFIG_PACKAGE_postfix is not set - -# -# Select postfix build options -# -CONFIG_POSTFIX_TLS=y -CONFIG_POSTFIX_SASL=y -CONFIG_POSTFIX_LDAP=y -# CONFIG_POSTFIX_DB is not set -CONFIG_POSTFIX_CDB=y -CONFIG_POSTFIX_SQLITE=y -# CONFIG_POSTFIX_PGSQL is not set -# CONFIG_POSTFIX_PCRE is not set -# CONFIG_POSTFIX_EAI is not set -# CONFIG_PACKAGE_ssmtp is not set - -# -# Multimedia -# - -# -# Streaming -# -# CONFIG_PACKAGE_oggfwd is not set -# CONFIG_PACKAGE_crtmpserver is not set -# CONFIG_PACKAGE_ffmpeg is not set -# CONFIG_PACKAGE_ffprobe is not set -# CONFIG_PACKAGE_ffserver is not set -# CONFIG_PACKAGE_fswebcam is not set -# CONFIG_PACKAGE_gphoto2 is not set -# CONFIG_PACKAGE_grilo is not set -# CONFIG_PACKAGE_grilo-plugins is not set -# CONFIG_PACKAGE_gst1-libav is not set -# CONFIG_PACKAGE_gstreamer1-libs is not set -# CONFIG_PACKAGE_gstreamer1-plugins-bad is not set -# CONFIG_PACKAGE_gstreamer1-plugins-base is not set -# CONFIG_PACKAGE_gstreamer1-plugins-good is not set -# CONFIG_PACKAGE_gstreamer1-plugins-ugly is not set -# CONFIG_PACKAGE_gstreamer1-utils is not set -# CONFIG_PACKAGE_icecast is not set -# CONFIG_PACKAGE_lcdgrilo is not set -# CONFIG_PACKAGE_minidlna is not set -# CONFIG_PACKAGE_mjpg-streamer is not set -# CONFIG_PACKAGE_motion is not set -# CONFIG_PACKAGE_tvheadend is not set -# CONFIG_PACKAGE_vips is not set -# CONFIG_PACKAGE_xupnpd is not set -# CONFIG_PACKAGE_youtube-dl is not set - -# -# Network -# - -# -# BitTorrent -# -# CONFIG_PACKAGE_mktorrent is not set -# CONFIG_PACKAGE_opentracker is not set -# CONFIG_PACKAGE_opentracker6 is not set -# CONFIG_PACKAGE_rtorrent is not set -# CONFIG_PACKAGE_rtorrent-rpc is not set -# CONFIG_PACKAGE_transmission-cli-mbedtls is not set -# CONFIG_PACKAGE_transmission-cli-openssl is not set -# CONFIG_PACKAGE_transmission-daemon-mbedtls is not set -# CONFIG_PACKAGE_transmission-daemon-openssl is not set -# CONFIG_PACKAGE_transmission-remote-mbedtls is not set -# CONFIG_PACKAGE_transmission-remote-openssl is not set - -# -# Captive Portals -# -CONFIG_PACKAGE_apfree_wifidog=y -# CONFIG_PACKAGE_coova-chilli is not set -# CONFIG_PACKAGE_nodogsplash is not set -# CONFIG_PACKAGE_nodogsplash2 is not set -# CONFIG_PACKAGE_wifidog is not set -# CONFIG_PACKAGE_wifidog-tls is not set - -# -# Download Manager -# -# CONFIG_PACKAGE_webui-aria2 is not set -# CONFIG_PACKAGE_yaaw is not set - -# -# File Transfer -# -CONFIG_PACKAGE_aria2=y - -# -# Aria2 Configuration -# -CONFIG_ARIA2_OPENSSL=y -# CONFIG_ARIA2_GNUTLS is not set -# CONFIG_ARIA2_NOSSL is not set -# CONFIG_ARIA2_LIBXML2 is not set -# CONFIG_ARIA2_EXPAT is not set -CONFIG_ARIA2_NOXML=y -CONFIG_ARIA2_BITTORRENT=y -# CONFIG_ARIA2_SFTP is not set -# CONFIG_ARIA2_ASYNC_DNS is not set -# CONFIG_ARIA2_COOKIE is not set -CONFIG_ARIA2_WEBSOCKET=y -# CONFIG_PACKAGE_atftp is not set -# CONFIG_PACKAGE_atftpd is not set -# CONFIG_PACKAGE_curl is not set -# CONFIG_PACKAGE_gnurl is not set -# CONFIG_PACKAGE_lftp is not set -# CONFIG_PACKAGE_rsync is not set -# CONFIG_PACKAGE_rsyncd is not set -# CONFIG_PACKAGE_vsftpd is not set -CONFIG_PACKAGE_vsftpd-alt=y -CONFIG_VSFTPD_USE_UCI_SCRIPTS=y -# CONFIG_PACKAGE_vsftpd-tls is not set -CONFIG_PACKAGE_wget=y -# CONFIG_PACKAGE_wget-nossl is not set - -# -# Filesystem -# -# CONFIG_PACKAGE_davfs2 is not set -# CONFIG_PACKAGE_netatalk is not set -# CONFIG_PACKAGE_nfs-kernel-server is not set -# CONFIG_PACKAGE_owftpd is not set -# CONFIG_PACKAGE_owhttpd is not set -# CONFIG_PACKAGE_owserver is not set -# CONFIG_PACKAGE_sshfs is not set - -# -# Firewall -# -# CONFIG_PACKAGE_arptables is not set -# CONFIG_PACKAGE_conntrack is not set -# CONFIG_PACKAGE_conntrackd is not set -# CONFIG_PACKAGE_ebtables is not set -# CONFIG_PACKAGE_fwknop is not set -# CONFIG_PACKAGE_fwknopd is not set -CONFIG_PACKAGE_ip6tables=y -# CONFIG_PACKAGE_ip6tables-extra is not set -# CONFIG_PACKAGE_ip6tables-mod-nat is not set -CONFIG_PACKAGE_iptables=y -# CONFIG_IPTABLES_CONNLABEL is not set -# CONFIG_IPTABLES_NFTABLES is not set -# CONFIG_PACKAGE_iptables-mod-account is not set -# CONFIG_PACKAGE_iptables-mod-chaos is not set -# CONFIG_PACKAGE_iptables-mod-cluster is not set -# CONFIG_PACKAGE_iptables-mod-clusterip is not set -# CONFIG_PACKAGE_iptables-mod-condition is not set -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -# CONFIG_PACKAGE_iptables-mod-delude is not set -# CONFIG_PACKAGE_iptables-mod-dhcpmac is not set -# CONFIG_PACKAGE_iptables-mod-dnetmap is not set -CONFIG_PACKAGE_iptables-mod-extra=y -# CONFIG_PACKAGE_iptables-mod-filter is not set -# CONFIG_PACKAGE_iptables-mod-fuzzy is not set -# CONFIG_PACKAGE_iptables-mod-geoip is not set -# CONFIG_PACKAGE_iptables-mod-hashlimit is not set -# CONFIG_PACKAGE_iptables-mod-iface is not set -# CONFIG_PACKAGE_iptables-mod-ipmark is not set -CONFIG_PACKAGE_iptables-mod-ipopt=y -# CONFIG_PACKAGE_iptables-mod-ipp2p is not set -# CONFIG_PACKAGE_iptables-mod-iprange is not set -CONFIG_PACKAGE_iptables-mod-ipsec=y -# CONFIG_PACKAGE_iptables-mod-ipv4options is not set -# CONFIG_PACKAGE_iptables-mod-led is not set -# CONFIG_PACKAGE_iptables-mod-length2 is not set -# CONFIG_PACKAGE_iptables-mod-logmark is not set -# CONFIG_PACKAGE_iptables-mod-lscan is not set -# CONFIG_PACKAGE_iptables-mod-lua is not set -CONFIG_PACKAGE_iptables-mod-nat-extra=y -# CONFIG_PACKAGE_iptables-mod-nflog is not set -# CONFIG_PACKAGE_iptables-mod-nfqueue is not set -# CONFIG_PACKAGE_iptables-mod-psd is not set -# CONFIG_PACKAGE_iptables-mod-quota2 is not set -# CONFIG_PACKAGE_iptables-mod-rpfilter is not set -# CONFIG_PACKAGE_iptables-mod-sysrq is not set -# CONFIG_PACKAGE_iptables-mod-tarpit is not set -# CONFIG_PACKAGE_iptables-mod-tee is not set -CONFIG_PACKAGE_iptables-mod-tproxy=y -# CONFIG_PACKAGE_iptables-mod-u32 is not set -# CONFIG_PACKAGE_iptables-mod-ulog is not set -# CONFIG_PACKAGE_iptaccount is not set -# CONFIG_PACKAGE_miniupnpc is not set -CONFIG_PACKAGE_miniupnpd=y -# CONFIG_MINIUPNPD_IGDv2 is not set -# CONFIG_PACKAGE_natpmpc is not set -# CONFIG_PACKAGE_nftables is not set -# CONFIG_PACKAGE_shorewall-core is not set -# CONFIG_PACKAGE_shorewall-lite is not set -# CONFIG_PACKAGE_shorewall6-lite is not set -# CONFIG_PACKAGE_snort is not set - -# -# Firewall Tunnel -# -# CONFIG_PACKAGE_iodine is not set -# CONFIG_PACKAGE_iodined is not set - -# -# FreeRADIUS (version 3) -# -# CONFIG_PACKAGE_freeradius3 is not set -# CONFIG_PACKAGE_freeradius3-common is not set -# CONFIG_PACKAGE_freeradius3-utils is not set - -# -# IP Addresses and Names -# -# CONFIG_PACKAGE_aggregate is not set -# CONFIG_PACKAGE_announce is not set -# CONFIG_PACKAGE_avahi-autoipd is not set -# CONFIG_PACKAGE_avahi-daemon-service-http is not set -# CONFIG_PACKAGE_avahi-daemon-service-ssh is not set -# CONFIG_PACKAGE_avahi-dbus-daemon is not set -# CONFIG_PACKAGE_avahi-dnsconfd is not set -# CONFIG_PACKAGE_avahi-nodbus-daemon is not set -# CONFIG_PACKAGE_avahi-utils is not set -# CONFIG_PACKAGE_bind-check is not set -# CONFIG_PACKAGE_bind-client is not set -# CONFIG_PACKAGE_bind-dig is not set -# CONFIG_PACKAGE_bind-dnssec is not set -# CONFIG_PACKAGE_bind-host is not set -# CONFIG_PACKAGE_bind-rndc is not set -# CONFIG_PACKAGE_bind-server is not set -# CONFIG_PACKAGE_bind-tools is not set -CONFIG_PACKAGE_ddns-scripts=y -# CONFIG_PACKAGE_ddns-scripts_cloudflare is not set -# CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4 is not set -# CONFIG_PACKAGE_ddns-scripts_godaddy.com-v1 is not set -# CONFIG_PACKAGE_ddns-scripts_no-ip_com is not set -# CONFIG_PACKAGE_ddns-scripts_nsupdate is not set -# CONFIG_PACKAGE_dhcp-forwarder is not set -# CONFIG_PACKAGE_dnscrypt-proxy is not set -# CONFIG_PACKAGE_dnscrypt-proxy-resolvers is not set -# CONFIG_PACKAGE_drill is not set -# CONFIG_PACKAGE_hostip is not set -# CONFIG_PACKAGE_idn is not set -# CONFIG_PACKAGE_inadyn is not set -# CONFIG_PACKAGE_isc-dhcp-client-ipv4 is not set -# CONFIG_PACKAGE_isc-dhcp-client-ipv6 is not set -# CONFIG_PACKAGE_isc-dhcp-omshell-ipv4 is not set -# CONFIG_PACKAGE_isc-dhcp-omshell-ipv6 is not set -# CONFIG_PACKAGE_isc-dhcp-relay-ipv4 is not set -# CONFIG_PACKAGE_isc-dhcp-relay-ipv6 is not set -# CONFIG_PACKAGE_isc-dhcp-server-ipv4 is not set -# CONFIG_PACKAGE_isc-dhcp-server-ipv6 is not set -# CONFIG_PACKAGE_knot is not set -# CONFIG_PACKAGE_knot-dig is not set -# CONFIG_PACKAGE_knot-host is not set -# CONFIG_PACKAGE_knot-keymgr is not set -# CONFIG_PACKAGE_knot-nsec3hash is not set -# CONFIG_PACKAGE_knot-nsupdate is not set -# CONFIG_PACKAGE_knot-tests is not set -# CONFIG_PACKAGE_knot-zonecheck is not set -# CONFIG_PACKAGE_mdns-utils is not set -# CONFIG_PACKAGE_mdnsd is not set -# CONFIG_PACKAGE_mdnsresponder is not set -# CONFIG_PACKAGE_nsd is not set -# CONFIG_PACKAGE_nsd-control is not set -# CONFIG_PACKAGE_nsd-control-setup is not set -# CONFIG_PACKAGE_nsd-nossl is not set -# CONFIG_PACKAGE_ohybridproxy is not set -# CONFIG_PACKAGE_unbound is not set -# CONFIG_PACKAGE_unbound-anchor is not set -# CONFIG_PACKAGE_unbound-control is not set -# CONFIG_PACKAGE_unbound-control-setup is not set -# CONFIG_PACKAGE_unbound-host is not set -# CONFIG_PACKAGE_zonestitcher is not set - -# -# Instant Messaging -# -# CONFIG_PACKAGE_bitlbee is not set -# CONFIG_PACKAGE_irssi is not set -# CONFIG_PACKAGE_ngircd is not set -# CONFIG_PACKAGE_ngircd-nossl is not set -# CONFIG_PACKAGE_prosody is not set -# CONFIG_PACKAGE_quassel-irssi is not set -# CONFIG_PACKAGE_umurmur-mbedtls is not set -# CONFIG_PACKAGE_umurmur-openssl is not set -# CONFIG_PACKAGE_znc is not set - -# -# Linux ATM tools -# -# CONFIG_PACKAGE_atm-aread is not set -# CONFIG_PACKAGE_atm-atmaddr is not set -# CONFIG_PACKAGE_atm-atmdiag is not set -# CONFIG_PACKAGE_atm-atmdump is not set -# CONFIG_PACKAGE_atm-atmloop is not set -# CONFIG_PACKAGE_atm-atmsigd is not set -# CONFIG_PACKAGE_atm-atmswitch is not set -# CONFIG_PACKAGE_atm-atmtcp is not set -# CONFIG_PACKAGE_atm-awrite is not set -# CONFIG_PACKAGE_atm-bus is not set -# CONFIG_PACKAGE_atm-debug-tools is not set -# CONFIG_PACKAGE_atm-diagnostics is not set -# CONFIG_PACKAGE_atm-esi is not set -# CONFIG_PACKAGE_atm-ilmid is not set -# CONFIG_PACKAGE_atm-ilmidiag is not set -# CONFIG_PACKAGE_atm-lecs is not set -# CONFIG_PACKAGE_atm-les is not set -# CONFIG_PACKAGE_atm-mpcd is not set -# CONFIG_PACKAGE_atm-saaldump is not set -# CONFIG_PACKAGE_atm-sonetdiag is not set -# CONFIG_PACKAGE_atm-svc_recv is not set -# CONFIG_PACKAGE_atm-svc_send is not set -# CONFIG_PACKAGE_atm-tools is not set -# CONFIG_PACKAGE_atm-ttcp_atm is not set -# CONFIG_PACKAGE_atm-zeppelin is not set -# CONFIG_PACKAGE_br2684ctl is not set - -# -# NMAP Suite -# -# CONFIG_PACKAGE_ncat is not set -# CONFIG_PACKAGE_ncat-ssl is not set -# CONFIG_PACKAGE_ndiff is not set -# CONFIG_PACKAGE_nmap is not set -# CONFIG_PACKAGE_nmap-ssl is not set -# CONFIG_PACKAGE_nping is not set - -# -# NTRIP -# -# CONFIG_PACKAGE_ntripcaster is not set -# CONFIG_PACKAGE_ntripclient is not set -# CONFIG_PACKAGE_ntripserver is not set - -# -# OLSR.org network framework -# -# CONFIG_PACKAGE_oonf-dlep-proxy is not set -# CONFIG_PACKAGE_oonf-dlep-radio is not set -# CONFIG_PACKAGE_oonf-init-scripts is not set -# CONFIG_PACKAGE_oonf-olsrd2 is not set - -# -# Open vSwitch -# -# CONFIG_PACKAGE_openvswitch is not set -# CONFIG_PACKAGE_openvswitch-base is not set -# CONFIG_PACKAGE_openvswitch-ovs-appctl is not set -# CONFIG_PACKAGE_openvswitch-ovs-dpctl is not set -# CONFIG_PACKAGE_openvswitch-ovs-ofctl is not set -# CONFIG_PACKAGE_openvswitch-ovs-vsctl is not set -# CONFIG_PACKAGE_openvswitch-ovsdb-client is not set -# CONFIG_PACKAGE_openvswitch-python is not set - -# -# P2P -# -# CONFIG_PACKAGE_amule is not set -CONFIG_AMULE_CRYPTOPP_STATIC_LINKING=y - -# -# Printing -# -CONFIG_PACKAGE_p910nd=y - -# -# Routing and Redirection -# -# CONFIG_PACKAGE_babel-pinger is not set -# CONFIG_PACKAGE_babeld is not set -# CONFIG_PACKAGE_batmand is not set -# CONFIG_PACKAGE_bcp38 is not set -# CONFIG_PACKAGE_bird4 is not set -# CONFIG_PACKAGE_bird4-uci is not set -# CONFIG_PACKAGE_bird6 is not set -# CONFIG_PACKAGE_bird6-uci is not set -# CONFIG_PACKAGE_birdc4 is not set -# CONFIG_PACKAGE_birdc6 is not set -# CONFIG_PACKAGE_birdcl4 is not set -# CONFIG_PACKAGE_birdcl6 is not set -# CONFIG_PACKAGE_bmx6 is not set -# CONFIG_PACKAGE_bmx7 is not set -# CONFIG_PACKAGE_cjdns is not set -# CONFIG_PACKAGE_cjdns-tests is not set -# CONFIG_PACKAGE_devlink is not set -# CONFIG_PACKAGE_genl is not set -# CONFIG_PACKAGE_igmpproxy is not set -# CONFIG_PACKAGE_ip-bridge is not set -CONFIG_PACKAGE_ip-full=y -# CONFIG_PACKAGE_ip-tiny is not set -# CONFIG_PACKAGE_lldpd is not set -# CONFIG_PACKAGE_mcproxy is not set -# CONFIG_PACKAGE_mwan3 is not set -# CONFIG_PACKAGE_nstat is not set -# CONFIG_PACKAGE_olsrd is not set -# CONFIG_PACKAGE_prince is not set -# CONFIG_PACKAGE_quagga is not set -# CONFIG_PACKAGE_relayd is not set -# CONFIG_PACKAGE_smcroute is not set -# CONFIG_PACKAGE_ss is not set -# CONFIG_PACKAGE_sslh is not set -CONFIG_PACKAGE_tc=y -# CONFIG_PACKAGE_tcpproxy is not set -# CONFIG_PACKAGE_vis is not set - -# -# SSH -# -# CONFIG_PACKAGE_autossh is not set -# CONFIG_PACKAGE_openssh-client is not set -# CONFIG_PACKAGE_openssh-client-utils is not set -# CONFIG_PACKAGE_openssh-keygen is not set -# CONFIG_PACKAGE_openssh-moduli is not set -# CONFIG_PACKAGE_openssh-server is not set -# CONFIG_PACKAGE_openssh-server-pam is not set -# CONFIG_PACKAGE_openssh-sftp-avahi-service is not set -# CONFIG_PACKAGE_openssh-sftp-client is not set -# CONFIG_PACKAGE_openssh-sftp-server is not set -# CONFIG_PACKAGE_sshtunnel is not set - -# -# THC-IPv6 attack and analyzing toolkit -# -# CONFIG_PACKAGE_thc-ipv6-address6 is not set -# CONFIG_PACKAGE_thc-ipv6-alive6 is not set -# CONFIG_PACKAGE_thc-ipv6-covert-send6 is not set -# CONFIG_PACKAGE_thc-ipv6-covert-send6d is not set -# CONFIG_PACKAGE_thc-ipv6-denial6 is not set -# CONFIG_PACKAGE_thc-ipv6-detect-new-ip6 is not set -# CONFIG_PACKAGE_thc-ipv6-detect-sniffer6 is not set -# CONFIG_PACKAGE_thc-ipv6-dnsdict6 is not set -# CONFIG_PACKAGE_thc-ipv6-dnsrevenum6 is not set -# CONFIG_PACKAGE_thc-ipv6-dos-new-ip6 is not set -# CONFIG_PACKAGE_thc-ipv6-dump-router6 is not set -# CONFIG_PACKAGE_thc-ipv6-exploit6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-advertise6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-dhcps6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-dns6d is not set -# CONFIG_PACKAGE_thc-ipv6-fake-dnsupdate6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-mipv6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-mld26 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-mld6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-mldrouter6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-router26 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-router6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-solicitate6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-advertise6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-dhcpc6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-mld26 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-mld6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-mldrouter6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-router26 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-router6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-solicitate6 is not set -# CONFIG_PACKAGE_thc-ipv6-fragmentation6 is not set -# CONFIG_PACKAGE_thc-ipv6-fuzz-dhcpc6 is not set -# CONFIG_PACKAGE_thc-ipv6-fuzz-dhcps6 is not set -# CONFIG_PACKAGE_thc-ipv6-fuzz-ip6 is not set -# CONFIG_PACKAGE_thc-ipv6-implementation6 is not set -# CONFIG_PACKAGE_thc-ipv6-implementation6d is not set -# CONFIG_PACKAGE_thc-ipv6-inverse-lookup6 is not set -# CONFIG_PACKAGE_thc-ipv6-kill-router6 is not set -# CONFIG_PACKAGE_thc-ipv6-ndpexhaust6 is not set -# CONFIG_PACKAGE_thc-ipv6-node-query6 is not set -# CONFIG_PACKAGE_thc-ipv6-parasite6 is not set -# CONFIG_PACKAGE_thc-ipv6-passive-discovery6 is not set -# CONFIG_PACKAGE_thc-ipv6-randicmp6 is not set -# CONFIG_PACKAGE_thc-ipv6-redir6 is not set -# CONFIG_PACKAGE_thc-ipv6-rsmurf6 is not set -# CONFIG_PACKAGE_thc-ipv6-sendpees6 is not set -# CONFIG_PACKAGE_thc-ipv6-sendpeesmp6 is not set -# CONFIG_PACKAGE_thc-ipv6-smurf6 is not set -# CONFIG_PACKAGE_thc-ipv6-thcping6 is not set -# CONFIG_PACKAGE_thc-ipv6-toobig6 is not set -# CONFIG_PACKAGE_thc-ipv6-trace6 is not set - -# -# Telephony -# -# CONFIG_PACKAGE_asterisk11 is not set -# CONFIG_PACKAGE_asterisk13 is not set -# CONFIG_PACKAGE_baresip is not set -# CONFIG_PACKAGE_freeswitch is not set -# CONFIG_PACKAGE_freeswitch-stable is not set -# CONFIG_PACKAGE_kamailio5 is not set -# CONFIG_PACKAGE_miax is not set -# CONFIG_PACKAGE_pcapsipdump is not set -# CONFIG_PACKAGE_restund is not set -# CONFIG_PACKAGE_rtpproxy is not set -# CONFIG_PACKAGE_sipp is not set -# CONFIG_PACKAGE_siproxd is not set -# CONFIG_PACKAGE_yate is not set - -# -# Time Synchronization -# -# CONFIG_PACKAGE_chrony is not set -# CONFIG_PACKAGE_htpdate is not set -# CONFIG_PACKAGE_linuxptp is not set -# CONFIG_PACKAGE_ntp-keygen is not set -# CONFIG_PACKAGE_ntp-utils is not set -# CONFIG_PACKAGE_ntpclient is not set -# CONFIG_PACKAGE_ntpd is not set -# CONFIG_PACKAGE_ntpdate is not set - -# -# VPN -# -# CONFIG_PACKAGE_chaosvpn is not set -# CONFIG_PACKAGE_fastd is not set -# CONFIG_PACKAGE_ipsec-tools is not set -CONFIG_PACKAGE_n2n_v2=y -# CONFIG_PACKAGE_ocserv is not set -# CONFIG_PACKAGE_openconnect is not set -# CONFIG_PACKAGE_opennhrp is not set -# CONFIG_PACKAGE_openvpn-easy-rsa is not set -# CONFIG_PACKAGE_openvpn-mbedtls is not set -# CONFIG_PACKAGE_openvpn-nossl is not set -# CONFIG_PACKAGE_openvpn-openssl is not set -CONFIG_PACKAGE_pptpd=y -# CONFIG_PACKAGE_softethervpn is not set -# CONFIG_PACKAGE_sstp-client is not set -CONFIG_PACKAGE_strongswan=y - -# -# Configuration -# -CONFIG_STRONGSWAN_ROUTING_TABLE="220" -CONFIG_STRONGSWAN_ROUTING_TABLE_PRIO="220" -CONFIG_PACKAGE_strongswan-charon=y -# CONFIG_PACKAGE_strongswan-charon-cmd is not set -# CONFIG_PACKAGE_strongswan-default is not set -CONFIG_PACKAGE_strongswan-ipsec=y -# CONFIG_PACKAGE_strongswan-isakmp is not set -# CONFIG_PACKAGE_strongswan-libtls is not set -CONFIG_PACKAGE_strongswan-minimal=y -# CONFIG_PACKAGE_strongswan-mod-addrblock is not set -CONFIG_PACKAGE_strongswan-mod-aes=y -# CONFIG_PACKAGE_strongswan-mod-af-alg is not set -# CONFIG_PACKAGE_strongswan-mod-agent is not set -# CONFIG_PACKAGE_strongswan-mod-attr is not set -# CONFIG_PACKAGE_strongswan-mod-attr-sql is not set -# CONFIG_PACKAGE_strongswan-mod-blowfish is not set -# CONFIG_PACKAGE_strongswan-mod-ccm is not set -# CONFIG_PACKAGE_strongswan-mod-cmac is not set -# CONFIG_PACKAGE_strongswan-mod-connmark is not set -# CONFIG_PACKAGE_strongswan-mod-constraints is not set -# CONFIG_PACKAGE_strongswan-mod-coupling is not set -# CONFIG_PACKAGE_strongswan-mod-ctr is not set -# CONFIG_PACKAGE_strongswan-mod-curl is not set -# CONFIG_PACKAGE_strongswan-mod-curve25519 is not set -# CONFIG_PACKAGE_strongswan-mod-des is not set -# CONFIG_PACKAGE_strongswan-mod-dhcp is not set -# CONFIG_PACKAGE_strongswan-mod-dnskey is not set -# CONFIG_PACKAGE_strongswan-mod-duplicheck is not set -# CONFIG_PACKAGE_strongswan-mod-eap-identity is not set -# CONFIG_PACKAGE_strongswan-mod-eap-md5 is not set -# CONFIG_PACKAGE_strongswan-mod-eap-mschapv2 is not set -# CONFIG_PACKAGE_strongswan-mod-eap-radius is not set -# CONFIG_PACKAGE_strongswan-mod-eap-tls is not set -# CONFIG_PACKAGE_strongswan-mod-farp is not set -# CONFIG_PACKAGE_strongswan-mod-fips-prf is not set -# CONFIG_PACKAGE_strongswan-mod-forecast is not set -# CONFIG_PACKAGE_strongswan-mod-gcm is not set -# CONFIG_PACKAGE_strongswan-mod-gcrypt is not set -CONFIG_PACKAGE_strongswan-mod-gmp=y -# CONFIG_PACKAGE_strongswan-mod-gmpdh is not set -# CONFIG_PACKAGE_strongswan-mod-ha is not set -CONFIG_PACKAGE_strongswan-mod-hmac=y -# CONFIG_PACKAGE_strongswan-mod-kernel-libipsec is not set -CONFIG_PACKAGE_strongswan-mod-kernel-netlink=y -# CONFIG_PACKAGE_strongswan-mod-ldap is not set -# CONFIG_PACKAGE_strongswan-mod-led is not set -# CONFIG_PACKAGE_strongswan-mod-load-tester is not set -# CONFIG_PACKAGE_strongswan-mod-md4 is not set -# CONFIG_PACKAGE_strongswan-mod-md5 is not set -# CONFIG_PACKAGE_strongswan-mod-mysql is not set -CONFIG_PACKAGE_strongswan-mod-nonce=y -# CONFIG_PACKAGE_strongswan-mod-openssl is not set -# CONFIG_PACKAGE_strongswan-mod-pem is not set -# CONFIG_PACKAGE_strongswan-mod-pgp is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs1 is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs11 is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs12 is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs7 is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs8 is not set -CONFIG_PACKAGE_strongswan-mod-pubkey=y -CONFIG_PACKAGE_strongswan-mod-random=y -# CONFIG_PACKAGE_strongswan-mod-rc2 is not set -# CONFIG_PACKAGE_strongswan-mod-resolve is not set -# CONFIG_PACKAGE_strongswan-mod-revocation is not set -CONFIG_PACKAGE_strongswan-mod-sha1=y -# CONFIG_PACKAGE_strongswan-mod-sha2 is not set -# CONFIG_PACKAGE_strongswan-mod-smp is not set -CONFIG_PACKAGE_strongswan-mod-socket-default=y -# CONFIG_PACKAGE_strongswan-mod-socket-dynamic is not set -# CONFIG_PACKAGE_strongswan-mod-sql is not set -# CONFIG_PACKAGE_strongswan-mod-sqlite is not set -# CONFIG_PACKAGE_strongswan-mod-sshkey is not set -CONFIG_PACKAGE_strongswan-mod-stroke=y -# CONFIG_PACKAGE_strongswan-mod-test-vectors is not set -# CONFIG_PACKAGE_strongswan-mod-uci is not set -# CONFIG_PACKAGE_strongswan-mod-unity is not set -CONFIG_PACKAGE_strongswan-mod-updown=y -# CONFIG_PACKAGE_strongswan-mod-vici is not set -# CONFIG_PACKAGE_strongswan-mod-whitelist is not set -CONFIG_PACKAGE_strongswan-mod-x509=y -# CONFIG_PACKAGE_strongswan-mod-xauth-eap is not set -CONFIG_PACKAGE_strongswan-mod-xauth-generic=y -CONFIG_PACKAGE_strongswan-mod-xcbc=y -# CONFIG_PACKAGE_strongswan-pki is not set -# CONFIG_PACKAGE_strongswan-scepclient is not set -# CONFIG_PACKAGE_strongswan-swanctl is not set -# CONFIG_PACKAGE_tinc is not set -# CONFIG_PACKAGE_uanytun is not set -# CONFIG_PACKAGE_uanytun-nettle is not set -# CONFIG_PACKAGE_uanytun-nocrypt is not set -# CONFIG_PACKAGE_uanytun-sslcrypt is not set -# CONFIG_PACKAGE_vpnc is not set -# CONFIG_PACKAGE_vpnc-scripts is not set -# CONFIG_PACKAGE_wireguard is not set -# CONFIG_PACKAGE_wireguard-tools is not set -# CONFIG_PACKAGE_xl2tpd is not set -# CONFIG_PACKAGE_zerotier is not set - -# -# Version Control Systems -# -# CONFIG_PACKAGE_fossil is not set -# CONFIG_PACKAGE_git is not set -# CONFIG_PACKAGE_subversion-client is not set -# CONFIG_PACKAGE_subversion-libs is not set -# CONFIG_PACKAGE_subversion-server is not set - -# -# WWAN -# -# CONFIG_PACKAGE_adb-enablemodem is not set -# CONFIG_PACKAGE_comgt is not set -# CONFIG_PACKAGE_comgt-directip is not set -# CONFIG_PACKAGE_comgt-ncm is not set -# CONFIG_PACKAGE_uqmi is not set - -# -# Web Servers/Proxies -# -# CONFIG_PACKAGE_apache is not set -# CONFIG_PACKAGE_cgi-io is not set -# CONFIG_PACKAGE_clamav is not set -# CONFIG_PACKAGE_dansguardian is not set -# CONFIG_PACKAGE_e2guardian is not set -# CONFIG_PACKAGE_freshclam is not set -# CONFIG_PACKAGE_haproxy is not set -# CONFIG_PACKAGE_haproxy-nossl is not set -# CONFIG_PACKAGE_lighttpd is not set -# CONFIG_PACKAGE_nginx is not set -CONFIG_PACKAGE_ngrokc=y -CONFIG_PACKAGE_pdnsd-alt=y -# CONFIG_PACKAGE_polipo is not set -# CONFIG_PACKAGE_privoxy is not set -# CONFIG_PACKAGE_radicale-py2 is not set -# CONFIG_PACKAGE_radicale-py3 is not set -# CONFIG_PACKAGE_shadowsocks-client is not set -# CONFIG_PACKAGE_shadowsocks-libev-config is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-local is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-redir is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-rules is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-server is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-tunnel is not set -# CONFIG_PACKAGE_sockd is not set -# CONFIG_PACKAGE_socksify is not set -# CONFIG_PACKAGE_spawn-fcgi is not set -# CONFIG_PACKAGE_squid is not set -# CONFIG_PACKAGE_tinyproxy is not set -CONFIG_PACKAGE_uhttpd=y -# CONFIG_PACKAGE_uhttpd_debug is not set -# CONFIG_PACKAGE_uhttpd-mod-lua is not set -CONFIG_PACKAGE_uhttpd-mod-ubus=y - -# -# dial-in/up -# -# CONFIG_PACKAGE_rp-pppoe-common is not set -# CONFIG_PACKAGE_rp-pppoe-relay is not set -# CONFIG_PACKAGE_rp-pppoe-server is not set - -# -# tcprelay -# -# CONFIG_PACKAGE_tcpbridge is not set -# CONFIG_PACKAGE_tcpcapinfo is not set -# CONFIG_PACKAGE_tcpliveplay is not set -# CONFIG_PACKAGE_tcpprep is not set -# CONFIG_PACKAGE_tcpreplay is not set -# CONFIG_PACKAGE_tcpreplay-all is not set -# CONFIG_PACKAGE_tcpreplay-edit is not set -# CONFIG_PACKAGE_tcprewrite is not set - -# -# wireless -# -# CONFIG_PACKAGE_aircrack-ng is not set -# CONFIG_PACKAGE_airmon-ng is not set -# CONFIG_PACKAGE_dynapoint is not set -# CONFIG_PACKAGE_horst is not set -# CONFIG_PACKAGE_kismet-client is not set -# CONFIG_PACKAGE_kismet-drone is not set -# CONFIG_PACKAGE_kismet-server is not set -# CONFIG_PACKAGE_reaver is not set -# CONFIG_PACKAGE_wavemon is not set -CONFIG_PACKAGE_wifischedule=y -# CONFIG_PACKAGE_464xlat is not set -# CONFIG_PACKAGE_6in4 is not set -# CONFIG_PACKAGE_6rd is not set -# CONFIG_PACKAGE_6to4 is not set -# CONFIG_PACKAGE_acme is not set -# CONFIG_PACKAGE_adblock is not set -CONFIG_PACKAGE_adbyby=y -# CONFIG_PACKAGE_addrwatch is not set -# CONFIG_PACKAGE_ahcpd is not set -# CONFIG_PACKAGE_alfred is not set -# CONFIG_PACKAGE_apcupsd is not set -# CONFIG_PACKAGE_apcupsd-cgi is not set -# CONFIG_PACKAGE_apinger is not set -# CONFIG_PACKAGE_arp-scan is not set -# CONFIG_PACKAGE_authsae is not set -# CONFIG_PACKAGE_batctl is not set -# CONFIG_PACKAGE_beanstalkd is not set -# CONFIG_PACKAGE_bmon is not set -# CONFIG_PACKAGE_bwm-ng is not set -# CONFIG_PACKAGE_chat is not set -# CONFIG_PACKAGE_cifsmount is not set -# CONFIG_PACKAGE_coap-server is not set -# CONFIG_PACKAGE_conserver is not set -# CONFIG_PACKAGE_cshark is not set -# CONFIG_PACKAGE_daemonlogger is not set -# CONFIG_PACKAGE_darkstat is not set -# CONFIG_PACKAGE_dhcpcd is not set -# CONFIG_PACKAGE_dmapd is not set -# CONFIG_PACKAGE_dogcom is not set -# CONFIG_PACKAGE_ds-lite is not set -# CONFIG_PACKAGE_eapol-test is not set -# CONFIG_PACKAGE_esniper is not set -CONFIG_PACKAGE_etherwake=y -# CONFIG_PACKAGE_ethtool is not set -# CONFIG_PACKAGE_fakeidentd is not set -CONFIG_PACKAGE_fping=y -# CONFIG_PACKAGE_frpc is not set -# CONFIG_PACKAGE_gnunet is not set -# CONFIG_PACKAGE_gre is not set -# CONFIG_PACKAGE_hnet-full is not set -# CONFIG_PACKAGE_hnet-full-l2tp is not set -# CONFIG_PACKAGE_hnet-full-secure is not set -# CONFIG_PACKAGE_hnetd-nossl is not set -# CONFIG_PACKAGE_hnetd-openssl is not set -# CONFIG_PACKAGE_hostapd is not set -CONFIG_PACKAGE_hostapd-common=y -# CONFIG_PACKAGE_hostapd-mini is not set -# CONFIG_PACKAGE_hostapd-utils is not set -# CONFIG_PACKAGE_httping is not set -# CONFIG_PACKAGE_httping-nossl is not set -# CONFIG_PACKAGE_https_dns_proxy is not set -# CONFIG_PACKAGE_ibrdtn-tools is not set -# CONFIG_PACKAGE_ibrdtnd is not set -# CONFIG_PACKAGE_ifstat is not set -# CONFIG_PACKAGE_iftop is not set -# CONFIG_PACKAGE_iiod is not set -# CONFIG_PACKAGE_iotivity is not set -# CONFIG_PACKAGE_iotivity-cpp is not set -# CONFIG_PACKAGE_iotivity-example-garage is not set -# CONFIG_PACKAGE_iotivity-example-simple is not set -# CONFIG_PACKAGE_iotivity-oic-middle is not set -# CONFIG_PACKAGE_iotivity-resource-container-hue is not set -# CONFIG_PACKAGE_iotivity-resource-container-lib is not set -# CONFIG_PACKAGE_iotivity-resource-container-sample is not set -# CONFIG_PACKAGE_iotivity-resource-directory-lib is not set -# CONFIG_PACKAGE_iperf is not set -# CONFIG_PACKAGE_iperf3 is not set -# CONFIG_PACKAGE_iperf3-ssl is not set -# CONFIG_PACKAGE_ipip is not set -CONFIG_PACKAGE_ipset=y -# CONFIG_PACKAGE_ipset-dns is not set -CONFIG_PACKAGE_ipset-lists=y -# CONFIG_PACKAGE_iptraf-ng is not set -# CONFIG_PACKAGE_iputils-arping is not set -# CONFIG_PACKAGE_iputils-clockdiff is not set -# CONFIG_PACKAGE_iputils-ping is not set -# CONFIG_PACKAGE_iputils-ping6 is not set -# CONFIG_PACKAGE_iputils-tftpd is not set -# CONFIG_PACKAGE_iputils-tracepath is not set -# CONFIG_PACKAGE_iputils-tracepath6 is not set -# CONFIG_PACKAGE_iputils-traceroute6 is not set -CONFIG_PACKAGE_iw=y -# CONFIG_PACKAGE_jool is not set -# CONFIG_PACKAGE_jool-tools is not set -# CONFIG_PACKAGE_keepalived is not set -# CONFIG_PACKAGE_knxd is not set -# CONFIG_PACKAGE_kplex is not set -# CONFIG_PACKAGE_krb5-client is not set -# CONFIG_PACKAGE_krb5-libs is not set -# CONFIG_PACKAGE_krb5-server is not set -CONFIG_PACKAGE_libipset=y -# CONFIG_PACKAGE_linknx is not set -# CONFIG_PACKAGE_lispd is not set -# CONFIG_PACKAGE_mac-telnet-client is not set -# CONFIG_PACKAGE_mac-telnet-discover is not set -# CONFIG_PACKAGE_mac-telnet-ping is not set -# CONFIG_PACKAGE_mac-telnet-server is not set -# CONFIG_PACKAGE_map is not set -# CONFIG_PACKAGE_map-t is not set -# CONFIG_PACKAGE_memcached is not set -# CONFIG_PACKAGE_mii-tool is not set -# CONFIG_PACKAGE_mini_snmpd is not set -# CONFIG_PACKAGE_minimalist-pcproxy is not set -# CONFIG_PACKAGE_mosquitto-client-nossl is not set -# CONFIG_PACKAGE_mosquitto-client-ssl is not set -# CONFIG_PACKAGE_mosquitto-nossl is not set -# CONFIG_PACKAGE_mosquitto-ssl is not set -# CONFIG_PACKAGE_mproxy is not set -# CONFIG_PACKAGE_mrd6 is not set -# CONFIG_PACKAGE_mtr is not set -# CONFIG_PACKAGE_nbd is not set -# CONFIG_PACKAGE_nbd-server is not set -# CONFIG_PACKAGE_ncp is not set -# CONFIG_PACKAGE_ndppd is not set -# CONFIG_PACKAGE_netcat is not set -# CONFIG_PACKAGE_netdiscover is not set -# CONFIG_PACKAGE_netperf is not set -CONFIG_PACKAGE_nlbwmon=y -# CONFIG_PACKAGE_noddos is not set -# CONFIG_PACKAGE_noping is not set -# CONFIG_PACKAGE_nut is not set -# CONFIG_PACKAGE_obfsproxy is not set -CONFIG_PACKAGE_odhcp6c=y -CONFIG_PACKAGE_odhcp6c_ext_cer_id=0 -CONFIG_PACKAGE_odhcpd=y -CONFIG_PACKAGE_odhcpd_ext_cer_id=0 -# CONFIG_PACKAGE_ola is not set -# CONFIG_PACKAGE_omcproxy is not set -# CONFIG_PACKAGE_openldap-server is not set -# CONFIG_PACKAGE_oscam is not set -# CONFIG_PACKAGE_oping is not set -# CONFIG_PACKAGE_pen is not set -# CONFIG_PACKAGE_pimbd is not set -# CONFIG_PACKAGE_pingcheck is not set -# CONFIG_PACKAGE_port-mirroring is not set -# CONFIG_PACKAGE_portmap is not set -CONFIG_PACKAGE_ppp=y -# CONFIG_PACKAGE_ppp-mod-passwordfd is not set -# CONFIG_PACKAGE_ppp-mod-pppoa is not set -CONFIG_PACKAGE_ppp-mod-pppoe=y -# CONFIG_PACKAGE_ppp-mod-pppol2tp is not set -# CONFIG_PACKAGE_ppp-mod-pptp is not set -# CONFIG_PACKAGE_ppp-mod-radius is not set -# CONFIG_PACKAGE_ppp-multilink is not set -# CONFIG_PACKAGE_pppdump is not set -# CONFIG_PACKAGE_pppoe-discovery is not set -# CONFIG_PACKAGE_pppossh is not set -# CONFIG_PACKAGE_pppstats is not set -# CONFIG_PACKAGE_radsecproxy is not set -# CONFIG_PACKAGE_redsocks is not set -# CONFIG_PACKAGE_remserial is not set -# CONFIG_PACKAGE_rssileds is not set -# CONFIG_PACKAGE_rsyslog is not set -# CONFIG_PACKAGE_samba36-client is not set -# CONFIG_PACKAGE_samba36-net is not set -CONFIG_PACKAGE_samba36-server=y -CONFIG_PACKAGE_SAMBA_MAX_DEBUG_LEVEL=-1 -# CONFIG_PACKAGE_scapy is not set -# CONFIG_PACKAGE_sctp is not set -# CONFIG_PACKAGE_sctp-tools is not set -# CONFIG_PACKAGE_seafile-ccnet is not set -# CONFIG_PACKAGE_seafile-seahub is not set -# CONFIG_PACKAGE_seafile-server is not set -# CONFIG_PACKAGE_ser2net is not set -# CONFIG_PACKAGE_shadowsocksr-libev is not set -CONFIG_PACKAGE_shadowsocksr-libev-alt=y -# CONFIG_PACKAGE_shadowsocksr-libev-gfwlist is not set -# CONFIG_PACKAGE_shadowsocksr-libev-gfwlist-4M is not set -# CONFIG_PACKAGE_shadowsocksr-libev-gfwlist-polarssl is not set -# CONFIG_PACKAGE_shadowsocksr-libev-mini is not set -# CONFIG_PACKAGE_shadowsocksr-libev-polarssl is not set -# CONFIG_PACKAGE_simple-adblock is not set -# CONFIG_PACKAGE_sipgrep is not set -# CONFIG_PACKAGE_smartsnmpd is not set -# CONFIG_PACKAGE_sngrep is not set -# CONFIG_PACKAGE_snmp-mibs is not set -# CONFIG_PACKAGE_snmp-utils is not set -# CONFIG_PACKAGE_snmpd is not set -# CONFIG_PACKAGE_snmpd-static is not set -# CONFIG_PACKAGE_snmptrapd is not set -# CONFIG_PACKAGE_socat is not set -# CONFIG_PACKAGE_softflowd is not set -# CONFIG_PACKAGE_soloscli is not set -# CONFIG_PACKAGE_stunnel is not set -# CONFIG_PACKAGE_tayga is not set -# CONFIG_PACKAGE_tcpdump is not set -# CONFIG_PACKAGE_tcpdump-mini is not set -# CONFIG_PACKAGE_tor is not set -# CONFIG_PACKAGE_tor-gencert is not set -# CONFIG_PACKAGE_tor-geoip is not set -# CONFIG_PACKAGE_tor-resolve is not set -# CONFIG_PACKAGE_travelmate is not set -# CONFIG_PACKAGE_u2pnpd is not set -CONFIG_PACKAGE_uclient-fetch=y -# CONFIG_PACKAGE_udpxy is not set -# CONFIG_PACKAGE_ulogd is not set -# CONFIG_PACKAGE_umbim is not set -# CONFIG_PACKAGE_umdns is not set -# CONFIG_PACKAGE_usbip is not set -# CONFIG_PACKAGE_vallumd is not set -CONFIG_PACKAGE_vlmcsd=y -# CONFIG_PACKAGE_vncrepeater is not set -# CONFIG_PACKAGE_vnstat is not set -# CONFIG_PACKAGE_vpnbypass is not set -# CONFIG_PACKAGE_vsc7385-ucode-pb44 is not set -# CONFIG_PACKAGE_vsc7395-ucode-pb44 is not set -# CONFIG_PACKAGE_vti is not set -# CONFIG_PACKAGE_vxlan is not set -# CONFIG_PACKAGE_wakeonlan is not set -# CONFIG_PACKAGE_wpa-cli is not set -# CONFIG_PACKAGE_wpa-supplicant is not set -# CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK is not set -# CONFIG_WPA_RFKILL_SUPPORT is not set -CONFIG_WPA_MSG_MIN_PRIORITY=3 -# CONFIG_DRIVER_WEXT_SUPPORT is not set -CONFIG_DRIVER_11N_SUPPORT=y -CONFIG_DRIVER_11AC_SUPPORT=y -CONFIG_DRIVER_11W_SUPPORT=y -# CONFIG_PACKAGE_wpa-supplicant-mesh is not set -# CONFIG_PACKAGE_wpa-supplicant-mini is not set -# CONFIG_PACKAGE_wpa-supplicant-p2p is not set -# CONFIG_PACKAGE_wpad is not set -# CONFIG_PACKAGE_wpad-mesh is not set -CONFIG_PACKAGE_wpad-mini=y -# CONFIG_PACKAGE_wpan-tools is not set -# CONFIG_PACKAGE_wwan is not set -# CONFIG_PACKAGE_xinetd is not set - -# -# Sound -# -# CONFIG_PACKAGE_alsa-utils is not set -# CONFIG_PACKAGE_alsa-utils-seq is not set -# CONFIG_PACKAGE_alsa-utils-tests is not set -# CONFIG_PACKAGE_espeak is not set -# CONFIG_PACKAGE_faad2 is not set -# CONFIG_PACKAGE_fdk-aac is not set -# CONFIG_PACKAGE_forked-daapd is not set -# CONFIG_PACKAGE_ices is not set -# CONFIG_PACKAGE_lame is not set -# CONFIG_PACKAGE_lame-lib is not set -# CONFIG_PACKAGE_liblo-utils is not set -# CONFIG_PACKAGE_madplay is not set -# CONFIG_PACKAGE_madplay-alsa is not set -# CONFIG_PACKAGE_moc is not set -# CONFIG_PACKAGE_mpc is not set -# CONFIG_PACKAGE_mpd-avahi-service is not set -# CONFIG_PACKAGE_mpd-full is not set -# CONFIG_PACKAGE_mpd-mini is not set -# CONFIG_PACKAGE_mpg123 is not set -# CONFIG_PACKAGE_pianod is not set -# CONFIG_PACKAGE_pianod-client is not set -# CONFIG_PACKAGE_portaudio is not set -# CONFIG_PACKAGE_pulseaudio-daemon is not set -# CONFIG_PACKAGE_pulseaudio-profiles is not set -# CONFIG_PACKAGE_pulseaudio-tools is not set -# CONFIG_PACKAGE_shairplay is not set -# CONFIG_PACKAGE_shairport-sync-mbedtls is not set -# CONFIG_PACKAGE_shairport-sync-mini is not set -# CONFIG_PACKAGE_shairport-sync-openssl is not set -# CONFIG_PACKAGE_shine is not set -# CONFIG_PACKAGE_sox is not set -# CONFIG_PACKAGE_squeezelite-full is not set -# CONFIG_PACKAGE_squeezelite-mini is not set -# CONFIG_PACKAGE_svox is not set -# CONFIG_PACKAGE_upmpdcli is not set - -# -# Utilities -# - -# -# Boot Loaders -# -# CONFIG_PACKAGE_fconfig is not set -# CONFIG_PACKAGE_rbcfg is not set -CONFIG_PACKAGE_uboot-envtools=y -# CONFIG_UBOOT_ENVTOOLS_UBI is not set - -# -# Compression -# -# CONFIG_PACKAGE_bsdtar is not set -# CONFIG_PACKAGE_bzip2 is not set -# CONFIG_PACKAGE_gzip is not set -# CONFIG_PACKAGE_unrar is not set -# CONFIG_PACKAGE_unzip is not set -# CONFIG_PACKAGE_xz-utils is not set -# CONFIG_PACKAGE_zip is not set - -# -# Disc -# -# CONFIG_PACKAGE_blkdiscard is not set -# CONFIG_PACKAGE_blkid is not set -# CONFIG_PACKAGE_cfdisk is not set -# CONFIG_PACKAGE_fdisk is not set -# CONFIG_PACKAGE_findfs is not set -CONFIG_PACKAGE_hd-idle=y -# CONFIG_PACKAGE_hdparm is not set -# CONFIG_PACKAGE_lsblk is not set -# CONFIG_PACKAGE_lvm2 is not set -# CONFIG_PACKAGE_mdadm is not set -# CONFIG_PACKAGE_partx-utils is not set -# CONFIG_PACKAGE_sfdisk is not set -# CONFIG_PACKAGE_wipefs is not set - -# -# Editors -# -# CONFIG_PACKAGE_joe is not set -# CONFIG_PACKAGE_nano is not set -# CONFIG_PACKAGE_vim is not set -# CONFIG_PACKAGE_vim-full is not set -# CONFIG_PACKAGE_vim-fuller is not set -# CONFIG_PACKAGE_vim-help is not set -# CONFIG_PACKAGE_vim-runtime is not set -# CONFIG_PACKAGE_zile is not set - -# -# Encryption -# -# CONFIG_PACKAGE_ccrypt is not set -# CONFIG_PACKAGE_certtool is not set -# CONFIG_PACKAGE_cryptsetup is not set -# CONFIG_PACKAGE_cryptsetup-openssl is not set -# CONFIG_PACKAGE_gnupg is not set -# CONFIG_PACKAGE_gnutls-utils is not set -# CONFIG_PACKAGE_gpgv is not set -# CONFIG_PACKAGE_px5g-mbedtls is not set -# CONFIG_PACKAGE_px5g-standalone is not set -# CONFIG_PACKAGE_stoken is not set - -# -# Filesystem -# -# CONFIG_PACKAGE_acl is not set -# CONFIG_PACKAGE_attr is not set -# CONFIG_PACKAGE_badblocks is not set -# CONFIG_PACKAGE_btrfs-progs is not set -# CONFIG_PACKAGE_chattr is not set -# CONFIG_PACKAGE_debugfs is not set -# CONFIG_PACKAGE_dosfstools is not set -# CONFIG_PACKAGE_dumpe2fs is not set -# CONFIG_PACKAGE_e2freefrag is not set -# CONFIG_PACKAGE_e2fsprogs is not set -# CONFIG_PACKAGE_f2fs-tools is not set -# CONFIG_PACKAGE_f2fsck is not set -# CONFIG_PACKAGE_filefrag is not set -# CONFIG_PACKAGE_fuse-utils is not set -# CONFIG_PACKAGE_hfsfsck is not set -# CONFIG_PACKAGE_lsattr is not set -# CONFIG_PACKAGE_mkf2fs is not set -# CONFIG_PACKAGE_mkhfs is not set -# CONFIG_PACKAGE_ncdu is not set -# CONFIG_PACKAGE_nfs-utils is not set -CONFIG_PACKAGE_ntfs-3g=y -# CONFIG_PACKAGE_NTFS-3G_USE_LIBFUSE is not set -# CONFIG_PACKAGE_ntfs-3g-low is not set -# CONFIG_PACKAGE_ntfs-3g-utils is not set -# CONFIG_PACKAGE_owfs is not set -# CONFIG_PACKAGE_owshell is not set -# CONFIG_PACKAGE_resize2fs is not set -# CONFIG_PACKAGE_squashfs-tools-mksquashfs is not set -# CONFIG_PACKAGE_squashfs-tools-unsquashfs is not set -# CONFIG_PACKAGE_swap-utils is not set -# CONFIG_PACKAGE_sysfsutils is not set -# CONFIG_PACKAGE_tune2fs is not set -# CONFIG_PACKAGE_xfs-fsck is not set -# CONFIG_PACKAGE_xfs-growfs is not set -# CONFIG_PACKAGE_xfs-mkfs is not set - -# -# Image Manipulation -# -# CONFIG_PACKAGE_jpeg-tools is not set -# CONFIG_PACKAGE_tiff-utils is not set - -# -# Luci -# -# CONFIG_PACKAGE_luci-app-haproxy-tcp is not set - -# -# Microcontroller programming -# -# CONFIG_PACKAGE_avrdude is not set -# CONFIG_PACKAGE_dfu-programmer is not set -# CONFIG_PACKAGE_stm32flash is not set - -# -# RTKLIB Suite -# -# CONFIG_PACKAGE_convbin is not set -# CONFIG_PACKAGE_pos2kml is not set -# CONFIG_PACKAGE_rnx2rtkp is not set -# CONFIG_PACKAGE_rtkrcv is not set -# CONFIG_PACKAGE_str2str is not set - -# -# Shells -# -# CONFIG_PACKAGE_bash is not set -# CONFIG_PACKAGE_klish is not set -# CONFIG_PACKAGE_tcsh is not set -# CONFIG_PACKAGE_zsh is not set - -# -# Telephony -# -# CONFIG_PACKAGE_dahdi-cfg is not set -# CONFIG_PACKAGE_dahdi-monitor is not set - -# -# Terminal -# -# CONFIG_PACKAGE_agetty is not set -# CONFIG_PACKAGE_dvtm is not set -# CONFIG_PACKAGE_minicom is not set -# CONFIG_PACKAGE_picocom is not set -# CONFIG_PACKAGE_screen is not set -# CONFIG_PACKAGE_script-utils is not set -# CONFIG_PACKAGE_serialconsole is not set -# CONFIG_PACKAGE_setterm is not set -# CONFIG_PACKAGE_tmux is not set -# CONFIG_PACKAGE_ttyd is not set -# CONFIG_PACKAGE_wall is not set - -# -# Virtualization -# - -# -# Zoneinfo -# -# CONFIG_PACKAGE_zoneinfo-africa is not set -# CONFIG_PACKAGE_zoneinfo-asia is not set -# CONFIG_PACKAGE_zoneinfo-atlantic is not set -# CONFIG_PACKAGE_zoneinfo-australia-nz is not set -# CONFIG_PACKAGE_zoneinfo-core is not set -# CONFIG_PACKAGE_zoneinfo-europe is not set -# CONFIG_PACKAGE_zoneinfo-india is not set -# CONFIG_PACKAGE_zoneinfo-northamerica is not set -# CONFIG_PACKAGE_zoneinfo-pacific is not set -# CONFIG_PACKAGE_zoneinfo-poles is not set -# CONFIG_PACKAGE_zoneinfo-simple is not set -# CONFIG_PACKAGE_zoneinfo-southamerica is not set - -# -# database -# -# CONFIG_PACKAGE_mysql-server is not set -# CONFIG_PACKAGE_pgsql-cli is not set -# CONFIG_PACKAGE_pgsql-cli-extra is not set -# CONFIG_PACKAGE_pgsql-server is not set -# CONFIG_PACKAGE_rrdcgi1 is not set -# CONFIG_PACKAGE_rrdtool1 is not set -# CONFIG_PACKAGE_sqlite3-cli is not set -# CONFIG_PACKAGE_unixodbc-tools is not set -# CONFIG_PACKAGE_adb is not set -# CONFIG_PACKAGE_ap51-flash is not set -# CONFIG_PACKAGE_at is not set -# CONFIG_PACKAGE_bandwidthd is not set -# CONFIG_PACKAGE_bandwidthd-pgsql is not set -# CONFIG_PACKAGE_bandwidthd-php is not set -# CONFIG_PACKAGE_bandwidthd-sqlite is not set -# CONFIG_PACKAGE_banhostlist is not set -# CONFIG_PACKAGE_bc is not set -# CONFIG_PACKAGE_bluelog is not set -# CONFIG_PACKAGE_bluez-daemon is not set -# CONFIG_PACKAGE_bluez-examples is not set -# CONFIG_PACKAGE_bluez-utils is not set -# CONFIG_PACKAGE_bonniexx is not set -# CONFIG_PACKAGE_bsdiff is not set -# CONFIG_PACKAGE_bspatch is not set -# CONFIG_PACKAGE_cal is not set -# CONFIG_PACKAGE_canutils is not set -# CONFIG_PACKAGE_cmdpad is not set -# CONFIG_PACKAGE_coap-client is not set -# CONFIG_PACKAGE_collectd is not set -CONFIG_PACKAGE_coreutils=y -CONFIG_PACKAGE_coreutils-base64=y -# CONFIG_PACKAGE_coreutils-basename is not set -# CONFIG_PACKAGE_coreutils-cat is not set -# CONFIG_PACKAGE_coreutils-chcon is not set -# CONFIG_PACKAGE_coreutils-chgrp is not set -# CONFIG_PACKAGE_coreutils-chmod is not set -# CONFIG_PACKAGE_coreutils-chown is not set -# CONFIG_PACKAGE_coreutils-chroot is not set -# CONFIG_PACKAGE_coreutils-cksum is not set -# CONFIG_PACKAGE_coreutils-comm is not set -# CONFIG_PACKAGE_coreutils-cp is not set -# CONFIG_PACKAGE_coreutils-csplit is not set -# CONFIG_PACKAGE_coreutils-cut is not set -# CONFIG_PACKAGE_coreutils-date is not set -# CONFIG_PACKAGE_coreutils-dd is not set -# CONFIG_PACKAGE_coreutils-dir is not set -# CONFIG_PACKAGE_coreutils-dircolors is not set -# CONFIG_PACKAGE_coreutils-dirname is not set -# CONFIG_PACKAGE_coreutils-du is not set -# CONFIG_PACKAGE_coreutils-echo is not set -# CONFIG_PACKAGE_coreutils-env is not set -# CONFIG_PACKAGE_coreutils-expand is not set -# CONFIG_PACKAGE_coreutils-expr is not set -# CONFIG_PACKAGE_coreutils-factor is not set -# CONFIG_PACKAGE_coreutils-false is not set -# CONFIG_PACKAGE_coreutils-fmt is not set -# CONFIG_PACKAGE_coreutils-fold is not set -# CONFIG_PACKAGE_coreutils-groups is not set -# CONFIG_PACKAGE_coreutils-head is not set -# CONFIG_PACKAGE_coreutils-hostid is not set -# CONFIG_PACKAGE_coreutils-id is not set -# CONFIG_PACKAGE_coreutils-install is not set -# CONFIG_PACKAGE_coreutils-join is not set -# CONFIG_PACKAGE_coreutils-kill is not set -# CONFIG_PACKAGE_coreutils-link is not set -# CONFIG_PACKAGE_coreutils-ln is not set -# CONFIG_PACKAGE_coreutils-logname is not set -# CONFIG_PACKAGE_coreutils-ls is not set -# CONFIG_PACKAGE_coreutils-md5sum is not set -# CONFIG_PACKAGE_coreutils-mkdir is not set -# CONFIG_PACKAGE_coreutils-mkfifo is not set -# CONFIG_PACKAGE_coreutils-mknod is not set -# CONFIG_PACKAGE_coreutils-mktemp is not set -# CONFIG_PACKAGE_coreutils-mv is not set -# CONFIG_PACKAGE_coreutils-nice is not set -# CONFIG_PACKAGE_coreutils-nl is not set -CONFIG_PACKAGE_coreutils-nohup=y -# CONFIG_PACKAGE_coreutils-nproc is not set -# CONFIG_PACKAGE_coreutils-od is not set -# CONFIG_PACKAGE_coreutils-paste is not set -# CONFIG_PACKAGE_coreutils-pathchk is not set -# CONFIG_PACKAGE_coreutils-pinky is not set -# CONFIG_PACKAGE_coreutils-pr is not set -# CONFIG_PACKAGE_coreutils-printenv is not set -# CONFIG_PACKAGE_coreutils-printf is not set -# CONFIG_PACKAGE_coreutils-ptx is not set -# CONFIG_PACKAGE_coreutils-pwd is not set -# CONFIG_PACKAGE_coreutils-readlink is not set -# CONFIG_PACKAGE_coreutils-realpath is not set -# CONFIG_PACKAGE_coreutils-rm is not set -# CONFIG_PACKAGE_coreutils-rmdir is not set -# CONFIG_PACKAGE_coreutils-runcon is not set -# CONFIG_PACKAGE_coreutils-seq is not set -# CONFIG_PACKAGE_coreutils-sha1sum is not set -# CONFIG_PACKAGE_coreutils-sha224sum is not set -# CONFIG_PACKAGE_coreutils-sha256sum is not set -# CONFIG_PACKAGE_coreutils-sha384sum is not set -# CONFIG_PACKAGE_coreutils-sha512sum is not set -# CONFIG_PACKAGE_coreutils-shred is not set -# CONFIG_PACKAGE_coreutils-shuf is not set -# CONFIG_PACKAGE_coreutils-sleep is not set -# CONFIG_PACKAGE_coreutils-sort is not set -# CONFIG_PACKAGE_coreutils-split is not set -# CONFIG_PACKAGE_coreutils-stat is not set -# CONFIG_PACKAGE_coreutils-stdbuf is not set -# CONFIG_PACKAGE_coreutils-stty is not set -# CONFIG_PACKAGE_coreutils-sum is not set -# CONFIG_PACKAGE_coreutils-sync is not set -# CONFIG_PACKAGE_coreutils-tac is not set -# CONFIG_PACKAGE_coreutils-tail is not set -# CONFIG_PACKAGE_coreutils-tee is not set -# CONFIG_PACKAGE_coreutils-test is not set -# CONFIG_PACKAGE_coreutils-timeout is not set -# CONFIG_PACKAGE_coreutils-touch is not set -# CONFIG_PACKAGE_coreutils-tr is not set -# CONFIG_PACKAGE_coreutils-true is not set -# CONFIG_PACKAGE_coreutils-truncate is not set -# CONFIG_PACKAGE_coreutils-tsort is not set -# CONFIG_PACKAGE_coreutils-tty is not set -# CONFIG_PACKAGE_coreutils-uname is not set -# CONFIG_PACKAGE_coreutils-unexpand is not set -# CONFIG_PACKAGE_coreutils-uniq is not set -# CONFIG_PACKAGE_coreutils-unlink is not set -# CONFIG_PACKAGE_coreutils-uptime is not set -# CONFIG_PACKAGE_coreutils-users is not set -# CONFIG_PACKAGE_coreutils-vdir is not set -# CONFIG_PACKAGE_coreutils-wc is not set -# CONFIG_PACKAGE_coreutils-who is not set -# CONFIG_PACKAGE_coreutils-whoami is not set -# CONFIG_PACKAGE_coreutils-yes is not set -# CONFIG_PACKAGE_crelay is not set -# CONFIG_PACKAGE_ct-bugcheck is not set -# CONFIG_PACKAGE_dbus is not set -# CONFIG_PACKAGE_dfu-util is not set -# CONFIG_PACKAGE_dmesg is not set -# CONFIG_PACKAGE_domoticz is not set -# CONFIG_PACKAGE_dropbearconvert is not set -# CONFIG_PACKAGE_dtc is not set -# CONFIG_PACKAGE_dump1090 is not set -# CONFIG_PACKAGE_ecdsautils is not set -# CONFIG_PACKAGE_elektra-kdb is not set -# CONFIG_PACKAGE_evtest is not set -# CONFIG_PACKAGE_extract is not set -# CONFIG_PACKAGE_file is not set -# CONFIG_PACKAGE_findutils-find is not set -# CONFIG_PACKAGE_findutils-locate is not set -# CONFIG_PACKAGE_findutils-xargs is not set -# CONFIG_PACKAGE_flashrom is not set -# CONFIG_PACKAGE_flashrom-pci is not set -# CONFIG_PACKAGE_flashrom-spi is not set -# CONFIG_PACKAGE_flashrom-usb is not set -# CONFIG_PACKAGE_flent-tools is not set -# CONFIG_PACKAGE_flock is not set -# CONFIG_PACKAGE_fritz-caldata is not set -# CONFIG_PACKAGE_fritz-tffs is not set -# CONFIG_PACKAGE_ftdi_eeprom is not set -# CONFIG_PACKAGE_gammu is not set -# CONFIG_PACKAGE_gawk is not set -# CONFIG_PACKAGE_getopt is not set -# CONFIG_PACKAGE_gkermit is not set -# CONFIG_PACKAGE_gpioctl-sysfs is not set -# CONFIG_PACKAGE_gpsd is not set -# CONFIG_PACKAGE_gpsd-clients is not set -# CONFIG_PACKAGE_grep is not set -# CONFIG_PACKAGE_hamlib is not set -# CONFIG_PACKAGE_haserl is not set -# CONFIG_PACKAGE_haveged is not set -# CONFIG_PACKAGE_hub-ctrl is not set -# CONFIG_PACKAGE_hwclock is not set -# CONFIG_PACKAGE_i2c-tools is not set -# CONFIG_PACKAGE_iconv is not set -# CONFIG_PACKAGE_iio-utils is not set -# CONFIG_PACKAGE_io is not set -# CONFIG_PACKAGE_irqbalance is not set -# CONFIG_PACKAGE_iwcap is not set -CONFIG_PACKAGE_iwinfo=y -# CONFIG_PACKAGE_jq is not set -CONFIG_PACKAGE_jshn=y -# CONFIG_PACKAGE_kmod is not set -# CONFIG_PACKAGE_lcd4linux-custom is not set -# CONFIG_PACKAGE_lcdproc-clients is not set -# CONFIG_PACKAGE_lcdproc-drivers is not set -# CONFIG_PACKAGE_lcdproc-server is not set -# CONFIG_PACKAGE_less is not set -# CONFIG_PACKAGE_less-wide is not set -# CONFIG_PACKAGE_libimobiledevice-utils is not set -CONFIG_PACKAGE_libjson-script=y -# CONFIG_PACKAGE_libplist-utils is not set -# CONFIG_PACKAGE_libsysrepo is not set -# CONFIG_PACKAGE_libusbmuxd-utils is not set -# CONFIG_PACKAGE_lm-sensors is not set -# CONFIG_PACKAGE_lm-sensors-detect is not set -# CONFIG_PACKAGE_logger is not set -# CONFIG_PACKAGE_logrotate is not set -# CONFIG_PACKAGE_look is not set -# CONFIG_PACKAGE_losetup is not set -# CONFIG_PACKAGE_lrzsz is not set -# CONFIG_PACKAGE_lsof is not set -# CONFIG_PACKAGE_lxc is not set -# CONFIG_PACKAGE_maccalc is not set -# CONFIG_PACKAGE_macchanger is not set -# CONFIG_PACKAGE_mbtools is not set -# CONFIG_PACKAGE_mc is not set -# CONFIG_PACKAGE_mcookie is not set -# CONFIG_PACKAGE_mmc-utils is not set -# CONFIG_PACKAGE_moreutils is not set -# CONFIG_PACKAGE_mount-utils is not set -# CONFIG_PACKAGE_mpack is not set -# CONFIG_PACKAGE_mt-st is not set -# CONFIG_PACKAGE_namei is not set -# CONFIG_PACKAGE_netopeer2-cli is not set -# CONFIG_PACKAGE_netopeer2-keystored is not set -# CONFIG_PACKAGE_netopeer2-server is not set -# CONFIG_PACKAGE_netwhere is not set -# CONFIG_PACKAGE_oath-toolkit is not set -# CONFIG_PACKAGE_open-plc-utils is not set -# CONFIG_PACKAGE_open2300 is not set -# CONFIG_PACKAGE_openldap-utils is not set -# CONFIG_PACKAGE_openobex is not set -# CONFIG_PACKAGE_openobex-apps is not set -# CONFIG_PACKAGE_openocd is not set -# CONFIG_PACKAGE_opensc-utils is not set -CONFIG_PACKAGE_openssl-util=y -# CONFIG_PACKAGE_openzwave is not set -# CONFIG_PACKAGE_openzwave-config is not set -# CONFIG_PACKAGE_opus-tools is not set -# CONFIG_PACKAGE_owipcalc is not set -# CONFIG_PACKAGE_pciutils is not set -# CONFIG_PACKAGE_pcsc-tools is not set -# CONFIG_PACKAGE_pcscd is not set -# CONFIG_PACKAGE_pps-tools is not set -# CONFIG_PACKAGE_prlimit is not set -# CONFIG_PACKAGE_procps-ng is not set -# CONFIG_PACKAGE_progress is not set -# CONFIG_PACKAGE_prometheus-node-exporter-lua is not set -# CONFIG_PACKAGE_pv is not set -# CONFIG_PACKAGE_qrencode is not set -# CONFIG_PACKAGE_relayctl is not set -# CONFIG_PACKAGE_rename is not set -# CONFIG_PACKAGE_rng-tools is not set -# CONFIG_PACKAGE_rtl-ais is not set -# CONFIG_PACKAGE_rtl-sdr is not set -# CONFIG_PACKAGE_sane-backends is not set -# CONFIG_PACKAGE_sane-daemon is not set -# CONFIG_PACKAGE_sane-frontends is not set -# CONFIG_PACKAGE_shadow-utils is not set -CONFIG_PACKAGE_shellsync=y -# CONFIG_PACKAGE_sispmctl is not set -# CONFIG_PACKAGE_slide-switch is not set -# CONFIG_PACKAGE_smartd is not set -# CONFIG_PACKAGE_smartmontools is not set -# CONFIG_PACKAGE_smstools3 is not set -# CONFIG_PACKAGE_sockread is not set -# CONFIG_PACKAGE_spi-tools is not set -# CONFIG_PACKAGE_spidev-test is not set -# CONFIG_PACKAGE_strace is not set -# CONFIG_PACKAGE_strace_libunwind is not set -# CONFIG_PACKAGE_stress is not set -# CONFIG_PACKAGE_sumo is not set -# CONFIG_PACKAGE_sysrepo is not set -# CONFIG_PACKAGE_sysrepocfg is not set -# CONFIG_PACKAGE_sysrepoctl is not set -# CONFIG_PACKAGE_sysstat is not set -# CONFIG_PACKAGE_tar is not set -# CONFIG_PACKAGE_taskwarrior is not set -# CONFIG_PACKAGE_tracertools is not set -# CONFIG_PACKAGE_tree is not set -# CONFIG_PACKAGE_triggerhappy is not set -# CONFIG_PACKAGE_udns-dnsget is not set -# CONFIG_PACKAGE_udns-ex-rdns is not set -# CONFIG_PACKAGE_udns-rblcheck is not set -# CONFIG_PACKAGE_ugps is not set -# CONFIG_PACKAGE_usb-modeswitch is not set -# CONFIG_PACKAGE_usbmuxd is not set -# CONFIG_PACKAGE_usbreset is not set -# CONFIG_PACKAGE_usbutils is not set -# CONFIG_PACKAGE_uuidd is not set -# CONFIG_PACKAGE_uuidgen is not set -# CONFIG_PACKAGE_uvcdynctrl is not set -# CONFIG_PACKAGE_v4l-utils is not set -# CONFIG_PACKAGE_view1090 is not set -# CONFIG_PACKAGE_watchcat is not set -# CONFIG_PACKAGE_whereis is not set -# CONFIG_PACKAGE_wifitoggle is not set -# CONFIG_PACKAGE_xsltproc is not set -# CONFIG_PACKAGE_xxd is not set -# CONFIG_PACKAGE_yanglint is not set -# CONFIG_PACKAGE_yara is not set -# CONFIG_PACKAGE_yunbridge is not set - -# -# Xorg -# - -# -# font-utils -# -# CONFIG_PACKAGE_fontconfig is not set From 193d13a7dc126988e11f629fd452787fa5d817f2 Mon Sep 17 00:00:00 2001 From: aooom <31819771+aooom@users.noreply.github.com> Date: Mon, 9 Apr 2018 15:05:53 +0800 Subject: [PATCH 6/7] Delete arjj.config git push fault --- arjj.config | 5117 -------------------------------------------------- 1 file changed, 5117 deletions(-) delete mode 100644 arjj.config diff --git a/arjj.config b/arjj.config deleted file mode 100644 index 3cb285785..000000000 --- a/arjj.config +++ /dev/null @@ -1,5117 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# LEDE Configuration -# -CONFIG_MODULES=y -CONFIG_HAVE_DOT_CONFIG=y -# CONFIG_TARGET_sunxi is not set -# CONFIG_TARGET_apm821xx is not set -# CONFIG_TARGET_ath25 is not set -CONFIG_TARGET_ar71xx=y -# CONFIG_TARGET_at91 is not set -# CONFIG_TARGET_brcm2708 is not set -# CONFIG_TARGET_bcm53xx is not set -# CONFIG_TARGET_brcm47xx is not set -# CONFIG_TARGET_brcm63xx is not set -# CONFIG_TARGET_cns3xxx is not set -# CONFIG_TARGET_octeon is not set -# CONFIG_TARGET_gemini is not set -# CONFIG_TARGET_mpc85xx is not set -# CONFIG_TARGET_imx6 is not set -# CONFIG_TARGET_mxs is not set -# CONFIG_TARGET_adm8668 is not set -# CONFIG_TARGET_adm5120 is not set -# CONFIG_TARGET_xburst is not set -# CONFIG_TARGET_ixp4xx is not set -# CONFIG_TARGET_lantiq is not set -# CONFIG_TARGET_malta is not set -# CONFIG_TARGET_pistachio is not set -# CONFIG_TARGET_mvebu is not set -# CONFIG_TARGET_kirkwood is not set -# CONFIG_TARGET_mediatek is not set -# CONFIG_TARGET_ramips is not set -# CONFIG_TARGET_rb532 is not set -# CONFIG_TARGET_mcs814x is not set -# CONFIG_TARGET_layerscape is not set -# CONFIG_TARGET_oxnas is not set -# CONFIG_TARGET_armvirt is not set -# CONFIG_TARGET_ipq806x is not set -# CONFIG_TARGET_au1000 is not set -# CONFIG_TARGET_arc770 is not set -# CONFIG_TARGET_archs38 is not set -# CONFIG_TARGET_ar7 is not set -# CONFIG_TARGET_omap is not set -# CONFIG_TARGET_uml is not set -# CONFIG_TARGET_zynq is not set -# CONFIG_TARGET_x86 is not set -CONFIG_TARGET_ar71xx_generic=y -# CONFIG_TARGET_ar71xx_nand is not set -# CONFIG_TARGET_ar71xx_mikrotik is not set -# CONFIG_TARGET_MULTI_PROFILE is not set -# CONFIG_TARGET_ar71xx_generic_Default is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_carambola2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_lima is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALFAAP120C is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ap121f is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALFAAP96 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_HORNETUB is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_HORNETUBx2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALFANX is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TUBE2H16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TUBE2H8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_fritz300e is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_sc1750 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_sc300m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_sc450 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_c-55 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALL0258N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALL0305 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ALL0315N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_antminer-s1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_antminer-s3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_antrouter-r1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_arduino-yun is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP121_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP121_8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP132 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP135 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP136_010 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP136_020 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP96 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DB120 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_PB42 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_PB44 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_A02RBW300N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_BXU2000N2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_F9K1115V2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_bhr-4grv2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WHRG301N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WHRHPG300N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WHRHPGN is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WLAEAG300N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZR450HP2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZR600DHP is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZRHPAG300H is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZRHPG300NH is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZRHPG300NH2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WZRHPG450H is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e316n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e320n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e355ac is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e380ac-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e380ac-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e520n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cf-e530n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WP543_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WP543_4M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WP543_8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WPE72_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WPE72_4M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WPE72_8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj342 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj344 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj531 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj558 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wpj563 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dap-2695-a1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DGL5500A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DHP1565A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR505A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR600A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR601A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR601B1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615C1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615E1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615E4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615I1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR615I3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR825B1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR825C1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DIR835A1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dir-869-a1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_EBR2310C1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dragino2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_el-m150 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_el-mini is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ew-dorin is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ew-dorin-router is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_EAP300V2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ens202ext is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_EPG5000 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ESR1750 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ESR900 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_FR54RTR is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-inet-6408A-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-inet-6416A-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-domino is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-ar150 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-ar300 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-ar300m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-mifi is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_gl-usb150 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_minibox-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_oolite is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_hiwifi-hc6361 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WRT160NL is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WRT400N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mr12 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mr16 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mc-mac1200r is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mw4530r-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_smart-300 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNDAP360 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndr3700 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndr3700v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndr3800 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndr3800ch is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndrmac is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wndrmacv2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_REALWNR1000V2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR1000V2_VC is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR2000 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR2000V3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR2000V4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WNR2200 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_REALWNR612V2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WPN824N is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_omy-g1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_omy-x1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_N150R is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_onion-omega is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_som9331 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_A60 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MR1750 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MR600 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MR900 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_OM2P is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_OM5PAC is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_OM5P is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe505n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_r602n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_pqi-air-pen is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MZKW04NU is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MZKW300NH is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cap324 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cap324-nocloud is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cr3000-nocloud is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cr3000 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cr5000-nocloud is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cr5000 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_DLRTDEV01 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_qihoo-c301 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP143_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP143_8M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP147_010 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_AP152_16M is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ap531b0 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_rnx-n360rt is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_CAP4200AG is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_EAP7660D is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_WLR8100 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_bsb is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c25-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c5-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c59-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c7-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c7-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c7-v2-il is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr7500-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_archer-c7-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe210-220-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe510-520-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_eap120-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_re450-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr10u-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr11u-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr11u-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr12u-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr13u-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3020-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3040-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3040-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3220-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3220-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3420-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr3420-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-mr6400-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa701nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa701nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa7210n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa730re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa750re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa7510n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa801nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa801nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa801nd-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa830re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa830re-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa850re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa850re-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa855re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa860re-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa901nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa901nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa901nd-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wa901nd-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr3320-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr3500-v1 is not set -CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr3600-v1=y -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr4300-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr4300-v1-il is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr4310-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr4900-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wdr6500-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wpa8630-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1041n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1043nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1043nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1043nd-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr1043nd-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr2543-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr703n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr710n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr710n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr710n-v2.1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr720n-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr720n-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr740n-v6 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr741nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr741nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr741nd-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr741nd-v5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr743nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr743nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr802n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr802n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr810n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr840n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr840n-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v1.5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v10 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v11 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v12 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v7 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v8 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr841-v9 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr842n-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr842n-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr842n-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr843nd-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr847n-v8 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr940n-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v3 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v4 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v5 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v6 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tl-wr941nd-v6-cn is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wbs210-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wbs510-v1 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW632BRP is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW652BRP_FW is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW652BRP_RECOVERY is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW673GRU is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW712BR is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW732BR is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_TEW823DRU is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_tellstick-znet-lite is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-air-gateway is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-air-gateway-pro is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-airrouter is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-bullet-m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-ls-sr71 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-loco-m-xw is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-nano-m-xw is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-nano-m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_rw2458n is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rocket-m-ti is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rocket-m-xw is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rocket-m is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rs is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-rspro is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifi is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifiac-lite is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifiac-mesh is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifiac-pro is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubnt-unifi-outdoor is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ubdev01 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_wrtnode2q is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dr531 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_weio is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mynet-n600 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_mynet-n750 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_MYNETREXT is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ap90q is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe830 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_cpe870 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_sr3200 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_xd3200 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_zbt-we1526 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ZCN1523H28 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_ZCN1523H516 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_NBG_460N_550N_550NH is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_NBG6616 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dLAN_Hotspot is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dLAN_pro_1200_ac is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_dLAN_pro_500_wp is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_JA76PF is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_JA76PF2 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_JWAP003 is not set -# CONFIG_TARGET_ar71xx_generic_DEVICE_jwap230 is not set -CONFIG_HAS_SUBTARGETS=y -CONFIG_HAS_DEVICES=y -CONFIG_TARGET_BOARD="ar71xx" -CONFIG_TARGET_SUBTARGET="generic" -CONFIG_TARGET_PROFILE="DEVICE_tl-wdr3600-v1" -CONFIG_TARGET_ARCH_PACKAGES="mips_24kc" -CONFIG_DEFAULT_TARGET_OPTIMIZATION="-Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc" -CONFIG_CPU_TYPE="24kc" -CONFIG_LINUX_4_4=y -CONFIG_DEFAULT_automount=y -CONFIG_DEFAULT_base-files=y -CONFIG_DEFAULT_block-mount=y -CONFIG_DEFAULT_busybox=y -CONFIG_DEFAULT_default-settings=y -CONFIG_DEFAULT_dnsmasq-full=y -CONFIG_DEFAULT_dropbear=y -CONFIG_DEFAULT_firewall=y -CONFIG_DEFAULT_fstools=y -CONFIG_DEFAULT_ip6tables=y -CONFIG_DEFAULT_ipset-lists=y -CONFIG_DEFAULT_iptables=y -CONFIG_DEFAULT_iptables-mod-nat-extra=y -CONFIG_DEFAULT_iwinfo=y -CONFIG_DEFAULT_kmod-ath9k=y -CONFIG_DEFAULT_kmod-gpio-button-hotplug=y -CONFIG_DEFAULT_kmod-macvlan=y -CONFIG_DEFAULT_kmod-nf-nathelper=y -CONFIG_DEFAULT_kmod-nf-nathelper-extra=y -CONFIG_DEFAULT_kmod-usb-core=y -CONFIG_DEFAULT_kmod-usb-ledtrig-usbport=y -CONFIG_DEFAULT_kmod-usb2=y -CONFIG_DEFAULT_libc=y -CONFIG_DEFAULT_libgcc=y -CONFIG_DEFAULT_logd=y -CONFIG_DEFAULT_luci=y -CONFIG_DEFAULT_luci-app-adbyby-plus=y -CONFIG_DEFAULT_luci-app-autoreboot=y -CONFIG_DEFAULT_luci-app-ddns=y -CONFIG_DEFAULT_luci-app-filetransfer=y -CONFIG_DEFAULT_luci-app-ipsec-vpnd=y -CONFIG_DEFAULT_luci-app-nlbwmon=y -CONFIG_DEFAULT_luci-app-pptp-server=y -CONFIG_DEFAULT_luci-app-sfe=y -CONFIG_DEFAULT_luci-app-shadowsocksr-pro=y -CONFIG_DEFAULT_luci-app-sqm=y -CONFIG_DEFAULT_luci-app-upnp=y -CONFIG_DEFAULT_luci-app-usb-printer=y -CONFIG_DEFAULT_luci-app-vlmcsd=y -CONFIG_DEFAULT_luci-app-vsftpd=y -CONFIG_DEFAULT_luci-app-wifischedule=y -CONFIG_DEFAULT_luci-app-wol=y -CONFIG_DEFAULT_mtd=y -CONFIG_DEFAULT_netifd=y -CONFIG_DEFAULT_opkg=y -CONFIG_DEFAULT_ppp=y -CONFIG_DEFAULT_ppp-mod-pppoe=y -CONFIG_DEFAULT_swconfig=y -CONFIG_DEFAULT_uboot-envtools=y -CONFIG_DEFAULT_uci=y -CONFIG_DEFAULT_uclient-fetch=y -CONFIG_DEFAULT_wpad-mini=y -CONFIG_AUDIO_SUPPORT=y -CONFIG_GPIO_SUPPORT=y -CONFIG_PCI_SUPPORT=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_GADGET_SUPPORT=y -CONFIG_BIG_ENDIAN=y -CONFIG_USES_DEVICETREE=y -CONFIG_USES_SQUASHFS=y -CONFIG_HAS_MIPS16=y -CONFIG_mips=y -CONFIG_ARCH="mips" - -# -# Target Images -# -# CONFIG_TARGET_ROOTFS_INITRAMFS is not set -CONFIG_EXTERNAL_CPIO="" - -# -# Root filesystem archives -# -# CONFIG_TARGET_ROOTFS_CPIOGZ is not set -# CONFIG_TARGET_ROOTFS_TARGZ is not set - -# -# Root filesystem images -# -# CONFIG_TARGET_ROOTFS_EXT4FS is not set -CONFIG_TARGET_ROOTFS_SQUASHFS=y -CONFIG_TARGET_SQUASHFS_BLOCK_SIZE=1024 -CONFIG_TARGET_UBIFS_FREE_SPACE_FIXUP=y -CONFIG_TARGET_UBIFS_JOURNAL_SIZE="" - -# -# Image Options -# - -# -# Global build settings -# -# CONFIG_ALL_NONSHARED is not set -# CONFIG_ALL_KMODS is not set -# CONFIG_ALL is not set -# CONFIG_BUILDBOT is not set -CONFIG_SIGNED_PACKAGES=y - -# -# General build options -# -# CONFIG_DISPLAY_SUPPORT is not set -CONFIG_BUILD_PATENTED=y -# CONFIG_BUILD_NLS is not set -CONFIG_SHADOW_PASSWORDS=y -# CONFIG_CLEAN_IPKG is not set -# CONFIG_INCLUDE_CONFIG is not set -# CONFIG_COLLECT_KERNEL_DEBUG is not set - -# -# Kernel build options -# -CONFIG_KERNEL_BUILD_USER="" -CONFIG_KERNEL_BUILD_DOMAIN="" -CONFIG_KERNEL_PRINTK=y -CONFIG_KERNEL_CRASHLOG=y -CONFIG_KERNEL_SWAP=y -CONFIG_KERNEL_DEBUG_FS=y -# CONFIG_KERNEL_PERF_EVENTS is not set -# CONFIG_KERNEL_PROFILING is not set -# CONFIG_KERNEL_KALLSYMS is not set -# CONFIG_KERNEL_FTRACE is not set -CONFIG_KERNEL_DEBUG_KERNEL=y -CONFIG_KERNEL_DEBUG_INFO=y -# CONFIG_KERNEL_DYNAMIC_DEBUG is not set -# CONFIG_KERNEL_KPROBES is not set -# CONFIG_KERNEL_AIO is not set -# CONFIG_KERNEL_FHANDLE is not set -# CONFIG_KERNEL_FANOTIFY is not set -# CONFIG_KERNEL_BLK_DEV_BSG is not set -CONFIG_KERNEL_MAGIC_SYSRQ=y -# CONFIG_KERNEL_DEBUG_PINCTRL is not set -# CONFIG_KERNEL_DEBUG_GPIO is not set -CONFIG_KERNEL_COREDUMP=y -CONFIG_KERNEL_ELF_CORE=y -# CONFIG_KERNEL_PROVE_LOCKING is not set -CONFIG_KERNEL_PRINTK_TIME=y -# CONFIG_KERNEL_SLABINFO is not set -# CONFIG_KERNEL_PROC_PAGE_MONITOR is not set -CONFIG_KERNEL_RELAY=y -# CONFIG_KERNEL_KEXEC is not set -# CONFIG_USE_RFKILL is not set -# CONFIG_USE_SPARSE is not set -# CONFIG_KERNEL_DEVTMPFS is not set -# CONFIG_KERNEL_KEYS is not set -# CONFIG_KERNEL_CGROUPS is not set -# CONFIG_KERNEL_NAMESPACES is not set -# CONFIG_KERNEL_LXC_MISC is not set -# CONFIG_KERNEL_SECCOMP_FILTER is not set -# CONFIG_KERNEL_SECCOMP is not set -CONFIG_KERNEL_IPV6=y -CONFIG_KERNEL_IPV6_MULTIPLE_TABLES=y -CONFIG_KERNEL_IPV6_SUBTREES=y -CONFIG_KERNEL_IPV6_MROUTE=y -# CONFIG_KERNEL_IPV6_PIMSM_V2 is not set -# CONFIG_KERNEL_IP_PNP is not set - -# -# Filesystem ACL and attr support options -# -# CONFIG_USE_FS_ACL_ATTR is not set -# CONFIG_KERNEL_FS_POSIX_ACL is not set -# CONFIG_KERNEL_BTRFS_FS_POSIX_ACL is not set -# CONFIG_KERNEL_EXT4_FS_POSIX_ACL is not set -# CONFIG_KERNEL_F2FS_FS_POSIX_ACL is not set -# CONFIG_KERNEL_JFFS2_FS_POSIX_ACL is not set -# CONFIG_KERNEL_TMPFS_POSIX_ACL is not set -# CONFIG_KERNEL_CIFS_ACL is not set -# CONFIG_KERNEL_HFS_FS_POSIX_ACL is not set -# CONFIG_KERNEL_HFSPLUG_FS_POSIX_ACL is not set -# CONFIG_KERNEL_NFS_ACL_SUPPORT is not set -# CONFIG_KERNEL_NFS_V3_ACL_SUPPORT is not set -# CONFIG_KERNEL_NFSD_V2_ACL_SUPPORT is not set -# CONFIG_KERNEL_NFSD_V3_ACL_SUPPORT is not set -# CONFIG_KERNEL_REISER_FS_POSIX_ACL is not set -# CONFIG_KERNEL_XFS_POSIX_ACL is not set -# CONFIG_KERNEL_JFS_POSIX_ACL is not set -# CONFIG_KERNEL_DEVMEM is not set -# CONFIG_KERNEL_DEVKMEM is not set - -# -# Package build options -# -# CONFIG_DEBUG is not set -CONFIG_IPV6=y - -# -# Stripping options -# -# CONFIG_NO_STRIP is not set -# CONFIG_USE_STRIP is not set -CONFIG_USE_SSTRIP=y -# CONFIG_STRIP_KERNEL_EXPORTS is not set -# CONFIG_USE_MKLIBS is not set -CONFIG_USE_UCLIBCXX=y -# CONFIG_USE_LIBSTDCXX is not set - -# -# Hardening build options -# -CONFIG_PKG_CHECK_FORMAT_SECURITY=y -# CONFIG_PKG_CC_STACKPROTECTOR_NONE is not set -CONFIG_PKG_CC_STACKPROTECTOR_REGULAR=y -# CONFIG_KERNEL_CC_STACKPROTECTOR_NONE is not set -CONFIG_KERNEL_CC_STACKPROTECTOR_REGULAR=y -# CONFIG_KERNEL_CC_STACKPROTECTOR_STRONG is not set -# CONFIG_PKG_FORTIFY_SOURCE_NONE is not set -CONFIG_PKG_FORTIFY_SOURCE_1=y -# CONFIG_PKG_FORTIFY_SOURCE_2 is not set -# CONFIG_PKG_RELRO_NONE is not set -# CONFIG_PKG_RELRO_PARTIAL is not set -CONFIG_PKG_RELRO_FULL=y -# CONFIG_DEVEL is not set -# CONFIG_BROKEN is not set -CONFIG_BINARY_FOLDER="" -CONFIG_DOWNLOAD_FOLDER="" -CONFIG_LOCALMIRROR="" -CONFIG_AUTOREBUILD=y -# CONFIG_AUTOREMOVE is not set -CONFIG_BUILD_SUFFIX="" -CONFIG_TARGET_ROOTFS_DIR="" -# CONFIG_CCACHE is not set -CONFIG_EXTERNAL_KERNEL_TREE="" -CONFIG_KERNEL_GIT_CLONE_URI="" -CONFIG_EXTRA_OPTIMIZATION="-fno-caller-saves -fno-plt" -CONFIG_TARGET_OPTIMIZATION="-Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc" -CONFIG_SOFT_FLOAT=y -CONFIG_USE_MIPS16=y -# CONFIG_EXTRA_TARGET_ARCH is not set -CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="" -CONFIG_EXTRA_GCC_CONFIG_OPTIONS="" -# CONFIG_SJLJ_EXCEPTIONS is not set -# CONFIG_INSTALL_LIBGCJ is not set -# CONFIG_INSTALL_GFORTRAN is not set -CONFIG_GDB=y -CONFIG_USE_MUSL=y -CONFIG_BINUTILS_VERSION_2_28=y -CONFIG_BINUTILS_VERSION="2.28" -CONFIG_GCC_VERSION="5.4.0" -CONFIG_LIBC="musl" -CONFIG_TARGET_SUFFIX="musl" -# CONFIG_IB is not set -# CONFIG_SDK is not set -# CONFIG_MAKE_TOOLCHAIN is not set -# CONFIG_IMAGEOPT is not set -# CONFIG_PREINITOPT is not set -CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y -# CONFIG_TARGET_PREINIT_DISABLE_FAILSAFE is not set -CONFIG_TARGET_PREINIT_TIMEOUT=2 -# CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set -# CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set -CONFIG_TARGET_PREINIT_IFNAME="" -CONFIG_TARGET_PREINIT_IP="192.168.1.1" -CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0" -CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255" -# CONFIG_INITOPT is not set -CONFIG_TARGET_INIT_PATH="/usr/sbin:/usr/bin:/sbin:/bin" -CONFIG_TARGET_INIT_ENV="" -CONFIG_TARGET_INIT_CMD="/sbin/init" -CONFIG_TARGET_INIT_SUPPRESS_STDERR=y -# CONFIG_VERSIONOPT is not set -CONFIG_PER_FEED_REPO=y -CONFIG_PER_FEED_REPO_ADD_DISABLED=y -CONFIG_PER_FEED_REPO_ADD_COMMENTED=y -CONFIG_FEED_packages=y -CONFIG_FEED_luci=y -CONFIG_FEED_routing=y -CONFIG_FEED_telephony=y - -# -# Base system -# -CONFIG_PACKAGE_base-files=y -CONFIG_PACKAGE_block-mount=y -# CONFIG_PACKAGE_blockd is not set -# CONFIG_PACKAGE_bridge is not set -CONFIG_PACKAGE_busybox=y -# CONFIG_BUSYBOX_CUSTOM is not set -CONFIG_BUSYBOX_DEFAULT_HAVE_DOT_CONFIG=y -# CONFIG_BUSYBOX_DEFAULT_DESKTOP is not set -# CONFIG_BUSYBOX_DEFAULT_EXTRA_COMPAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEDORA_COMPAT is not set -CONFIG_BUSYBOX_DEFAULT_INCLUDE_SUSv2=y -# CONFIG_BUSYBOX_DEFAULT_USE_PORTABLE_CODE is not set -CONFIG_BUSYBOX_DEFAULT_PLATFORM_LINUX=y -CONFIG_BUSYBOX_DEFAULT_SHOW_USAGE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE_USAGE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_COMPRESS_USAGE=y -# CONFIG_BUSYBOX_DEFAULT_BUSYBOX is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSTALLER is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_NO_USR is not set -# CONFIG_BUSYBOX_DEFAULT_PAM is not set -CONFIG_BUSYBOX_DEFAULT_LONG_OPTS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DEVPTS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CLEAN_UP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UTMP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WTMP is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDFILE=y -CONFIG_BUSYBOX_DEFAULT_PID_FILE_PATH="/var/run" -CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG_QUIET is not set -# CONFIG_BUSYBOX_DEFAULT_SELINUX is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_PREFER_APPLETS=y -CONFIG_BUSYBOX_DEFAULT_BUSYBOX_EXEC_PATH="/proc/self/exe" -CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOG=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HAVE_RPC is not set -# CONFIG_BUSYBOX_DEFAULT_STATIC is not set -# CONFIG_BUSYBOX_DEFAULT_PIE is not set -# CONFIG_BUSYBOX_DEFAULT_NOMMU is not set -# CONFIG_BUSYBOX_DEFAULT_BUILD_LIBBUSYBOX is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INDIVIDUAL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SHARED_BUSYBOX is not set -CONFIG_BUSYBOX_DEFAULT_LFS=y -CONFIG_BUSYBOX_DEFAULT_CROSS_COMPILER_PREFIX="" -CONFIG_BUSYBOX_DEFAULT_SYSROOT="" -CONFIG_BUSYBOX_DEFAULT_EXTRA_CFLAGS="" -CONFIG_BUSYBOX_DEFAULT_EXTRA_LDFLAGS="" -CONFIG_BUSYBOX_DEFAULT_EXTRA_LDLIBS="" -CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_SYMLINKS=y -# CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_HARDLINKS is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_SCRIPT_WRAPPERS is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_DONT is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_SYMLINK is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_HARDLINK is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set -CONFIG_BUSYBOX_DEFAULT_PREFIX="./_install" -# CONFIG_BUSYBOX_DEFAULT_DEBUG is not set -# CONFIG_BUSYBOX_DEFAULT_DEBUG_PESSIMIZE is not set -# CONFIG_BUSYBOX_DEFAULT_DEBUG_SANITIZE is not set -# CONFIG_BUSYBOX_DEFAULT_UNIT_TEST is not set -# CONFIG_BUSYBOX_DEFAULT_WERROR is not set -CONFIG_BUSYBOX_DEFAULT_NO_DEBUG_LIB=y -# CONFIG_BUSYBOX_DEFAULT_DMALLOC is not set -# CONFIG_BUSYBOX_DEFAULT_EFENCE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_BSS_TAIL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RTMINMAX is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_USE_MALLOC is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_GO_ON_STACK=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_GO_IN_BSS is not set -CONFIG_BUSYBOX_DEFAULT_PASSWORD_MINLEN=6 -CONFIG_BUSYBOX_DEFAULT_MD5_SMALL=1 -CONFIG_BUSYBOX_DEFAULT_SHA3_SMALL=1 -CONFIG_BUSYBOX_DEFAULT_FEATURE_FAST_TOP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ETC_NETWORKS is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_MAX_LEN=512 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_VI is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_HISTORY=256 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_SAVEHISTORY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_SAVE_ON_EXIT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_REVERSE_SEARCH is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TAB_COMPLETION=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_USERNAME_COMPLETION is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_FANCY_PROMPT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_ASK_TERMINAL is not set -# CONFIG_BUSYBOX_DEFAULT_LOCALE_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_USING_LOCALE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_UNICODE_IN_ENV is not set -CONFIG_BUSYBOX_DEFAULT_SUBST_WCHAR=0 -CONFIG_BUSYBOX_DEFAULT_LAST_SUPPORTED_WCHAR=0 -# CONFIG_BUSYBOX_DEFAULT_UNICODE_COMBINING_WCHARS is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_WIDE_WCHARS is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_BIDI_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_NEUTRAL_TABLE is not set -# CONFIG_BUSYBOX_DEFAULT_UNICODE_PRESERVE_BROKEN is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_NON_POSIX_CP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE_CP_MESSAGE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_SENDFILE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_COPYBUF_KB=4 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SKIP_ROOTFS is not set -# CONFIG_BUSYBOX_DEFAULT_MONOTONIC_SYSCALL is not set -CONFIG_BUSYBOX_DEFAULT_IOCTL_HEX2STR_ERROR=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HWIB is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_XZ is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_LZMA is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_BZ2 is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_GZ=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_Z is not set -# CONFIG_BUSYBOX_DEFAULT_AR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_AR_LONG_FILENAMES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_AR_CREATE is not set -# CONFIG_BUSYBOX_DEFAULT_UNCOMPRESS is not set -CONFIG_BUSYBOX_DEFAULT_GUNZIP=y -CONFIG_BUSYBOX_DEFAULT_ZCAT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GUNZIP_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_BUNZIP2=y -CONFIG_BUSYBOX_DEFAULT_BZCAT=y -# CONFIG_BUSYBOX_DEFAULT_UNLZMA is not set -# CONFIG_BUSYBOX_DEFAULT_LZCAT is not set -# CONFIG_BUSYBOX_DEFAULT_LZMA is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LZMA_FAST is not set -# CONFIG_BUSYBOX_DEFAULT_UNXZ is not set -# CONFIG_BUSYBOX_DEFAULT_XZCAT is not set -# CONFIG_BUSYBOX_DEFAULT_XZ is not set -# CONFIG_BUSYBOX_DEFAULT_BZIP2 is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_BZIP2_DECOMPRESS=y -# CONFIG_BUSYBOX_DEFAULT_CPIO is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CPIO_O is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CPIO_P is not set -# CONFIG_BUSYBOX_DEFAULT_DPKG is not set -# CONFIG_BUSYBOX_DEFAULT_DPKG_DEB is not set -CONFIG_BUSYBOX_DEFAULT_GZIP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_GZIP_FAST=0 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_LEVELS is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_DECOMPRESS=y -# CONFIG_BUSYBOX_DEFAULT_LZOP is not set -# CONFIG_BUSYBOX_DEFAULT_UNLZOP is not set -# CONFIG_BUSYBOX_DEFAULT_LZOPCAT is not set -# CONFIG_BUSYBOX_DEFAULT_LZOP_COMPR_HIGH is not set -# CONFIG_BUSYBOX_DEFAULT_RPM is not set -# CONFIG_BUSYBOX_DEFAULT_RPM2CPIO is not set -CONFIG_BUSYBOX_DEFAULT_TAR=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_CREATE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_AUTODETECT is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_FROM=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_GNU_EXTENSIONS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_TO_COMMAND is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_UNAME_GNAME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_NOPRESERVE_TIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_SELINUX is not set -# CONFIG_BUSYBOX_DEFAULT_UNZIP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNZIP_CDF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNZIP_BZIP2 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNZIP_LZMA is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNZIP_XZ is not set -CONFIG_BUSYBOX_DEFAULT_BASENAME=y -CONFIG_BUSYBOX_DEFAULT_CAT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CATV is not set -CONFIG_BUSYBOX_DEFAULT_CHGRP=y -CONFIG_BUSYBOX_DEFAULT_CHMOD=y -CONFIG_BUSYBOX_DEFAULT_CHOWN=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_CHROOT=y -# CONFIG_BUSYBOX_DEFAULT_CKSUM is not set -# CONFIG_BUSYBOX_DEFAULT_COMM is not set -CONFIG_BUSYBOX_DEFAULT_CP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CP_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_CUT=y -CONFIG_BUSYBOX_DEFAULT_DATE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_ISOFMT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_NANO is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_COMPAT is not set -CONFIG_BUSYBOX_DEFAULT_DD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_SIGNAL_HANDLING=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_THIRD_STATUS_LINE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_IBS_OBS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_STATUS is not set -CONFIG_BUSYBOX_DEFAULT_DF=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DF_FANCY is not set -CONFIG_BUSYBOX_DEFAULT_DIRNAME=y -# CONFIG_BUSYBOX_DEFAULT_DOS2UNIX is not set -# CONFIG_BUSYBOX_DEFAULT_UNIX2DOS is not set -CONFIG_BUSYBOX_DEFAULT_DU=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y -CONFIG_BUSYBOX_DEFAULT_ECHO=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO=y -CONFIG_BUSYBOX_DEFAULT_ENV=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ENV_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_EXPAND is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EXPAND_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_UNEXPAND is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNEXPAND_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_EXPR=y -CONFIG_BUSYBOX_DEFAULT_EXPR_MATH_SUPPORT_64=y -# CONFIG_BUSYBOX_DEFAULT_FACTOR is not set -CONFIG_BUSYBOX_DEFAULT_FALSE=y -# CONFIG_BUSYBOX_DEFAULT_FOLD is not set -CONFIG_BUSYBOX_DEFAULT_FSYNC=y -CONFIG_BUSYBOX_DEFAULT_HEAD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD=y -# CONFIG_BUSYBOX_DEFAULT_HOSTID is not set -CONFIG_BUSYBOX_DEFAULT_ID=y -# CONFIG_BUSYBOX_DEFAULT_GROUPS is not set -# CONFIG_BUSYBOX_DEFAULT_INSTALL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_LINK is not set -CONFIG_BUSYBOX_DEFAULT_LN=y -# CONFIG_BUSYBOX_DEFAULT_LOGNAME is not set -CONFIG_BUSYBOX_DEFAULT_LS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_FILETYPES=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_FOLLOWLINKS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_RECURSIVE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_WIDTH=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_SORTFILES=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_TIMESTAMPS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_USERNAME=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_COLOR=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_COLOR_IS_DEFAULT=y -CONFIG_BUSYBOX_DEFAULT_MD5SUM=y -# CONFIG_BUSYBOX_DEFAULT_SHA1SUM is not set -CONFIG_BUSYBOX_DEFAULT_SHA256SUM=y -# CONFIG_BUSYBOX_DEFAULT_SHA512SUM is not set -# CONFIG_BUSYBOX_DEFAULT_SHA3SUM is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MD5_SHA1_SUM_CHECK=y -CONFIG_BUSYBOX_DEFAULT_MKDIR=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MKDIR_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_MKFIFO=y -CONFIG_BUSYBOX_DEFAULT_MKNOD=y -CONFIG_BUSYBOX_DEFAULT_MV=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MV_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_NICE=y -# CONFIG_BUSYBOX_DEFAULT_NL is not set -# CONFIG_BUSYBOX_DEFAULT_NOHUP is not set -# CONFIG_BUSYBOX_DEFAULT_NPROC is not set -# CONFIG_BUSYBOX_DEFAULT_OD is not set -# CONFIG_BUSYBOX_DEFAULT_PASTE is not set -# CONFIG_BUSYBOX_DEFAULT_PRINTENV is not set -CONFIG_BUSYBOX_DEFAULT_PRINTF=y -CONFIG_BUSYBOX_DEFAULT_PWD=y -CONFIG_BUSYBOX_DEFAULT_READLINK=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_READLINK_FOLLOW=y -# CONFIG_BUSYBOX_DEFAULT_REALPATH is not set -CONFIG_BUSYBOX_DEFAULT_RM=y -CONFIG_BUSYBOX_DEFAULT_RMDIR=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RMDIR_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_SEQ=y -# CONFIG_BUSYBOX_DEFAULT_SHRED is not set -# CONFIG_BUSYBOX_DEFAULT_SHUF is not set -CONFIG_BUSYBOX_DEFAULT_SLEEP=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_SLEEP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FLOAT_SLEEP is not set -CONFIG_BUSYBOX_DEFAULT_SORT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SORT_BIG is not set -# CONFIG_BUSYBOX_DEFAULT_SPLIT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SPLIT_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_STAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_STAT_FORMAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_STAT_FILESYSTEM is not set -# CONFIG_BUSYBOX_DEFAULT_STTY is not set -# CONFIG_BUSYBOX_DEFAULT_SUM is not set -CONFIG_BUSYBOX_DEFAULT_SYNC=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SYNC_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_TAC is not set -CONFIG_BUSYBOX_DEFAULT_TAIL=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_TAIL=y -CONFIG_BUSYBOX_DEFAULT_TEE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TEE_USE_BLOCK_IO=y -CONFIG_BUSYBOX_DEFAULT_TEST=y -CONFIG_BUSYBOX_DEFAULT_TEST1=y -CONFIG_BUSYBOX_DEFAULT_TEST2=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TEST_64=y -CONFIG_BUSYBOX_DEFAULT_TOUCH=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOUCH_NODEREF is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TOUCH_SUSV3=y -CONFIG_BUSYBOX_DEFAULT_TR=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TR_CLASSES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TR_EQUIV is not set -CONFIG_BUSYBOX_DEFAULT_TRUE=y -# CONFIG_BUSYBOX_DEFAULT_TRUNCATE is not set -# CONFIG_BUSYBOX_DEFAULT_TTY is not set -CONFIG_BUSYBOX_DEFAULT_UNAME=y -CONFIG_BUSYBOX_DEFAULT_UNAME_OSNAME="GNU/Linux" -CONFIG_BUSYBOX_DEFAULT_UNIQ=y -# CONFIG_BUSYBOX_DEFAULT_UNLINK is not set -# CONFIG_BUSYBOX_DEFAULT_USLEEP is not set -# CONFIG_BUSYBOX_DEFAULT_UUDECODE is not set -# CONFIG_BUSYBOX_DEFAULT_BASE64 is not set -# CONFIG_BUSYBOX_DEFAULT_UUENCODE is not set -CONFIG_BUSYBOX_DEFAULT_WC=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WC_LARGE is not set -# CONFIG_BUSYBOX_DEFAULT_WHO is not set -# CONFIG_BUSYBOX_DEFAULT_W is not set -# CONFIG_BUSYBOX_DEFAULT_USERS is not set -# CONFIG_BUSYBOX_DEFAULT_WHOAMI is not set -CONFIG_BUSYBOX_DEFAULT_YES=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_PRESERVE_HARDLINKS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_HUMAN_READABLE=y -# CONFIG_BUSYBOX_DEFAULT_CHVT is not set -CONFIG_BUSYBOX_DEFAULT_CLEAR=y -# CONFIG_BUSYBOX_DEFAULT_DEALLOCVT is not set -# CONFIG_BUSYBOX_DEFAULT_DUMPKMAP is not set -# CONFIG_BUSYBOX_DEFAULT_FGCONSOLE is not set -# CONFIG_BUSYBOX_DEFAULT_KBD_MODE is not set -# CONFIG_BUSYBOX_DEFAULT_LOADFONT is not set -# CONFIG_BUSYBOX_DEFAULT_SETFONT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SETFONT_TEXTUAL_MAP is not set -CONFIG_BUSYBOX_DEFAULT_DEFAULT_SETFONT_DIR="" -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LOADFONT_PSF2 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LOADFONT_RAW is not set -# CONFIG_BUSYBOX_DEFAULT_LOADKMAP is not set -# CONFIG_BUSYBOX_DEFAULT_OPENVT is not set -CONFIG_BUSYBOX_DEFAULT_RESET=y -# CONFIG_BUSYBOX_DEFAULT_RESIZE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RESIZE_PRINT is not set -# CONFIG_BUSYBOX_DEFAULT_SETCONSOLE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SETCONSOLE_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_SETKEYCODES is not set -# CONFIG_BUSYBOX_DEFAULT_SETLOGCONS is not set -# CONFIG_BUSYBOX_DEFAULT_SHOWKEY is not set -CONFIG_BUSYBOX_DEFAULT_MKTEMP=y -# CONFIG_BUSYBOX_DEFAULT_PIPE_PROGRESS is not set -# CONFIG_BUSYBOX_DEFAULT_RUN_PARTS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_FANCY is not set -CONFIG_BUSYBOX_DEFAULT_START_STOP_DAEMON=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_WHICH=y -CONFIG_BUSYBOX_DEFAULT_AWK=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_AWK_LIBM=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_AWK_GNU_EXTENSIONS=y -CONFIG_BUSYBOX_DEFAULT_CMP=y -# CONFIG_BUSYBOX_DEFAULT_DIFF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DIFF_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DIFF_DIR is not set -# CONFIG_BUSYBOX_DEFAULT_ED is not set -# CONFIG_BUSYBOX_DEFAULT_PATCH is not set -CONFIG_BUSYBOX_DEFAULT_SED=y -CONFIG_BUSYBOX_DEFAULT_VI=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_MAX_LEN=1024 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_8BIT is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_COLON=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_YANKMARK=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SEARCH=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_REGEX_SEARCH is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_USE_SIGNALS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_DOT_CMD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_READONLY=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SETOPTS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SET=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_WIN_RESIZE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_ASK_TERMINAL=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO_QUEUE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO_QUEUE_MAX=0 -CONFIG_BUSYBOX_DEFAULT_FEATURE_ALLOW_EXEC=y -CONFIG_BUSYBOX_DEFAULT_FIND=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PRINT0=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MTIME=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MMIN is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PERM=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_TYPE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_XDEV=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MAXDEPTH=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_NEWER is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_INUM is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_EXEC=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_USER=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_GROUP=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_NOT=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PAREN=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_SIZE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_DELETE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PATH=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_REGEX=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_CONTEXT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_LINKS is not set -CONFIG_BUSYBOX_DEFAULT_GREP=y -CONFIG_BUSYBOX_DEFAULT_EGREP=y -CONFIG_BUSYBOX_DEFAULT_FGREP=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_GREP_CONTEXT=y -CONFIG_BUSYBOX_DEFAULT_XARGS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_CONFIRMATION=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_QUOTES=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_TERMOPT=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ZERO_TERM=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_REPL_STR is not set -# CONFIG_BUSYBOX_DEFAULT_BOOTCHARTD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_CONFIG_FILE is not set -CONFIG_BUSYBOX_DEFAULT_HALT=y -CONFIG_BUSYBOX_DEFAULT_POWEROFF=y -CONFIG_BUSYBOX_DEFAULT_REBOOT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CALL_TELINIT is not set -CONFIG_BUSYBOX_DEFAULT_TELINIT_PATH="" -# CONFIG_BUSYBOX_DEFAULT_INIT is not set -# CONFIG_BUSYBOX_DEFAULT_LINUXRC is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_INITTAB is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_KILL_REMOVED is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_KILL_DELAY=0 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_SCTTY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_SYSLOG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_QUIET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_COREDUMPS is not set -CONFIG_BUSYBOX_DEFAULT_INIT_TERMINAL_TYPE="" -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_MODIFY_CMDLINE is not set -# CONFIG_BUSYBOX_DEFAULT_MESG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MESG_ENABLE_ONLY_GROUP is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SHADOWPASSWDS=y -# CONFIG_BUSYBOX_DEFAULT_USE_BB_PWD_GRP is not set -# CONFIG_BUSYBOX_DEFAULT_USE_BB_SHADOW is not set -# CONFIG_BUSYBOX_DEFAULT_USE_BB_CRYPT is not set -# CONFIG_BUSYBOX_DEFAULT_USE_BB_CRYPT_SHA is not set -# CONFIG_BUSYBOX_DEFAULT_ADD_SHELL is not set -# CONFIG_BUSYBOX_DEFAULT_REMOVE_SHELL is not set -# CONFIG_BUSYBOX_DEFAULT_ADDGROUP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDGROUP_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDUSER_TO_GROUP is not set -# CONFIG_BUSYBOX_DEFAULT_ADDUSER is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDUSER_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_NAMES is not set -CONFIG_BUSYBOX_DEFAULT_LAST_ID=0 -CONFIG_BUSYBOX_DEFAULT_FIRST_SYSTEM_ID=0 -CONFIG_BUSYBOX_DEFAULT_LAST_SYSTEM_ID=0 -# CONFIG_BUSYBOX_DEFAULT_CHPASSWD is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_DEFAULT_PASSWD_ALGO="md5" -# CONFIG_BUSYBOX_DEFAULT_CRYPTPW is not set -# CONFIG_BUSYBOX_DEFAULT_MKPASSWD is not set -# CONFIG_BUSYBOX_DEFAULT_DELUSER is not set -# CONFIG_BUSYBOX_DEFAULT_DELGROUP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DEL_USER_FROM_GROUP is not set -# CONFIG_BUSYBOX_DEFAULT_GETTY is not set -CONFIG_BUSYBOX_DEFAULT_LOGIN=y -CONFIG_BUSYBOX_DEFAULT_LOGIN_SESSION_AS_CHILD=y -# CONFIG_BUSYBOX_DEFAULT_LOGIN_SCRIPTS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NOLOGIN is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SECURETTY is not set -CONFIG_BUSYBOX_DEFAULT_PASSWD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_PASSWD_WEAK_CHECK=y -# CONFIG_BUSYBOX_DEFAULT_SU is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_SYSLOG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_CHECKS_SHELLS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY is not set -# CONFIG_BUSYBOX_DEFAULT_SULOGIN is not set -# CONFIG_BUSYBOX_DEFAULT_VLOCK is not set -# CONFIG_BUSYBOX_DEFAULT_CHATTR is not set -# CONFIG_BUSYBOX_DEFAULT_FSCK is not set -# CONFIG_BUSYBOX_DEFAULT_LSATTR is not set -# CONFIG_BUSYBOX_DEFAULT_TUNE2FS is not set -# CONFIG_BUSYBOX_DEFAULT_MODPROBE_SMALL is not set -# CONFIG_BUSYBOX_DEFAULT_DEPMOD is not set -# CONFIG_BUSYBOX_DEFAULT_INSMOD is not set -# CONFIG_BUSYBOX_DEFAULT_LSMOD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set -# CONFIG_BUSYBOX_DEFAULT_MODINFO is not set -# CONFIG_BUSYBOX_DEFAULT_MODPROBE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_BLACKLIST is not set -# CONFIG_BUSYBOX_DEFAULT_RMMOD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CMDLINE_MODULE_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_2_4_MODULES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_VERSION_CHECKING is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOADINKMEM is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOAD_MAP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOAD_MAP_FULL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_TAINTED_MODULE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_TRY_MMAP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MODUTILS_ALIAS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MODUTILS_SYMBOLS is not set -CONFIG_BUSYBOX_DEFAULT_DEFAULT_MODULES_DIR="" -CONFIG_BUSYBOX_DEFAULT_DEFAULT_DEPMOD_FILE="" -# CONFIG_BUSYBOX_DEFAULT_ACPID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ACPID_COMPAT is not set -# CONFIG_BUSYBOX_DEFAULT_BLKDISCARD is not set -# CONFIG_BUSYBOX_DEFAULT_BLKID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_BLKID_TYPE is not set -# CONFIG_BUSYBOX_DEFAULT_BLOCKDEV is not set -# CONFIG_BUSYBOX_DEFAULT_CAL is not set -CONFIG_BUSYBOX_DEFAULT_DMESG=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_DMESG_PRETTY=y -# CONFIG_BUSYBOX_DEFAULT_FALLOCATE is not set -# CONFIG_BUSYBOX_DEFAULT_FATATTR is not set -# CONFIG_BUSYBOX_DEFAULT_FBSET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FBSET_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FBSET_READMODE is not set -# CONFIG_BUSYBOX_DEFAULT_FDFORMAT is not set -# CONFIG_BUSYBOX_DEFAULT_FDISK is not set -# CONFIG_BUSYBOX_DEFAULT_FDISK_SUPPORT_LARGE_DISKS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FDISK_WRITABLE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_AIX_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SGI_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SUN_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_OSF_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GPT_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FDISK_ADVANCED is not set -# CONFIG_BUSYBOX_DEFAULT_FINDFS is not set -# CONFIG_BUSYBOX_DEFAULT_FLOCK is not set -# CONFIG_BUSYBOX_DEFAULT_FDFLUSH is not set -# CONFIG_BUSYBOX_DEFAULT_FREERAMDISK is not set -# CONFIG_BUSYBOX_DEFAULT_FSCK_MINIX is not set -# CONFIG_BUSYBOX_DEFAULT_FSFREEZE is not set -# CONFIG_BUSYBOX_DEFAULT_FSTRIM is not set -# CONFIG_BUSYBOX_DEFAULT_GETOPT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_GETOPT_LONG is not set -CONFIG_BUSYBOX_DEFAULT_HEXDUMP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HEXDUMP_REVERSE is not set -# CONFIG_BUSYBOX_DEFAULT_HD is not set -# CONFIG_BUSYBOX_DEFAULT_XXD is not set -CONFIG_BUSYBOX_DEFAULT_HWCLOCK=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HWCLOCK_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HWCLOCK_ADJTIME_FHS is not set -# CONFIG_BUSYBOX_DEFAULT_IPCRM is not set -# CONFIG_BUSYBOX_DEFAULT_IPCS is not set -# CONFIG_BUSYBOX_DEFAULT_LOSETUP is not set -# CONFIG_BUSYBOX_DEFAULT_LSPCI is not set -# CONFIG_BUSYBOX_DEFAULT_LSUSB is not set -# CONFIG_BUSYBOX_DEFAULT_MDEV is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_CONF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_RENAME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_RENAME_REGEXP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_EXEC is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_LOAD_FIRMWARE is not set -# CONFIG_BUSYBOX_DEFAULT_MKE2FS is not set -# CONFIG_BUSYBOX_DEFAULT_MKFS_EXT2 is not set -# CONFIG_BUSYBOX_DEFAULT_MKFS_MINIX is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MINIX2 is not set -# CONFIG_BUSYBOX_DEFAULT_MKFS_REISER is not set -# CONFIG_BUSYBOX_DEFAULT_MKDOSFS is not set -# CONFIG_BUSYBOX_DEFAULT_MKFS_VFAT is not set -CONFIG_BUSYBOX_DEFAULT_MKSWAP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MKSWAP_UUID is not set -# CONFIG_BUSYBOX_DEFAULT_MORE is not set -CONFIG_BUSYBOX_DEFAULT_MOUNT=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FAKE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_VERBOSE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_HELPERS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LABEL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_NFS is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_CIFS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FLAGS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FSTAB=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_OTHERTAB is not set -# CONFIG_BUSYBOX_DEFAULT_NSENTER is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NSENTER_LONG_OPTS is not set -CONFIG_BUSYBOX_DEFAULT_PIVOT_ROOT=y -# CONFIG_BUSYBOX_DEFAULT_RDATE is not set -# CONFIG_BUSYBOX_DEFAULT_RDEV is not set -# CONFIG_BUSYBOX_DEFAULT_READPROFILE is not set -# CONFIG_BUSYBOX_DEFAULT_REV is not set -# CONFIG_BUSYBOX_DEFAULT_RTCWAKE is not set -# CONFIG_BUSYBOX_DEFAULT_SCRIPT is not set -# CONFIG_BUSYBOX_DEFAULT_SCRIPTREPLAY is not set -# CONFIG_BUSYBOX_DEFAULT_SETARCH is not set -# CONFIG_BUSYBOX_DEFAULT_LINUX32 is not set -# CONFIG_BUSYBOX_DEFAULT_LINUX64 is not set -# CONFIG_BUSYBOX_DEFAULT_SETPRIV is not set -# CONFIG_BUSYBOX_DEFAULT_SWAPON is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SWAPON_DISCARD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SWAPON_PRI is not set -# CONFIG_BUSYBOX_DEFAULT_SWAPOFF is not set -CONFIG_BUSYBOX_DEFAULT_SWITCH_ROOT=y -# CONFIG_BUSYBOX_DEFAULT_UEVENT is not set -CONFIG_BUSYBOX_DEFAULT_UMOUNT=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_UMOUNT_ALL=y -# CONFIG_BUSYBOX_DEFAULT_UNSHARE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LOOP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LOOP_CREATE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MTAB_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_VOLUMEID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_BCACHE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_BTRFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_CRAMFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_EXFAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_EXT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_F2FS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_FAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_HFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_ISO9660 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_JFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LINUXRAID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LINUXSWAP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LUKS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_NILFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_NTFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_OCFS2 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_REISERFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_ROMFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_SQUASHFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_SYSV is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_UBIFS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_UDF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_XFS is not set -# CONFIG_BUSYBOX_DEFAULT_ADJTIMEX is not set -# CONFIG_BUSYBOX_DEFAULT_BBCONFIG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_COMPRESS_BBCONFIG is not set -# CONFIG_BUSYBOX_DEFAULT_BEEP is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_BEEP_FREQ=0 -CONFIG_BUSYBOX_DEFAULT_FEATURE_BEEP_LENGTH_MS=0 -# CONFIG_BUSYBOX_DEFAULT_CHAT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_NOFAIL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_TTY_HIFI is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_IMPLICIT_CR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_SWALLOW_OPTS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_SEND_ESCAPES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_VAR_ABORT_LEN is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_CLR_ABORT is not set -# CONFIG_BUSYBOX_DEFAULT_CHRT is not set -# CONFIG_BUSYBOX_DEFAULT_CONSPY is not set -CONFIG_BUSYBOX_DEFAULT_CROND=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_D is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_CALL_SENDMAIL is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_DIR="/etc" -CONFIG_BUSYBOX_DEFAULT_CRONTAB=y -# CONFIG_BUSYBOX_DEFAULT_DC is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DC_LIBM is not set -# CONFIG_BUSYBOX_DEFAULT_DEVFSD is not set -# CONFIG_BUSYBOX_DEFAULT_DEVFSD_MODLOAD is not set -# CONFIG_BUSYBOX_DEFAULT_DEVFSD_FG_NP is not set -# CONFIG_BUSYBOX_DEFAULT_DEVFSD_VERBOSE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_DEVFS is not set -# CONFIG_BUSYBOX_DEFAULT_DEVMEM is not set -# CONFIG_BUSYBOX_DEFAULT_EJECT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_EJECT_SCSI is not set -# CONFIG_BUSYBOX_DEFAULT_FBSPLASH is not set -# CONFIG_BUSYBOX_DEFAULT_FLASH_ERASEALL is not set -# CONFIG_BUSYBOX_DEFAULT_FLASH_LOCK is not set -# CONFIG_BUSYBOX_DEFAULT_FLASH_UNLOCK is not set -# CONFIG_BUSYBOX_DEFAULT_FLASHCP is not set -# CONFIG_BUSYBOX_DEFAULT_HDPARM is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_GET_IDENTITY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_GETSET_DMA is not set -# CONFIG_BUSYBOX_DEFAULT_I2CGET is not set -# CONFIG_BUSYBOX_DEFAULT_I2CSET is not set -# CONFIG_BUSYBOX_DEFAULT_I2CDUMP is not set -# CONFIG_BUSYBOX_DEFAULT_I2CDETECT is not set -# CONFIG_BUSYBOX_DEFAULT_INOTIFYD is not set -# CONFIG_BUSYBOX_DEFAULT_IONICE is not set -# CONFIG_BUSYBOX_DEFAULT_LAST is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LAST_FANCY is not set -CONFIG_BUSYBOX_DEFAULT_LESS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_MAXLINES=9999999 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_BRACKETS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_FLAGS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_TRUNCATE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_MARKS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_REGEXP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_WINCH is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_ASK_TERMINAL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_DASHCMD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_LINENUMS is not set -CONFIG_BUSYBOX_DEFAULT_LOCK=y -# CONFIG_BUSYBOX_DEFAULT_LSSCSI is not set -# CONFIG_BUSYBOX_DEFAULT_MAKEDEVS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MAKEDEVS_LEAF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_MAKEDEVS_TABLE is not set -# CONFIG_BUSYBOX_DEFAULT_MAN is not set -# CONFIG_BUSYBOX_DEFAULT_MICROCOM is not set -# CONFIG_BUSYBOX_DEFAULT_MOUNTPOINT is not set -# CONFIG_BUSYBOX_DEFAULT_MT is not set -# CONFIG_BUSYBOX_DEFAULT_NANDWRITE is not set -# CONFIG_BUSYBOX_DEFAULT_NANDDUMP is not set -# CONFIG_BUSYBOX_DEFAULT_PARTPROBE is not set -# CONFIG_BUSYBOX_DEFAULT_RAIDAUTORUN is not set -# CONFIG_BUSYBOX_DEFAULT_READAHEAD is not set -# CONFIG_BUSYBOX_DEFAULT_RFKILL is not set -# CONFIG_BUSYBOX_DEFAULT_RUNLEVEL is not set -# CONFIG_BUSYBOX_DEFAULT_RX is not set -# CONFIG_BUSYBOX_DEFAULT_SETSERIAL is not set -# CONFIG_BUSYBOX_DEFAULT_SETSID is not set -CONFIG_BUSYBOX_DEFAULT_STRINGS=y -# CONFIG_BUSYBOX_DEFAULT_TASKSET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TASKSET_FANCY is not set -CONFIG_BUSYBOX_DEFAULT_TIME=y -# CONFIG_BUSYBOX_DEFAULT_TIMEOUT is not set -# CONFIG_BUSYBOX_DEFAULT_TTYSIZE is not set -# CONFIG_BUSYBOX_DEFAULT_UBIATTACH is not set -# CONFIG_BUSYBOX_DEFAULT_UBIDETACH is not set -# CONFIG_BUSYBOX_DEFAULT_UBIMKVOL is not set -# CONFIG_BUSYBOX_DEFAULT_UBIRMVOL is not set -# CONFIG_BUSYBOX_DEFAULT_UBIRSVOL is not set -# CONFIG_BUSYBOX_DEFAULT_UBIUPDATEVOL is not set -# CONFIG_BUSYBOX_DEFAULT_UBIRENAME is not set -# CONFIG_BUSYBOX_DEFAULT_VOLNAME is not set -# CONFIG_BUSYBOX_DEFAULT_WALL is not set -# CONFIG_BUSYBOX_DEFAULT_WATCHDOG is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IPV6=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UNIX_LOCAL is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_PREFER_IPV4_ADDRESS=y -CONFIG_BUSYBOX_DEFAULT_VERBOSE_RESOLUTION_ERRORS=y -# CONFIG_BUSYBOX_DEFAULT_ARP is not set -# CONFIG_BUSYBOX_DEFAULT_ARPING is not set -CONFIG_BUSYBOX_DEFAULT_BRCTL=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_BRCTL_FANCY=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_BRCTL_SHOW=y -# CONFIG_BUSYBOX_DEFAULT_DNSD is not set -# CONFIG_BUSYBOX_DEFAULT_ETHER_WAKE is not set -# CONFIG_BUSYBOX_DEFAULT_FTPD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPD_WRITE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPD_ACCEPT_BROKEN_LIST is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPD_AUTHENTICATION is not set -# CONFIG_BUSYBOX_DEFAULT_FTPGET is not set -# CONFIG_BUSYBOX_DEFAULT_FTPPUT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPGETPUT_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_HOSTNAME is not set -# CONFIG_BUSYBOX_DEFAULT_DNSDOMAINNAME is not set -# CONFIG_BUSYBOX_DEFAULT_HTTPD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_RANGES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_SETUID is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_BASIC_AUTH is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_AUTH_MD5 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_CGI is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_ENCODE_URL_STR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_ERROR_PAGES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_PROXY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_GZIP is not set -CONFIG_BUSYBOX_DEFAULT_IFCONFIG=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_STATUS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_SLIP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_HW=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_BROADCAST_PLUS=y -# CONFIG_BUSYBOX_DEFAULT_IFENSLAVE is not set -# CONFIG_BUSYBOX_DEFAULT_IFPLUGD is not set -# CONFIG_BUSYBOX_DEFAULT_IFUP is not set -# CONFIG_BUSYBOX_DEFAULT_IFDOWN is not set -CONFIG_BUSYBOX_DEFAULT_IFUPDOWN_IFSTATE_PATH="" -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV4 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV6 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_MAPPING is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set -# CONFIG_BUSYBOX_DEFAULT_INETD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_RPC is not set -CONFIG_BUSYBOX_DEFAULT_IP=y -# CONFIG_BUSYBOX_DEFAULT_IPADDR is not set -# CONFIG_BUSYBOX_DEFAULT_IPLINK is not set -# CONFIG_BUSYBOX_DEFAULT_IPROUTE is not set -# CONFIG_BUSYBOX_DEFAULT_IPTUNNEL is not set -# CONFIG_BUSYBOX_DEFAULT_IPRULE is not set -# CONFIG_BUSYBOX_DEFAULT_IPNEIGH is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ADDRESS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_LINK=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ROUTE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ROUTE_DIR="/etc/iproute2" -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_TUNNEL is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_RULE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_NEIGH=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_RARE_PROTOCOLS is not set -# CONFIG_BUSYBOX_DEFAULT_IPCALC is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IPCALC_FANCY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IPCALC_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FAKEIDENTD is not set -# CONFIG_BUSYBOX_DEFAULT_NAMEIF is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NAMEIF_EXTENDED is not set -# CONFIG_BUSYBOX_DEFAULT_NBDCLIENT is not set -CONFIG_BUSYBOX_DEFAULT_NC=y -# CONFIG_BUSYBOX_DEFAULT_NC_SERVER is not set -# CONFIG_BUSYBOX_DEFAULT_NC_EXTRA is not set -# CONFIG_BUSYBOX_DEFAULT_NC_110_COMPAT is not set -CONFIG_BUSYBOX_DEFAULT_NETMSG=y -CONFIG_BUSYBOX_DEFAULT_NETSTAT=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_NETSTAT_WIDE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_NETSTAT_PRG=y -# CONFIG_BUSYBOX_DEFAULT_NSLOOKUP is not set -CONFIG_BUSYBOX_DEFAULT_NSLOOKUP_LEDE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NSLOOKUP_LEDE_LONG_OPTIONS is not set -CONFIG_BUSYBOX_DEFAULT_NTPD=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_NTPD_SERVER=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_NTPD_CONF is not set -CONFIG_BUSYBOX_DEFAULT_PING=y -CONFIG_BUSYBOX_DEFAULT_PING6=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_PING=y -# CONFIG_BUSYBOX_DEFAULT_PSCAN is not set -CONFIG_BUSYBOX_DEFAULT_ROUTE=y -# CONFIG_BUSYBOX_DEFAULT_SLATTACH is not set -# CONFIG_BUSYBOX_DEFAULT_SSL_CLIENT is not set -# CONFIG_BUSYBOX_DEFAULT_TCPSVD is not set -# CONFIG_BUSYBOX_DEFAULT_UDPSVD is not set -# CONFIG_BUSYBOX_DEFAULT_TELNET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_WIDTH is not set -# CONFIG_BUSYBOX_DEFAULT_TELNETD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNETD_STANDALONE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNETD_INETD_WAIT is not set -# CONFIG_BUSYBOX_DEFAULT_TFTP is not set -# CONFIG_BUSYBOX_DEFAULT_TFTPD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_GET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_PUT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_BLOCKSIZE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_PROGRESS_BAR is not set -# CONFIG_BUSYBOX_DEFAULT_TFTP_DEBUG is not set -# CONFIG_BUSYBOX_DEFAULT_TLS is not set -CONFIG_BUSYBOX_DEFAULT_TRACEROUTE=y -CONFIG_BUSYBOX_DEFAULT_TRACEROUTE6=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_VERBOSE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_USE_ICMP is not set -# CONFIG_BUSYBOX_DEFAULT_TUNCTL is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TUNCTL_UG is not set -# CONFIG_BUSYBOX_DEFAULT_VCONFIG is not set -# CONFIG_BUSYBOX_DEFAULT_WGET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_STATUSBAR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_AUTHENTICATION is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_TIMEOUT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_HTTPS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_OPENSSL is not set -# CONFIG_BUSYBOX_DEFAULT_WHOIS is not set -# CONFIG_BUSYBOX_DEFAULT_ZCIP is not set -# CONFIG_BUSYBOX_DEFAULT_UDHCPC6 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC3646 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC4704 is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC4833 is not set -# CONFIG_BUSYBOX_DEFAULT_UDHCPD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set -CONFIG_BUSYBOX_DEFAULT_DHCPD_LEASES_FILE="" -# CONFIG_BUSYBOX_DEFAULT_DUMPLEASES is not set -# CONFIG_BUSYBOX_DEFAULT_DHCPRELAY is not set -CONFIG_BUSYBOX_DEFAULT_UDHCPC=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC_ARPING is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC_SANITIZEOPT is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_PORT is not set -CONFIG_BUSYBOX_DEFAULT_UDHCP_DEBUG=0 -CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_RFC3397=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_8021Q is not set -CONFIG_BUSYBOX_DEFAULT_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" -CONFIG_BUSYBOX_DEFAULT_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 -CONFIG_BUSYBOX_DEFAULT_IFUPDOWN_UDHCPC_CMD_OPTIONS="" -# CONFIG_BUSYBOX_DEFAULT_LPD is not set -# CONFIG_BUSYBOX_DEFAULT_LPR is not set -# CONFIG_BUSYBOX_DEFAULT_LPQ is not set -# CONFIG_BUSYBOX_DEFAULT_MAKEMIME is not set -# CONFIG_BUSYBOX_DEFAULT_POPMAILDIR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_POPMAILDIR_DELIVERY is not set -# CONFIG_BUSYBOX_DEFAULT_REFORMIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_REFORMIME_COMPAT is not set -# CONFIG_BUSYBOX_DEFAULT_SENDMAIL is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_MIME_CHARSET="" -CONFIG_BUSYBOX_DEFAULT_FREE=y -# CONFIG_BUSYBOX_DEFAULT_FUSER is not set -# CONFIG_BUSYBOX_DEFAULT_IOSTAT is not set -CONFIG_BUSYBOX_DEFAULT_KILL=y -CONFIG_BUSYBOX_DEFAULT_KILLALL=y -# CONFIG_BUSYBOX_DEFAULT_KILLALL5 is not set -# CONFIG_BUSYBOX_DEFAULT_LSOF is not set -# CONFIG_BUSYBOX_DEFAULT_MPSTAT is not set -# CONFIG_BUSYBOX_DEFAULT_NMETER is not set -CONFIG_BUSYBOX_DEFAULT_PGREP=y -# CONFIG_BUSYBOX_DEFAULT_PKILL is not set -CONFIG_BUSYBOX_DEFAULT_PIDOF=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDOF_SINGLE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDOF_OMIT is not set -# CONFIG_BUSYBOX_DEFAULT_PMAP is not set -# CONFIG_BUSYBOX_DEFAULT_POWERTOP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_POWERTOP_INTERACTIVE is not set -CONFIG_BUSYBOX_DEFAULT_PS=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_WIDE=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_LONG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_TIME is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_ADDITIONAL_COLUMNS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_UNUSUAL_SYSTEMS is not set -# CONFIG_BUSYBOX_DEFAULT_PSTREE is not set -# CONFIG_BUSYBOX_DEFAULT_PWDX is not set -# CONFIG_BUSYBOX_DEFAULT_RENICE is not set -# CONFIG_BUSYBOX_DEFAULT_SMEMCAP is not set -CONFIG_BUSYBOX_DEFAULT_BB_SYSCTL=y -CONFIG_BUSYBOX_DEFAULT_TOP=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_INTERACTIVE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_SMP_CPU is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_DECIMALS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_SMP_PROCESS is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_TOPMEM is not set -CONFIG_BUSYBOX_DEFAULT_UPTIME=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_UPTIME_UTMP_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_WATCH is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SHOW_THREADS is not set -# CONFIG_BUSYBOX_DEFAULT_CHPST is not set -# CONFIG_BUSYBOX_DEFAULT_SETUIDGID is not set -# CONFIG_BUSYBOX_DEFAULT_ENVUIDGID is not set -# CONFIG_BUSYBOX_DEFAULT_ENVDIR is not set -# CONFIG_BUSYBOX_DEFAULT_SOFTLIMIT is not set -# CONFIG_BUSYBOX_DEFAULT_RUNSV is not set -# CONFIG_BUSYBOX_DEFAULT_RUNSVDIR is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RUNSVDIR_LOG is not set -# CONFIG_BUSYBOX_DEFAULT_SV is not set -CONFIG_BUSYBOX_DEFAULT_SV_DEFAULT_SERVICE_DIR="" -# CONFIG_BUSYBOX_DEFAULT_SVC is not set -# CONFIG_BUSYBOX_DEFAULT_SVLOGD is not set -# CONFIG_BUSYBOX_DEFAULT_CHCON is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_CHCON_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_GETENFORCE is not set -# CONFIG_BUSYBOX_DEFAULT_GETSEBOOL is not set -# CONFIG_BUSYBOX_DEFAULT_LOAD_POLICY is not set -# CONFIG_BUSYBOX_DEFAULT_MATCHPATHCON is not set -# CONFIG_BUSYBOX_DEFAULT_RUNCON is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_RUNCON_LONG_OPTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_SELINUXENABLED is not set -# CONFIG_BUSYBOX_DEFAULT_SESTATUS is not set -# CONFIG_BUSYBOX_DEFAULT_SETENFORCE is not set -# CONFIG_BUSYBOX_DEFAULT_SETFILES is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SETFILES_CHECK_OPTION is not set -# CONFIG_BUSYBOX_DEFAULT_RESTORECON is not set -# CONFIG_BUSYBOX_DEFAULT_SETSEBOOL is not set -CONFIG_BUSYBOX_DEFAULT_SH_IS_ASH=y -# CONFIG_BUSYBOX_DEFAULT_SH_IS_HUSH is not set -# CONFIG_BUSYBOX_DEFAULT_SH_IS_NONE is not set -# CONFIG_BUSYBOX_DEFAULT_BASH_IS_ASH is not set -# CONFIG_BUSYBOX_DEFAULT_BASH_IS_HUSH is not set -CONFIG_BUSYBOX_DEFAULT_BASH_IS_NONE=y -CONFIG_BUSYBOX_DEFAULT_ASH=y -# CONFIG_BUSYBOX_DEFAULT_ASH_OPTIMIZE_FOR_SIZE is not set -CONFIG_BUSYBOX_DEFAULT_ASH_INTERNAL_GLOB=y -CONFIG_BUSYBOX_DEFAULT_ASH_BASH_COMPAT=y -CONFIG_BUSYBOX_DEFAULT_ASH_JOB_CONTROL=y -CONFIG_BUSYBOX_DEFAULT_ASH_ALIAS=y -# CONFIG_BUSYBOX_DEFAULT_ASH_RANDOM_SUPPORT is not set -CONFIG_BUSYBOX_DEFAULT_ASH_EXPAND_PRMT=y -# CONFIG_BUSYBOX_DEFAULT_ASH_IDLE_TIMEOUT is not set -# CONFIG_BUSYBOX_DEFAULT_ASH_MAIL is not set -CONFIG_BUSYBOX_DEFAULT_ASH_ECHO=y -CONFIG_BUSYBOX_DEFAULT_ASH_PRINTF=y -CONFIG_BUSYBOX_DEFAULT_ASH_TEST=y -# CONFIG_BUSYBOX_DEFAULT_ASH_HELP is not set -CONFIG_BUSYBOX_DEFAULT_ASH_GETOPTS=y -CONFIG_BUSYBOX_DEFAULT_ASH_CMDCMD=y -# CONFIG_BUSYBOX_DEFAULT_CTTYHACK is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_BASH_COMPAT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_BRACE_EXPANSION is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_HELP is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_INTERACTIVE is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_SAVEHISTORY is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_JOB is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_TICK is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_IF is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_LOOPS is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_CASE is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_FUNCTIONS is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_LOCAL is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_RANDOM_SUPPORT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_MODE_X is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_ECHO is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_PRINTF is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_TEST is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_EXPORT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_EXPORT_N is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_KILL is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_WAIT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_TRAP is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_TYPE is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_READ is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_SET is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_UNSET is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_ULIMIT is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_UMASK is not set -# CONFIG_BUSYBOX_DEFAULT_HUSH_MEMLEAK is not set -# CONFIG_BUSYBOX_DEFAULT_MSH is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_MATH=y -CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_MATH_64=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_EXTRA_QUIET is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_STANDALONE is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_NOFORK=y -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_HISTFILESIZE is not set -# CONFIG_BUSYBOX_DEFAULT_KLOGD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_KLOGD_KLOGCTL is not set -CONFIG_BUSYBOX_DEFAULT_LOGGER=y -# CONFIG_BUSYBOX_DEFAULT_LOGREAD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_LOGREAD_REDUCED_LOCKING is not set -# CONFIG_BUSYBOX_DEFAULT_SYSLOGD is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_ROTATE_LOGFILE is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_REMOTE_LOG is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_DUP is not set -# CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_CFG is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_IPC_SYSLOG is not set -CONFIG_BUSYBOX_DEFAULT_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 -# CONFIG_BUSYBOX_DEFAULT_FEATURE_KMSG_SYSLOG is not set -# CONFIG_PACKAGE_ca-bundle is not set -# CONFIG_PACKAGE_ca-certificates is not set -# CONFIG_PACKAGE_dnsmasq is not set -# CONFIG_PACKAGE_dnsmasq-dhcpv6 is not set -CONFIG_PACKAGE_dnsmasq-full=y -# CONFIG_PACKAGE_dnsmasq_full_dhcpv6 is not set -# CONFIG_PACKAGE_dnsmasq_full_dnssec is not set -# CONFIG_PACKAGE_dnsmasq_full_auth is not set -CONFIG_PACKAGE_dnsmasq_full_ipset=y -# CONFIG_PACKAGE_dnsmasq_full_conntrack is not set -# CONFIG_PACKAGE_dnsmasq_full_noid is not set -# CONFIG_PACKAGE_dnsmasq_full_broken_rtc is not set -CONFIG_PACKAGE_dropbear=y - -# -# Configuration -# -CONFIG_DROPBEAR_CURVE25519=y -# CONFIG_DROPBEAR_ECC is not set -# CONFIG_PACKAGE_ead is not set -CONFIG_PACKAGE_firewall=y -CONFIG_PACKAGE_fstools=y -CONFIG_PACKAGE_fwtool=y -CONFIG_PACKAGE_jsonfilter=y -CONFIG_PACKAGE_lede-keyring=y -# CONFIG_PACKAGE_libatomic is not set -CONFIG_PACKAGE_libc=y -CONFIG_PACKAGE_libgcc=y -# CONFIG_PACKAGE_libgomp is not set -CONFIG_PACKAGE_libpthread=y -CONFIG_PACKAGE_librt=y -# CONFIG_PACKAGE_libstdcpp is not set -CONFIG_PACKAGE_logd=y -# CONFIG_PACKAGE_mksh is not set -CONFIG_PACKAGE_mtd=y -CONFIG_PACKAGE_netifd=y -# CONFIG_PACKAGE_nvram is not set -# CONFIG_PACKAGE_om-watchdog is not set -CONFIG_PACKAGE_opkg=y -CONFIG_PACKAGE_procd=y - -# -# Configuration -# -# CONFIG_PROCD_SHOW_BOOT is not set -# CONFIG_PROCD_ZRAM_TMPFS is not set -# CONFIG_PACKAGE_qos-scripts is not set -# CONFIG_PACKAGE_resolveip is not set -CONFIG_PACKAGE_rpcd=y -# CONFIG_PACKAGE_rpcd-mod-attendedsysupgrade is not set -# CONFIG_PACKAGE_rpcd-mod-file is not set -# CONFIG_PACKAGE_rpcd-mod-iwinfo is not set -# CONFIG_PACKAGE_rpcd-mod-packagelist is not set -# CONFIG_PACKAGE_rpcd-mod-rpcsys is not set -# CONFIG_PACKAGE_snapshot-tool is not set -CONFIG_PACKAGE_sqm-scripts=y -# CONFIG_PACKAGE_sqm-scripts-extra is not set -CONFIG_PACKAGE_swconfig=y -CONFIG_PACKAGE_ubox=y -CONFIG_PACKAGE_ubus=y -CONFIG_PACKAGE_ubusd=y -CONFIG_PACKAGE_uci=y -CONFIG_PACKAGE_usign=y -# CONFIG_PACKAGE_wireless-tools is not set -# CONFIG_PACKAGE_zram-swap is not set - -# -# Administration -# - -# -# openwisp -# -# CONFIG_PACKAGE_openwisp-config-cyassl is not set -# CONFIG_PACKAGE_openwisp-config-mbedtls is not set -# CONFIG_PACKAGE_openwisp-config-nossl is not set -# CONFIG_PACKAGE_openwisp-config-openssl is not set - -# -# zabbix -# -# CONFIG_PACKAGE_zabbix-agentd is not set -# CONFIG_PACKAGE_zabbix-extra-mac80211 is not set -# CONFIG_PACKAGE_zabbix-extra-network is not set -# CONFIG_PACKAGE_zabbix-extra-wifi is not set -# CONFIG_PACKAGE_zabbix-get is not set -# CONFIG_PACKAGE_zabbix-proxy is not set -# CONFIG_PACKAGE_zabbix-sender is not set -# CONFIG_PACKAGE_zabbix-server is not set -# CONFIG_PACKAGE_htop is not set -# CONFIG_PACKAGE_ipmitool is not set -# CONFIG_PACKAGE_monit is not set -# CONFIG_PACKAGE_monit-nossl is not set -# CONFIG_PACKAGE_muninlite is not set -# CONFIG_PACKAGE_netdata is not set -# CONFIG_PACKAGE_sudo is not set -# CONFIG_PACKAGE_syslog-ng is not set - -# -# Boot Loaders -# - -# -# Development -# - -# -# Libraries -# -# CONFIG_PACKAGE_libncurses-dev is not set -# CONFIG_PACKAGE_zlib-dev is not set -# CONFIG_PACKAGE_ar is not set -# CONFIG_PACKAGE_autoconf is not set -# CONFIG_PACKAGE_automake is not set -# CONFIG_PACKAGE_binutils is not set -# CONFIG_PACKAGE_diffutils is not set -# CONFIG_PACKAGE_gcc is not set -# CONFIG_PACKAGE_gdb is not set -# CONFIG_PACKAGE_gdbserver is not set -# CONFIG_PACKAGE_libtool-bin is not set -# CONFIG_PACKAGE_lpc21isp is not set -# CONFIG_PACKAGE_lttng-tools is not set -# CONFIG_PACKAGE_m4 is not set -# CONFIG_PACKAGE_make is not set -# CONFIG_PACKAGE_objdump is not set -# CONFIG_PACKAGE_patch is not set -# CONFIG_PACKAGE_pkg-config is not set -# CONFIG_PACKAGE_trace-cmd is not set -# CONFIG_PACKAGE_trace-cmd-extra is not set -# CONFIG_PACKAGE_valgrind is not set - -# -# Extra packages -# -CONFIG_PACKAGE_automount=y -# CONFIG_PACKAGE_autosamba is not set -# CONFIG_PACKAGE_he-6in4 is not set -# CONFIG_PACKAGE_k3wifi is not set - -# -# Firmware -# - -# -# ath10k IPQ4019 Boarddata -# -# CONFIG_PACKAGE_aircard-pcmcia-firmware is not set -# CONFIG_PACKAGE_ar3k-firmware is not set -# CONFIG_PACKAGE_ath10k-firmware-qca4019 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca6174 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9887 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9887-ct is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9888 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9888-ct is not set -# CONFIG_PACKAGE_ath10k-firmware-qca988x is not set -# CONFIG_PACKAGE_ath10k-firmware-qca988x-ct is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9984 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca9984-ct is not set -# CONFIG_PACKAGE_ath10k-firmware-qca99x0 is not set -# CONFIG_PACKAGE_ath10k-firmware-qca99x0-ct is not set -# CONFIG_PACKAGE_ath6k-firmware is not set -# CONFIG_PACKAGE_ath9k-htc-firmware is not set -# CONFIG_PACKAGE_b43legacy-firmware is not set -# CONFIG_PACKAGE_bnx2-firmware is not set -# CONFIG_PACKAGE_brcmfmac-firmware-4329-sdio is not set -# CONFIG_PACKAGE_brcmfmac-firmware-43362-sdio is not set -# CONFIG_PACKAGE_brcmfmac-firmware-43430-sdio is not set -# CONFIG_PACKAGE_brcmfmac-firmware-43602a1-pcie is not set -# CONFIG_PACKAGE_brcmfmac-firmware-4366b1-pcie is not set -# CONFIG_PACKAGE_brcmfmac-firmware-usb is not set -# CONFIG_PACKAGE_brcmsmac-firmware is not set -# CONFIG_PACKAGE_carl9170-firmware is not set -# CONFIG_PACKAGE_ibt-firmware is not set -# CONFIG_PACKAGE_iwl3945-firmware is not set -# CONFIG_PACKAGE_iwl4965-firmware is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl100 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl1000 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl105 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl135 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl2000 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl2030 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl3160 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl3168 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl5000 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl5150 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl6000g2 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl6000g2a is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl6000g2b is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl6050 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl7260 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl7265 is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl7265d is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl8260c is not set -# CONFIG_PACKAGE_iwlwifi-firmware-iwl8265 is not set -# CONFIG_PACKAGE_libertas-sdio-firmware is not set -# CONFIG_PACKAGE_libertas-spi-firmware is not set -# CONFIG_PACKAGE_libertas-usb-firmware is not set -# CONFIG_PACKAGE_mt7601u-firmware is not set -# CONFIG_PACKAGE_mwifiex-pcie-firmware is not set -# CONFIG_PACKAGE_mwifiex-sdio-firmware is not set -# CONFIG_PACKAGE_mwl8k-firmware is not set -# CONFIG_PACKAGE_p54-pci-firmware is not set -# CONFIG_PACKAGE_p54-spi-firmware is not set -# CONFIG_PACKAGE_p54-usb-firmware is not set -# CONFIG_PACKAGE_prism54-firmware is not set -# CONFIG_PACKAGE_r8169-firmware is not set -# CONFIG_PACKAGE_rt2800-pci-firmware is not set -# CONFIG_PACKAGE_rt2800-usb-firmware is not set -# CONFIG_PACKAGE_rt61-pci-firmware is not set -# CONFIG_PACKAGE_rt73-usb-firmware is not set -# CONFIG_PACKAGE_rtl8188eu-firmware is not set -# CONFIG_PACKAGE_rtl8192ce-firmware is not set -# CONFIG_PACKAGE_rtl8192cu-firmware is not set -# CONFIG_PACKAGE_rtl8192de-firmware is not set -# CONFIG_PACKAGE_rtl8192se-firmware is not set -# CONFIG_PACKAGE_rtl8192su-firmware is not set -# CONFIG_PACKAGE_rtl8821ae-firmware is not set -# CONFIG_PACKAGE_wl12xx-firmware is not set -# CONFIG_PACKAGE_wl18xx-firmware is not set - -# -# Fonts -# - -# -# DejaVu -# -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuMathTeXGyre is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans-BoldOblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans-ExtraLight is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSans-Oblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansCondensed is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansCondensed-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansCondensed-BoldOblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansCondensed-Oblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansMono is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansMono-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansMono-BoldOblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSansMono-Oblique is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerif is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerif-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerif-BoldItalic is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerif-Italic is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerifCondensed is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerifCondensed-Bold is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerifCondensed-BoldItalic is not set -# CONFIG_PACKAGE_dejavu-fonts-ttf-DejaVuSerifCondensed-Italic is not set - -# -# Kernel modules -# - -# -# Block Devices -# -# CONFIG_PACKAGE_kmod-aoe is not set -# CONFIG_PACKAGE_kmod-ata-core is not set -# CONFIG_PACKAGE_kmod-block2mtd is not set -# CONFIG_PACKAGE_kmod-dm is not set -# CONFIG_PACKAGE_kmod-loop is not set -# CONFIG_PACKAGE_kmod-md-mod is not set -# CONFIG_PACKAGE_kmod-nbd is not set -# CONFIG_PACKAGE_kmod-scsi-cdrom is not set -CONFIG_PACKAGE_kmod-scsi-core=y -# CONFIG_PACKAGE_kmod-scsi-generic is not set -# CONFIG_PACKAGE_kmod-scsi-tape is not set - -# -# CAN Support -# -# CONFIG_PACKAGE_kmod-can is not set - -# -# Cryptographic API modules -# -CONFIG_PACKAGE_kmod-crypto-aead=y -CONFIG_PACKAGE_kmod-crypto-authenc=y -CONFIG_PACKAGE_kmod-crypto-cbc=y -# CONFIG_PACKAGE_kmod-crypto-ccm is not set -# CONFIG_PACKAGE_kmod-crypto-cmac is not set -CONFIG_PACKAGE_kmod-crypto-crc32c=y -# CONFIG_PACKAGE_kmod-crypto-ctr is not set -CONFIG_PACKAGE_kmod-crypto-deflate=y -CONFIG_PACKAGE_kmod-crypto-des=y -CONFIG_PACKAGE_kmod-crypto-ecb=y -CONFIG_PACKAGE_kmod-crypto-echainiv=y -# CONFIG_PACKAGE_kmod-crypto-fcrypt is not set -# CONFIG_PACKAGE_kmod-crypto-gcm is not set -# CONFIG_PACKAGE_kmod-crypto-gf128 is not set -# CONFIG_PACKAGE_kmod-crypto-ghash is not set -CONFIG_PACKAGE_kmod-crypto-hash=y -CONFIG_PACKAGE_kmod-crypto-hmac=y -# CONFIG_PACKAGE_kmod-crypto-hw-ccp is not set -# CONFIG_PACKAGE_kmod-crypto-hw-geode is not set -# CONFIG_PACKAGE_kmod-crypto-hw-hifn-795x is not set -# CONFIG_PACKAGE_kmod-crypto-hw-padlock is not set -# CONFIG_PACKAGE_kmod-crypto-hw-talitos is not set -CONFIG_PACKAGE_kmod-crypto-iv=y -CONFIG_PACKAGE_kmod-crypto-manager=y -# CONFIG_PACKAGE_kmod-crypto-md4 is not set -CONFIG_PACKAGE_kmod-crypto-md5=y -# CONFIG_PACKAGE_kmod-crypto-michael-mic is not set -# CONFIG_PACKAGE_kmod-crypto-misc is not set -CONFIG_PACKAGE_kmod-crypto-null=y -# CONFIG_PACKAGE_kmod-crypto-pcbc is not set -CONFIG_PACKAGE_kmod-crypto-pcompress=y -CONFIG_PACKAGE_kmod-crypto-rng=y -# CONFIG_PACKAGE_kmod-crypto-seqiv is not set -CONFIG_PACKAGE_kmod-crypto-sha1=y -CONFIG_PACKAGE_kmod-crypto-sha256=y -# CONFIG_PACKAGE_kmod-crypto-sha512 is not set -# CONFIG_PACKAGE_kmod-crypto-test is not set -# CONFIG_PACKAGE_kmod-crypto-user is not set -CONFIG_PACKAGE_kmod-crypto-wq=y -# CONFIG_PACKAGE_kmod-crypto-xts is not set -# CONFIG_PACKAGE_kmod-cryptodev is not set - -# -# Filesystems -# -# CONFIG_PACKAGE_kmod-fs-afs is not set -# CONFIG_PACKAGE_kmod-fs-autofs4 is not set -# CONFIG_PACKAGE_kmod-fs-btrfs is not set -# CONFIG_PACKAGE_kmod-fs-cifs is not set -# CONFIG_PACKAGE_kmod-fs-configfs is not set -# CONFIG_PACKAGE_kmod-fs-cramfs is not set -CONFIG_PACKAGE_kmod-fs-exfat=y -# CONFIG_PACKAGE_kmod-fs-exportfs is not set -CONFIG_PACKAGE_kmod-fs-ext4=y -# CONFIG_PACKAGE_kmod-fs-f2fs is not set -# CONFIG_PACKAGE_kmod-fs-fscache is not set -# CONFIG_PACKAGE_kmod-fs-hfs is not set -# CONFIG_PACKAGE_kmod-fs-hfsplus is not set -# CONFIG_PACKAGE_kmod-fs-isofs is not set -# CONFIG_PACKAGE_kmod-fs-jfs is not set -# CONFIG_PACKAGE_kmod-fs-minix is not set -# CONFIG_PACKAGE_kmod-fs-msdos is not set -# CONFIG_PACKAGE_kmod-fs-nfs is not set -# CONFIG_PACKAGE_kmod-fs-nfs-common is not set -# CONFIG_PACKAGE_kmod-fs-nfsd is not set -# CONFIG_PACKAGE_kmod-fs-ntfs is not set -# CONFIG_PACKAGE_kmod-fs-reiserfs is not set -# CONFIG_PACKAGE_kmod-fs-squashfs is not set -# CONFIG_PACKAGE_kmod-fs-udf is not set -CONFIG_PACKAGE_kmod-fs-vfat=y -# CONFIG_PACKAGE_kmod-fs-xfs is not set -CONFIG_PACKAGE_kmod-fuse=y - -# -# FireWire support -# -# CONFIG_PACKAGE_kmod-firewire is not set - -# -# Hardware Monitoring Support -# -# CONFIG_PACKAGE_kmod-hwmon-core is not set - -# -# I2C support -# -# CONFIG_PACKAGE_kmod-i2c-core is not set -# CONFIG_PACKAGE_kmod-i2c-gpio-custom is not set - -# -# Input modules -# -# CONFIG_PACKAGE_kmod-hid is not set -# CONFIG_PACKAGE_kmod-hid-generic is not set -# CONFIG_PACKAGE_kmod-input-core is not set -# CONFIG_PACKAGE_kmod-input-evdev is not set -# CONFIG_PACKAGE_kmod-input-gpio-encoder is not set -# CONFIG_PACKAGE_kmod-input-gpio-keys is not set -# CONFIG_PACKAGE_kmod-input-gpio-keys-polled is not set -# CONFIG_PACKAGE_kmod-input-joydev is not set -# CONFIG_PACKAGE_kmod-input-matrixkmap is not set -# CONFIG_PACKAGE_kmod-input-polldev is not set -# CONFIG_PACKAGE_kmod-input-uinput is not set - -# -# LED modules -# -# CONFIG_PACKAGE_kmod-leds-gpio is not set -# CONFIG_PACKAGE_kmod-leds-nu801 is not set -# CONFIG_PACKAGE_kmod-leds-pca963x is not set -# CONFIG_PACKAGE_kmod-leds-rb750 is not set -# CONFIG_PACKAGE_kmod-leds-wndr3700-usb is not set -# CONFIG_PACKAGE_kmod-ledtrig-default-on is not set -# CONFIG_PACKAGE_kmod-ledtrig-gpio is not set -# CONFIG_PACKAGE_kmod-ledtrig-heartbeat is not set -# CONFIG_PACKAGE_kmod-ledtrig-netdev is not set -# CONFIG_PACKAGE_kmod-ledtrig-oneshot is not set -# CONFIG_PACKAGE_kmod-ledtrig-timer is not set -# CONFIG_PACKAGE_kmod-ledtrig-transient is not set - -# -# Libraries -# -# CONFIG_PACKAGE_kmod-lib-cordic is not set -CONFIG_PACKAGE_kmod-lib-crc-ccitt=y -# CONFIG_PACKAGE_kmod-lib-crc-itu-t is not set -CONFIG_PACKAGE_kmod-lib-crc16=y -# CONFIG_PACKAGE_kmod-lib-crc32c is not set -# CONFIG_PACKAGE_kmod-lib-crc7 is not set -# CONFIG_PACKAGE_kmod-lib-crc8 is not set -CONFIG_PACKAGE_kmod-lib-textsearch=y -CONFIG_PACKAGE_kmod-lib-zlib-deflate=y -CONFIG_PACKAGE_kmod-lib-zlib-inflate=y - -# -# Native Language Support -# -CONFIG_PACKAGE_kmod-nls-base=y -# CONFIG_PACKAGE_kmod-nls-cp1250 is not set -# CONFIG_PACKAGE_kmod-nls-cp1251 is not set -CONFIG_PACKAGE_kmod-nls-cp437=y -# CONFIG_PACKAGE_kmod-nls-cp775 is not set -# CONFIG_PACKAGE_kmod-nls-cp850 is not set -# CONFIG_PACKAGE_kmod-nls-cp852 is not set -# CONFIG_PACKAGE_kmod-nls-cp862 is not set -# CONFIG_PACKAGE_kmod-nls-cp864 is not set -# CONFIG_PACKAGE_kmod-nls-cp866 is not set -# CONFIG_PACKAGE_kmod-nls-cp932 is not set -# CONFIG_PACKAGE_kmod-nls-cp936 is not set -# CONFIG_PACKAGE_kmod-nls-cp950 is not set -CONFIG_PACKAGE_kmod-nls-iso8859-1=y -# CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set -# CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set -# CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set -# CONFIG_PACKAGE_kmod-nls-iso8859-6 is not set -# CONFIG_PACKAGE_kmod-nls-iso8859-8 is not set -# CONFIG_PACKAGE_kmod-nls-koi8r is not set -CONFIG_PACKAGE_kmod-nls-utf8=y - -# -# Netfilter Extensions -# -# CONFIG_PACKAGE_kmod-arptables is not set -# CONFIG_PACKAGE_kmod-ebtables is not set -CONFIG_PACKAGE_kmod-ip6tables=y -# CONFIG_PACKAGE_kmod-ip6tables-extra is not set -# CONFIG_PACKAGE_kmod-ipt-account is not set -# CONFIG_PACKAGE_kmod-ipt-chaos is not set -# CONFIG_PACKAGE_kmod-ipt-cluster is not set -# CONFIG_PACKAGE_kmod-ipt-clusterip is not set -# CONFIG_PACKAGE_kmod-ipt-compat-xtables is not set -# CONFIG_PACKAGE_kmod-ipt-condition is not set -CONFIG_PACKAGE_kmod-ipt-conntrack=y -CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y -CONFIG_PACKAGE_kmod-ipt-core=y -# CONFIG_PACKAGE_kmod-ipt-debug is not set -# CONFIG_PACKAGE_kmod-ipt-delude is not set -# CONFIG_PACKAGE_kmod-ipt-dhcpmac is not set -# CONFIG_PACKAGE_kmod-ipt-dnetmap is not set -# CONFIG_PACKAGE_kmod-ipt-extra is not set -# CONFIG_PACKAGE_kmod-ipt-filter is not set -# CONFIG_PACKAGE_kmod-ipt-fuzzy is not set -# CONFIG_PACKAGE_kmod-ipt-geoip is not set -# CONFIG_PACKAGE_kmod-ipt-hashlimit is not set -# CONFIG_PACKAGE_kmod-ipt-iface is not set -# CONFIG_PACKAGE_kmod-ipt-ipmark is not set -CONFIG_PACKAGE_kmod-ipt-ipopt=y -# CONFIG_PACKAGE_kmod-ipt-ipp2p is not set -# CONFIG_PACKAGE_kmod-ipt-iprange is not set -CONFIG_PACKAGE_kmod-ipt-ipsec=y -CONFIG_PACKAGE_kmod-ipt-ipset=y -# CONFIG_PACKAGE_kmod-ipt-ipv4options is not set -# CONFIG_PACKAGE_kmod-ipt-led is not set -# CONFIG_PACKAGE_kmod-ipt-length2 is not set -# CONFIG_PACKAGE_kmod-ipt-logmark is not set -# CONFIG_PACKAGE_kmod-ipt-lscan is not set -# CONFIG_PACKAGE_kmod-ipt-lua is not set -CONFIG_PACKAGE_kmod-ipt-nat=y -CONFIG_PACKAGE_kmod-ipt-nat-extra=y -# CONFIG_PACKAGE_kmod-ipt-nat6 is not set -# CONFIG_PACKAGE_kmod-ipt-nathelper-rtsp is not set -# CONFIG_PACKAGE_kmod-ipt-nflog is not set -# CONFIG_PACKAGE_kmod-ipt-nfqueue is not set -# CONFIG_PACKAGE_kmod-ipt-psd is not set -# CONFIG_PACKAGE_kmod-ipt-quota2 is not set -# CONFIG_PACKAGE_kmod-ipt-raw is not set -# CONFIG_PACKAGE_kmod-ipt-raw6 is not set -# CONFIG_PACKAGE_kmod-ipt-rpfilter is not set -# CONFIG_PACKAGE_kmod-ipt-sysrq is not set -# CONFIG_PACKAGE_kmod-ipt-tarpit is not set -# CONFIG_PACKAGE_kmod-ipt-tee is not set -CONFIG_PACKAGE_kmod-ipt-tproxy=y -# CONFIG_PACKAGE_kmod-ipt-u32 is not set -# CONFIG_PACKAGE_kmod-ipt-ulog is not set -CONFIG_PACKAGE_kmod-nf-conntrack=y -CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y -CONFIG_PACKAGE_kmod-nf-conntrack6=y -CONFIG_PACKAGE_kmod-nf-ipt=y -CONFIG_PACKAGE_kmod-nf-ipt6=y -CONFIG_PACKAGE_kmod-nf-nat=y -# CONFIG_PACKAGE_kmod-nf-nat6 is not set -CONFIG_PACKAGE_kmod-nf-nathelper=y -CONFIG_PACKAGE_kmod-nf-nathelper-extra=y -CONFIG_PACKAGE_kmod-nfnetlink=y -# CONFIG_PACKAGE_kmod-nfnetlink-log is not set -# CONFIG_PACKAGE_kmod-nfnetlink-queue is not set -# CONFIG_PACKAGE_kmod-nft-core is not set -# CONFIG_PACKAGE_kmod-nft-nat is not set -# CONFIG_PACKAGE_kmod-nft-nat6 is not set - -# -# Network Devices -# -# CONFIG_PACKAGE_kmod-3c59x is not set -# CONFIG_PACKAGE_kmod-8139cp is not set -# CONFIG_PACKAGE_kmod-8139too is not set -# CONFIG_PACKAGE_kmod-atl1 is not set -# CONFIG_PACKAGE_kmod-atl1c is not set -# CONFIG_PACKAGE_kmod-atl1e is not set -# CONFIG_PACKAGE_kmod-atl2 is not set -# CONFIG_PACKAGE_kmod-b44 is not set -# CONFIG_PACKAGE_kmod-bnx2 is not set -# CONFIG_PACKAGE_kmod-dm9000 is not set -# CONFIG_PACKAGE_kmod-dummy is not set -# CONFIG_PACKAGE_kmod-e100 is not set -# CONFIG_PACKAGE_kmod-e1000 is not set -# CONFIG_PACKAGE_kmod-et131x is not set -# CONFIG_PACKAGE_kmod-ethoc is not set -# CONFIG_PACKAGE_kmod-forcedeth is not set -# CONFIG_PACKAGE_kmod-gigaset is not set -# CONFIG_PACKAGE_kmod-hfcmulti is not set -# CONFIG_PACKAGE_kmod-hfcpci is not set -CONFIG_PACKAGE_kmod-ifb=y -# CONFIG_PACKAGE_kmod-igb is not set -# CONFIG_PACKAGE_kmod-ixgbe is not set -# CONFIG_PACKAGE_kmod-libphy is not set -CONFIG_PACKAGE_kmod-macvlan=y -# CONFIG_PACKAGE_kmod-mii is not set -# CONFIG_PACKAGE_kmod-natsemi is not set -# CONFIG_PACKAGE_kmod-ne2k-pci is not set -# CONFIG_PACKAGE_kmod-of-mdio is not set -# CONFIG_PACKAGE_kmod-pcnet32 is not set -# CONFIG_PACKAGE_kmod-phy-broadcom is not set -# CONFIG_PACKAGE_kmod-ppfe is not set -# CONFIG_PACKAGE_kmod-r6040 is not set -# CONFIG_PACKAGE_kmod-r8169 is not set -# CONFIG_PACKAGE_kmod-siit is not set -# CONFIG_PACKAGE_kmod-sis190 is not set -# CONFIG_PACKAGE_kmod-sis900 is not set -# CONFIG_PACKAGE_kmod-skge is not set -# CONFIG_PACKAGE_kmod-sky2 is not set -# CONFIG_PACKAGE_kmod-solos-pci is not set -# CONFIG_PACKAGE_kmod-spi-ks8995 is not set -# CONFIG_PACKAGE_kmod-swconfig is not set -# CONFIG_PACKAGE_kmod-switch-ip17xx is not set -# CONFIG_PACKAGE_kmod-switch-mvsw61xx is not set -# CONFIG_PACKAGE_kmod-switch-rtl8366-smi is not set -# CONFIG_PACKAGE_kmod-switch-rtl8366rb is not set -# CONFIG_PACKAGE_kmod-switch-rtl8366s is not set -# CONFIG_PACKAGE_kmod-switch-rtl8367b is not set -# CONFIG_PACKAGE_kmod-tg3 is not set -# CONFIG_PACKAGE_kmod-tulip is not set -# CONFIG_PACKAGE_kmod-via-rhine is not set -# CONFIG_PACKAGE_kmod-via-velocity is not set -# CONFIG_PACKAGE_kmod-vmxnet3 is not set - -# -# Network Support -# -# CONFIG_PACKAGE_kmod-appletalk is not set -# CONFIG_PACKAGE_kmod-atm is not set -# CONFIG_PACKAGE_kmod-ax25 is not set -# CONFIG_PACKAGE_kmod-batman-adv is not set -# CONFIG_PACKAGE_kmod-bonding is not set -# CONFIG_PACKAGE_kmod-capi is not set -# CONFIG_PACKAGE_kmod-dnsresolver is not set -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-gre=y -# CONFIG_PACKAGE_kmod-gre6 is not set -# CONFIG_PACKAGE_kmod-ip-vti is not set -# CONFIG_PACKAGE_kmod-ip6-tunnel is not set -# CONFIG_PACKAGE_kmod-ip6-vti is not set -# CONFIG_PACKAGE_kmod-ipip is not set -CONFIG_PACKAGE_kmod-ipsec=y -CONFIG_PACKAGE_kmod-ipsec4=y -CONFIG_PACKAGE_kmod-ipsec6=y -CONFIG_PACKAGE_kmod-iptunnel=y -CONFIG_PACKAGE_kmod-iptunnel4=y -CONFIG_PACKAGE_kmod-iptunnel6=y -# CONFIG_PACKAGE_kmod-isdn4linux is not set -# CONFIG_PACKAGE_kmod-jool is not set -# CONFIG_PACKAGE_kmod-l2tp is not set -# CONFIG_PACKAGE_kmod-l2tp-eth is not set -# CONFIG_PACKAGE_kmod-l2tp-ip is not set -# CONFIG_PACKAGE_kmod-misdn is not set -# CONFIG_PACKAGE_kmod-mpls is not set -CONFIG_PACKAGE_kmod-ppp=y -CONFIG_PACKAGE_kmod-mppe=y -# CONFIG_PACKAGE_kmod-nat46 is not set -# CONFIG_PACKAGE_kmod-netem is not set -# CONFIG_PACKAGE_kmod-nlmon is not set -# CONFIG_PACKAGE_kmod-openvswitch is not set -# CONFIG_PACKAGE_kmod-pktgen is not set -# CONFIG_PACKAGE_kmod-ppp-synctty is not set -# CONFIG_PACKAGE_kmod-pppoa is not set -CONFIG_PACKAGE_kmod-pppoe=y -# CONFIG_PACKAGE_kmod-pppol2tp is not set -CONFIG_PACKAGE_kmod-pppox=y -# CONFIG_PACKAGE_kmod-pptp is not set -# CONFIG_PACKAGE_kmod-sched is not set -CONFIG_PACKAGE_kmod-sched-cake=y -# CONFIG_PACKAGE_kmod-sched-connmark is not set -CONFIG_PACKAGE_kmod-sched-core=y -# CONFIG_PACKAGE_kmod-sctp is not set -CONFIG_PACKAGE_kmod-shortcut-fe=y -# CONFIG_PACKAGE_kmod-shortcut-fe-cm is not set -# CONFIG_PACKAGE_kmod-sit is not set -CONFIG_PACKAGE_kmod-slhc=y -# CONFIG_PACKAGE_kmod-slip is not set -# CONFIG_PACKAGE_kmod-trelay is not set -# CONFIG_PACKAGE_kmod-tun is not set -# CONFIG_PACKAGE_kmod-veth is not set -# CONFIG_PACKAGE_kmod-vxlan is not set -# CONFIG_PACKAGE_kmod-wireguard is not set - -# -# Other modules -# -# CONFIG_PACKAGE_kmod-6lowpan is not set -# CONFIG_PACKAGE_kmod-ath3k is not set -# CONFIG_PACKAGE_kmod-bcma is not set -# CONFIG_PACKAGE_kmod-bluetooth is not set -# CONFIG_PACKAGE_kmod-bluetooth_6lowpan is not set -# CONFIG_PACKAGE_kmod-bmp085 is not set -# CONFIG_PACKAGE_kmod-bmp085-i2c is not set -# CONFIG_PACKAGE_kmod-bmp085-spi is not set -# CONFIG_PACKAGE_kmod-button-hotplug is not set -# CONFIG_PACKAGE_kmod-echo is not set -# CONFIG_PACKAGE_kmod-eeprom-93cx6 is not set -# CONFIG_PACKAGE_kmod-eeprom-at24 is not set -# CONFIG_PACKAGE_kmod-eeprom-at25 is not set -# CONFIG_PACKAGE_kmod-gpio-beeper is not set -CONFIG_PACKAGE_kmod-gpio-button-hotplug=y -# CONFIG_PACKAGE_kmod-gpio-dev is not set -# CONFIG_PACKAGE_kmod-gpio-mcp23s08 is not set -# CONFIG_PACKAGE_kmod-gpio-nxp-74hc164 is not set -# CONFIG_PACKAGE_kmod-gpio-pca953x is not set -# CONFIG_PACKAGE_kmod-gpio-pcf857x is not set -# CONFIG_PACKAGE_kmod-iio-core is not set -# CONFIG_PACKAGE_kmod-ikconfig is not set -# CONFIG_PACKAGE_kmod-lp is not set -# CONFIG_PACKAGE_kmod-mmc is not set -# CONFIG_PACKAGE_kmod-mtd-rw is not set -# CONFIG_PACKAGE_kmod-mtdtests is not set -# CONFIG_PACKAGE_kmod-pps is not set -# CONFIG_PACKAGE_kmod-pps-gpio is not set -# CONFIG_PACKAGE_kmod-pps-ldisc is not set -# CONFIG_PACKAGE_kmod-ptp is not set -# CONFIG_PACKAGE_kmod-random-core is not set -# CONFIG_PACKAGE_kmod-regmap is not set -# CONFIG_PACKAGE_kmod-rotary-gpio-custom is not set -# CONFIG_PACKAGE_kmod-rtc-ds1307 is not set -# CONFIG_PACKAGE_kmod-rtc-ds1374 is not set -# CONFIG_PACKAGE_kmod-rtc-ds1672 is not set -# CONFIG_PACKAGE_kmod-rtc-isl1208 is not set -# CONFIG_PACKAGE_kmod-rtc-pcf2123 is not set -# CONFIG_PACKAGE_kmod-rtc-pcf8563 is not set -# CONFIG_PACKAGE_kmod-rtc-pt7c4338 is not set -# CONFIG_PACKAGE_kmod-rtc-rs5c372a is not set -# CONFIG_PACKAGE_kmod-sdhci is not set -# CONFIG_PACKAGE_kmod-serial-8250 is not set -# CONFIG_PACKAGE_kmod-softdog is not set -# CONFIG_PACKAGE_kmod-ssb is not set -# CONFIG_PACKAGE_kmod-tpm is not set -# CONFIG_PACKAGE_kmod-tpm-i2c-atmel is not set -# CONFIG_PACKAGE_kmod-tpm-i2c-infineon is not set -# CONFIG_PACKAGE_kmod-w83627hf-wdt is not set -# CONFIG_PACKAGE_kmod-zram is not set - -# -# PCMCIA support -# - -# -# SPI Support -# -# CONFIG_PACKAGE_kmod-mmc-spi is not set -# CONFIG_PACKAGE_kmod-spi-bitbang is not set -# CONFIG_PACKAGE_kmod-spi-dev is not set -# CONFIG_PACKAGE_kmod-spi-gpio is not set -# CONFIG_PACKAGE_kmod-spi-gpio-custom is not set -# CONFIG_PACKAGE_kmod-spi-gpio-old is not set -# CONFIG_PACKAGE_kmod-spi-vsc7385 is not set - -# -# Sound Support -# -# CONFIG_PACKAGE_kmod-sound-core is not set - -# -# USB Support -# -# CONFIG_PACKAGE_kmod-usb-acm is not set -# CONFIG_PACKAGE_kmod-usb-atm is not set -# CONFIG_PACKAGE_kmod-usb-chipidea is not set -# CONFIG_PACKAGE_kmod-usb-cm109 is not set -CONFIG_PACKAGE_kmod-usb-core=y -# CONFIG_PACKAGE_kmod-usb-dwc2 is not set -# CONFIG_PACKAGE_kmod-usb-dwc3 is not set -# CONFIG_PACKAGE_kmod-usb-dwc3-of-simple is not set -CONFIG_PACKAGE_kmod-usb-ehci=y -# CONFIG_PACKAGE_kmod-usb-gadget-ehci-debug is not set -# CONFIG_PACKAGE_kmod-usb-gadget-eth is not set -# CONFIG_PACKAGE_kmod-usb-gadget-mass-storage is not set -# CONFIG_PACKAGE_kmod-usb-gadget-serial is not set -# CONFIG_PACKAGE_kmod-usb-hid is not set -CONFIG_PACKAGE_kmod-usb-ledtrig-usbport=y -# CONFIG_PACKAGE_kmod-usb-net is not set -# CONFIG_PACKAGE_kmod-usb-net2280 is not set -# CONFIG_PACKAGE_kmod-usb-ohci is not set -# CONFIG_PACKAGE_kmod-usb-ohci-pci is not set -# CONFIG_PACKAGE_kmod-usb-phy-qcom-ipq4019 is not set -CONFIG_PACKAGE_kmod-usb-printer=y -# CONFIG_PACKAGE_kmod-usb-serial is not set -CONFIG_PACKAGE_kmod-usb-storage=y -CONFIG_PACKAGE_kmod-usb-storage-extras=y -# CONFIG_PACKAGE_kmod-usb-uhci is not set -# CONFIG_PACKAGE_kmod-usb-wdm is not set -# CONFIG_PACKAGE_kmod-usb-yealink is not set -CONFIG_PACKAGE_kmod-usb2=y -# CONFIG_PACKAGE_kmod-usb2-pci is not set -# CONFIG_PACKAGE_kmod-usb3 is not set -# CONFIG_PACKAGE_kmod-usbip is not set -# CONFIG_PACKAGE_kmod-usbip-client is not set -# CONFIG_PACKAGE_kmod-usbip-server is not set -# CONFIG_PACKAGE_kmod-usbmon is not set - -# -# Video Support -# -# CONFIG_PACKAGE_kmod-video-core is not set - -# -# Virtualization -# - -# -# Voice over IP -# -# CONFIG_PACKAGE_kmod-dahdi is not set - -# -# W1 support -# -# CONFIG_PACKAGE_kmod-w1 is not set - -# -# WPAN 802.15.4 Support -# -# CONFIG_PACKAGE_kmod-at86rf230 is not set -# CONFIG_PACKAGE_kmod-cc2520 is not set -# CONFIG_PACKAGE_kmod-fakelb is not set -# CONFIG_PACKAGE_kmod-ieee802154 is not set -# CONFIG_PACKAGE_kmod-ieee802154_6lowpan is not set -# CONFIG_PACKAGE_kmod-mac802154 is not set -# CONFIG_PACKAGE_kmod-mrf24j40 is not set - -# -# Wireless Drivers -# -# CONFIG_PACKAGE_kmod-adm8211 is not set -CONFIG_PACKAGE_kmod-ath=y -CONFIG_ATH_USER_REGD=y -# CONFIG_PACKAGE_ATH_DEBUG is not set -CONFIG_PACKAGE_ATH_DFS=y -CONFIG_PACKAGE_kmod-ath10k=y -# CONFIG_PACKAGE_kmod-ath10k-ct is not set -# CONFIG_PACKAGE_kmod-ath5k is not set -# CONFIG_PACKAGE_kmod-ath6kl-sdio is not set -# CONFIG_PACKAGE_kmod-ath6kl-usb is not set -CONFIG_PACKAGE_kmod-ath9k=y -# CONFIG_ATH9K_SUPPORT_PCOEM is not set -# CONFIG_ATH9K_TX99 is not set -CONFIG_ATH9K_UBNTHSR=y -CONFIG_PACKAGE_kmod-ath9k-common=y -# CONFIG_PACKAGE_kmod-ath9k-htc is not set -# CONFIG_PACKAGE_kmod-b43 is not set -# CONFIG_PACKAGE_kmod-b43legacy is not set -# CONFIG_PACKAGE_kmod-brcmfmac is not set -# CONFIG_PACKAGE_kmod-brcmsmac is not set -# CONFIG_PACKAGE_kmod-brcmutil is not set -# CONFIG_PACKAGE_kmod-carl9170 is not set -CONFIG_PACKAGE_kmod-cfg80211=y -# CONFIG_PACKAGE_kmod-hermes is not set -# CONFIG_PACKAGE_kmod-hermes-pci is not set -# CONFIG_PACKAGE_kmod-hermes-plx is not set -# CONFIG_PACKAGE_kmod-iwl-legacy is not set -# CONFIG_PACKAGE_kmod-iwl3945 is not set -# CONFIG_PACKAGE_kmod-iwl4965 is not set -# CONFIG_PACKAGE_kmod-iwlwifi is not set -# CONFIG_PACKAGE_kmod-lib80211 is not set -# CONFIG_PACKAGE_kmod-libertas-sdio is not set -# CONFIG_PACKAGE_kmod-libertas-spi is not set -# CONFIG_PACKAGE_kmod-libertas-usb is not set -CONFIG_PACKAGE_kmod-mac80211=y -CONFIG_PACKAGE_MAC80211_DEBUGFS=y -# CONFIG_PACKAGE_MAC80211_TRACING is not set -CONFIG_PACKAGE_MAC80211_MESH=y -# CONFIG_PACKAGE_kmod-mac80211-hwsim is not set -# CONFIG_PACKAGE_kmod-mt76 is not set -# CONFIG_PACKAGE_kmod-mt76-core is not set -# CONFIG_PACKAGE_kmod-mt7601u is not set -# CONFIG_PACKAGE_kmod-mt7603 is not set -# CONFIG_PACKAGE_kmod-mt76x2 is not set -# CONFIG_PACKAGE_kmod-mwifiex-pcie is not set -# CONFIG_PACKAGE_kmod-mwifiex-sdio is not set -# CONFIG_PACKAGE_kmod-mwl8k is not set -# CONFIG_PACKAGE_kmod-net-prism54 is not set -# CONFIG_PACKAGE_kmod-net-rtl8192su is not set -# CONFIG_PACKAGE_kmod-owl-loader is not set -# CONFIG_PACKAGE_kmod-p54-common is not set -# CONFIG_PACKAGE_kmod-p54-pci is not set -# CONFIG_PACKAGE_kmod-p54-usb is not set -# CONFIG_PACKAGE_kmod-rt2400-pci is not set -# CONFIG_PACKAGE_kmod-rt2500-pci is not set -# CONFIG_PACKAGE_kmod-rt2500-usb is not set -# CONFIG_PACKAGE_kmod-rt2800-pci is not set -# CONFIG_PACKAGE_kmod-rt2800-usb is not set -# CONFIG_PACKAGE_kmod-rt2x00-lib is not set -# CONFIG_PACKAGE_kmod-rt61-pci is not set -# CONFIG_PACKAGE_kmod-rt73-usb is not set -# CONFIG_PACKAGE_kmod-rtl8180 is not set -# CONFIG_PACKAGE_kmod-rtl8187 is not set -# CONFIG_PACKAGE_kmod-rtl8192ce is not set -# CONFIG_PACKAGE_kmod-rtl8192cu is not set -# CONFIG_PACKAGE_kmod-rtl8192de is not set -# CONFIG_PACKAGE_kmod-rtl8192se is not set -# CONFIG_PACKAGE_kmod-rtl8821ae is not set -# CONFIG_PACKAGE_kmod-rtl8xxxu is not set -# CONFIG_PACKAGE_kmod-wl12xx is not set -# CONFIG_PACKAGE_kmod-wl18xx is not set -# CONFIG_PACKAGE_kmod-wlcore is not set -# CONFIG_PACKAGE_kmod-zd1211rw is not set - -# -# Languages -# - -# -# Erlang -# -# CONFIG_PACKAGE_erlang is not set -# CONFIG_PACKAGE_erlang-asn1 is not set -# CONFIG_PACKAGE_erlang-compiler is not set -# CONFIG_PACKAGE_erlang-crypto is not set -# CONFIG_PACKAGE_erlang-hipe is not set -# CONFIG_PACKAGE_erlang-inets is not set -# CONFIG_PACKAGE_erlang-mnesia is not set -# CONFIG_PACKAGE_erlang-runtime-tools is not set -# CONFIG_PACKAGE_erlang-snmp is not set -# CONFIG_PACKAGE_erlang-ssh is not set -# CONFIG_PACKAGE_erlang-ssl is not set -# CONFIG_PACKAGE_erlang-syntax-tools is not set - -# -# Java -# -# CONFIG_PACKAGE_jamvm is not set - -# -# Lua -# -# CONFIG_PACKAGE_dkjson is not set -# CONFIG_PACKAGE_json4lua is not set -CONFIG_PACKAGE_libiwinfo-lua=y -# CONFIG_PACKAGE_lpeg is not set -# CONFIG_PACKAGE_lsqlite3 is not set -CONFIG_PACKAGE_lua=y -# CONFIG_PACKAGE_lua-bencode is not set -# CONFIG_PACKAGE_lua-cjson is not set -# CONFIG_PACKAGE_lua-copas is not set -# CONFIG_PACKAGE_lua-coxpcall is not set -# CONFIG_PACKAGE_lua-examples is not set -# CONFIG_PACKAGE_lua-lzlib is not set -# CONFIG_PACKAGE_lua-md5 is not set -# CONFIG_PACKAGE_lua-mobdebug is not set -# CONFIG_PACKAGE_lua-mosquitto is not set -# CONFIG_PACKAGE_lua-openssl is not set -# CONFIG_PACKAGE_lua-penlight is not set -# CONFIG_PACKAGE_lua-rings is not set -# CONFIG_PACKAGE_lua-rs232 is not set -# CONFIG_PACKAGE_lua-sha2 is not set -# CONFIG_PACKAGE_lua-wsapi-base is not set -# CONFIG_PACKAGE_lua-wsapi-xavante is not set -# CONFIG_PACKAGE_lua-xavante is not set -# CONFIG_PACKAGE_luabitop is not set -# CONFIG_PACKAGE_luac is not set -# CONFIG_PACKAGE_luaexpat is not set -# CONFIG_PACKAGE_luafilesystem is not set -# CONFIG_PACKAGE_luai2c is not set -# CONFIG_PACKAGE_luajit is not set -# CONFIG_PACKAGE_lualanes is not set -# CONFIG_PACKAGE_luaposix is not set -# CONFIG_PACKAGE_luarocks is not set -# CONFIG_PACKAGE_luasec is not set -# CONFIG_PACKAGE_luasoap is not set -# CONFIG_PACKAGE_luasocket is not set -# CONFIG_PACKAGE_luasql-mysql is not set -# CONFIG_PACKAGE_luasql-pgsql is not set -# CONFIG_PACKAGE_luasql-sqlite3 is not set -CONFIG_PACKAGE_luci-lib-fs=y -# CONFIG_PACKAGE_luv is not set -# CONFIG_PACKAGE_lzmq is not set -# CONFIG_PACKAGE_uuid is not set - -# -# Node.js -# -# CONFIG_PACKAGE_node is not set - -# -# Module Selection -# -# CONFIG_NODEJS_ICU is not set -# CONFIG_PACKAGE_node-arduino-firmata is not set -# CONFIG_PACKAGE_node-cylon is not set -# CONFIG_PACKAGE_node-cylon-firmata is not set -# CONFIG_PACKAGE_node-cylon-gpio is not set -# CONFIG_PACKAGE_node-cylon-i2c is not set -# CONFIG_PACKAGE_node-hid is not set -# CONFIG_PACKAGE_node-npm is not set -# CONFIG_PACKAGE_node-serialport is not set - -# -# PHP -# -# CONFIG_PACKAGE_php7 is not set - -# -# Perl -# -# CONFIG_PACKAGE_perl is not set - -# -# Python -# -# CONFIG_PACKAGE_chardet is not set -# CONFIG_PACKAGE_django is not set -# CONFIG_PACKAGE_django-appconf is not set -# CONFIG_PACKAGE_django-compressor is not set -# CONFIG_PACKAGE_django-constance is not set -# CONFIG_PACKAGE_django-jsonfield is not set -# CONFIG_PACKAGE_django-picklefield is not set -# CONFIG_PACKAGE_django-postoffice is not set -# CONFIG_PACKAGE_django-restframework is not set -# CONFIG_PACKAGE_django-statici18n is not set -# CONFIG_PACKAGE_et_xmlfile is not set -# CONFIG_PACKAGE_flup is not set -# CONFIG_PACKAGE_gunicorn is not set -# CONFIG_PACKAGE_jdcal is not set -# CONFIG_PACKAGE_micropython is not set -# CONFIG_PACKAGE_micropython-lib is not set -# CONFIG_PACKAGE_openpyxl is not set -# CONFIG_PACKAGE_pillow is not set -# CONFIG_PACKAGE_python is not set -# CONFIG_PACKAGE_python-asn1crypto is not set -# CONFIG_PACKAGE_python-attrs is not set -# CONFIG_PACKAGE_python-base is not set -# CONFIG_PACKAGE_python-base-src is not set -# CONFIG_PACKAGE_python-cffi is not set -# CONFIG_PACKAGE_python-codecs is not set -# CONFIG_PACKAGE_python-codecs-src is not set -# CONFIG_PACKAGE_python-compiler is not set -# CONFIG_PACKAGE_python-compiler-src is not set -# CONFIG_PACKAGE_python-crcmod is not set -# CONFIG_PACKAGE_python-crypto is not set -# CONFIG_PACKAGE_python-cryptography is not set -# CONFIG_PACKAGE_python-ctypes is not set -# CONFIG_PACKAGE_python-ctypes-src is not set -# CONFIG_PACKAGE_python-curl is not set -# CONFIG_PACKAGE_python-dateutil is not set -# CONFIG_PACKAGE_python-db is not set -# CONFIG_PACKAGE_python-db-src is not set -# CONFIG_PACKAGE_python-decimal is not set -# CONFIG_PACKAGE_python-decimal-src is not set -# CONFIG_PACKAGE_python-dev is not set -# CONFIG_PACKAGE_python-dev-src is not set -# CONFIG_PACKAGE_python-distutils is not set -# CONFIG_PACKAGE_python-distutils-src is not set -# CONFIG_PACKAGE_python-dns is not set -# CONFIG_PACKAGE_python-dpkt is not set -# CONFIG_PACKAGE_python-egenix-mx-base is not set -# CONFIG_PACKAGE_python-email is not set -# CONFIG_PACKAGE_python-email-src is not set -# CONFIG_PACKAGE_python-enum34 is not set -# CONFIG_PACKAGE_python-evdev is not set -# CONFIG_PACKAGE_python-gdbm is not set -# CONFIG_PACKAGE_python-gdbm-src is not set -# CONFIG_PACKAGE_python-gmpy2 is not set -# CONFIG_PACKAGE_python-gnupg is not set -# CONFIG_PACKAGE_python-idna is not set -# CONFIG_PACKAGE_python-ipaddress is not set -# CONFIG_PACKAGE_python-ldap is not set -# CONFIG_PACKAGE_python-lib2to3 is not set -# CONFIG_PACKAGE_python-lib2to3-src is not set -# CONFIG_PACKAGE_python-light is not set -# CONFIG_PACKAGE_python-light-src is not set -# CONFIG_PACKAGE_python-logging is not set -# CONFIG_PACKAGE_python-logging-src is not set -# CONFIG_PACKAGE_python-lxml is not set -# CONFIG_PACKAGE_python-multiprocessing is not set -# CONFIG_PACKAGE_python-multiprocessing-src is not set -# CONFIG_PACKAGE_python-mysql is not set -# CONFIG_PACKAGE_python-ncurses is not set -# CONFIG_PACKAGE_python-ncurses-src is not set -# CONFIG_PACKAGE_python-openssl is not set -# CONFIG_PACKAGE_python-openssl-src is not set -# CONFIG_PACKAGE_python-parsley is not set -# CONFIG_PACKAGE_python-pcapy is not set -# CONFIG_PACKAGE_python-pip is not set -# CONFIG_PACKAGE_python-pip-conf is not set -# CONFIG_PACKAGE_python-pip-src is not set -# CONFIG_PACKAGE_python-ply is not set -# CONFIG_PACKAGE_python-psycopg2 is not set -# CONFIG_PACKAGE_python-pyasn1 is not set -# CONFIG_PACKAGE_python-pyasn1-modules is not set -# CONFIG_PACKAGE_python-pycparser is not set -# CONFIG_PACKAGE_python-pydoc is not set -# CONFIG_PACKAGE_python-pydoc-src is not set -# CONFIG_PACKAGE_python-pyodbc is not set -# CONFIG_PACKAGE_python-pyopenssl is not set -# CONFIG_PACKAGE_python-pyptlib is not set -# CONFIG_PACKAGE_python-pyserial is not set -# CONFIG_PACKAGE_python-service-identity is not set -# CONFIG_PACKAGE_python-setuptools is not set -# CONFIG_PACKAGE_python-setuptools-src is not set -# CONFIG_PACKAGE_python-six is not set -# CONFIG_PACKAGE_python-smbus is not set -# CONFIG_PACKAGE_python-sqlite3 is not set -# CONFIG_PACKAGE_python-sqlite3-src is not set -# CONFIG_PACKAGE_python-src is not set -# CONFIG_PACKAGE_python-txsocksx is not set -# CONFIG_PACKAGE_python-unittest is not set -# CONFIG_PACKAGE_python-unittest-src is not set -# CONFIG_PACKAGE_python-urllib3 is not set -# CONFIG_PACKAGE_python-xml is not set -# CONFIG_PACKAGE_python-xml-src is not set -# CONFIG_PACKAGE_python-yaml is not set -# CONFIG_PACKAGE_python3 is not set -# CONFIG_PACKAGE_python3-asn1crypto is not set -# CONFIG_PACKAGE_python3-asyncio is not set -# CONFIG_PACKAGE_python3-asyncio-src is not set -# CONFIG_PACKAGE_python3-base is not set -# CONFIG_PACKAGE_python3-base-src is not set -# CONFIG_PACKAGE_python3-bottle is not set -# CONFIG_PACKAGE_python3-cffi is not set -# CONFIG_PACKAGE_python3-click is not set -# CONFIG_PACKAGE_python3-codecs is not set -# CONFIG_PACKAGE_python3-codecs-src is not set -# CONFIG_PACKAGE_python3-cryptography is not set -# CONFIG_PACKAGE_python3-ctypes is not set -# CONFIG_PACKAGE_python3-ctypes-src is not set -# CONFIG_PACKAGE_python3-dbm is not set -# CONFIG_PACKAGE_python3-dbm-src is not set -# CONFIG_PACKAGE_python3-decimal is not set -# CONFIG_PACKAGE_python3-decimal-src is not set -# CONFIG_PACKAGE_python3-dev is not set -# CONFIG_PACKAGE_python3-dev-src is not set -# CONFIG_PACKAGE_python3-distutils is not set -# CONFIG_PACKAGE_python3-distutils-src is not set -# CONFIG_PACKAGE_python3-email is not set -# CONFIG_PACKAGE_python3-email-src is not set -# CONFIG_PACKAGE_python3-evdev is not set -# CONFIG_PACKAGE_python3-flask is not set -# CONFIG_PACKAGE_python3-gdbm is not set -# CONFIG_PACKAGE_python3-gdbm-src is not set -# CONFIG_PACKAGE_python3-gnupg is not set -# CONFIG_PACKAGE_python3-idna is not set -# CONFIG_PACKAGE_python3-itsdangerous is not set -# CONFIG_PACKAGE_python3-jinja2 is not set -# CONFIG_PACKAGE_python3-lib2to3 is not set -# CONFIG_PACKAGE_python3-lib2to3-src is not set -# CONFIG_PACKAGE_python3-light is not set -# CONFIG_PACKAGE_python3-light-src is not set -# CONFIG_PACKAGE_python3-logging is not set -# CONFIG_PACKAGE_python3-logging-src is not set -# CONFIG_PACKAGE_python3-lxml is not set -# CONFIG_PACKAGE_python3-lzma is not set -# CONFIG_PACKAGE_python3-lzma-src is not set -# CONFIG_PACKAGE_python3-markupsafe is not set -# CONFIG_PACKAGE_python3-multiprocessing is not set -# CONFIG_PACKAGE_python3-multiprocessing-src is not set -# CONFIG_PACKAGE_python3-ncurses is not set -# CONFIG_PACKAGE_python3-ncurses-src is not set -# CONFIG_PACKAGE_python3-openssl is not set -# CONFIG_PACKAGE_python3-openssl-src is not set -# CONFIG_PACKAGE_python3-pip is not set -# CONFIG_PACKAGE_python3-pip-src is not set -# CONFIG_PACKAGE_python3-ply is not set -# CONFIG_PACKAGE_python3-pyasn1 is not set -# CONFIG_PACKAGE_python3-pyasn1-modules is not set -# CONFIG_PACKAGE_python3-pycparser is not set -# CONFIG_PACKAGE_python3-pydoc is not set -# CONFIG_PACKAGE_python3-pydoc-src is not set -# CONFIG_PACKAGE_python3-pyodbc is not set -# CONFIG_PACKAGE_python3-pyopenssl is not set -# CONFIG_PACKAGE_python3-setuptools is not set -# CONFIG_PACKAGE_python3-setuptools-src is not set -# CONFIG_PACKAGE_python3-six is not set -# CONFIG_PACKAGE_python3-smbus is not set -# CONFIG_PACKAGE_python3-sqlite3 is not set -# CONFIG_PACKAGE_python3-sqlite3-src is not set -# CONFIG_PACKAGE_python3-src is not set -# CONFIG_PACKAGE_python3-unittest is not set -# CONFIG_PACKAGE_python3-unittest-src is not set -# CONFIG_PACKAGE_python3-werkzeug is not set -# CONFIG_PACKAGE_python3-xml is not set -# CONFIG_PACKAGE_python3-xml-src is not set -# CONFIG_PACKAGE_python3-yaml is not set -# CONFIG_PACKAGE_pytz is not set -# CONFIG_PACKAGE_rcssmin is not set -# CONFIG_PACKAGE_simplejson is not set -# CONFIG_PACKAGE_twisted is not set -# CONFIG_PACKAGE_zope-interface is not set - -# -# Ruby -# -# CONFIG_PACKAGE_ruby is not set - -# -# Tcl -# -# CONFIG_PACKAGE_vala is not set - -# -# Libraries -# - -# -# Compression -# -# CONFIG_PACKAGE_libbz2 is not set -# CONFIG_PACKAGE_liblzma is not set -# CONFIG_PACKAGE_libunrar is not set - -# -# Filesystem -# -# CONFIG_PACKAGE_libacl is not set -# CONFIG_PACKAGE_libattr is not set -# CONFIG_PACKAGE_libext2fs is not set -# CONFIG_PACKAGE_libfuse is not set -# CONFIG_PACKAGE_libow is not set -# CONFIG_PACKAGE_libow-capi is not set -# CONFIG_PACKAGE_libsysfs is not set - -# -# Firewall -# -# CONFIG_PACKAGE_libfko is not set -CONFIG_PACKAGE_libip4tc=y -CONFIG_PACKAGE_libip6tc=y -# CONFIG_PACKAGE_libiptc is not set -CONFIG_PACKAGE_libxtables=y - -# -# Instant Messaging -# -# CONFIG_PACKAGE_quasselc is not set - -# -# IoT -# -# CONFIG_PACKAGE_libupm is not set -# CONFIG_PACKAGE_libupm-a110x is not set -# CONFIG_PACKAGE_libupm-ad8232 is not set -# CONFIG_PACKAGE_libupm-adafruitss is not set -# CONFIG_PACKAGE_libupm-adc121c021 is not set -# CONFIG_PACKAGE_libupm-adis16448 is not set -# CONFIG_PACKAGE_libupm-adxl335 is not set -# CONFIG_PACKAGE_libupm-adxl345 is not set -# CONFIG_PACKAGE_libupm-am2315 is not set -# CONFIG_PACKAGE_libupm-apds9002 is not set -# CONFIG_PACKAGE_libupm-at42qt1070 is not set -# CONFIG_PACKAGE_libupm-biss0001 is not set -# CONFIG_PACKAGE_libupm-bmpx8x is not set -# CONFIG_PACKAGE_libupm-buzzer is not set -# CONFIG_PACKAGE_libupm-cjq4435 is not set -# CONFIG_PACKAGE_libupm-ds1307 is not set -# CONFIG_PACKAGE_libupm-ecs1030 is not set -# CONFIG_PACKAGE_libupm-enc03r is not set -# CONFIG_PACKAGE_libupm-flex is not set -# CONFIG_PACKAGE_libupm-gas is not set -# CONFIG_PACKAGE_libupm-gp2y0a is not set -# CONFIG_PACKAGE_libupm-grove is not set -# CONFIG_PACKAGE_libupm-grovecircularled is not set -# CONFIG_PACKAGE_libupm-grovecollision is not set -# CONFIG_PACKAGE_libupm-groveehr is not set -# CONFIG_PACKAGE_libupm-groveeldriver is not set -# CONFIG_PACKAGE_libupm-groveelectromagnet is not set -# CONFIG_PACKAGE_libupm-groveemg is not set -# CONFIG_PACKAGE_libupm-grovegprs is not set -# CONFIG_PACKAGE_libupm-grovegsr is not set -# CONFIG_PACKAGE_libupm-grovelinefinder is not set -# CONFIG_PACKAGE_libupm-grovemd is not set -# CONFIG_PACKAGE_libupm-grovemoisture is not set -# CONFIG_PACKAGE_libupm-groveo2 is not set -# CONFIG_PACKAGE_libupm-grovescam is not set -# CONFIG_PACKAGE_libupm-grovespeaker is not set -# CONFIG_PACKAGE_libupm-grovevdiv is not set -# CONFIG_PACKAGE_libupm-grovewater is not set -# CONFIG_PACKAGE_libupm-grovewfs is not set -# CONFIG_PACKAGE_libupm-guvas12d is not set -# CONFIG_PACKAGE_libupm-h3lis331dl is not set -# CONFIG_PACKAGE_libupm-hcsr04 is not set -# CONFIG_PACKAGE_libupm-hm11 is not set -# CONFIG_PACKAGE_libupm-hmc5883l is not set -# CONFIG_PACKAGE_libupm-hmtrp is not set -# CONFIG_PACKAGE_libupm-hp20x is not set -# CONFIG_PACKAGE_libupm-ht9170 is not set -# CONFIG_PACKAGE_libupm-htu21d is not set -# CONFIG_PACKAGE_libupm-hx711 is not set -# CONFIG_PACKAGE_libupm-i2clcd is not set -# CONFIG_PACKAGE_libupm-ina132 is not set -# CONFIG_PACKAGE_libupm-isd1820 is not set -# CONFIG_PACKAGE_libupm-itg3200 is not set -# CONFIG_PACKAGE_libupm-joystick12 is not set -# CONFIG_PACKAGE_libupm-l298 is not set -# CONFIG_PACKAGE_libupm-ldt0028 is not set -# CONFIG_PACKAGE_libupm-lm35 is not set -# CONFIG_PACKAGE_libupm-lol is not set -# CONFIG_PACKAGE_libupm-loudness is not set -# CONFIG_PACKAGE_libupm-lpd8806 is not set -# CONFIG_PACKAGE_libupm-lsm303 is not set -# CONFIG_PACKAGE_libupm-lsm9ds0 is not set -# CONFIG_PACKAGE_libupm-m24lr64e is not set -# CONFIG_PACKAGE_libupm-max31723 is not set -# CONFIG_PACKAGE_libupm-max31855 is not set -# CONFIG_PACKAGE_libupm-max44000 is not set -# CONFIG_PACKAGE_libupm-max5487 is not set -# CONFIG_PACKAGE_libupm-maxds3231m is not set -# CONFIG_PACKAGE_libupm-maxsonarez is not set -# CONFIG_PACKAGE_libupm-mg811 is not set -# CONFIG_PACKAGE_libupm-mhz16 is not set -# CONFIG_PACKAGE_libupm-mic is not set -# CONFIG_PACKAGE_libupm-mlx90614 is not set -# CONFIG_PACKAGE_libupm-mma7455 is not set -# CONFIG_PACKAGE_libupm-mma7660 is not set -# CONFIG_PACKAGE_libupm-mpl3115a2 is not set -# CONFIG_PACKAGE_libupm-mpr121 is not set -# CONFIG_PACKAGE_libupm-mpu9150 is not set -# CONFIG_PACKAGE_libupm-mq303a is not set -# CONFIG_PACKAGE_libupm-my9221 is not set -# CONFIG_PACKAGE_libupm-nrf24l01 is not set -# CONFIG_PACKAGE_libupm-nrf8001 is not set -# CONFIG_PACKAGE_libupm-nunchuck is not set -# CONFIG_PACKAGE_libupm-otp538u is not set -# CONFIG_PACKAGE_libupm-pn532 is not set -# CONFIG_PACKAGE_libupm-ppd42ns is not set -# CONFIG_PACKAGE_libupm-pulsensor is not set -# CONFIG_PACKAGE_libupm-rfr359f is not set -# CONFIG_PACKAGE_libupm-rgbringcoder is not set -# CONFIG_PACKAGE_libupm-rotaryencoder is not set -# CONFIG_PACKAGE_libupm-rpr220 is not set -# CONFIG_PACKAGE_libupm-servo is not set -# CONFIG_PACKAGE_libupm-si114x is not set -# CONFIG_PACKAGE_libupm-sm130 is not set -# CONFIG_PACKAGE_libupm-st7735 is not set -# CONFIG_PACKAGE_libupm-stepmotor is not set -# CONFIG_PACKAGE_libupm-sx6119 is not set -# CONFIG_PACKAGE_libupm-ta12200 is not set -# CONFIG_PACKAGE_libupm-tcs3414cs is not set -# CONFIG_PACKAGE_libupm-th02 is not set -# CONFIG_PACKAGE_libupm-tm1637 is not set -# CONFIG_PACKAGE_libupm-tsl2561 is not set -# CONFIG_PACKAGE_libupm-ttp223 is not set -# CONFIG_PACKAGE_libupm-ublox6 is not set -# CONFIG_PACKAGE_libupm-uln200xa is not set -# CONFIG_PACKAGE_libupm-waterlevel is not set -# CONFIG_PACKAGE_libupm-wheelencoder is not set -# CONFIG_PACKAGE_libupm-wt5001 is not set -# CONFIG_PACKAGE_libupm-yg1006 is not set -# CONFIG_PACKAGE_libupm-zfm20 is not set - -# -# Languages -# -# CONFIG_PACKAGE_libyaml is not set - -# -# Networking -# -# CONFIG_PACKAGE_libsctp is not set - -# -# SSL -# -# CONFIG_PACKAGE_libcyassl is not set -# CONFIG_PACKAGE_libgnutls is not set -# CONFIG_PACKAGE_libmbedtls is not set -CONFIG_PACKAGE_libopenssl=y -CONFIG_OPENSSL_WITH_EC=y -# CONFIG_OPENSSL_WITH_EC2M is not set -# CONFIG_OPENSSL_WITH_SSL3 is not set -CONFIG_OPENSSL_WITH_DEPRECATED=y -# CONFIG_OPENSSL_WITH_DTLS is not set -# CONFIG_OPENSSL_WITH_COMPRESSION is not set -CONFIG_OPENSSL_WITH_NPN=y -CONFIG_OPENSSL_WITH_PSK=y -CONFIG_OPENSSL_WITH_SRP=y -CONFIG_OPENSSL_THREADS=y -# CONFIG_OPENSSL_HARDWARE_SUPPORT is not set -# CONFIG_OPENSSL_ENGINE_CRYPTO is not set - -# -# Sound -# -# CONFIG_PACKAGE_liblo is not set - -# -# Telephony -# -# CONFIG_PACKAGE_bcg729 is not set -# CONFIG_PACKAGE_dahdi-tools-libtonezone is not set -# CONFIG_PACKAGE_libiksemel is not set -# CONFIG_PACKAGE_libortp is not set -# CONFIG_PACKAGE_libosip2 is not set -# CONFIG_PACKAGE_libpj is not set -# CONFIG_PACKAGE_libpjlib-util is not set -# CONFIG_PACKAGE_libpjmedia is not set -# CONFIG_PACKAGE_libpjnath is not set -# CONFIG_PACKAGE_libpjsip is not set -# CONFIG_PACKAGE_libpjsip-simple is not set -# CONFIG_PACKAGE_libpjsip-ua is not set -# CONFIG_PACKAGE_libpjsua is not set -# CONFIG_PACKAGE_libpjsua2 is not set -# CONFIG_PACKAGE_libre is not set -# CONFIG_PACKAGE_librem is not set -# CONFIG_PACKAGE_libspandsp is not set -# CONFIG_PACKAGE_libsrtp is not set -# CONFIG_PACKAGE_libsrtp2 is not set - -# -# database -# -# CONFIG_PACKAGE_libpq is not set -# CONFIG_PACKAGE_libsqlite3 is not set -# CONFIG_PACKAGE_pgsqlodbc is not set -# CONFIG_PACKAGE_psqlodbca is not set -# CONFIG_PACKAGE_psqlodbcw is not set -# CONFIG_PACKAGE_tdb is not set -# CONFIG_PACKAGE_unixodbc is not set - -# -# libelektra -# -# CONFIG_PACKAGE_libelektra-boost is not set -# CONFIG_PACKAGE_libelektra-core is not set -# CONFIG_PACKAGE_libelektra-cpp is not set -# CONFIG_PACKAGE_libelektra-crypto is not set -# CONFIG_PACKAGE_libelektra-curlget is not set -# CONFIG_PACKAGE_libelektra-dbus is not set -# CONFIG_PACKAGE_libelektra-extra is not set -# CONFIG_PACKAGE_libelektra-lua is not set -# CONFIG_PACKAGE_libelektra-plugins is not set -# CONFIG_PACKAGE_libelektra-python2 is not set -# CONFIG_PACKAGE_libelektra-python3 is not set -# CONFIG_PACKAGE_libelektra-resolvers is not set -# CONFIG_PACKAGE_libelektra-xml is not set -# CONFIG_PACKAGE_libelektra-yajl is not set -# CONFIG_PACKAGE_alsa-lib is not set -# CONFIG_PACKAGE_argp-standalone is not set -# CONFIG_PACKAGE_avro-c is not set -# CONFIG_PACKAGE_bind-libs is not set -# CONFIG_PACKAGE_bluez-libs is not set -# CONFIG_PACKAGE_boost is not set -# CONFIG_PACKAGE_ccid is not set -# CONFIG_PACKAGE_check is not set -# CONFIG_PACKAGE_classpath is not set -# CONFIG_PACKAGE_classpath-tools is not set -# CONFIG_PACKAGE_confuse is not set -# CONFIG_PACKAGE_dtndht is not set -# CONFIG_PACKAGE_fcgi is not set -# CONFIG_PACKAGE_fftw3 is not set -# CONFIG_PACKAGE_fftw3f is not set -# CONFIG_PACKAGE_giflib is not set -# CONFIG_PACKAGE_glib2 is not set -# CONFIG_PACKAGE_glog is not set -# CONFIG_PACKAGE_hidapi is not set -# CONFIG_PACKAGE_ibrcommon is not set -# CONFIG_PACKAGE_ibrdtn is not set -# CONFIG_PACKAGE_icu is not set -# CONFIG_PACKAGE_jansson is not set -# CONFIG_PACKAGE_knot-libdnssec is not set -# CONFIG_PACKAGE_knot-libknot is not set -# CONFIG_PACKAGE_knot-libzscanner is not set -# CONFIG_PACKAGE_libaio is not set -# CONFIG_PACKAGE_libantlr3c is not set -# CONFIG_PACKAGE_libao is not set -# CONFIG_PACKAGE_libapr is not set -# CONFIG_PACKAGE_libaprutil is not set -# CONFIG_PACKAGE_libarchive is not set -# CONFIG_PACKAGE_libarchive-noopenssl is not set -# CONFIG_PACKAGE_libartnet is not set -# CONFIG_PACKAGE_libaudiofile is not set -# CONFIG_PACKAGE_libavahi-client is not set -# CONFIG_PACKAGE_libavahi-compat-libdnssd is not set -# CONFIG_PACKAGE_libavahi-dbus-support is not set -# CONFIG_PACKAGE_libavahi-nodbus-support is not set -# CONFIG_PACKAGE_libavl is not set -# CONFIG_PACKAGE_libbfd is not set -# CONFIG_PACKAGE_libblkid is not set -CONFIG_PACKAGE_libblobmsg-json=y -# CONFIG_PACKAGE_libcanfestival is not set -# CONFIG_PACKAGE_libcap is not set -# CONFIG_PACKAGE_libcares is not set -# CONFIG_PACKAGE_libcharset is not set -# CONFIG_PACKAGE_libcoap is not set -# CONFIG_PACKAGE_libconfig is not set -# CONFIG_PACKAGE_libcryptopp is not set -# CONFIG_PACKAGE_libcurl is not set -# CONFIG_PACKAGE_libdaemon is not set -# CONFIG_PACKAGE_libdaq is not set -# CONFIG_PACKAGE_libdb47 is not set -# CONFIG_PACKAGE_libdb47xx is not set -# CONFIG_PACKAGE_libdbi is not set -# CONFIG_PACKAGE_libdbus is not set -# CONFIG_PACKAGE_libdevmapper is not set -# CONFIG_PACKAGE_libdmapsharing is not set -# CONFIG_PACKAGE_libdnet is not set -# CONFIG_PACKAGE_libdouble-conversion is not set -# CONFIG_PACKAGE_libdrm is not set -# CONFIG_PACKAGE_libedit is not set -# CONFIG_PACKAGE_libelf1 is not set -# CONFIG_PACKAGE_libecdsautil is not set -# CONFIG_PACKAGE_libesmtp is not set -# CONFIG_PACKAGE_libestr is not set -# CONFIG_PACKAGE_libev is not set -# CONFIG_PACKAGE_libevdev is not set -# CONFIG_PACKAGE_libevent is not set -# CONFIG_PACKAGE_libevent2 is not set -# CONFIG_PACKAGE_libevent2-core is not set -# CONFIG_PACKAGE_libevent2-extra is not set -# CONFIG_PACKAGE_libevent2-openssl is not set -# CONFIG_PACKAGE_libevent2-pthreads is not set -# CONFIG_PACKAGE_libeventlog is not set -# CONFIG_PACKAGE_libevhtp is not set -# CONFIG_PACKAGE_libexif is not set -# CONFIG_PACKAGE_libexpat is not set -# CONFIG_PACKAGE_libexslt is not set -# CONFIG_PACKAGE_libextractor is not set -# CONFIG_PACKAGE_libf2fs is not set -# CONFIG_PACKAGE_libfaad2 is not set -# CONFIG_PACKAGE_libfastjson is not set -# CONFIG_PACKAGE_libfdisk is not set -# CONFIG_PACKAGE_libfdt is not set -# CONFIG_PACKAGE_libffi is not set -# CONFIG_PACKAGE_libffmpeg-audio-dec is not set -# CONFIG_PACKAGE_libffmpeg-custom is not set -# CONFIG_PACKAGE_libffmpeg-full is not set -# CONFIG_PACKAGE_libffmpeg-mini is not set -# CONFIG_PACKAGE_libflac is not set -# CONFIG_PACKAGE_libfreetype is not set -# CONFIG_PACKAGE_libftdi is not set -# CONFIG_PACKAGE_libftdi1 is not set -# CONFIG_PACKAGE_libgcrypt is not set -# CONFIG_PACKAGE_libgd is not set -# CONFIG_PACKAGE_libgdbm is not set -# CONFIG_PACKAGE_libgee is not set -# CONFIG_PACKAGE_libglpk is not set -CONFIG_PACKAGE_libgmp=y -# CONFIG_PACKAGE_libgnurl is not set -# CONFIG_PACKAGE_libgpg-error is not set -# CONFIG_PACKAGE_libgphoto2 is not set -# CONFIG_PACKAGE_libgps is not set -# CONFIG_PACKAGE_libhamlib is not set -# CONFIG_PACKAGE_libhavege is not set -# CONFIG_PACKAGE_libhiredis is not set -# CONFIG_PACKAGE_libhttp-parser is not set -# CONFIG_PACKAGE_libical is not set -# CONFIG_PACKAGE_libiconv is not set -# CONFIG_PACKAGE_libiconv-full is not set -# CONFIG_PACKAGE_libid3tag is not set -# CONFIG_PACKAGE_libidn is not set -# CONFIG_PACKAGE_libiio is not set -# CONFIG_PACKAGE_libimobiledevice is not set -# CONFIG_PACKAGE_libinput is not set -# CONFIG_PACKAGE_libintl is not set -# CONFIG_PACKAGE_libintl-full is not set -# CONFIG_PACKAGE_libiw is not set -CONFIG_PACKAGE_libiwinfo=y -# CONFIG_PACKAGE_libjpeg is not set -CONFIG_PACKAGE_libjson-c=y -# CONFIG_PACKAGE_libkmod is not set -# CONFIG_PACKAGE_libldns is not set -# CONFIG_PACKAGE_libltdl is not set -CONFIG_PACKAGE_liblua=y -# CONFIG_PACKAGE_liblz4 is not set -# CONFIG_PACKAGE_liblzo is not set -# CONFIG_PACKAGE_libmad is not set -# CONFIG_PACKAGE_libmagic is not set -# CONFIG_PACKAGE_libmcrypt is not set -# CONFIG_PACKAGE_libmicrohttpd is not set -# CONFIG_PACKAGE_libmicrohttpd-no-ssl is not set -# CONFIG_PACKAGE_libminiupnpc is not set -# CONFIG_PACKAGE_libmms is not set -CONFIG_PACKAGE_libmnl=y -# CONFIG_PACKAGE_libmodbus is not set -# CONFIG_PACKAGE_libmosquitto-nossl is not set -# CONFIG_PACKAGE_libmosquitto-ssl is not set -# CONFIG_PACKAGE_libmosquittopp is not set -# CONFIG_PACKAGE_libmount is not set -# CONFIG_PACKAGE_libmpdclient is not set -# CONFIG_PACKAGE_libmpeg2 is not set -# CONFIG_PACKAGE_libmpg123 is not set -# CONFIG_PACKAGE_libmraa is not set -# CONFIG_PACKAGE_libmysqlclient is not set -# CONFIG_PACKAGE_libmysqlclient-r is not set -# CONFIG_PACKAGE_libnatpmp is not set -# CONFIG_PACKAGE_libncurses is not set -# CONFIG_PACKAGE_libndpi is not set -# CONFIG_PACKAGE_libneon is not set -# CONFIG_PACKAGE_libnet-1.2.x is not set -# CONFIG_PACKAGE_libnetconf2 is not set -# CONFIG_PACKAGE_libnetfilter-acct is not set -# CONFIG_PACKAGE_libnetfilter-conntrack is not set -# CONFIG_PACKAGE_libnetfilter-cthelper is not set -# CONFIG_PACKAGE_libnetfilter-cttimeout is not set -# CONFIG_PACKAGE_libnetfilter-log is not set -# CONFIG_PACKAGE_libnetfilter-queue is not set -# CONFIG_PACKAGE_libnetsnmp is not set -# CONFIG_PACKAGE_libnettle is not set -# CONFIG_PACKAGE_libnfnetlink is not set -# CONFIG_PACKAGE_libnftnl is not set -# CONFIG_PACKAGE_libnl is not set -# CONFIG_PACKAGE_libnl-core is not set -# CONFIG_PACKAGE_libnl-genl is not set -# CONFIG_PACKAGE_libnl-nf is not set -# CONFIG_PACKAGE_libnl-route is not set -CONFIG_PACKAGE_libnl-tiny=y -# CONFIG_PACKAGE_libnopoll is not set -# CONFIG_PACKAGE_libogg is not set -# CONFIG_PACKAGE_liboil is not set -# CONFIG_PACKAGE_libopcodes is not set -# CONFIG_PACKAGE_libopenldap is not set -# CONFIG_PACKAGE_libopenobex is not set -# CONFIG_PACKAGE_libopensc is not set -# CONFIG_PACKAGE_libopenzwave is not set -# CONFIG_PACKAGE_liboping is not set -# CONFIG_PACKAGE_libopus is not set -# CONFIG_PACKAGE_libout123 is not set -# CONFIG_PACKAGE_libowfat is not set -# CONFIG_PACKAGE_libp11 is not set -# CONFIG_PACKAGE_libpam is not set -# CONFIG_PACKAGE_libpcap is not set -CONFIG_PACKAGE_libpcre=y -# CONFIG_PACKAGE_libpcre16 is not set -# CONFIG_PACKAGE_libpcre2 is not set -# CONFIG_PACKAGE_libpcre2-16 is not set -# CONFIG_PACKAGE_libpcre2-32 is not set -# CONFIG_PACKAGE_libpcrecpp is not set -# CONFIG_PACKAGE_libpcsclite is not set -# CONFIG_PACKAGE_libpkcs11-spy is not set -# CONFIG_PACKAGE_libplist is not set -# CONFIG_PACKAGE_libplistcxx is not set -# CONFIG_PACKAGE_libpng is not set -# CONFIG_PACKAGE_libpopt is not set -# CONFIG_PACKAGE_libpri is not set -# CONFIG_PACKAGE_libprotobuf-c is not set -# CONFIG_PACKAGE_libqrencode is not set -# CONFIG_PACKAGE_libradcli is not set -# CONFIG_PACKAGE_libreadline is not set -# CONFIG_PACKAGE_libredblack is not set -# CONFIG_PACKAGE_libroxml is not set -# CONFIG_PACKAGE_librpc is not set -# CONFIG_PACKAGE_librrd1 is not set -# CONFIG_PACKAGE_librtlsdr is not set -# CONFIG_PACKAGE_libruby is not set -# CONFIG_PACKAGE_libsamplerate is not set -# CONFIG_PACKAGE_libsane is not set -# CONFIG_PACKAGE_libsasl2 is not set -# CONFIG_PACKAGE_libsearpc is not set -# CONFIG_PACKAGE_libseccomp is not set -# CONFIG_PACKAGE_libsensors is not set -# CONFIG_PACKAGE_libshout is not set -# CONFIG_PACKAGE_libshout-full is not set -# CONFIG_PACKAGE_libshout-nossl is not set -# CONFIG_PACKAGE_libsigcxx is not set -# CONFIG_PACKAGE_libsmartcols is not set -# CONFIG_PACKAGE_libsndfile is not set -# CONFIG_PACKAGE_libsoc is not set -# CONFIG_PACKAGE_libsocks is not set -# CONFIG_PACKAGE_libsodium is not set -# CONFIG_PACKAGE_libsoup is not set -# CONFIG_PACKAGE_libsoxr is not set -# CONFIG_PACKAGE_libspeex is not set -# CONFIG_PACKAGE_libspeexdsp is not set -# CONFIG_PACKAGE_libssh is not set -# CONFIG_PACKAGE_libssh2 is not set -# CONFIG_PACKAGE_libstoken is not set -# CONFIG_PACKAGE_libstrophe is not set -# CONFIG_PACKAGE_libtalloc is not set -# CONFIG_PACKAGE_libtasn1 is not set -# CONFIG_PACKAGE_libtheora is not set -# CONFIG_PACKAGE_libtiff is not set -# CONFIG_PACKAGE_libtiffxx is not set -# CONFIG_PACKAGE_libtins is not set -# CONFIG_PACKAGE_libtorrent is not set -CONFIG_PACKAGE_libubox=y -# CONFIG_PACKAGE_libubox-lua is not set -CONFIG_PACKAGE_libubus=y -CONFIG_PACKAGE_libubus-lua=y -CONFIG_PACKAGE_libuci=y -CONFIG_PACKAGE_libuci-lua=y -CONFIG_PACKAGE_libuclient=y -# CONFIG_PACKAGE_libudev-fbsd is not set -# CONFIG_PACKAGE_libudns is not set -# CONFIG_PACKAGE_libuecc is not set -# CONFIG_PACKAGE_libugpio is not set -# CONFIG_PACKAGE_libunbound is not set -# CONFIG_PACKAGE_libunistring is not set -# CONFIG_PACKAGE_libunwind is not set -# CONFIG_PACKAGE_libupnp is not set -# CONFIG_PACKAGE_libupnpp is not set -# CONFIG_PACKAGE_liburcu is not set -# CONFIG_PACKAGE_libusb-1.0 is not set -# CONFIG_PACKAGE_libusb-compat is not set -# CONFIG_PACKAGE_libusbmuxd is not set -# CONFIG_PACKAGE_libustream-cyassl is not set -# CONFIG_PACKAGE_libustream-mbedtls is not set -# CONFIG_PACKAGE_libustream-openssl is not set -CONFIG_PACKAGE_libuuid=y -# CONFIG_PACKAGE_libuv is not set -# CONFIG_PACKAGE_libuvc is not set -# CONFIG_PACKAGE_libv4l is not set -# CONFIG_PACKAGE_libvorbis is not set -# CONFIG_PACKAGE_libvorbisidec is not set -# CONFIG_PACKAGE_libvpx is not set -# CONFIG_PACKAGE_libwebcam is not set -# CONFIG_PACKAGE_libwebsockets-full is not set -# CONFIG_PACKAGE_libwebsockets-openssl is not set -# CONFIG_PACKAGE_libwebsockets-wolfssl is not set -# CONFIG_PACKAGE_libwrap is not set -# CONFIG_PACKAGE_libwxbase is not set -# CONFIG_PACKAGE_libx264 is not set -# CONFIG_PACKAGE_libxerces-c is not set -# CONFIG_PACKAGE_libxerces-c-samples is not set -# CONFIG_PACKAGE_libxml2 is not set -# CONFIG_PACKAGE_libxslt is not set -# CONFIG_PACKAGE_libyang is not set -# CONFIG_PACKAGE_libzdb is not set -# CONFIG_PACKAGE_libzmq-curve is not set -# CONFIG_PACKAGE_libzmq-nc is not set -# CONFIG_PACKAGE_linux-atm is not set -# CONFIG_PACKAGE_loudmouth is not set -# CONFIG_PACKAGE_lttng-ust is not set -# CONFIG_PACKAGE_mtdev is not set -# CONFIG_PACKAGE_musl-fts is not set -# CONFIG_PACKAGE_mxml is not set -# CONFIG_PACKAGE_nacl is not set -# CONFIG_PACKAGE_opencv is not set -# CONFIG_PACKAGE_p11-kit is not set -# CONFIG_PACKAGE_poco is not set -# CONFIG_PACKAGE_protobuf is not set -# CONFIG_PACKAGE_pthsem is not set -CONFIG_PACKAGE_rpcd-mod-rrdns=y -# CONFIG_PACKAGE_rxtx is not set -# CONFIG_PACKAGE_sbc is not set -# CONFIG_PACKAGE_terminfo is not set -# CONFIG_PACKAGE_tinycdb is not set -# CONFIG_PACKAGE_uclibcxx is not set -# CONFIG_PACKAGE_xmlrpc-c is not set -# CONFIG_PACKAGE_xmlrpc-c-client is not set -# CONFIG_PACKAGE_xmlrpc-c-server is not set -# CONFIG_PACKAGE_yajl is not set -CONFIG_PACKAGE_zlib=y - -# -# LuCI -# - -# -# 1. Collections -# -CONFIG_PACKAGE_luci=y -# CONFIG_PACKAGE_luci-ssl is not set -# CONFIG_PACKAGE_luci-ssl-openssl is not set - -# -# 2. Modules -# -CONFIG_PACKAGE_luci-base=y -# CONFIG_LUCI_SRCDIET is not set - -# -# Translations -# -# CONFIG_LUCI_LANG_ca is not set -# CONFIG_LUCI_LANG_cs is not set -# CONFIG_LUCI_LANG_de is not set -# CONFIG_LUCI_LANG_el is not set -# CONFIG_LUCI_LANG_en is not set -# CONFIG_LUCI_LANG_es is not set -# CONFIG_LUCI_LANG_fr is not set -# CONFIG_LUCI_LANG_he is not set -# CONFIG_LUCI_LANG_hu is not set -# CONFIG_LUCI_LANG_it is not set -# CONFIG_LUCI_LANG_ja is not set -# CONFIG_LUCI_LANG_ko is not set -# CONFIG_LUCI_LANG_ms is not set -# CONFIG_LUCI_LANG_no is not set -# CONFIG_LUCI_LANG_pl is not set -# CONFIG_LUCI_LANG_pt is not set -# CONFIG_LUCI_LANG_pt-br is not set -# CONFIG_LUCI_LANG_ro is not set -# CONFIG_LUCI_LANG_ru is not set -# CONFIG_LUCI_LANG_sk is not set -# CONFIG_LUCI_LANG_sv is not set -# CONFIG_LUCI_LANG_tr is not set -# CONFIG_LUCI_LANG_uk is not set -# CONFIG_LUCI_LANG_vi is not set -CONFIG_LUCI_LANG_zh-cn=y -# CONFIG_LUCI_LANG_zh-tw is not set -CONFIG_PACKAGE_luci-mod-admin-full=y -# CONFIG_PACKAGE_luci-mod-failsafe is not set -# CONFIG_PACKAGE_luci-mod-freifunk is not set -# CONFIG_PACKAGE_luci-mod-freifunk-community is not set -# CONFIG_PACKAGE_luci-mod-rpc is not set - -# -# 3. Applications -# -# CONFIG_PACKAGE_luci-app-adblock is not set -CONFIG_PACKAGE_luci-app-adbyby-plus=y -# CONFIG_PACKAGE_luci-app-advanced-reboot is not set -# CONFIG_PACKAGE_luci-app-ahcp is not set -# CONFIG_PACKAGE_luci-app-aliddns is not set -# CONFIG_PACKAGE_luci-app-amule is not set -# CONFIG_PACKAGE_luci-app-apfree_wifidog is not set -# CONFIG_PACKAGE_luci-app-aria2 is not set -# CONFIG_PACKAGE_luci-app-arpbind is not set -# CONFIG_PACKAGE_luci-app-asterisk is not set -# CONFIG_PACKAGE_luci-app-attendedsysupgrade is not set -CONFIG_PACKAGE_luci-app-autoreboot=y -# CONFIG_PACKAGE_luci-app-bcp38 is not set -# CONFIG_PACKAGE_luci-app-bird4 is not set -# CONFIG_PACKAGE_luci-app-bird6 is not set -# CONFIG_PACKAGE_luci-app-bmx6 is not set -# CONFIG_PACKAGE_luci-app-bmx7 is not set -# CONFIG_PACKAGE_luci-app-cjdns is not set -# CONFIG_PACKAGE_luci-app-clamav is not set -# CONFIG_PACKAGE_luci-app-commands is not set -# CONFIG_PACKAGE_luci-app-cshark is not set -CONFIG_PACKAGE_luci-app-ddns=y -# CONFIG_PACKAGE_luci-app-diag-core is not set -# CONFIG_PACKAGE_luci-app-dnscrypt-proxy is not set -# CONFIG_PACKAGE_luci-app-dogcom is not set -# CONFIG_PACKAGE_luci-app-dump1090 is not set -# CONFIG_PACKAGE_luci-app-dynapoint is not set -# CONFIG_PACKAGE_luci-app-e2guardian is not set -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-firewall=y -# CONFIG_PACKAGE_luci-app-freifunk-diagnostics is not set -# CONFIG_PACKAGE_luci-app-freifunk-policyrouting is not set -# CONFIG_PACKAGE_luci-app-freifunk-widgets is not set -# CONFIG_PACKAGE_luci-app-frpc is not set -# CONFIG_PACKAGE_luci-app-fwknopd is not set -# CONFIG_PACKAGE_luci-app-hd-idle is not set -# CONFIG_PACKAGE_luci-app-hnet is not set -CONFIG_PACKAGE_luci-app-ipsec-vpnd=y -# CONFIG_PACKAGE_luci-app-kcptun is not set -# CONFIG_PACKAGE_luci-app-kuainiao is not set -# CONFIG_PACKAGE_luci-app-meshwizard is not set -# CONFIG_PACKAGE_luci-app-minidlna is not set -# CONFIG_PACKAGE_luci-app-mjpg-streamer is not set -# CONFIG_PACKAGE_luci-app-mmc-over-gpio is not set -# CONFIG_PACKAGE_luci-app-mproxy is not set -# CONFIG_PACKAGE_luci-app-mwan3 is not set -# CONFIG_PACKAGE_luci-app-n2n_v2 is not set -# CONFIG_PACKAGE_luci-app-ngrokc is not set -CONFIG_PACKAGE_luci-app-nlbwmon=y -# CONFIG_PACKAGE_luci-app-ntpc is not set -# CONFIG_PACKAGE_luci-app-ocserv is not set -# CONFIG_PACKAGE_luci-app-olsr is not set -# CONFIG_PACKAGE_luci-app-olsr-services is not set -# CONFIG_PACKAGE_luci-app-olsr-viz is not set -# CONFIG_PACKAGE_luci-app-openvpn is not set -# CONFIG_PACKAGE_luci-app-openvpn-server is not set -# CONFIG_PACKAGE_luci-app-oscam is not set -# CONFIG_PACKAGE_luci-app-p910nd is not set -# CONFIG_PACKAGE_luci-app-polipo is not set -CONFIG_PACKAGE_luci-app-pptp-server=y -# CONFIG_PACKAGE_luci-app-privoxy is not set -# CONFIG_PACKAGE_luci-app-qos is not set -# CONFIG_PACKAGE_luci-app-radicale is not set -# CONFIG_PACKAGE_luci-app-rp-pppoe-server is not set -# CONFIG_PACKAGE_luci-app-samba is not set -CONFIG_PACKAGE_luci-app-sfe=y -# CONFIG_PACKAGE_luci-app-shadowsocks-libev is not set -CONFIG_PACKAGE_luci-app-shadowsocksr-pro=y -# CONFIG_PACKAGE_luci-app-shairplay is not set -# CONFIG_PACKAGE_luci-app-shairport is not set -# CONFIG_PACKAGE_luci-app-siitwizard is not set -# CONFIG_PACKAGE_luci-app-simple-adblock is not set -# CONFIG_PACKAGE_luci-app-splash is not set -CONFIG_PACKAGE_luci-app-sqm=y -# CONFIG_PACKAGE_luci-app-squid is not set -# CONFIG_PACKAGE_luci-app-ssrserver-python is not set -# CONFIG_PACKAGE_luci-app-statistics is not set -# CONFIG_PACKAGE_luci-app-syncdial is not set -# CONFIG_PACKAGE_luci-app-tinyproxy is not set -# CONFIG_PACKAGE_luci-app-transmission is not set -# CONFIG_PACKAGE_luci-app-transparent-proxy is not set -# CONFIG_PACKAGE_luci-app-travelmate is not set -# CONFIG_PACKAGE_luci-app-udpxy is not set -# CONFIG_PACKAGE_luci-app-uhttpd is not set -# CONFIG_PACKAGE_luci-app-unbound is not set -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -# CONFIG_PACKAGE_luci-app-vnstat is not set -# CONFIG_PACKAGE_luci-app-vpnbypass is not set -CONFIG_PACKAGE_luci-app-vsftpd=y -# CONFIG_PACKAGE_luci-app-watchcat is not set -CONFIG_PACKAGE_luci-app-wifischedule=y -# CONFIG_PACKAGE_luci-app-wireguard is not set -CONFIG_PACKAGE_luci-app-wol=y -# CONFIG_PACKAGE_luci-app-zerotier is not set - -# -# 4. Themes -# -# CONFIG_PACKAGE_luci-theme-atmaterial is not set -CONFIG_PACKAGE_luci-theme-bootstrap=y -# CONFIG_PACKAGE_luci-theme-freifunk-generic is not set -# CONFIG_PACKAGE_luci-theme-material is not set -# CONFIG_PACKAGE_luci-theme-openwrt is not set - -# -# 5. Protocols -# -# CONFIG_PACKAGE_luci-proto-3g is not set -# CONFIG_PACKAGE_luci-proto-ipip is not set -CONFIG_PACKAGE_luci-proto-ipv6=y -# CONFIG_PACKAGE_luci-proto-ncm is not set -# CONFIG_PACKAGE_luci-proto-openconnect is not set -CONFIG_PACKAGE_luci-proto-ppp=y -# CONFIG_PACKAGE_luci-proto-qmi is not set -# CONFIG_PACKAGE_luci-proto-relay is not set -# CONFIG_PACKAGE_luci-proto-vpnc is not set -# CONFIG_PACKAGE_luci-proto-wireguard is not set - -# -# 6. Libraries -# -# CONFIG_PACKAGE_luci-lib-dracula is not set -# CONFIG_PACKAGE_luci-lib-httpclient is not set -CONFIG_PACKAGE_luci-lib-ip=y -# CONFIG_PACKAGE_luci-lib-jquery-1-4 is not set -# CONFIG_PACKAGE_luci-lib-json is not set -CONFIG_PACKAGE_luci-lib-jsonc=y -# CONFIG_PACKAGE_luci-lib-luaneightbl is not set -CONFIG_PACKAGE_luci-lib-nixio=y -# CONFIG_PACKAGE_luci-lib-px5g is not set - -# -# 9. Freifunk -# -# CONFIG_PACKAGE_freifunk-common is not set -# CONFIG_PACKAGE_freifunk-firewall is not set -# CONFIG_PACKAGE_freifunk-policyrouting is not set -# CONFIG_PACKAGE_freifunk-watchdog is not set -# CONFIG_PACKAGE_meshwizard is not set -CONFIG_PACKAGE_default-settings=y -CONFIG_PACKAGE_luci-i18n-adbyby-plus-zh-cn=y -CONFIG_PACKAGE_luci-i18n-autoreboot-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-base-ca is not set -# CONFIG_PACKAGE_luci-i18n-base-cs is not set -# CONFIG_PACKAGE_luci-i18n-base-de is not set -# CONFIG_PACKAGE_luci-i18n-base-el is not set -# CONFIG_PACKAGE_luci-i18n-base-en is not set -# CONFIG_PACKAGE_luci-i18n-base-es is not set -# CONFIG_PACKAGE_luci-i18n-base-fr is not set -# CONFIG_PACKAGE_luci-i18n-base-he is not set -# CONFIG_PACKAGE_luci-i18n-base-hu is not set -# CONFIG_PACKAGE_luci-i18n-base-it is not set -# CONFIG_PACKAGE_luci-i18n-base-ja is not set -# CONFIG_PACKAGE_luci-i18n-base-ko is not set -# CONFIG_PACKAGE_luci-i18n-base-ms is not set -# CONFIG_PACKAGE_luci-i18n-base-no is not set -# CONFIG_PACKAGE_luci-i18n-base-pl is not set -# CONFIG_PACKAGE_luci-i18n-base-pt is not set -# CONFIG_PACKAGE_luci-i18n-base-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-base-ro is not set -# CONFIG_PACKAGE_luci-i18n-base-ru is not set -# CONFIG_PACKAGE_luci-i18n-base-sk is not set -# CONFIG_PACKAGE_luci-i18n-base-sv is not set -# CONFIG_PACKAGE_luci-i18n-base-tr is not set -# CONFIG_PACKAGE_luci-i18n-base-uk is not set -# CONFIG_PACKAGE_luci-i18n-base-vi is not set -CONFIG_PACKAGE_luci-i18n-base-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-base-zh-tw is not set -# CONFIG_PACKAGE_luci-i18n-ddns-ca is not set -# CONFIG_PACKAGE_luci-i18n-ddns-cs is not set -# CONFIG_PACKAGE_luci-i18n-ddns-de is not set -# CONFIG_PACKAGE_luci-i18n-ddns-el is not set -# CONFIG_PACKAGE_luci-i18n-ddns-es is not set -# CONFIG_PACKAGE_luci-i18n-ddns-fr is not set -# CONFIG_PACKAGE_luci-i18n-ddns-he is not set -# CONFIG_PACKAGE_luci-i18n-ddns-hu is not set -# CONFIG_PACKAGE_luci-i18n-ddns-it is not set -# CONFIG_PACKAGE_luci-i18n-ddns-ja is not set -# CONFIG_PACKAGE_luci-i18n-ddns-no is not set -# CONFIG_PACKAGE_luci-i18n-ddns-pl is not set -# CONFIG_PACKAGE_luci-i18n-ddns-pt is not set -# CONFIG_PACKAGE_luci-i18n-ddns-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-ddns-ro is not set -# CONFIG_PACKAGE_luci-i18n-ddns-ru is not set -# CONFIG_PACKAGE_luci-i18n-ddns-sv is not set -# CONFIG_PACKAGE_luci-i18n-ddns-tr is not set -# CONFIG_PACKAGE_luci-i18n-ddns-uk is not set -# CONFIG_PACKAGE_luci-i18n-ddns-vi is not set -CONFIG_PACKAGE_luci-i18n-ddns-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-ddns-zh-tw is not set -CONFIG_PACKAGE_luci-i18n-filetransfer-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-firewall-ca is not set -# CONFIG_PACKAGE_luci-i18n-firewall-cs is not set -# CONFIG_PACKAGE_luci-i18n-firewall-de is not set -# CONFIG_PACKAGE_luci-i18n-firewall-el is not set -# CONFIG_PACKAGE_luci-i18n-firewall-en is not set -# CONFIG_PACKAGE_luci-i18n-firewall-es is not set -# CONFIG_PACKAGE_luci-i18n-firewall-fr is not set -# CONFIG_PACKAGE_luci-i18n-firewall-he is not set -# CONFIG_PACKAGE_luci-i18n-firewall-hu is not set -# CONFIG_PACKAGE_luci-i18n-firewall-it is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ja is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ko is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ms is not set -# CONFIG_PACKAGE_luci-i18n-firewall-no is not set -# CONFIG_PACKAGE_luci-i18n-firewall-pl is not set -# CONFIG_PACKAGE_luci-i18n-firewall-pt is not set -# CONFIG_PACKAGE_luci-i18n-firewall-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ro is not set -# CONFIG_PACKAGE_luci-i18n-firewall-ru is not set -# CONFIG_PACKAGE_luci-i18n-firewall-sk is not set -# CONFIG_PACKAGE_luci-i18n-firewall-sv is not set -# CONFIG_PACKAGE_luci-i18n-firewall-tr is not set -# CONFIG_PACKAGE_luci-i18n-firewall-uk is not set -# CONFIG_PACKAGE_luci-i18n-firewall-vi is not set -CONFIG_PACKAGE_luci-i18n-firewall-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-firewall-zh-tw is not set -CONFIG_PACKAGE_luci-i18n-ipsec-vpnd-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-nlbwmon-ja is not set -CONFIG_PACKAGE_luci-i18n-nlbwmon-zh-cn=y -CONFIG_PACKAGE_luci-i18n-pptp-server-zh-cn=y -CONFIG_PACKAGE_luci-i18n-sfe-zh-cn=y -CONFIG_PACKAGE_luci-i18n-shadowsocksr-pro-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-upnp-ca is not set -# CONFIG_PACKAGE_luci-i18n-upnp-cs is not set -# CONFIG_PACKAGE_luci-i18n-upnp-de is not set -# CONFIG_PACKAGE_luci-i18n-upnp-el is not set -# CONFIG_PACKAGE_luci-i18n-upnp-en is not set -# CONFIG_PACKAGE_luci-i18n-upnp-es is not set -# CONFIG_PACKAGE_luci-i18n-upnp-fr is not set -# CONFIG_PACKAGE_luci-i18n-upnp-he is not set -# CONFIG_PACKAGE_luci-i18n-upnp-hu is not set -# CONFIG_PACKAGE_luci-i18n-upnp-it is not set -# CONFIG_PACKAGE_luci-i18n-upnp-ja is not set -# CONFIG_PACKAGE_luci-i18n-upnp-ms is not set -# CONFIG_PACKAGE_luci-i18n-upnp-no is not set -# CONFIG_PACKAGE_luci-i18n-upnp-pl is not set -# CONFIG_PACKAGE_luci-i18n-upnp-pt is not set -# CONFIG_PACKAGE_luci-i18n-upnp-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-upnp-ro is not set -# CONFIG_PACKAGE_luci-i18n-upnp-ru is not set -# CONFIG_PACKAGE_luci-i18n-upnp-sk is not set -# CONFIG_PACKAGE_luci-i18n-upnp-sv is not set -# CONFIG_PACKAGE_luci-i18n-upnp-tr is not set -# CONFIG_PACKAGE_luci-i18n-upnp-uk is not set -# CONFIG_PACKAGE_luci-i18n-upnp-vi is not set -CONFIG_PACKAGE_luci-i18n-upnp-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-upnp-zh-tw is not set -CONFIG_PACKAGE_luci-i18n-usb-printer-zh-cn=y -CONFIG_PACKAGE_luci-i18n-vlmcsd-zh-cn=y -CONFIG_PACKAGE_luci-i18n-vsftpd-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-wifischedule-it is not set -# CONFIG_PACKAGE_luci-i18n-wifischedule-ja is not set -# CONFIG_PACKAGE_luci-i18n-wifischedule-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-wifischedule-sv is not set -CONFIG_PACKAGE_luci-i18n-wifischedule-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-wol-ca is not set -# CONFIG_PACKAGE_luci-i18n-wol-cs is not set -# CONFIG_PACKAGE_luci-i18n-wol-de is not set -# CONFIG_PACKAGE_luci-i18n-wol-el is not set -# CONFIG_PACKAGE_luci-i18n-wol-en is not set -# CONFIG_PACKAGE_luci-i18n-wol-es is not set -# CONFIG_PACKAGE_luci-i18n-wol-fr is not set -# CONFIG_PACKAGE_luci-i18n-wol-he is not set -# CONFIG_PACKAGE_luci-i18n-wol-hu is not set -# CONFIG_PACKAGE_luci-i18n-wol-it is not set -# CONFIG_PACKAGE_luci-i18n-wol-ja is not set -# CONFIG_PACKAGE_luci-i18n-wol-ms is not set -# CONFIG_PACKAGE_luci-i18n-wol-no is not set -# CONFIG_PACKAGE_luci-i18n-wol-pl is not set -# CONFIG_PACKAGE_luci-i18n-wol-pt is not set -# CONFIG_PACKAGE_luci-i18n-wol-pt-br is not set -# CONFIG_PACKAGE_luci-i18n-wol-ro is not set -# CONFIG_PACKAGE_luci-i18n-wol-ru is not set -# CONFIG_PACKAGE_luci-i18n-wol-sk is not set -# CONFIG_PACKAGE_luci-i18n-wol-sv is not set -# CONFIG_PACKAGE_luci-i18n-wol-tr is not set -# CONFIG_PACKAGE_luci-i18n-wol-uk is not set -# CONFIG_PACKAGE_luci-i18n-wol-vi is not set -CONFIG_PACKAGE_luci-i18n-wol-zh-cn=y -# CONFIG_PACKAGE_luci-i18n-wol-zh-tw is not set - -# -# Mail -# -# CONFIG_PACKAGE_alpine is not set -# CONFIG_PACKAGE_alpine-nossl is not set -# CONFIG_PACKAGE_bogofilter is not set -# CONFIG_PACKAGE_clamsmtp is not set -# CONFIG_PACKAGE_dovecot is not set -# CONFIG_PACKAGE_emailrelay is not set -# CONFIG_PACKAGE_fdm is not set -# CONFIG_PACKAGE_greyfix is not set -# CONFIG_PACKAGE_mailman is not set -# CONFIG_PACKAGE_mailsend is not set -# CONFIG_PACKAGE_mailsend-nossl is not set -# CONFIG_PACKAGE_msmtp is not set -# CONFIG_PACKAGE_msmtp-nossl is not set -# CONFIG_PACKAGE_mutt is not set -# CONFIG_PACKAGE_nail is not set -# CONFIG_PACKAGE_pigeonhole is not set -# CONFIG_PACKAGE_postfix is not set - -# -# Select postfix build options -# -CONFIG_POSTFIX_TLS=y -CONFIG_POSTFIX_SASL=y -CONFIG_POSTFIX_LDAP=y -# CONFIG_POSTFIX_DB is not set -CONFIG_POSTFIX_CDB=y -CONFIG_POSTFIX_SQLITE=y -# CONFIG_POSTFIX_PGSQL is not set -# CONFIG_POSTFIX_PCRE is not set -# CONFIG_POSTFIX_EAI is not set -# CONFIG_PACKAGE_ssmtp is not set - -# -# Multimedia -# - -# -# Streaming -# -# CONFIG_PACKAGE_oggfwd is not set -# CONFIG_PACKAGE_crtmpserver is not set -# CONFIG_PACKAGE_ffmpeg is not set -# CONFIG_PACKAGE_ffprobe is not set -# CONFIG_PACKAGE_ffserver is not set -# CONFIG_PACKAGE_fswebcam is not set -# CONFIG_PACKAGE_gphoto2 is not set -# CONFIG_PACKAGE_grilo is not set -# CONFIG_PACKAGE_grilo-plugins is not set -# CONFIG_PACKAGE_gst1-libav is not set -# CONFIG_PACKAGE_gstreamer1-libs is not set -# CONFIG_PACKAGE_gstreamer1-plugins-bad is not set -# CONFIG_PACKAGE_gstreamer1-plugins-base is not set -# CONFIG_PACKAGE_gstreamer1-plugins-good is not set -# CONFIG_PACKAGE_gstreamer1-plugins-ugly is not set -# CONFIG_PACKAGE_gstreamer1-utils is not set -# CONFIG_PACKAGE_icecast is not set -# CONFIG_PACKAGE_lcdgrilo is not set -# CONFIG_PACKAGE_minidlna is not set -# CONFIG_PACKAGE_mjpg-streamer is not set -# CONFIG_PACKAGE_motion is not set -# CONFIG_PACKAGE_tvheadend is not set -# CONFIG_PACKAGE_vips is not set -# CONFIG_PACKAGE_xupnpd is not set -# CONFIG_PACKAGE_youtube-dl is not set - -# -# Network -# - -# -# BitTorrent -# -# CONFIG_PACKAGE_mktorrent is not set -# CONFIG_PACKAGE_opentracker is not set -# CONFIG_PACKAGE_opentracker6 is not set -# CONFIG_PACKAGE_rtorrent is not set -# CONFIG_PACKAGE_rtorrent-rpc is not set -# CONFIG_PACKAGE_transmission-cli-mbedtls is not set -# CONFIG_PACKAGE_transmission-cli-openssl is not set -# CONFIG_PACKAGE_transmission-daemon-mbedtls is not set -# CONFIG_PACKAGE_transmission-daemon-openssl is not set -# CONFIG_PACKAGE_transmission-remote-mbedtls is not set -# CONFIG_PACKAGE_transmission-remote-openssl is not set - -# -# Captive Portals -# -# CONFIG_PACKAGE_apfree_wifidog is not set -# CONFIG_PACKAGE_coova-chilli is not set -# CONFIG_PACKAGE_nodogsplash is not set -# CONFIG_PACKAGE_nodogsplash2 is not set -# CONFIG_PACKAGE_wifidog is not set -# CONFIG_PACKAGE_wifidog-tls is not set - -# -# Download Manager -# -# CONFIG_PACKAGE_webui-aria2 is not set -# CONFIG_PACKAGE_yaaw is not set - -# -# File Transfer -# -# CONFIG_PACKAGE_aria2 is not set -# CONFIG_PACKAGE_atftp is not set -# CONFIG_PACKAGE_atftpd is not set -# CONFIG_PACKAGE_curl is not set -# CONFIG_PACKAGE_gnurl is not set -# CONFIG_PACKAGE_lftp is not set -# CONFIG_PACKAGE_rsync is not set -# CONFIG_PACKAGE_rsyncd is not set -# CONFIG_PACKAGE_vsftpd is not set -CONFIG_PACKAGE_vsftpd-alt=y -CONFIG_VSFTPD_USE_UCI_SCRIPTS=y -# CONFIG_PACKAGE_vsftpd-tls is not set -CONFIG_PACKAGE_wget=y -# CONFIG_PACKAGE_wget-nossl is not set - -# -# Filesystem -# -# CONFIG_PACKAGE_davfs2 is not set -# CONFIG_PACKAGE_netatalk is not set -# CONFIG_PACKAGE_nfs-kernel-server is not set -# CONFIG_PACKAGE_owftpd is not set -# CONFIG_PACKAGE_owhttpd is not set -# CONFIG_PACKAGE_owserver is not set -# CONFIG_PACKAGE_sshfs is not set - -# -# Firewall -# -# CONFIG_PACKAGE_arptables is not set -# CONFIG_PACKAGE_conntrack is not set -# CONFIG_PACKAGE_conntrackd is not set -# CONFIG_PACKAGE_ebtables is not set -# CONFIG_PACKAGE_fwknop is not set -# CONFIG_PACKAGE_fwknopd is not set -CONFIG_PACKAGE_ip6tables=y -# CONFIG_PACKAGE_ip6tables-extra is not set -# CONFIG_PACKAGE_ip6tables-mod-nat is not set -CONFIG_PACKAGE_iptables=y -# CONFIG_IPTABLES_CONNLABEL is not set -# CONFIG_IPTABLES_NFTABLES is not set -# CONFIG_PACKAGE_iptables-mod-account is not set -# CONFIG_PACKAGE_iptables-mod-chaos is not set -# CONFIG_PACKAGE_iptables-mod-cluster is not set -# CONFIG_PACKAGE_iptables-mod-clusterip is not set -# CONFIG_PACKAGE_iptables-mod-condition is not set -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -# CONFIG_PACKAGE_iptables-mod-delude is not set -# CONFIG_PACKAGE_iptables-mod-dhcpmac is not set -# CONFIG_PACKAGE_iptables-mod-dnetmap is not set -# CONFIG_PACKAGE_iptables-mod-extra is not set -# CONFIG_PACKAGE_iptables-mod-filter is not set -# CONFIG_PACKAGE_iptables-mod-fuzzy is not set -# CONFIG_PACKAGE_iptables-mod-geoip is not set -# CONFIG_PACKAGE_iptables-mod-hashlimit is not set -# CONFIG_PACKAGE_iptables-mod-iface is not set -# CONFIG_PACKAGE_iptables-mod-ipmark is not set -CONFIG_PACKAGE_iptables-mod-ipopt=y -# CONFIG_PACKAGE_iptables-mod-ipp2p is not set -# CONFIG_PACKAGE_iptables-mod-iprange is not set -CONFIG_PACKAGE_iptables-mod-ipsec=y -# CONFIG_PACKAGE_iptables-mod-ipv4options is not set -# CONFIG_PACKAGE_iptables-mod-led is not set -# CONFIG_PACKAGE_iptables-mod-length2 is not set -# CONFIG_PACKAGE_iptables-mod-logmark is not set -# CONFIG_PACKAGE_iptables-mod-lscan is not set -# CONFIG_PACKAGE_iptables-mod-lua is not set -CONFIG_PACKAGE_iptables-mod-nat-extra=y -# CONFIG_PACKAGE_iptables-mod-nflog is not set -# CONFIG_PACKAGE_iptables-mod-nfqueue is not set -# CONFIG_PACKAGE_iptables-mod-psd is not set -# CONFIG_PACKAGE_iptables-mod-quota2 is not set -# CONFIG_PACKAGE_iptables-mod-rpfilter is not set -# CONFIG_PACKAGE_iptables-mod-sysrq is not set -# CONFIG_PACKAGE_iptables-mod-tarpit is not set -# CONFIG_PACKAGE_iptables-mod-tee is not set -CONFIG_PACKAGE_iptables-mod-tproxy=y -# CONFIG_PACKAGE_iptables-mod-u32 is not set -# CONFIG_PACKAGE_iptables-mod-ulog is not set -# CONFIG_PACKAGE_iptaccount is not set -# CONFIG_PACKAGE_miniupnpc is not set -CONFIG_PACKAGE_miniupnpd=y -# CONFIG_MINIUPNPD_IGDv2 is not set -# CONFIG_PACKAGE_natpmpc is not set -# CONFIG_PACKAGE_nftables is not set -# CONFIG_PACKAGE_shorewall-core is not set -# CONFIG_PACKAGE_shorewall-lite is not set -# CONFIG_PACKAGE_shorewall6-lite is not set -# CONFIG_PACKAGE_snort is not set - -# -# Firewall Tunnel -# -# CONFIG_PACKAGE_iodine is not set -# CONFIG_PACKAGE_iodined is not set - -# -# FreeRADIUS (version 3) -# -# CONFIG_PACKAGE_freeradius3 is not set -# CONFIG_PACKAGE_freeradius3-common is not set -# CONFIG_PACKAGE_freeradius3-utils is not set - -# -# IP Addresses and Names -# -# CONFIG_PACKAGE_aggregate is not set -# CONFIG_PACKAGE_announce is not set -# CONFIG_PACKAGE_avahi-autoipd is not set -# CONFIG_PACKAGE_avahi-daemon-service-http is not set -# CONFIG_PACKAGE_avahi-daemon-service-ssh is not set -# CONFIG_PACKAGE_avahi-dbus-daemon is not set -# CONFIG_PACKAGE_avahi-dnsconfd is not set -# CONFIG_PACKAGE_avahi-nodbus-daemon is not set -# CONFIG_PACKAGE_avahi-utils is not set -# CONFIG_PACKAGE_bind-check is not set -# CONFIG_PACKAGE_bind-client is not set -# CONFIG_PACKAGE_bind-dig is not set -# CONFIG_PACKAGE_bind-dnssec is not set -# CONFIG_PACKAGE_bind-host is not set -# CONFIG_PACKAGE_bind-rndc is not set -# CONFIG_PACKAGE_bind-server is not set -# CONFIG_PACKAGE_bind-tools is not set -CONFIG_PACKAGE_ddns-scripts=y -# CONFIG_PACKAGE_ddns-scripts_cloudflare is not set -# CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4 is not set -# CONFIG_PACKAGE_ddns-scripts_godaddy.com-v1 is not set -# CONFIG_PACKAGE_ddns-scripts_no-ip_com is not set -# CONFIG_PACKAGE_ddns-scripts_nsupdate is not set -# CONFIG_PACKAGE_dhcp-forwarder is not set -# CONFIG_PACKAGE_dnscrypt-proxy is not set -# CONFIG_PACKAGE_dnscrypt-proxy-resolvers is not set -# CONFIG_PACKAGE_drill is not set -# CONFIG_PACKAGE_hostip is not set -# CONFIG_PACKAGE_idn is not set -# CONFIG_PACKAGE_inadyn is not set -# CONFIG_PACKAGE_isc-dhcp-client-ipv4 is not set -# CONFIG_PACKAGE_isc-dhcp-client-ipv6 is not set -# CONFIG_PACKAGE_isc-dhcp-omshell-ipv4 is not set -# CONFIG_PACKAGE_isc-dhcp-omshell-ipv6 is not set -# CONFIG_PACKAGE_isc-dhcp-relay-ipv4 is not set -# CONFIG_PACKAGE_isc-dhcp-relay-ipv6 is not set -# CONFIG_PACKAGE_isc-dhcp-server-ipv4 is not set -# CONFIG_PACKAGE_isc-dhcp-server-ipv6 is not set -# CONFIG_PACKAGE_knot is not set -# CONFIG_PACKAGE_knot-dig is not set -# CONFIG_PACKAGE_knot-host is not set -# CONFIG_PACKAGE_knot-keymgr is not set -# CONFIG_PACKAGE_knot-nsec3hash is not set -# CONFIG_PACKAGE_knot-nsupdate is not set -# CONFIG_PACKAGE_knot-tests is not set -# CONFIG_PACKAGE_knot-zonecheck is not set -# CONFIG_PACKAGE_mdns-utils is not set -# CONFIG_PACKAGE_mdnsd is not set -# CONFIG_PACKAGE_mdnsresponder is not set -# CONFIG_PACKAGE_nsd is not set -# CONFIG_PACKAGE_nsd-control is not set -# CONFIG_PACKAGE_nsd-control-setup is not set -# CONFIG_PACKAGE_nsd-nossl is not set -# CONFIG_PACKAGE_ohybridproxy is not set -# CONFIG_PACKAGE_unbound is not set -# CONFIG_PACKAGE_unbound-anchor is not set -# CONFIG_PACKAGE_unbound-control is not set -# CONFIG_PACKAGE_unbound-control-setup is not set -# CONFIG_PACKAGE_unbound-host is not set -# CONFIG_PACKAGE_zonestitcher is not set - -# -# Instant Messaging -# -# CONFIG_PACKAGE_bitlbee is not set -# CONFIG_PACKAGE_irssi is not set -# CONFIG_PACKAGE_ngircd is not set -# CONFIG_PACKAGE_ngircd-nossl is not set -# CONFIG_PACKAGE_prosody is not set -# CONFIG_PACKAGE_quassel-irssi is not set -# CONFIG_PACKAGE_umurmur-mbedtls is not set -# CONFIG_PACKAGE_umurmur-openssl is not set -# CONFIG_PACKAGE_znc is not set - -# -# Linux ATM tools -# -# CONFIG_PACKAGE_atm-aread is not set -# CONFIG_PACKAGE_atm-atmaddr is not set -# CONFIG_PACKAGE_atm-atmdiag is not set -# CONFIG_PACKAGE_atm-atmdump is not set -# CONFIG_PACKAGE_atm-atmloop is not set -# CONFIG_PACKAGE_atm-atmsigd is not set -# CONFIG_PACKAGE_atm-atmswitch is not set -# CONFIG_PACKAGE_atm-atmtcp is not set -# CONFIG_PACKAGE_atm-awrite is not set -# CONFIG_PACKAGE_atm-bus is not set -# CONFIG_PACKAGE_atm-debug-tools is not set -# CONFIG_PACKAGE_atm-diagnostics is not set -# CONFIG_PACKAGE_atm-esi is not set -# CONFIG_PACKAGE_atm-ilmid is not set -# CONFIG_PACKAGE_atm-ilmidiag is not set -# CONFIG_PACKAGE_atm-lecs is not set -# CONFIG_PACKAGE_atm-les is not set -# CONFIG_PACKAGE_atm-mpcd is not set -# CONFIG_PACKAGE_atm-saaldump is not set -# CONFIG_PACKAGE_atm-sonetdiag is not set -# CONFIG_PACKAGE_atm-svc_recv is not set -# CONFIG_PACKAGE_atm-svc_send is not set -# CONFIG_PACKAGE_atm-tools is not set -# CONFIG_PACKAGE_atm-ttcp_atm is not set -# CONFIG_PACKAGE_atm-zeppelin is not set -# CONFIG_PACKAGE_br2684ctl is not set - -# -# NMAP Suite -# -# CONFIG_PACKAGE_ncat is not set -# CONFIG_PACKAGE_ncat-ssl is not set -# CONFIG_PACKAGE_ndiff is not set -# CONFIG_PACKAGE_nmap is not set -# CONFIG_PACKAGE_nmap-ssl is not set -# CONFIG_PACKAGE_nping is not set - -# -# NTRIP -# -# CONFIG_PACKAGE_ntripcaster is not set -# CONFIG_PACKAGE_ntripclient is not set -# CONFIG_PACKAGE_ntripserver is not set - -# -# OLSR.org network framework -# -# CONFIG_PACKAGE_oonf-dlep-proxy is not set -# CONFIG_PACKAGE_oonf-dlep-radio is not set -# CONFIG_PACKAGE_oonf-init-scripts is not set -# CONFIG_PACKAGE_oonf-olsrd2 is not set - -# -# Open vSwitch -# -# CONFIG_PACKAGE_openvswitch is not set -# CONFIG_PACKAGE_openvswitch-base is not set -# CONFIG_PACKAGE_openvswitch-ovs-appctl is not set -# CONFIG_PACKAGE_openvswitch-ovs-dpctl is not set -# CONFIG_PACKAGE_openvswitch-ovs-ofctl is not set -# CONFIG_PACKAGE_openvswitch-ovs-vsctl is not set -# CONFIG_PACKAGE_openvswitch-ovsdb-client is not set -# CONFIG_PACKAGE_openvswitch-python is not set - -# -# P2P -# -# CONFIG_PACKAGE_amule is not set -CONFIG_AMULE_CRYPTOPP_STATIC_LINKING=y - -# -# Printing -# -CONFIG_PACKAGE_p910nd=y - -# -# Routing and Redirection -# -# CONFIG_PACKAGE_babel-pinger is not set -# CONFIG_PACKAGE_babeld is not set -# CONFIG_PACKAGE_batmand is not set -# CONFIG_PACKAGE_bcp38 is not set -# CONFIG_PACKAGE_bird4 is not set -# CONFIG_PACKAGE_bird4-uci is not set -# CONFIG_PACKAGE_bird6 is not set -# CONFIG_PACKAGE_bird6-uci is not set -# CONFIG_PACKAGE_birdc4 is not set -# CONFIG_PACKAGE_birdc6 is not set -# CONFIG_PACKAGE_birdcl4 is not set -# CONFIG_PACKAGE_birdcl6 is not set -# CONFIG_PACKAGE_bmx6 is not set -# CONFIG_PACKAGE_bmx7 is not set -# CONFIG_PACKAGE_cjdns is not set -# CONFIG_PACKAGE_cjdns-tests is not set -# CONFIG_PACKAGE_devlink is not set -# CONFIG_PACKAGE_genl is not set -# CONFIG_PACKAGE_igmpproxy is not set -# CONFIG_PACKAGE_ip-bridge is not set -# CONFIG_PACKAGE_ip-full is not set -CONFIG_PACKAGE_ip-tiny=y -# CONFIG_PACKAGE_lldpd is not set -# CONFIG_PACKAGE_mcproxy is not set -# CONFIG_PACKAGE_mwan3 is not set -# CONFIG_PACKAGE_nstat is not set -# CONFIG_PACKAGE_olsrd is not set -# CONFIG_PACKAGE_prince is not set -# CONFIG_PACKAGE_quagga is not set -# CONFIG_PACKAGE_relayd is not set -# CONFIG_PACKAGE_smcroute is not set -# CONFIG_PACKAGE_ss is not set -# CONFIG_PACKAGE_sslh is not set -CONFIG_PACKAGE_tc=y -# CONFIG_PACKAGE_tcpproxy is not set -# CONFIG_PACKAGE_vis is not set - -# -# SSH -# -# CONFIG_PACKAGE_autossh is not set -# CONFIG_PACKAGE_openssh-client is not set -# CONFIG_PACKAGE_openssh-client-utils is not set -# CONFIG_PACKAGE_openssh-keygen is not set -# CONFIG_PACKAGE_openssh-moduli is not set -# CONFIG_PACKAGE_openssh-server is not set -# CONFIG_PACKAGE_openssh-server-pam is not set -# CONFIG_PACKAGE_openssh-sftp-avahi-service is not set -# CONFIG_PACKAGE_openssh-sftp-client is not set -# CONFIG_PACKAGE_openssh-sftp-server is not set -# CONFIG_PACKAGE_sshtunnel is not set - -# -# THC-IPv6 attack and analyzing toolkit -# -# CONFIG_PACKAGE_thc-ipv6-address6 is not set -# CONFIG_PACKAGE_thc-ipv6-alive6 is not set -# CONFIG_PACKAGE_thc-ipv6-covert-send6 is not set -# CONFIG_PACKAGE_thc-ipv6-covert-send6d is not set -# CONFIG_PACKAGE_thc-ipv6-denial6 is not set -# CONFIG_PACKAGE_thc-ipv6-detect-new-ip6 is not set -# CONFIG_PACKAGE_thc-ipv6-detect-sniffer6 is not set -# CONFIG_PACKAGE_thc-ipv6-dnsdict6 is not set -# CONFIG_PACKAGE_thc-ipv6-dnsrevenum6 is not set -# CONFIG_PACKAGE_thc-ipv6-dos-new-ip6 is not set -# CONFIG_PACKAGE_thc-ipv6-dump-router6 is not set -# CONFIG_PACKAGE_thc-ipv6-exploit6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-advertise6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-dhcps6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-dns6d is not set -# CONFIG_PACKAGE_thc-ipv6-fake-dnsupdate6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-mipv6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-mld26 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-mld6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-mldrouter6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-router26 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-router6 is not set -# CONFIG_PACKAGE_thc-ipv6-fake-solicitate6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-advertise6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-dhcpc6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-mld26 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-mld6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-mldrouter6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-router26 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-router6 is not set -# CONFIG_PACKAGE_thc-ipv6-flood-solicitate6 is not set -# CONFIG_PACKAGE_thc-ipv6-fragmentation6 is not set -# CONFIG_PACKAGE_thc-ipv6-fuzz-dhcpc6 is not set -# CONFIG_PACKAGE_thc-ipv6-fuzz-dhcps6 is not set -# CONFIG_PACKAGE_thc-ipv6-fuzz-ip6 is not set -# CONFIG_PACKAGE_thc-ipv6-implementation6 is not set -# CONFIG_PACKAGE_thc-ipv6-implementation6d is not set -# CONFIG_PACKAGE_thc-ipv6-inverse-lookup6 is not set -# CONFIG_PACKAGE_thc-ipv6-kill-router6 is not set -# CONFIG_PACKAGE_thc-ipv6-ndpexhaust6 is not set -# CONFIG_PACKAGE_thc-ipv6-node-query6 is not set -# CONFIG_PACKAGE_thc-ipv6-parasite6 is not set -# CONFIG_PACKAGE_thc-ipv6-passive-discovery6 is not set -# CONFIG_PACKAGE_thc-ipv6-randicmp6 is not set -# CONFIG_PACKAGE_thc-ipv6-redir6 is not set -# CONFIG_PACKAGE_thc-ipv6-rsmurf6 is not set -# CONFIG_PACKAGE_thc-ipv6-sendpees6 is not set -# CONFIG_PACKAGE_thc-ipv6-sendpeesmp6 is not set -# CONFIG_PACKAGE_thc-ipv6-smurf6 is not set -# CONFIG_PACKAGE_thc-ipv6-thcping6 is not set -# CONFIG_PACKAGE_thc-ipv6-toobig6 is not set -# CONFIG_PACKAGE_thc-ipv6-trace6 is not set - -# -# Telephony -# -# CONFIG_PACKAGE_asterisk11 is not set -# CONFIG_PACKAGE_asterisk13 is not set -# CONFIG_PACKAGE_baresip is not set -# CONFIG_PACKAGE_freeswitch is not set -# CONFIG_PACKAGE_freeswitch-stable is not set -# CONFIG_PACKAGE_kamailio5 is not set -# CONFIG_PACKAGE_miax is not set -# CONFIG_PACKAGE_pcapsipdump is not set -# CONFIG_PACKAGE_restund is not set -# CONFIG_PACKAGE_rtpproxy is not set -# CONFIG_PACKAGE_sipp is not set -# CONFIG_PACKAGE_siproxd is not set -# CONFIG_PACKAGE_yate is not set - -# -# Time Synchronization -# -# CONFIG_PACKAGE_chrony is not set -# CONFIG_PACKAGE_htpdate is not set -# CONFIG_PACKAGE_linuxptp is not set -# CONFIG_PACKAGE_ntp-keygen is not set -# CONFIG_PACKAGE_ntp-utils is not set -# CONFIG_PACKAGE_ntpclient is not set -# CONFIG_PACKAGE_ntpd is not set -# CONFIG_PACKAGE_ntpdate is not set - -# -# VPN -# -# CONFIG_PACKAGE_chaosvpn is not set -# CONFIG_PACKAGE_fastd is not set -# CONFIG_PACKAGE_ipsec-tools is not set -# CONFIG_PACKAGE_n2n_v2 is not set -# CONFIG_PACKAGE_ocserv is not set -# CONFIG_PACKAGE_openconnect is not set -# CONFIG_PACKAGE_opennhrp is not set -# CONFIG_PACKAGE_openvpn-easy-rsa is not set -# CONFIG_PACKAGE_openvpn-mbedtls is not set -# CONFIG_PACKAGE_openvpn-nossl is not set -# CONFIG_PACKAGE_openvpn-openssl is not set -CONFIG_PACKAGE_pptpd=y -# CONFIG_PACKAGE_softethervpn is not set -# CONFIG_PACKAGE_sstp-client is not set -CONFIG_PACKAGE_strongswan=y - -# -# Configuration -# -CONFIG_STRONGSWAN_ROUTING_TABLE="220" -CONFIG_STRONGSWAN_ROUTING_TABLE_PRIO="220" -CONFIG_PACKAGE_strongswan-charon=y -# CONFIG_PACKAGE_strongswan-charon-cmd is not set -# CONFIG_PACKAGE_strongswan-default is not set -CONFIG_PACKAGE_strongswan-ipsec=y -# CONFIG_PACKAGE_strongswan-isakmp is not set -# CONFIG_PACKAGE_strongswan-libtls is not set -CONFIG_PACKAGE_strongswan-minimal=y -# CONFIG_PACKAGE_strongswan-mod-addrblock is not set -CONFIG_PACKAGE_strongswan-mod-aes=y -# CONFIG_PACKAGE_strongswan-mod-af-alg is not set -# CONFIG_PACKAGE_strongswan-mod-agent is not set -# CONFIG_PACKAGE_strongswan-mod-attr is not set -# CONFIG_PACKAGE_strongswan-mod-attr-sql is not set -# CONFIG_PACKAGE_strongswan-mod-blowfish is not set -# CONFIG_PACKAGE_strongswan-mod-ccm is not set -# CONFIG_PACKAGE_strongswan-mod-cmac is not set -# CONFIG_PACKAGE_strongswan-mod-connmark is not set -# CONFIG_PACKAGE_strongswan-mod-constraints is not set -# CONFIG_PACKAGE_strongswan-mod-coupling is not set -# CONFIG_PACKAGE_strongswan-mod-ctr is not set -# CONFIG_PACKAGE_strongswan-mod-curl is not set -# CONFIG_PACKAGE_strongswan-mod-curve25519 is not set -# CONFIG_PACKAGE_strongswan-mod-des is not set -# CONFIG_PACKAGE_strongswan-mod-dhcp is not set -# CONFIG_PACKAGE_strongswan-mod-dnskey is not set -# CONFIG_PACKAGE_strongswan-mod-duplicheck is not set -# CONFIG_PACKAGE_strongswan-mod-eap-identity is not set -# CONFIG_PACKAGE_strongswan-mod-eap-md5 is not set -# CONFIG_PACKAGE_strongswan-mod-eap-mschapv2 is not set -# CONFIG_PACKAGE_strongswan-mod-eap-radius is not set -# CONFIG_PACKAGE_strongswan-mod-eap-tls is not set -# CONFIG_PACKAGE_strongswan-mod-farp is not set -# CONFIG_PACKAGE_strongswan-mod-fips-prf is not set -# CONFIG_PACKAGE_strongswan-mod-forecast is not set -# CONFIG_PACKAGE_strongswan-mod-gcm is not set -# CONFIG_PACKAGE_strongswan-mod-gcrypt is not set -CONFIG_PACKAGE_strongswan-mod-gmp=y -# CONFIG_PACKAGE_strongswan-mod-gmpdh is not set -# CONFIG_PACKAGE_strongswan-mod-ha is not set -CONFIG_PACKAGE_strongswan-mod-hmac=y -# CONFIG_PACKAGE_strongswan-mod-kernel-libipsec is not set -CONFIG_PACKAGE_strongswan-mod-kernel-netlink=y -# CONFIG_PACKAGE_strongswan-mod-ldap is not set -# CONFIG_PACKAGE_strongswan-mod-led is not set -# CONFIG_PACKAGE_strongswan-mod-load-tester is not set -# CONFIG_PACKAGE_strongswan-mod-md4 is not set -# CONFIG_PACKAGE_strongswan-mod-md5 is not set -# CONFIG_PACKAGE_strongswan-mod-mysql is not set -CONFIG_PACKAGE_strongswan-mod-nonce=y -# CONFIG_PACKAGE_strongswan-mod-openssl is not set -# CONFIG_PACKAGE_strongswan-mod-pem is not set -# CONFIG_PACKAGE_strongswan-mod-pgp is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs1 is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs11 is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs12 is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs7 is not set -# CONFIG_PACKAGE_strongswan-mod-pkcs8 is not set -CONFIG_PACKAGE_strongswan-mod-pubkey=y -CONFIG_PACKAGE_strongswan-mod-random=y -# CONFIG_PACKAGE_strongswan-mod-rc2 is not set -# CONFIG_PACKAGE_strongswan-mod-resolve is not set -# CONFIG_PACKAGE_strongswan-mod-revocation is not set -CONFIG_PACKAGE_strongswan-mod-sha1=y -# CONFIG_PACKAGE_strongswan-mod-sha2 is not set -# CONFIG_PACKAGE_strongswan-mod-smp is not set -CONFIG_PACKAGE_strongswan-mod-socket-default=y -# CONFIG_PACKAGE_strongswan-mod-socket-dynamic is not set -# CONFIG_PACKAGE_strongswan-mod-sql is not set -# CONFIG_PACKAGE_strongswan-mod-sqlite is not set -# CONFIG_PACKAGE_strongswan-mod-sshkey is not set -CONFIG_PACKAGE_strongswan-mod-stroke=y -# CONFIG_PACKAGE_strongswan-mod-test-vectors is not set -# CONFIG_PACKAGE_strongswan-mod-uci is not set -# CONFIG_PACKAGE_strongswan-mod-unity is not set -CONFIG_PACKAGE_strongswan-mod-updown=y -# CONFIG_PACKAGE_strongswan-mod-vici is not set -# CONFIG_PACKAGE_strongswan-mod-whitelist is not set -CONFIG_PACKAGE_strongswan-mod-x509=y -# CONFIG_PACKAGE_strongswan-mod-xauth-eap is not set -CONFIG_PACKAGE_strongswan-mod-xauth-generic=y -CONFIG_PACKAGE_strongswan-mod-xcbc=y -# CONFIG_PACKAGE_strongswan-pki is not set -# CONFIG_PACKAGE_strongswan-scepclient is not set -# CONFIG_PACKAGE_strongswan-swanctl is not set -# CONFIG_PACKAGE_tinc is not set -# CONFIG_PACKAGE_uanytun is not set -# CONFIG_PACKAGE_uanytun-nettle is not set -# CONFIG_PACKAGE_uanytun-nocrypt is not set -# CONFIG_PACKAGE_uanytun-sslcrypt is not set -# CONFIG_PACKAGE_vpnc is not set -# CONFIG_PACKAGE_vpnc-scripts is not set -# CONFIG_PACKAGE_wireguard is not set -# CONFIG_PACKAGE_wireguard-tools is not set -# CONFIG_PACKAGE_xl2tpd is not set -# CONFIG_PACKAGE_zerotier is not set - -# -# Version Control Systems -# -# CONFIG_PACKAGE_fossil is not set -# CONFIG_PACKAGE_git is not set -# CONFIG_PACKAGE_subversion-client is not set -# CONFIG_PACKAGE_subversion-libs is not set -# CONFIG_PACKAGE_subversion-server is not set - -# -# WWAN -# -# CONFIG_PACKAGE_adb-enablemodem is not set -# CONFIG_PACKAGE_comgt is not set -# CONFIG_PACKAGE_comgt-directip is not set -# CONFIG_PACKAGE_comgt-ncm is not set -# CONFIG_PACKAGE_uqmi is not set - -# -# Web Servers/Proxies -# -# CONFIG_PACKAGE_apache is not set -# CONFIG_PACKAGE_cgi-io is not set -# CONFIG_PACKAGE_clamav is not set -# CONFIG_PACKAGE_dansguardian is not set -# CONFIG_PACKAGE_e2guardian is not set -# CONFIG_PACKAGE_freshclam is not set -# CONFIG_PACKAGE_haproxy is not set -# CONFIG_PACKAGE_haproxy-nossl is not set -# CONFIG_PACKAGE_lighttpd is not set -# CONFIG_PACKAGE_nginx is not set -# CONFIG_PACKAGE_ngrokc is not set -CONFIG_PACKAGE_pdnsd-alt=y -# CONFIG_PACKAGE_polipo is not set -# CONFIG_PACKAGE_privoxy is not set -# CONFIG_PACKAGE_radicale-py2 is not set -# CONFIG_PACKAGE_radicale-py3 is not set -# CONFIG_PACKAGE_shadowsocks-client is not set -# CONFIG_PACKAGE_shadowsocks-libev-config is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-local is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-redir is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-rules is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-server is not set -# CONFIG_PACKAGE_shadowsocks-libev-ss-tunnel is not set -# CONFIG_PACKAGE_sockd is not set -# CONFIG_PACKAGE_socksify is not set -# CONFIG_PACKAGE_spawn-fcgi is not set -# CONFIG_PACKAGE_squid is not set -# CONFIG_PACKAGE_tinyproxy is not set -CONFIG_PACKAGE_uhttpd=y -# CONFIG_PACKAGE_uhttpd_debug is not set -# CONFIG_PACKAGE_uhttpd-mod-lua is not set -CONFIG_PACKAGE_uhttpd-mod-ubus=y - -# -# dial-in/up -# -# CONFIG_PACKAGE_rp-pppoe-common is not set -# CONFIG_PACKAGE_rp-pppoe-relay is not set -# CONFIG_PACKAGE_rp-pppoe-server is not set - -# -# tcprelay -# -# CONFIG_PACKAGE_tcpbridge is not set -# CONFIG_PACKAGE_tcpcapinfo is not set -# CONFIG_PACKAGE_tcpliveplay is not set -# CONFIG_PACKAGE_tcpprep is not set -# CONFIG_PACKAGE_tcpreplay is not set -# CONFIG_PACKAGE_tcpreplay-all is not set -# CONFIG_PACKAGE_tcpreplay-edit is not set -# CONFIG_PACKAGE_tcprewrite is not set - -# -# wireless -# -# CONFIG_PACKAGE_aircrack-ng is not set -# CONFIG_PACKAGE_airmon-ng is not set -# CONFIG_PACKAGE_dynapoint is not set -# CONFIG_PACKAGE_horst is not set -# CONFIG_PACKAGE_kismet-client is not set -# CONFIG_PACKAGE_kismet-drone is not set -# CONFIG_PACKAGE_kismet-server is not set -# CONFIG_PACKAGE_reaver is not set -# CONFIG_PACKAGE_wavemon is not set -CONFIG_PACKAGE_wifischedule=y -# CONFIG_PACKAGE_464xlat is not set -# CONFIG_PACKAGE_6in4 is not set -# CONFIG_PACKAGE_6rd is not set -# CONFIG_PACKAGE_6to4 is not set -# CONFIG_PACKAGE_acme is not set -# CONFIG_PACKAGE_adblock is not set -CONFIG_PACKAGE_adbyby=y -# CONFIG_PACKAGE_addrwatch is not set -# CONFIG_PACKAGE_ahcpd is not set -# CONFIG_PACKAGE_alfred is not set -# CONFIG_PACKAGE_apcupsd is not set -# CONFIG_PACKAGE_apcupsd-cgi is not set -# CONFIG_PACKAGE_apinger is not set -# CONFIG_PACKAGE_arp-scan is not set -# CONFIG_PACKAGE_authsae is not set -# CONFIG_PACKAGE_batctl is not set -# CONFIG_PACKAGE_beanstalkd is not set -# CONFIG_PACKAGE_bmon is not set -# CONFIG_PACKAGE_bwm-ng is not set -# CONFIG_PACKAGE_chat is not set -# CONFIG_PACKAGE_cifsmount is not set -# CONFIG_PACKAGE_coap-server is not set -# CONFIG_PACKAGE_conserver is not set -# CONFIG_PACKAGE_cshark is not set -# CONFIG_PACKAGE_daemonlogger is not set -# CONFIG_PACKAGE_darkstat is not set -# CONFIG_PACKAGE_dhcpcd is not set -# CONFIG_PACKAGE_dmapd is not set -# CONFIG_PACKAGE_dogcom is not set -# CONFIG_PACKAGE_ds-lite is not set -# CONFIG_PACKAGE_eapol-test is not set -# CONFIG_PACKAGE_esniper is not set -CONFIG_PACKAGE_etherwake=y -# CONFIG_PACKAGE_ethtool is not set -# CONFIG_PACKAGE_fakeidentd is not set -# CONFIG_PACKAGE_fping is not set -# CONFIG_PACKAGE_frpc is not set -# CONFIG_PACKAGE_gnunet is not set -# CONFIG_PACKAGE_gre is not set -# CONFIG_PACKAGE_hnet-full is not set -# CONFIG_PACKAGE_hnet-full-l2tp is not set -# CONFIG_PACKAGE_hnet-full-secure is not set -# CONFIG_PACKAGE_hnetd-nossl is not set -# CONFIG_PACKAGE_hnetd-openssl is not set -# CONFIG_PACKAGE_hostapd is not set -CONFIG_PACKAGE_hostapd-common=y -# CONFIG_PACKAGE_hostapd-mini is not set -# CONFIG_PACKAGE_hostapd-utils is not set -# CONFIG_PACKAGE_httping is not set -# CONFIG_PACKAGE_httping-nossl is not set -# CONFIG_PACKAGE_https_dns_proxy is not set -# CONFIG_PACKAGE_ibrdtn-tools is not set -# CONFIG_PACKAGE_ibrdtnd is not set -# CONFIG_PACKAGE_ifstat is not set -# CONFIG_PACKAGE_iftop is not set -# CONFIG_PACKAGE_iiod is not set -# CONFIG_PACKAGE_iotivity is not set -# CONFIG_PACKAGE_iotivity-cpp is not set -# CONFIG_PACKAGE_iotivity-example-garage is not set -# CONFIG_PACKAGE_iotivity-example-simple is not set -# CONFIG_PACKAGE_iotivity-oic-middle is not set -# CONFIG_PACKAGE_iotivity-resource-container-hue is not set -# CONFIG_PACKAGE_iotivity-resource-container-lib is not set -# CONFIG_PACKAGE_iotivity-resource-container-sample is not set -# CONFIG_PACKAGE_iotivity-resource-directory-lib is not set -# CONFIG_PACKAGE_iperf is not set -# CONFIG_PACKAGE_iperf3 is not set -# CONFIG_PACKAGE_iperf3-ssl is not set -# CONFIG_PACKAGE_ipip is not set -CONFIG_PACKAGE_ipset=y -# CONFIG_PACKAGE_ipset-dns is not set -CONFIG_PACKAGE_ipset-lists=y -# CONFIG_PACKAGE_iptraf-ng is not set -# CONFIG_PACKAGE_iputils-arping is not set -# CONFIG_PACKAGE_iputils-clockdiff is not set -# CONFIG_PACKAGE_iputils-ping is not set -# CONFIG_PACKAGE_iputils-ping6 is not set -# CONFIG_PACKAGE_iputils-tftpd is not set -# CONFIG_PACKAGE_iputils-tracepath is not set -# CONFIG_PACKAGE_iputils-tracepath6 is not set -# CONFIG_PACKAGE_iputils-traceroute6 is not set -CONFIG_PACKAGE_iw=y -# CONFIG_PACKAGE_jool is not set -# CONFIG_PACKAGE_jool-tools is not set -# CONFIG_PACKAGE_keepalived is not set -# CONFIG_PACKAGE_knxd is not set -# CONFIG_PACKAGE_kplex is not set -# CONFIG_PACKAGE_krb5-client is not set -# CONFIG_PACKAGE_krb5-libs is not set -# CONFIG_PACKAGE_krb5-server is not set -CONFIG_PACKAGE_libipset=y -# CONFIG_PACKAGE_linknx is not set -# CONFIG_PACKAGE_lispd is not set -# CONFIG_PACKAGE_mac-telnet-client is not set -# CONFIG_PACKAGE_mac-telnet-discover is not set -# CONFIG_PACKAGE_mac-telnet-ping is not set -# CONFIG_PACKAGE_mac-telnet-server is not set -# CONFIG_PACKAGE_map is not set -# CONFIG_PACKAGE_map-t is not set -# CONFIG_PACKAGE_memcached is not set -# CONFIG_PACKAGE_mii-tool is not set -# CONFIG_PACKAGE_mini_snmpd is not set -# CONFIG_PACKAGE_minimalist-pcproxy is not set -# CONFIG_PACKAGE_mosquitto-client-nossl is not set -# CONFIG_PACKAGE_mosquitto-client-ssl is not set -# CONFIG_PACKAGE_mosquitto-nossl is not set -# CONFIG_PACKAGE_mosquitto-ssl is not set -# CONFIG_PACKAGE_mproxy is not set -# CONFIG_PACKAGE_mrd6 is not set -# CONFIG_PACKAGE_mtr is not set -# CONFIG_PACKAGE_nbd is not set -# CONFIG_PACKAGE_nbd-server is not set -# CONFIG_PACKAGE_ncp is not set -# CONFIG_PACKAGE_ndppd is not set -# CONFIG_PACKAGE_netcat is not set -# CONFIG_PACKAGE_netdiscover is not set -# CONFIG_PACKAGE_netperf is not set -CONFIG_PACKAGE_nlbwmon=y -# CONFIG_PACKAGE_noddos is not set -# CONFIG_PACKAGE_noping is not set -# CONFIG_PACKAGE_nut is not set -# CONFIG_PACKAGE_obfsproxy is not set -# CONFIG_PACKAGE_odhcp6c is not set -# CONFIG_PACKAGE_odhcpd is not set -# CONFIG_PACKAGE_ola is not set -# CONFIG_PACKAGE_omcproxy is not set -# CONFIG_PACKAGE_openldap-server is not set -# CONFIG_PACKAGE_oscam is not set -# CONFIG_PACKAGE_oping is not set -# CONFIG_PACKAGE_pen is not set -# CONFIG_PACKAGE_pimbd is not set -# CONFIG_PACKAGE_pingcheck is not set -# CONFIG_PACKAGE_port-mirroring is not set -# CONFIG_PACKAGE_portmap is not set -CONFIG_PACKAGE_ppp=y -# CONFIG_PACKAGE_ppp-mod-passwordfd is not set -# CONFIG_PACKAGE_ppp-mod-pppoa is not set -CONFIG_PACKAGE_ppp-mod-pppoe=y -# CONFIG_PACKAGE_ppp-mod-pppol2tp is not set -# CONFIG_PACKAGE_ppp-mod-pptp is not set -# CONFIG_PACKAGE_ppp-mod-radius is not set -# CONFIG_PACKAGE_ppp-multilink is not set -# CONFIG_PACKAGE_pppdump is not set -# CONFIG_PACKAGE_pppoe-discovery is not set -# CONFIG_PACKAGE_pppossh is not set -# CONFIG_PACKAGE_pppstats is not set -# CONFIG_PACKAGE_radsecproxy is not set -# CONFIG_PACKAGE_redsocks is not set -# CONFIG_PACKAGE_remserial is not set -# CONFIG_PACKAGE_rssileds is not set -# CONFIG_PACKAGE_rsyslog is not set -# CONFIG_PACKAGE_samba36-client is not set -# CONFIG_PACKAGE_samba36-net is not set -# CONFIG_PACKAGE_samba36-server is not set -# CONFIG_PACKAGE_scapy is not set -# CONFIG_PACKAGE_sctp is not set -# CONFIG_PACKAGE_sctp-tools is not set -# CONFIG_PACKAGE_seafile-ccnet is not set -# CONFIG_PACKAGE_seafile-seahub is not set -# CONFIG_PACKAGE_seafile-server is not set -# CONFIG_PACKAGE_ser2net is not set -# CONFIG_PACKAGE_shadowsocksr-libev is not set -CONFIG_PACKAGE_shadowsocksr-libev-alt=y -# CONFIG_PACKAGE_shadowsocksr-libev-gfwlist is not set -# CONFIG_PACKAGE_shadowsocksr-libev-gfwlist-4M is not set -# CONFIG_PACKAGE_shadowsocksr-libev-gfwlist-polarssl is not set -# CONFIG_PACKAGE_shadowsocksr-libev-mini is not set -# CONFIG_PACKAGE_shadowsocksr-libev-polarssl is not set -# CONFIG_PACKAGE_simple-adblock is not set -# CONFIG_PACKAGE_sipgrep is not set -# CONFIG_PACKAGE_smartsnmpd is not set -# CONFIG_PACKAGE_sngrep is not set -# CONFIG_PACKAGE_snmp-mibs is not set -# CONFIG_PACKAGE_snmp-utils is not set -# CONFIG_PACKAGE_snmpd is not set -# CONFIG_PACKAGE_snmpd-static is not set -# CONFIG_PACKAGE_snmptrapd is not set -# CONFIG_PACKAGE_socat is not set -# CONFIG_PACKAGE_softflowd is not set -# CONFIG_PACKAGE_soloscli is not set -# CONFIG_PACKAGE_stunnel is not set -# CONFIG_PACKAGE_tayga is not set -# CONFIG_PACKAGE_tcpdump is not set -# CONFIG_PACKAGE_tcpdump-mini is not set -# CONFIG_PACKAGE_tor is not set -# CONFIG_PACKAGE_tor-gencert is not set -# CONFIG_PACKAGE_tor-geoip is not set -# CONFIG_PACKAGE_tor-resolve is not set -# CONFIG_PACKAGE_travelmate is not set -# CONFIG_PACKAGE_u2pnpd is not set -CONFIG_PACKAGE_uclient-fetch=y -# CONFIG_PACKAGE_udpxy is not set -# CONFIG_PACKAGE_ulogd is not set -# CONFIG_PACKAGE_umbim is not set -# CONFIG_PACKAGE_umdns is not set -# CONFIG_PACKAGE_usbip is not set -# CONFIG_PACKAGE_vallumd is not set -CONFIG_PACKAGE_vlmcsd=y -# CONFIG_PACKAGE_vncrepeater is not set -# CONFIG_PACKAGE_vnstat is not set -# CONFIG_PACKAGE_vpnbypass is not set -# CONFIG_PACKAGE_vsc7385-ucode-pb44 is not set -# CONFIG_PACKAGE_vsc7395-ucode-pb44 is not set -# CONFIG_PACKAGE_vti is not set -# CONFIG_PACKAGE_vxlan is not set -# CONFIG_PACKAGE_wakeonlan is not set -# CONFIG_PACKAGE_wpa-cli is not set -# CONFIG_PACKAGE_wpa-supplicant is not set -# CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK is not set -# CONFIG_WPA_RFKILL_SUPPORT is not set -CONFIG_WPA_MSG_MIN_PRIORITY=3 -# CONFIG_DRIVER_WEXT_SUPPORT is not set -CONFIG_DRIVER_11N_SUPPORT=y -CONFIG_DRIVER_11AC_SUPPORT=y -CONFIG_DRIVER_11W_SUPPORT=y -# CONFIG_PACKAGE_wpa-supplicant-mesh is not set -# CONFIG_PACKAGE_wpa-supplicant-mini is not set -# CONFIG_PACKAGE_wpa-supplicant-p2p is not set -# CONFIG_PACKAGE_wpad is not set -# CONFIG_PACKAGE_wpad-mesh is not set -CONFIG_PACKAGE_wpad-mini=y -# CONFIG_PACKAGE_wpan-tools is not set -# CONFIG_PACKAGE_wwan is not set -# CONFIG_PACKAGE_xinetd is not set - -# -# Sound -# -# CONFIG_PACKAGE_alsa-utils is not set -# CONFIG_PACKAGE_alsa-utils-seq is not set -# CONFIG_PACKAGE_alsa-utils-tests is not set -# CONFIG_PACKAGE_espeak is not set -# CONFIG_PACKAGE_faad2 is not set -# CONFIG_PACKAGE_fdk-aac is not set -# CONFIG_PACKAGE_forked-daapd is not set -# CONFIG_PACKAGE_ices is not set -# CONFIG_PACKAGE_lame is not set -# CONFIG_PACKAGE_lame-lib is not set -# CONFIG_PACKAGE_liblo-utils is not set -# CONFIG_PACKAGE_madplay is not set -# CONFIG_PACKAGE_madplay-alsa is not set -# CONFIG_PACKAGE_moc is not set -# CONFIG_PACKAGE_mpc is not set -# CONFIG_PACKAGE_mpd-avahi-service is not set -# CONFIG_PACKAGE_mpd-full is not set -# CONFIG_PACKAGE_mpd-mini is not set -# CONFIG_PACKAGE_mpg123 is not set -# CONFIG_PACKAGE_pianod is not set -# CONFIG_PACKAGE_pianod-client is not set -# CONFIG_PACKAGE_portaudio is not set -# CONFIG_PACKAGE_pulseaudio-daemon is not set -# CONFIG_PACKAGE_pulseaudio-profiles is not set -# CONFIG_PACKAGE_pulseaudio-tools is not set -# CONFIG_PACKAGE_shairplay is not set -# CONFIG_PACKAGE_shairport-sync-mbedtls is not set -# CONFIG_PACKAGE_shairport-sync-mini is not set -# CONFIG_PACKAGE_shairport-sync-openssl is not set -# CONFIG_PACKAGE_shine is not set -# CONFIG_PACKAGE_sox is not set -# CONFIG_PACKAGE_squeezelite-full is not set -# CONFIG_PACKAGE_squeezelite-mini is not set -# CONFIG_PACKAGE_svox is not set -# CONFIG_PACKAGE_upmpdcli is not set - -# -# Utilities -# - -# -# Boot Loaders -# -# CONFIG_PACKAGE_fconfig is not set -# CONFIG_PACKAGE_rbcfg is not set -CONFIG_PACKAGE_uboot-envtools=y -# CONFIG_UBOOT_ENVTOOLS_UBI is not set - -# -# Compression -# -# CONFIG_PACKAGE_bsdtar is not set -# CONFIG_PACKAGE_bzip2 is not set -# CONFIG_PACKAGE_gzip is not set -# CONFIG_PACKAGE_unrar is not set -# CONFIG_PACKAGE_unzip is not set -# CONFIG_PACKAGE_xz-utils is not set -# CONFIG_PACKAGE_zip is not set - -# -# Disc -# -# CONFIG_PACKAGE_blkdiscard is not set -# CONFIG_PACKAGE_blkid is not set -# CONFIG_PACKAGE_cfdisk is not set -# CONFIG_PACKAGE_fdisk is not set -# CONFIG_PACKAGE_findfs is not set -# CONFIG_PACKAGE_hd-idle is not set -# CONFIG_PACKAGE_hdparm is not set -# CONFIG_PACKAGE_lsblk is not set -# CONFIG_PACKAGE_lvm2 is not set -# CONFIG_PACKAGE_mdadm is not set -# CONFIG_PACKAGE_partx-utils is not set -# CONFIG_PACKAGE_sfdisk is not set -# CONFIG_PACKAGE_wipefs is not set - -# -# Editors -# -# CONFIG_PACKAGE_joe is not set -# CONFIG_PACKAGE_nano is not set -# CONFIG_PACKAGE_vim is not set -# CONFIG_PACKAGE_vim-full is not set -# CONFIG_PACKAGE_vim-fuller is not set -# CONFIG_PACKAGE_vim-help is not set -# CONFIG_PACKAGE_vim-runtime is not set -# CONFIG_PACKAGE_zile is not set - -# -# Encryption -# -# CONFIG_PACKAGE_ccrypt is not set -# CONFIG_PACKAGE_certtool is not set -# CONFIG_PACKAGE_cryptsetup is not set -# CONFIG_PACKAGE_cryptsetup-openssl is not set -# CONFIG_PACKAGE_gnupg is not set -# CONFIG_PACKAGE_gnutls-utils is not set -# CONFIG_PACKAGE_gpgv is not set -# CONFIG_PACKAGE_px5g-mbedtls is not set -# CONFIG_PACKAGE_px5g-standalone is not set -# CONFIG_PACKAGE_stoken is not set - -# -# Filesystem -# -# CONFIG_PACKAGE_acl is not set -# CONFIG_PACKAGE_attr is not set -# CONFIG_PACKAGE_badblocks is not set -# CONFIG_PACKAGE_btrfs-progs is not set -# CONFIG_PACKAGE_chattr is not set -# CONFIG_PACKAGE_debugfs is not set -# CONFIG_PACKAGE_dosfstools is not set -# CONFIG_PACKAGE_dumpe2fs is not set -# CONFIG_PACKAGE_e2freefrag is not set -# CONFIG_PACKAGE_e2fsprogs is not set -# CONFIG_PACKAGE_f2fs-tools is not set -# CONFIG_PACKAGE_f2fsck is not set -# CONFIG_PACKAGE_filefrag is not set -# CONFIG_PACKAGE_fuse-utils is not set -# CONFIG_PACKAGE_hfsfsck is not set -# CONFIG_PACKAGE_lsattr is not set -# CONFIG_PACKAGE_mkf2fs is not set -# CONFIG_PACKAGE_mkhfs is not set -# CONFIG_PACKAGE_ncdu is not set -# CONFIG_PACKAGE_nfs-utils is not set -CONFIG_PACKAGE_ntfs-3g=y -# CONFIG_PACKAGE_NTFS-3G_USE_LIBFUSE is not set -# CONFIG_PACKAGE_ntfs-3g-low is not set -# CONFIG_PACKAGE_ntfs-3g-utils is not set -# CONFIG_PACKAGE_owfs is not set -# CONFIG_PACKAGE_owshell is not set -# CONFIG_PACKAGE_resize2fs is not set -# CONFIG_PACKAGE_squashfs-tools-mksquashfs is not set -# CONFIG_PACKAGE_squashfs-tools-unsquashfs is not set -# CONFIG_PACKAGE_swap-utils is not set -# CONFIG_PACKAGE_sysfsutils is not set -# CONFIG_PACKAGE_tune2fs is not set -# CONFIG_PACKAGE_xfs-fsck is not set -# CONFIG_PACKAGE_xfs-growfs is not set -# CONFIG_PACKAGE_xfs-mkfs is not set - -# -# Image Manipulation -# -# CONFIG_PACKAGE_jpeg-tools is not set -# CONFIG_PACKAGE_tiff-utils is not set - -# -# Luci -# -# CONFIG_PACKAGE_luci-app-haproxy-tcp is not set - -# -# Microcontroller programming -# -# CONFIG_PACKAGE_avrdude is not set -# CONFIG_PACKAGE_dfu-programmer is not set -# CONFIG_PACKAGE_stm32flash is not set - -# -# RTKLIB Suite -# -# CONFIG_PACKAGE_convbin is not set -# CONFIG_PACKAGE_pos2kml is not set -# CONFIG_PACKAGE_rnx2rtkp is not set -# CONFIG_PACKAGE_rtkrcv is not set -# CONFIG_PACKAGE_str2str is not set - -# -# Shells -# -# CONFIG_PACKAGE_bash is not set -# CONFIG_PACKAGE_klish is not set -# CONFIG_PACKAGE_tcsh is not set -# CONFIG_PACKAGE_zsh is not set - -# -# Telephony -# -# CONFIG_PACKAGE_dahdi-cfg is not set -# CONFIG_PACKAGE_dahdi-monitor is not set - -# -# Terminal -# -# CONFIG_PACKAGE_agetty is not set -# CONFIG_PACKAGE_dvtm is not set -# CONFIG_PACKAGE_minicom is not set -# CONFIG_PACKAGE_picocom is not set -# CONFIG_PACKAGE_screen is not set -# CONFIG_PACKAGE_script-utils is not set -# CONFIG_PACKAGE_serialconsole is not set -# CONFIG_PACKAGE_setterm is not set -# CONFIG_PACKAGE_tmux is not set -# CONFIG_PACKAGE_ttyd is not set -# CONFIG_PACKAGE_wall is not set - -# -# Virtualization -# - -# -# Zoneinfo -# -# CONFIG_PACKAGE_zoneinfo-africa is not set -# CONFIG_PACKAGE_zoneinfo-asia is not set -# CONFIG_PACKAGE_zoneinfo-atlantic is not set -# CONFIG_PACKAGE_zoneinfo-australia-nz is not set -# CONFIG_PACKAGE_zoneinfo-core is not set -# CONFIG_PACKAGE_zoneinfo-europe is not set -# CONFIG_PACKAGE_zoneinfo-india is not set -# CONFIG_PACKAGE_zoneinfo-northamerica is not set -# CONFIG_PACKAGE_zoneinfo-pacific is not set -# CONFIG_PACKAGE_zoneinfo-poles is not set -# CONFIG_PACKAGE_zoneinfo-simple is not set -# CONFIG_PACKAGE_zoneinfo-southamerica is not set - -# -# database -# -# CONFIG_PACKAGE_mysql-server is not set -# CONFIG_PACKAGE_pgsql-cli is not set -# CONFIG_PACKAGE_pgsql-cli-extra is not set -# CONFIG_PACKAGE_pgsql-server is not set -# CONFIG_PACKAGE_rrdcgi1 is not set -# CONFIG_PACKAGE_rrdtool1 is not set -# CONFIG_PACKAGE_sqlite3-cli is not set -# CONFIG_PACKAGE_unixodbc-tools is not set -# CONFIG_PACKAGE_adb is not set -# CONFIG_PACKAGE_ap51-flash is not set -# CONFIG_PACKAGE_at is not set -# CONFIG_PACKAGE_bandwidthd is not set -# CONFIG_PACKAGE_bandwidthd-pgsql is not set -# CONFIG_PACKAGE_bandwidthd-php is not set -# CONFIG_PACKAGE_bandwidthd-sqlite is not set -# CONFIG_PACKAGE_banhostlist is not set -# CONFIG_PACKAGE_bc is not set -# CONFIG_PACKAGE_bluelog is not set -# CONFIG_PACKAGE_bluez-daemon is not set -# CONFIG_PACKAGE_bluez-examples is not set -# CONFIG_PACKAGE_bluez-utils is not set -# CONFIG_PACKAGE_bonniexx is not set -# CONFIG_PACKAGE_bsdiff is not set -# CONFIG_PACKAGE_bspatch is not set -# CONFIG_PACKAGE_cal is not set -# CONFIG_PACKAGE_canutils is not set -# CONFIG_PACKAGE_cmdpad is not set -# CONFIG_PACKAGE_coap-client is not set -# CONFIG_PACKAGE_collectd is not set -CONFIG_PACKAGE_coreutils=y -CONFIG_PACKAGE_coreutils-base64=y -# CONFIG_PACKAGE_coreutils-basename is not set -# CONFIG_PACKAGE_coreutils-cat is not set -# CONFIG_PACKAGE_coreutils-chcon is not set -# CONFIG_PACKAGE_coreutils-chgrp is not set -# CONFIG_PACKAGE_coreutils-chmod is not set -# CONFIG_PACKAGE_coreutils-chown is not set -# CONFIG_PACKAGE_coreutils-chroot is not set -# CONFIG_PACKAGE_coreutils-cksum is not set -# CONFIG_PACKAGE_coreutils-comm is not set -# CONFIG_PACKAGE_coreutils-cp is not set -# CONFIG_PACKAGE_coreutils-csplit is not set -# CONFIG_PACKAGE_coreutils-cut is not set -# CONFIG_PACKAGE_coreutils-date is not set -# CONFIG_PACKAGE_coreutils-dd is not set -# CONFIG_PACKAGE_coreutils-dir is not set -# CONFIG_PACKAGE_coreutils-dircolors is not set -# CONFIG_PACKAGE_coreutils-dirname is not set -# CONFIG_PACKAGE_coreutils-du is not set -# CONFIG_PACKAGE_coreutils-echo is not set -# CONFIG_PACKAGE_coreutils-env is not set -# CONFIG_PACKAGE_coreutils-expand is not set -# CONFIG_PACKAGE_coreutils-expr is not set -# CONFIG_PACKAGE_coreutils-factor is not set -# CONFIG_PACKAGE_coreutils-false is not set -# CONFIG_PACKAGE_coreutils-fmt is not set -# CONFIG_PACKAGE_coreutils-fold is not set -# CONFIG_PACKAGE_coreutils-groups is not set -# CONFIG_PACKAGE_coreutils-head is not set -# CONFIG_PACKAGE_coreutils-hostid is not set -# CONFIG_PACKAGE_coreutils-id is not set -# CONFIG_PACKAGE_coreutils-install is not set -# CONFIG_PACKAGE_coreutils-join is not set -# CONFIG_PACKAGE_coreutils-kill is not set -# CONFIG_PACKAGE_coreutils-link is not set -# CONFIG_PACKAGE_coreutils-ln is not set -# CONFIG_PACKAGE_coreutils-logname is not set -# CONFIG_PACKAGE_coreutils-ls is not set -# CONFIG_PACKAGE_coreutils-md5sum is not set -# CONFIG_PACKAGE_coreutils-mkdir is not set -# CONFIG_PACKAGE_coreutils-mkfifo is not set -# CONFIG_PACKAGE_coreutils-mknod is not set -# CONFIG_PACKAGE_coreutils-mktemp is not set -# CONFIG_PACKAGE_coreutils-mv is not set -# CONFIG_PACKAGE_coreutils-nice is not set -# CONFIG_PACKAGE_coreutils-nl is not set -CONFIG_PACKAGE_coreutils-nohup=y -# CONFIG_PACKAGE_coreutils-nproc is not set -# CONFIG_PACKAGE_coreutils-od is not set -# CONFIG_PACKAGE_coreutils-paste is not set -# CONFIG_PACKAGE_coreutils-pathchk is not set -# CONFIG_PACKAGE_coreutils-pinky is not set -# CONFIG_PACKAGE_coreutils-pr is not set -# CONFIG_PACKAGE_coreutils-printenv is not set -# CONFIG_PACKAGE_coreutils-printf is not set -# CONFIG_PACKAGE_coreutils-ptx is not set -# CONFIG_PACKAGE_coreutils-pwd is not set -# CONFIG_PACKAGE_coreutils-readlink is not set -# CONFIG_PACKAGE_coreutils-realpath is not set -# CONFIG_PACKAGE_coreutils-rm is not set -# CONFIG_PACKAGE_coreutils-rmdir is not set -# CONFIG_PACKAGE_coreutils-runcon is not set -# CONFIG_PACKAGE_coreutils-seq is not set -# CONFIG_PACKAGE_coreutils-sha1sum is not set -# CONFIG_PACKAGE_coreutils-sha224sum is not set -# CONFIG_PACKAGE_coreutils-sha256sum is not set -# CONFIG_PACKAGE_coreutils-sha384sum is not set -# CONFIG_PACKAGE_coreutils-sha512sum is not set -# CONFIG_PACKAGE_coreutils-shred is not set -# CONFIG_PACKAGE_coreutils-shuf is not set -# CONFIG_PACKAGE_coreutils-sleep is not set -# CONFIG_PACKAGE_coreutils-sort is not set -# CONFIG_PACKAGE_coreutils-split is not set -# CONFIG_PACKAGE_coreutils-stat is not set -# CONFIG_PACKAGE_coreutils-stdbuf is not set -# CONFIG_PACKAGE_coreutils-stty is not set -# CONFIG_PACKAGE_coreutils-sum is not set -# CONFIG_PACKAGE_coreutils-sync is not set -# CONFIG_PACKAGE_coreutils-tac is not set -# CONFIG_PACKAGE_coreutils-tail is not set -# CONFIG_PACKAGE_coreutils-tee is not set -# CONFIG_PACKAGE_coreutils-test is not set -# CONFIG_PACKAGE_coreutils-timeout is not set -# CONFIG_PACKAGE_coreutils-touch is not set -# CONFIG_PACKAGE_coreutils-tr is not set -# CONFIG_PACKAGE_coreutils-true is not set -# CONFIG_PACKAGE_coreutils-truncate is not set -# CONFIG_PACKAGE_coreutils-tsort is not set -# CONFIG_PACKAGE_coreutils-tty is not set -# CONFIG_PACKAGE_coreutils-uname is not set -# CONFIG_PACKAGE_coreutils-unexpand is not set -# CONFIG_PACKAGE_coreutils-uniq is not set -# CONFIG_PACKAGE_coreutils-unlink is not set -# CONFIG_PACKAGE_coreutils-uptime is not set -# CONFIG_PACKAGE_coreutils-users is not set -# CONFIG_PACKAGE_coreutils-vdir is not set -# CONFIG_PACKAGE_coreutils-wc is not set -# CONFIG_PACKAGE_coreutils-who is not set -# CONFIG_PACKAGE_coreutils-whoami is not set -# CONFIG_PACKAGE_coreutils-yes is not set -# CONFIG_PACKAGE_crelay is not set -# CONFIG_PACKAGE_ct-bugcheck is not set -# CONFIG_PACKAGE_dbus is not set -# CONFIG_PACKAGE_dfu-util is not set -# CONFIG_PACKAGE_dmesg is not set -# CONFIG_PACKAGE_domoticz is not set -# CONFIG_PACKAGE_dropbearconvert is not set -# CONFIG_PACKAGE_dtc is not set -# CONFIG_PACKAGE_dump1090 is not set -# CONFIG_PACKAGE_ecdsautils is not set -# CONFIG_PACKAGE_elektra-kdb is not set -# CONFIG_PACKAGE_evtest is not set -# CONFIG_PACKAGE_extract is not set -# CONFIG_PACKAGE_file is not set -# CONFIG_PACKAGE_findutils-find is not set -# CONFIG_PACKAGE_findutils-locate is not set -# CONFIG_PACKAGE_findutils-xargs is not set -# CONFIG_PACKAGE_flashrom is not set -# CONFIG_PACKAGE_flashrom-pci is not set -# CONFIG_PACKAGE_flashrom-spi is not set -# CONFIG_PACKAGE_flashrom-usb is not set -# CONFIG_PACKAGE_flent-tools is not set -# CONFIG_PACKAGE_flock is not set -# CONFIG_PACKAGE_fritz-caldata is not set -# CONFIG_PACKAGE_fritz-tffs is not set -# CONFIG_PACKAGE_ftdi_eeprom is not set -# CONFIG_PACKAGE_gammu is not set -# CONFIG_PACKAGE_gawk is not set -# CONFIG_PACKAGE_getopt is not set -# CONFIG_PACKAGE_gkermit is not set -# CONFIG_PACKAGE_gpioctl-sysfs is not set -# CONFIG_PACKAGE_gpsd is not set -# CONFIG_PACKAGE_gpsd-clients is not set -# CONFIG_PACKAGE_grep is not set -# CONFIG_PACKAGE_hamlib is not set -# CONFIG_PACKAGE_haserl is not set -# CONFIG_PACKAGE_haveged is not set -# CONFIG_PACKAGE_hub-ctrl is not set -# CONFIG_PACKAGE_hwclock is not set -# CONFIG_PACKAGE_i2c-tools is not set -# CONFIG_PACKAGE_iconv is not set -# CONFIG_PACKAGE_iio-utils is not set -# CONFIG_PACKAGE_io is not set -# CONFIG_PACKAGE_irqbalance is not set -# CONFIG_PACKAGE_iwcap is not set -CONFIG_PACKAGE_iwinfo=y -# CONFIG_PACKAGE_jq is not set -CONFIG_PACKAGE_jshn=y -# CONFIG_PACKAGE_kmod is not set -# CONFIG_PACKAGE_lcd4linux-custom is not set -# CONFIG_PACKAGE_lcdproc-clients is not set -# CONFIG_PACKAGE_lcdproc-drivers is not set -# CONFIG_PACKAGE_lcdproc-server is not set -# CONFIG_PACKAGE_less is not set -# CONFIG_PACKAGE_less-wide is not set -# CONFIG_PACKAGE_libimobiledevice-utils is not set -CONFIG_PACKAGE_libjson-script=y -# CONFIG_PACKAGE_libplist-utils is not set -# CONFIG_PACKAGE_libsysrepo is not set -# CONFIG_PACKAGE_libusbmuxd-utils is not set -# CONFIG_PACKAGE_lm-sensors is not set -# CONFIG_PACKAGE_lm-sensors-detect is not set -# CONFIG_PACKAGE_logger is not set -# CONFIG_PACKAGE_logrotate is not set -# CONFIG_PACKAGE_look is not set -# CONFIG_PACKAGE_losetup is not set -# CONFIG_PACKAGE_lrzsz is not set -# CONFIG_PACKAGE_lsof is not set -# CONFIG_PACKAGE_lxc is not set -# CONFIG_PACKAGE_maccalc is not set -# CONFIG_PACKAGE_macchanger is not set -# CONFIG_PACKAGE_mbtools is not set -# CONFIG_PACKAGE_mc is not set -# CONFIG_PACKAGE_mcookie is not set -# CONFIG_PACKAGE_mmc-utils is not set -# CONFIG_PACKAGE_moreutils is not set -# CONFIG_PACKAGE_mount-utils is not set -# CONFIG_PACKAGE_mpack is not set -# CONFIG_PACKAGE_mt-st is not set -# CONFIG_PACKAGE_namei is not set -# CONFIG_PACKAGE_netopeer2-cli is not set -# CONFIG_PACKAGE_netopeer2-keystored is not set -# CONFIG_PACKAGE_netopeer2-server is not set -# CONFIG_PACKAGE_netwhere is not set -# CONFIG_PACKAGE_oath-toolkit is not set -# CONFIG_PACKAGE_open-plc-utils is not set -# CONFIG_PACKAGE_open2300 is not set -# CONFIG_PACKAGE_openldap-utils is not set -# CONFIG_PACKAGE_openobex is not set -# CONFIG_PACKAGE_openobex-apps is not set -# CONFIG_PACKAGE_openocd is not set -# CONFIG_PACKAGE_opensc-utils is not set -# CONFIG_PACKAGE_openssl-util is not set -# CONFIG_PACKAGE_openzwave is not set -# CONFIG_PACKAGE_openzwave-config is not set -# CONFIG_PACKAGE_opus-tools is not set -# CONFIG_PACKAGE_owipcalc is not set -# CONFIG_PACKAGE_pciutils is not set -# CONFIG_PACKAGE_pcsc-tools is not set -# CONFIG_PACKAGE_pcscd is not set -# CONFIG_PACKAGE_pps-tools is not set -# CONFIG_PACKAGE_prlimit is not set -# CONFIG_PACKAGE_procps-ng is not set -# CONFIG_PACKAGE_progress is not set -# CONFIG_PACKAGE_prometheus-node-exporter-lua is not set -# CONFIG_PACKAGE_pv is not set -# CONFIG_PACKAGE_qrencode is not set -# CONFIG_PACKAGE_relayctl is not set -# CONFIG_PACKAGE_rename is not set -# CONFIG_PACKAGE_rng-tools is not set -# CONFIG_PACKAGE_rtl-ais is not set -# CONFIG_PACKAGE_rtl-sdr is not set -# CONFIG_PACKAGE_sane-backends is not set -# CONFIG_PACKAGE_sane-daemon is not set -# CONFIG_PACKAGE_sane-frontends is not set -# CONFIG_PACKAGE_shadow-utils is not set -CONFIG_PACKAGE_shellsync=y -# CONFIG_PACKAGE_sispmctl is not set -# CONFIG_PACKAGE_slide-switch is not set -# CONFIG_PACKAGE_smartd is not set -# CONFIG_PACKAGE_smartmontools is not set -# CONFIG_PACKAGE_smstools3 is not set -# CONFIG_PACKAGE_sockread is not set -# CONFIG_PACKAGE_spi-tools is not set -# CONFIG_PACKAGE_spidev-test is not set -# CONFIG_PACKAGE_strace is not set -# CONFIG_PACKAGE_strace_libunwind is not set -# CONFIG_PACKAGE_stress is not set -# CONFIG_PACKAGE_sumo is not set -# CONFIG_PACKAGE_sysrepo is not set -# CONFIG_PACKAGE_sysrepocfg is not set -# CONFIG_PACKAGE_sysrepoctl is not set -# CONFIG_PACKAGE_sysstat is not set -# CONFIG_PACKAGE_tar is not set -# CONFIG_PACKAGE_taskwarrior is not set -# CONFIG_PACKAGE_tracertools is not set -# CONFIG_PACKAGE_tree is not set -# CONFIG_PACKAGE_triggerhappy is not set -# CONFIG_PACKAGE_udns-dnsget is not set -# CONFIG_PACKAGE_udns-ex-rdns is not set -# CONFIG_PACKAGE_udns-rblcheck is not set -# CONFIG_PACKAGE_ugps is not set -# CONFIG_PACKAGE_usb-modeswitch is not set -# CONFIG_PACKAGE_usbmuxd is not set -# CONFIG_PACKAGE_usbreset is not set -# CONFIG_PACKAGE_usbutils is not set -# CONFIG_PACKAGE_uuidd is not set -# CONFIG_PACKAGE_uuidgen is not set -# CONFIG_PACKAGE_uvcdynctrl is not set -# CONFIG_PACKAGE_v4l-utils is not set -# CONFIG_PACKAGE_view1090 is not set -# CONFIG_PACKAGE_watchcat is not set -# CONFIG_PACKAGE_whereis is not set -# CONFIG_PACKAGE_wifitoggle is not set -# CONFIG_PACKAGE_xsltproc is not set -# CONFIG_PACKAGE_xxd is not set -# CONFIG_PACKAGE_yanglint is not set -# CONFIG_PACKAGE_yara is not set -# CONFIG_PACKAGE_yunbridge is not set - -# -# Xorg -# - -# -# font-utils -# -# CONFIG_PACKAGE_fontconfig is not set From b3890dd1bdee58039e53215437b796202504e7ac Mon Sep 17 00:00:00 2001 From: aooom Date: Mon, 9 Apr 2018 15:17:41 +0800 Subject: [PATCH 7/7] translate --- .../lean/default-settings/i18n/default.zh-cn.po | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/package/lean/default-settings/i18n/default.zh-cn.po b/package/lean/default-settings/i18n/default.zh-cn.po index c5167e294..bf5517236 100644 --- a/package/lean/default-settings/i18n/default.zh-cn.po +++ b/package/lean/default-settings/i18n/default.zh-cn.po @@ -7,17 +7,11 @@ msgstr "架构" msgid "CPU Temperature" msgstr "CPU温度" -<<<<<<< HEAD +msgid "CPU Info" +msgstr "CPU信息" + msgid "CPU Model" msgstr "处理器型号" -======= -msgid "CPU Info" -msgstr "CPU信息" - ->>>>>>> upstream/master - -msgid "CPU Info" -msgstr "CPU信息" msgid "CPU frequency" msgstr "CPU频率" @@ -26,13 +20,13 @@ msgid "RAM frequency" msgstr "RAM频率" msgid "Flash Size" -msgstr "闪存" +msgstr "闪存大小" msgid "Free Memory" msgstr "释放内存" msgid "ShadowsocksR Pro" -msgstr "虾都缩壳" +msgstr "酸酸乳" msgid "Core" msgstr "核心数"