[
  {
    "path": ".github/workflows/Build_OP_NanoPi_R2S.yml",
    "content": "#=================================================\n# Description: Build OpenWrt using GitHub Actions\n# Lisence: MIT\n# Author: eSirPlayground\n# Youtube Channel: https://goo.gl/fvkdwm \n#=================================================\n\nname: Build_NanoPi_R2S\n\n# Add a button to trigger the workflow\non: \n  repository_dispatch:\n  workflow_dispatch:\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@master\n\n    - name: Initialization environment\n      env:\n        DEBIAN_FRONTEND: noninteractive\n      run: |\n        set +e\n        docker rmi `docker images -q`\n        echo \"Deleting files, please wait ...\"\n        sudo rm -rf \\\n          /usr/share/dotnet \\\n          /etc/mysql \\\n          /etc/php\n        sudo -E apt-get -y purge \\\n          azure-cli \\\n          ghc* \\\n          zulu* \\\n          hhvm \\\n          llvm* \\\n          firefox \\\n          google* \\\n          dotnet* \\\n          powershell \\\n          openjdk* \\\n          mysql* \\\n          php*\n        sudo -E apt-get update\n        sudo -E apt-get -y install ack antlr3 aria2 asciidoc autoconf automake autopoint binutils bison build-essential bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libglib2.0-dev libgmp3-dev libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libreadline-dev libssl-dev libtool lrzsz mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pip libpython3-dev qemu-utils rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev\n        sudo -E apt-get -y autoremove --purge\n        sudo -E apt-get clean\n    - name: Clone source code\n      env: \n        REPO_URL: https://github.com/coolsnowwolf/lede\n        REPO_BRANCH: master\n      run: |\n        git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt\n        cd openwrt\n        echo \"src-git ssrp https://github.com/fw876/helloworld.git\" >> ./feeds.conf.default\n        \n    - name: Update & Install feeds\n      working-directory: ./openwrt\n      run: |\n        ./scripts/feeds update -a\n        ./scripts/feeds install -a\n        ./scripts/feeds install -a\n        \n    #- name: Import external feeds - passwall\n    #  working-directory: ./openwrt\n    #  run: |\n    #    git clone https://github.com/xiaorouji/openwrt-passwall.git package/lienol\n    #    git clone \"your_github_link\" package/\"your_folder_name\"      \n\n    #- name: Import external feeds - JerryKuKu Argon\n    #  working-directory: ./openwrt\n    #  run: |\n    #    git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git package/luci-theme-argon-jerrykuku\n\n    - name: Configuration Customization - Build_NanoPi_R2S\n      env:\n        CONFIG_FILE: 'NanoPi_R2S.config'\n      run: |\n        [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config\n        chmod +x ./customize.sh && ./customize.sh\n        cd openwrt && make defconfig\n        \n    - name: Download package\n      working-directory: ./openwrt\n      run: |\n        make download -j$(nproc)\n        find dl -size -1024c -exec ls -l {} \\;\n        find dl -size -1024c -exec rm -f {} \\;\n    - name: Build firmware\n      working-directory: ./openwrt\n      run: |\n        echo -e \"$(nproc) thread build.\"\n        make -j$(nproc) V=s\n    - name : Upload artifact\n      uses: actions/upload-artifact@master\n      with:\n        name: OpenWrt\n        path: openwrt/bin\n"
  },
  {
    "path": ".github/workflows/Build_OP_Nanopi_R4S.yml",
    "content": "name: Build_NanoPi_R4S\n\n# Add a button to trigger the workflow\non: \n  repository_dispatch:\n  workflow_dispatch:\n\njobs:\n  OpenWrt-18_06:\n    runs-on: ubuntu-18.04\n    steps:\n    - name: Checkout Repository\n      uses: actions/checkout@v2\n    - name: Init Building Dependencies\n      env:\n        DEBIAN_FRONTEND: noninteractive\n      run: |\n        set +e\n        docker rmi $(docker images -q)\n        sudo -E apt-get remove -y --purge azure-cli ghc zulu* hhvm llvm* firefox google* dotnet* powershell mysql* php* mssql-tools msodbcsql17 android*\n        sudo -E apt-get update -y\n        sudo -E apt-get full-upgrade -y\n        sudo -E apt-get install -y ack antlr3 aria2 asciidoc autoconf automake autopoint binutils bison build-essential bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libglib2.0-dev libgmp3-dev libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libreadline-dev libssl-dev libtool lrzsz mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pip libpython3-dev qemu-utils rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev\n        for i in $(ls /usr/bin/*-8); do sudo -E ln -sf $i ${i%%-8*}; done\n        sudo -E ln -sf /usr/include/asm-generic /usr/include/asm\n        sudo -E apt-get autoremove -y --purge\n        sudo -E apt-get clean -y\n        sudo -E swapoff -a\n        sudo -E rm -rf /usr/share/dotnet /etc/mysql /etc/php /usr/local/lib/android /opt/ghc /swapfile\n    - name: Server Benchmark\n      run: |\n        wget -qO- --no-check-certificate https://raw.githubusercontent.com/Kurokosama/serverbench/main/bench.sh | bash\n    - name: Clone Source\n      run: |\n        cd \"/home/runner\"\n        git clone --branch \"openwrt-18.06-k5.4\" --single-branch \"https://github.com/immortalwrt/immortalwrt\" \"openwrt\"\n        sudo chown -R runner:runner \"openwrt\"\n        cd \"/home/runner/openwrt\"\n        ./scripts/feeds update -a\n        ./scripts/feeds install -a\n        patch -p1 < \"${GITHUB_WORKSPACE}/patches/1806-modify_for_r4s.patch\"\n    - name: Build OpenWrt-18.06\n      run: |\n        cd \"/home/runner/openwrt\"\n        cp -f \"${GITHUB_WORKSPACE}/Nanopi_R4S.config\" \".config\"\n        chmod +x ./customize.sh && ./customize.sh\n        make defconfig\n        make -j$[$(nproc)+1]\n        mv -f \"bin/targets/rockchip/armv8/immortalwrt-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz\" \"../immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz\"\n        mv -f \"bin/targets/rockchip/armv8/immortalwrt-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz\" \"../immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz\"\n        mv -f \"bin/targets/rockchip/armv8/sha256sums\" \"../immortalwrt-18.06-sha256sums\"\n    - name: Rebuild OpenWrt to Collect Error Log If Failed\n      if: failure()\n      run: |\n        cd \"/home/runner/openwrt\"\n        make -j1 V=s\n        mv -f \"bin/targets/rockchip/armv8/immortalwrt-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz\" \"../immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz\"\n        mv -f \"bin/targets/rockchip/armv8/immortalwrt-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz\" \"../immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz\"\n        mv -f \"bin/targets/rockchip/armv8/sha256sums\" \"../immortalwrt-18.06-sha256sums\"\n    - name: Upload OpenWrt-18.06 SHA256SUM Hash\n      uses: actions/upload-artifact@v2\n      with:\n        name: openwrt-18.06-sha256sums\n        path: /home/runner/openwrt-18.06-sha256sums\n    - name: Upload OpenWrt-18.06 EXT4 Firmware\n      uses: actions/upload-artifact@v2\n      with:\n        name: openwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz\n        path: /home/runner/immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz\n    - name: Upload OpenWrt-18.06 SquashFS Firmware\n      uses: actions/upload-artifact@v2\n      with:\n        name: openwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz\n        path: /home/runner/immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz\n    - name: Upload OpenWrt-18.06 IPK Packages\n      uses: actions/upload-artifact@v2\n      with:\n        name: IPK Packages\n        path: /home/runner/openwrt/bin/packages\n"
  },
  {
    "path": ".github/workflows/Build_OP_Newifi_D2.yml",
    "content": "#=================================================\n# Description: Build OpenWrt using GitHub Actions\n# Lisence: MIT\n# Author: eSirPlayground\n# Youtube Channel: https://goo.gl/fvkdwm \n#=================================================\n\nname: Build_Newifi_D2\n\n# Add a button to trigger the workflow\non: \n  repository_dispatch:\n  workflow_dispatch:\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@master\n\n    - name: Initialization environment\n      env:\n        DEBIAN_FRONTEND: noninteractive\n      run: |\n        set +e\n        docker rmi `docker images -q`\n        echo \"Deleting files, please wait ...\"\n        sudo rm -rf \\\n          /usr/share/dotnet \\\n          /etc/mysql \\\n          /etc/php\n        sudo -E apt-get -y purge \\\n          azure-cli \\\n          ghc* \\\n          zulu* \\\n          hhvm \\\n          llvm* \\\n          firefox \\\n          google* \\\n          dotnet* \\\n          powershell \\\n          openjdk* \\\n          mysql* \\\n          php*\n        sudo -E apt-get update\n        sudo -E apt-get -y install ack antlr3 aria2 asciidoc autoconf automake autopoint binutils bison build-essential bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libglib2.0-dev libgmp3-dev libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libreadline-dev libssl-dev libtool lrzsz mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pip libpython3-dev qemu-utils rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev\n        sudo -E apt-get -y autoremove --purge\n        sudo -E apt-get clean\n    - name: Clone source code\n      env: \n        REPO_URL: https://github.com/coolsnowwolf/lede\n        REPO_BRANCH: master\n      run: |\n        git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt\n        cd openwrt\n        echo \"src-git ssrp https://github.com/fw876/helloworld.git\" >> ./feeds.conf.default\n    - name: Update & Install feeds\n      working-directory: ./openwrt\n      run: |\n        ./scripts/feeds update -a\n        ./scripts/feeds install -a\n        ./scripts/feeds install -a\n    \n    #- name: Import external feeds - JerryKuKu Argon\n    #  working-directory: ./openwrt\n    #  run: |\n    #    git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git package/luci-theme-argon-jerrykuku\n    \n    - name: Configuration Customization - Build_Newifi_D2\n      env:\n        CONFIG_FILE: 'Newifi_D2.config'\n      run: |\n        [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config\n        chmod +x ./customize.sh && ./customize.sh\n        cd openwrt && make defconfig\n        \n    - name: Download package\n      working-directory: ./openwrt\n      run: |\n        make download -j$(nproc)\n        find dl -size -1024c -exec ls -l {} \\;\n        find dl -size -1024c -exec rm -f {} \\;\n    - name: Build firmware\n      working-directory: ./openwrt\n      run: |\n        echo -e \"$(nproc) thread build.\"\n        make -j$(nproc) V=s\n    - name : Upload artifact\n      uses: actions/upload-artifact@master\n      with:\n        name: OpenWrt\n        path: openwrt/bin\n"
  },
  {
    "path": ".github/workflows/Build_OP_Redmi_AC2100.yml",
    "content": "#=================================================\n# Description: Build OpenWrt using GitHub Actions\n# Lisence: MIT\n# Author: eSirPlayground\n# Youtube Channel: https://goo.gl/fvkdwm \n#=================================================\n\nname: Build_Redmi_AC2100\n\n# Add a button to trigger the workflow\non: \n  repository_dispatch:\n  workflow_dispatch:\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@master\n\n    - name: Initialization environment\n      env:\n        DEBIAN_FRONTEND: noninteractive\n      run: |\n        set +e\n        docker rmi `docker images -q`\n        echo \"Deleting files, please wait ...\"\n        sudo rm -rf \\\n          /usr/share/dotnet \\\n          /etc/mysql \\\n          /etc/php\n        sudo -E apt-get -y purge \\\n          azure-cli \\\n          ghc* \\\n          zulu* \\\n          hhvm \\\n          llvm* \\\n          firefox \\\n          google* \\\n          dotnet* \\\n          powershell \\\n          openjdk* \\\n          mysql* \\\n          php*\n        sudo -E apt-get update\n        sudo -E apt-get -y install ack antlr3 aria2 asciidoc autoconf automake autopoint binutils bison build-essential bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libglib2.0-dev libgmp3-dev libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libreadline-dev libssl-dev libtool lrzsz mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pip libpython3-dev qemu-utils rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev\n        sudo -E apt-get -y autoremove --purge\n        sudo -E apt-get clean\n    - name: Clone source code\n      env: \n        REPO_URL: https://github.com/coolsnowwolf/lede\n        REPO_BRANCH: master\n      run: |\n        git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt\n        cd openwrt\n        echo \"src-git ssrp https://github.com/fw876/helloworld.git\" >> ./feeds.conf.default\n    - name: Update & Install feeds\n      working-directory: ./openwrt\n      run: |\n        ./scripts/feeds update -a\n        ./scripts/feeds install -a\n        ./scripts/feeds install -a\n        \n    #- name: Import external feeds - JerryKuKu Argon\n    #  working-directory: ./openwrt\n    #  run: |\n    #    git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git package/luci-theme-argon-jerrykuku   \n  \n    - name: Configuration Customization - Build_Redmi_AC2100\n      env:\n        CONFIG_FILE: 'redmi_ac2100.config'\n      run: |\n        [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config\n        chmod +x ./customize.sh && ./customize.sh\n        cd openwrt && make defconfig\n        \n    - name: Download package\n      working-directory: ./openwrt\n      run: |\n        make download -j$(nproc)\n        find dl -size -1024c -exec ls -l {} \\;\n        find dl -size -1024c -exec rm -f {} \\;\n    - name: Build firmware\n      working-directory: ./openwrt\n      run: |\n        echo -e \"$(nproc) thread build.\"\n        make -j$(nproc) V=s\n    - name : Upload artifact\n      uses: actions/upload-artifact@master\n      with:\n        name: OpenWrt\n        path: openwrt/bin\n"
  },
  {
    "path": ".github/workflows/Build_OP_Redmi_AC2100_zn.yml",
    "content": "#=================================================\r\n# Description: Build OpenWrt using GitHub Actions\r\n# Lisence: MIT\r\n# Author: eSirPlayground\r\n# Youtube Channel: https://goo.gl/fvkdwm \r\n#=================================================\r\n\r\nname: Build_Redmi_AC2100_zn\r\n\r\non: \r\n  release:\r\n    types: [published]\r\n\r\n  #push:\r\n  #  branches: \r\n  #    - master\r\n\r\n  schedule:\r\n    - cron: 5 0 * * 5\r\n  \r\n  watch:\r\n    types: [started]\r\n\r\njobs:\r\n  build:\r\n    runs-on: ubuntu-latest\r\n\r\n    steps:\r\n    - name: 校验本地文件\r\n      uses: actions/checkout@master\r\n\r\n    - name: 初始化环境\r\n      env:\r\n        DEBIAN_FRONTEND: noninteractive\r\n      run: |\r\n        set +e\r\n        docker rmi `docker images -q`\r\n        echo \"Deleting files, please wait ...\"\r\n        sudo rm -rf \\\r\n          /usr/share/dotnet \\\r\n          /etc/mysql \\\r\n          /etc/php\r\n        sudo -E apt-get -y purge \\\r\n          azure-cli \\\r\n          ghc* \\\r\n          zulu* \\\r\n          hhvm \\\r\n          llvm* \\\r\n          firefox \\\r\n          google* \\\r\n          dotnet* \\\r\n          powershell \\\r\n          openjdk* \\\r\n          mysql* \\\r\n          php*\r\n        sudo -E apt-get update\r\n        sudo -E apt-get -y install ack antlr3 aria2 asciidoc autoconf automake autopoint binutils bison build-essential bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libglib2.0-dev libgmp3-dev libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libreadline-dev libssl-dev libtool lrzsz mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pip libpython3-dev qemu-utils rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev\r\n        sudo -E apt-get -y autoremove --purge\r\n        sudo -E apt-get clean\r\n\r\n    - name: 下载Lede源码\r\n      env: \r\n        REPO_URL: https://github.com/coolsnowwolf/lede\r\n        REPO_BRANCH: master\r\n      run: |\r\n        git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt\r\n        cd openwrt\r\n        echo \"src-git ssrp https://github.com/fw876/helloworld.git\" >> ./feeds.conf.default\r\n\r\n    - name: 升级 & 安装 feeds\r\n      working-directory: ./openwrt\r\n      run: |\r\n        ./scripts/feeds update -a\r\n        ./scripts/feeds install -a\r\n        ./scripts/feeds install -a\r\n        \r\n        \r\n    - name: 导入第三方插件\r\n      working-directory: ./openwrt\r\n      run: |\r\n        git clone https://github.com/AlexZhuo/luci-app-bandwidthd.git package/luci-app-bandwidthd\r\n        git clone https://github.com/esirplayground/luci-app-poweroff.git package/luci-app-poweroff\r\n        git clone https://github.com/kenzok8/openwrt-packages.git package/openwrt-packages\r\n        git clone https://github.com/kenzok8/small.git package/small\r\n        git clone https://github.com/Lienol/openwrt-package.git package/Lienol\r\n        git clone https://github.com/sirpdboy/sirpdboy-package.git package/sirpdboy-package\r\n        #git clone https://github.com/kenzok8/jell.git package/openwrt-packages\r\n \r\n    - name: JerryKuKu Argon 主题\r\n      working-directory: ./openwrt\r\n      run: |\r\n        git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git package/luci-theme-argon-jerrykuku \r\n    \r\n    #- name: AppFilter 安装\r\n    #  working-directory: ./openwrt\r\n    #  run: |\r\n    #    cd package\r\n    #    git clone https://github.com/destan19/OpenAppFilter.git\r\n        \r\n    - name: 配置自定义架构\r\n      env:\r\n        CONFIG_FILE: 'redmi_ac2100_zn.config'\r\n      run: |\r\n        [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config\r\n        chmod +x ./customize.sh && ./customize.sh\r\n        cd openwrt && make defconfig\r\n\r\n    - name: 下载插件包\r\n      working-directory: ./openwrt\r\n      run: |\r\n        make download -j$(nproc)\r\n        find dl -size -1024c -exec ls -l {} \\;\r\n        find dl -size -1024c -exec rm -f {} \\;\r\n\r\n    - name: 构建固件\r\n      working-directory: ./openwrt\r\n      run: |\r\n        echo -e \"$(nproc) thread build.\"\r\n        make -j$(nproc) V=s\r\n\r\n    - name: 上传固件\r\n      uses: actions/upload-artifact@master\r\n      with:\r\n        name: OpenWrtRedmi_zn\r\n        path: openwrt/bin\r\n"
  },
  {
    "path": ".github/workflows/Build_OP_x86.yml",
    "content": "#=================================================\n# Description: Build OpenWrt using GitHub Actions\n# Lisence: MIT\n# Author: eSirPlayground\n# Youtube Channel: https://goo.gl/fvkdwm \n#=================================================\n\nname: Build_x86\n\n# Add a button to trigger the workflow\non: \n  repository_dispatch:\n  workflow_dispatch:\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@master\n\n    - name: Initialization environment\n      env:\n        DEBIAN_FRONTEND: noninteractive\n      run: |\n        set +e\n        docker rmi `docker images -q`\n        echo \"Deleting files, please wait ...\"\n        sudo rm -rf \\\n          /usr/share/dotnet \\\n          /etc/mysql \\\n          /etc/php\n        sudo -E apt-get -y purge \\\n          azure-cli \\\n          ghc* \\\n          zulu* \\\n          hhvm \\\n          llvm* \\\n          firefox \\\n          google* \\\n          dotnet* \\\n          powershell \\\n          openjdk* \\\n          mysql* \\\n          php*\n        sudo -E apt-get update\n        sudo -E apt-get -y install ack antlr3 aria2 asciidoc autoconf automake autopoint binutils bison build-essential bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libglib2.0-dev libgmp3-dev libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libreadline-dev libssl-dev libtool lrzsz mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pip libpython3-dev qemu-utils rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev\n        sudo -E apt-get -y autoremove --purge\n        sudo -E apt-get clean\n    - name: Clone source code\n      env: \n        REPO_URL: https://github.com/coolsnowwolf/lede\n        REPO_BRANCH: master\n      run: |\n        git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt\n        cd openwrt\n        echo \"src-git ssrp https://github.com/fw876/helloworld.git\" >> ./feeds.conf.default\n    - name: Update & Install feeds\n      working-directory: ./openwrt\n      run: |\n        ./scripts/feeds update -a\n        ./scripts/feeds install -a\n        ./scripts/feeds install -a\n    #- name: Import external feeds - passwall\n    #  working-directory: ./openwrt\n    #  run: |\n    #    git clone https://github.com/xiaorouji/openwrt-passwall.git package/lienol\n    #    git clone \"your_github_link\" package/\"your_folder_name\"      \n\n    #- name: Import external feeds - JerryKuKu Argon\n    #  working-directory: ./openwrt\n    #  run: |\n    #    git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git package/luci-theme-argon-jerrykuku\n\n    - name: Configuration Customization - Build_x86\n      env:\n        CONFIG_FILE: 'x86.config'\n      run: |\n        [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config\n        chmod +x ./customize.sh && ./customize.sh\n        cd openwrt && make defconfig\n        \n    - name: Download package\n      working-directory: ./openwrt\n      run: |\n        make download -j$(nproc)\n        find dl -size -1024c -exec ls -l {} \\;\n        find dl -size -1024c -exec rm -f {} \\;\n    - name: Build firmware\n      working-directory: ./openwrt\n      run: |\n        echo -e \"$(nproc) thread build.\"\n        make -j$(nproc) V=s\n    - name : Upload artifact\n      uses: actions/upload-artifact@master\n      with:\n        name: OpenWrt\n        path: openwrt/bin\n"
  },
  {
    "path": ".github/workflows/Build_OP_x86_64.yml",
    "content": "#=================================================\n# Description: Build OpenWrt using GitHub Actions\n# Lisence: MIT\n# Author: eSirPlayground\n# Youtube Channel: https://goo.gl/fvkdwm \n#=================================================\n\nname: Build_x86_64\n\n# Add a button to trigger the workflow\non: \n  repository_dispatch:\n  workflow_dispatch:\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@master\n\n    - name: Initialization environment\n      env:\n        DEBIAN_FRONTEND: noninteractive\n      run: |\n        set +e\n        docker rmi `docker images -q`\n        echo \"Deleting files, please wait ...\"\n        sudo rm -rf \\\n          /usr/share/dotnet \\\n          /etc/mysql \\\n          /etc/php\n        sudo -E apt-get -y purge \\\n          azure-cli \\\n          ghc* \\\n          zulu* \\\n          hhvm \\\n          llvm* \\\n          firefox \\\n          google* \\\n          dotnet* \\\n          powershell \\\n          openjdk* \\\n          mysql* \\\n          php*\n        sudo -E apt-get update\n        sudo -E apt-get -y install ack antlr3 aria2 asciidoc autoconf automake autopoint binutils bison build-essential bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libglib2.0-dev libgmp3-dev libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libreadline-dev libssl-dev libtool lrzsz mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pip libpython3-dev qemu-utils rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev\n        sudo -E apt-get -y autoremove --purge\n        sudo -E apt-get clean\n    - name: Clone source code\n      env: \n        REPO_URL: https://github.com/coolsnowwolf/lede\n        REPO_BRANCH: master\n      run: |\n        git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt\n        cd openwrt\n        echo \"src-git ssrp https://github.com/fw876/helloworld.git\" >> ./feeds.conf.default\n        \n    - name: Update & Install feeds\n      working-directory: ./openwrt\n      run: |\n        ./scripts/feeds update -a\n        ./scripts/feeds install -a\n        ./scripts/feeds install -a\n    #- name: Import external feeds - passwall\n    #  working-directory: ./openwrt\n    #  run: |\n    #    git clone https://github.com/xiaorouji/openwrt-passwall.git package/lienol\n    #    git clone \"your_github_link\" package/\"your_folder_name\"      \n\n    #- name: Import external feeds - JerryKuKu Argon\n    #  working-directory: ./openwrt\n    #  run: |\n    #    git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git package/luci-theme-argon-jerrykuku\n\n    - name: Configuration Customization - Build_x86_64\n      env:\n        CONFIG_FILE: 'x86_64.config'\n      run: |\n        [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config\n        chmod +x ./customize.sh && ./customize.sh\n        cd openwrt && make defconfig\n        \n    - name: Download package\n      working-directory: ./openwrt\n      run: |\n        make download -j$(nproc)\n        find dl -size -1024c -exec ls -l {} \\;\n        find dl -size -1024c -exec rm -f {} \\;\n    - name: Build firmware\n      working-directory: ./openwrt\n      run: |\n        echo -e \"$(nproc) thread build.\"\n        make -j$(nproc) V=s\n    - name : Upload artifact\n      uses: actions/upload-artifact@master\n      with:\n        name: OpenWrt\n        path: openwrt/bin\n"
  },
  {
    "path": ".github/workflows/Build_OP_x86_64_zn.yml",
    "content": "#=================================================\r\n# Description: Build OpenWrt using GitHub Actions\r\n# Lisence: MIT\r\n# Author: eSirPlayground\r\n# Youtube Channel: https://goo.gl/fvkdwm \r\n#=================================================\r\n\r\nname: Build_x86_64_zn\r\n\r\non: \r\n  release:\r\n    types: [published]\r\n\r\n  #push:\r\n  #  branches: \r\n  #    - master\r\n\r\n  schedule:\r\n    - cron: 5 0 * * 3\r\n  \r\n  watch:\r\n    types: [started]\r\n\r\njobs:\r\n  build:\r\n    runs-on: ubuntu-latest\r\n\r\n    steps:\r\n    - name: 校验本地文件\r\n      uses: actions/checkout@master\r\n\r\n    - name: 初始化环境\r\n      env:\r\n        DEBIAN_FRONTEND: noninteractive\r\n      run: |\r\n        set +e\r\n        docker rmi `docker images -q`\r\n        echo \"Deleting files, please wait ...\"\r\n        sudo rm -rf \\\r\n          /usr/share/dotnet \\\r\n          /usr/local/lib/android \\\r\n          /opt/ghc \\   \r\n          /etc/mysql \\\r\n          /etc/php\r\n        sudo -E apt-get -y purge azure-cli* docker* ghc* zulu* hhvm* llvm* firefox* google* dotnet* aspnetcore* powershell* openjdk* adoptopenjdk* mysql* php* mongodb* moby* snap* || true\r\n        sudo -E apt-get update\r\n        sudo -E apt-get -y install ack antlr3 asciidoc autoconf automake autopoint binutils bison build-essential bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libfuse-dev libglib2.0-dev libgmp3-dev libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libpython3-dev libreadline-dev libssl-dev libtool lrzsz mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pyelftools python3-setuptools qemu-utils rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev qemu-img\r\n        sudo -E apt-get -y autoremove --purge\r\n        sudo -E apt-get clean\r\n\r\n    - name: 下载Lede源码\r\n      env: \r\n        REPO_URL: https://github.com/coolsnowwolf/lede\r\n        REPO_BRANCH: master\r\n      run: |\r\n        git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt\r\n        cd openwrt\r\n        echo \"src-git ssrp https://github.com/fw876/helloworld.git\" >> ./feeds.conf.default\r\n        \r\n    - name: 升级 & 安装 feeds\r\n      working-directory: ./openwrt\r\n      run: |\r\n        ./scripts/feeds update -a\r\n        ./scripts/feeds install -a\r\n        ./scripts/feeds install -a\r\n\r\n    - name: 导入第三方插件\r\n      working-directory: ./openwrt\r\n      run: |\r\n        git clone https://github.com/AlexZhuo/luci-app-bandwidthd.git package/luci-app-bandwidthd\r\n        git clone https://github.com/esirplayground/luci-app-poweroff.git package/luci-app-poweroff\r\n        git clone https://github.com/kenzok8/openwrt-packages.git package/openwrt-packages\r\n        git clone https://github.com/kenzok8/small.git package/small\r\n        #git clone https://github.com/xiaorouji/openwrt-passwall.git package/lienol\r\n        git clone https://github.com/Lienol/openwrt-package.git package/Lienol\r\n        git clone https://github.com/sirpdboy/sirpdboy-package.git package/sirpdboy-package\r\n        git clone https://github.com/immortalwrt/immortalwrt.git package/immortalwrt\r\n        \r\n    - name: argon 主题\r\n      working-directory: ./openwrt\r\n      run: |\r\n        git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git package/luci-theme-argon-jerrykuku\r\n\r\n    #- name: AppFilter 安装\r\n    #  working-directory: ./openwrt\r\n    #  run: |\r\n    #    cd package\r\n    #    git clone https://github.com/destan19/OpenAppFilter.git\r\n        \r\n    - name: 配置自定义架构\r\n      env:\r\n        CONFIG_FILE: 'x86_64_zn.config'\r\n      run: |\r\n        [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config\r\n        chmod +x ./customize.sh && ./customize.sh\r\n        cd openwrt && make defconfig\r\n        \r\n    - name: 下载插件包\r\n      working-directory: ./openwrt\r\n      run: |\r\n        make download -j$(nproc)\r\n        find dl -size -1024c -exec ls -l {} \\;\r\n        find dl -size -1024c -exec rm -f {} \\;\r\n\r\n    - name: 构建固件\r\n      working-directory: ./openwrt\r\n      run: |\r\n        echo -e \"$(nproc) thread build.\"\r\n        make -j$(nproc) V=s\r\n\r\n    - name : 上传固件\r\n      uses: actions/upload-artifact@master\r\n      with:\r\n        name: OpenWrt_x86_64_zn\r\n        path: openwrt/bin\r\n"
  },
  {
    "path": ".github/workflows/Sync Code.yml",
    "content": "#\n# This is free software, lisence use MIT.\n# \n# Copyright (C) 2020 KFERMercer <KFER.Mercer@gmail.com>\n# \n# <https://github.com/KFERMercer/OpenWrt-CI>\n#\n\nname: Sync Code from eSir Autobuild Script\n\n# Add a button to trigger the workflow - Kuroko\non: \n  repository_dispatch:\n  workflow_dispatch:\n  \n#  push:\n#    branches: \n#      - master\n\n#  schedule:\n#    - cron: 0 19 * * *\n\njobs:\n\n  merge:\n\n    runs-on: ubuntu-latest\n\n    steps:\n\n    - name: Checkout\n      uses: actions/checkout@v2\n      with:\n        ref: master\n        fetch-depth: 0\n        lfs: true\n\n    - name: Syncing Preparation\n      run : |\n        git config --global user.email \"41898282+github-actions[bot]@users.noreply.github.com\"\n        git config --global user.name \"github-actions[bot]\"\n        \n    - name: Start Syncing Autobuild Most Updated Changes\n      run: git pull https://github.com/esirplayground/AutoBuild-OpenWrt.git --log --no-commit\n\n    - name: Download All New Changes\n      run: |\n        if [ -f ./.git/MERGE_MSG ]; then\n        mkdir ./tmp && cp ./.git/MERGE_MSG ./tmp/message\n        sed -i \"1c [bot] AutoMerging: merge all upstream's changes:\" ./tmp/message\n        sed -i '/^\\#.*/d' ./tmp/message\n        git commit --file=\"./tmp/message\"\n        else\n        echo \"There is no merge commits.\"\n        fi\n        \n    - name: Update My Script\n      env:\n        DOWNSTREAM_BRANCH: master\n      run: git push origin $DOWNSTREAM_BRANCH\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2019 eSir\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "NanoPi_R2S.config",
    "content": "CONFIG_TARGET_rockchip=y\nCONFIG_TARGET_rockchip_armv8=y\nCONFIG_TARGET_rockchip_armv8_DEVICE_friendlyarm_nanopi-r2s=y\n\nCONFIG_TARGET_IMAGES_GZIP=y\nCONFIG_TARGET_KERNEL_PARTSIZE=64\nCONFIG_TARGET_ROOTFS_PARTSIZE=500\n# CONFIG_SIGNATURE_CHECK is not set\n\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_NaiveProxy=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y\n\n#CONFIG_PACKAGE_luci-app-passwall=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Brook=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ChinaDNS_NG=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Haproxy=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Hysteria=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Kcptun=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_NaiveProxy=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_PDNSD=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Libev_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Libev_Server=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Rust_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_Libev_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_Libev_Server=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Simple_Obfs=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan_GO=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan_Plus=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_V2ray=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_V2ray_Plugin=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Xray=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Xray_Plugin=y\n\nCONFIG_PACKAGE_luci-app-adbyby-plus=y\nCONFIG_PACKAGE_luci-app-adguardhome=y\nCONFIG_PACKAGE_luci-app-cifs-mount=y\nCONFIG_PACKAGE_luci-app-mwan3=y\nCONFIG_PACKAGE_luci-app-mwan3helper=y\nCONFIG_PACKAGE_luci-app-netdata=y\nCONFIG_PACKAGE_luci-app-nfs=y\nCONFIG_PACKAGE_luci-app-nps=y\nCONFIG_PACKAGE_luci-app-ocserv=y\nCONFIG_PACKAGE_luci-app-openvpn=y\nCONFIG_PACKAGE_luci-app-openvpn-server=y\nCONFIG_PACKAGE_luci-app-p910nd=y\nCONFIG_PACKAGE_luci-app-sqm=y\nCONFIG_PACKAGE_luci-app-syncdial=y\nCONFIG_PACKAGE_luci-app-ttyd=y\nCONFIG_PACKAGE_luci-app-wireguard=y\nCONFIG_PACKAGE_luci-app-wrtbwmon=y\nCONFIG_PACKAGE_luci-app-xlnetacc=y\n\nCONFIG_PACKAGE_luci-i18n-adbyby-plus-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-cifs-mount-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-mwan3-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-mwan3helper-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-netdata-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-nfs-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-nps-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-openvpn-server-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-openvpn-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-p910nd-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-sqm-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-ttyd-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-wireguard-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-wrtbwmon-zh-cn=y\nCONFIG_PACKAGE_luci-lib-json=y\nCONFIG_PACKAGE_luci-proto-ipv6=y\nCONFIG_PACKAGE_luci-proto-wireguard=y\n\nCONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y\nCONFIG_PACKAGE_ddns-scripts_freedns_42_pl=y\nCONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y\nCONFIG_PACKAGE_ddns-scripts_no-ip_com=y\nCONFIG_PACKAGE_ddns-scripts_nsupdate=y\nCONFIG_PACKAGE_ddns-scripts_route53-v1=y\n\nCONFIG_NFS_KERNEL_SERVER_V4=y\nCONFIG_OCSERV_HTTP_PARSER=y\nCONFIG_OCSERV_PROTOBUF=y\nCONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y\nCONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y\nCONFIG_OPENVPN_openssl_ENABLE_LZ4=y\nCONFIG_OPENVPN_openssl_ENABLE_LZO=y\nCONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y\nCONFIG_OPENVPN_openssl_ENABLE_PF=y\nCONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y\nCONFIG_OPENVPN_openssl_ENABLE_SERVER=y\nCONFIG_OPENVPN_openssl_ENABLE_SMALL=y\nCONFIG_PACKAGE_6in4=y\nCONFIG_PACKAGE_adbyby=y\nCONFIG_PACKAGE_bandwidthd=y\nCONFIG_PACKAGE_bash=y\nCONFIG_PACKAGE_curl=y\n\nCONFIG_PACKAGE_ip6tables=y\nCONFIG_PACKAGE_iperf3=y\nCONFIG_PACKAGE_ipset-dns=y\nCONFIG_PACKAGE_iptables-mod-conntrack-extra=y\nCONFIG_PACKAGE_iptables-mod-extra=y\nCONFIG_PACKAGE_iptables-mod-ipopt=y\nCONFIG_PACKAGE_iptables-mod-ipsec=y\nCONFIG_PACKAGE_ipv6helper=y\n\nCONFIG_PACKAGE_kmod-atm=y\nCONFIG_PACKAGE_kmod-br-netfilter=y\nCONFIG_PACKAGE_kmod-crypto-acompress=y\nCONFIG_PACKAGE_kmod-crypto-cbc=y\nCONFIG_PACKAGE_kmod-crypto-ccm=y\nCONFIG_PACKAGE_kmod-crypto-cmac=y\nCONFIG_PACKAGE_kmod-crypto-ctr=y\nCONFIG_PACKAGE_kmod-crypto-cts=y\nCONFIG_PACKAGE_kmod-crypto-deflate=y\nCONFIG_PACKAGE_kmod-crypto-des=y\nCONFIG_PACKAGE_kmod-crypto-ecdh=y\nCONFIG_PACKAGE_kmod-crypto-echainiv=y\nCONFIG_PACKAGE_kmod-crypto-fcrypt=y\nCONFIG_PACKAGE_kmod-crypto-gcm=y\nCONFIG_PACKAGE_kmod-crypto-gf128=y\nCONFIG_PACKAGE_kmod-crypto-ghash=y\nCONFIG_PACKAGE_kmod-crypto-hmac=y\nCONFIG_PACKAGE_kmod-crypto-hw-ccp=y\nCONFIG_PACKAGE_kmod-crypto-hw-geode=y\nCONFIG_PACKAGE_kmod-crypto-hw-hifn-795x=y\nCONFIG_PACKAGE_kmod-crypto-hw-padlock=y\nCONFIG_PACKAGE_kmod-crypto-hw-talitos=y\nCONFIG_PACKAGE_kmod-crypto-kpp=y\nCONFIG_PACKAGE_kmod-crypto-md4=y\nCONFIG_PACKAGE_kmod-crypto-md5=y\nCONFIG_PACKAGE_kmod-crypto-michael-mic=y\nCONFIG_PACKAGE_kmod-crypto-misc=y\nCONFIG_PACKAGE_kmod-crypto-pcbc=y\nCONFIG_PACKAGE_kmod-crypto-rmd160=y\nCONFIG_PACKAGE_kmod-crypto-rng=y\nCONFIG_PACKAGE_kmod-crypto-rsa=y\nCONFIG_PACKAGE_kmod-crypto-seqiv=y\nCONFIG_PACKAGE_kmod-crypto-sha256=y\nCONFIG_PACKAGE_kmod-crypto-sha512=y\nCONFIG_PACKAGE_kmod-crypto-test=y\nCONFIG_PACKAGE_kmod-crypto-wq=y\nCONFIG_PACKAGE_kmod-crypto-xcbc=y\nCONFIG_PACKAGE_kmod-crypto-xts=y\nCONFIG_PACKAGE_kmod-dax=y\nCONFIG_PACKAGE_kmod-dm=y\nCONFIG_PACKAGE_kmod-dnsresolver=y\nCONFIG_PACKAGE_kmod-eeprom-93cx6=y\nCONFIG_PACKAGE_kmod-fs-btrfs=y\nCONFIG_PACKAGE_kmod-fs-cifs=y\nCONFIG_PACKAGE_kmod-fs-configfs=y\nCONFIG_PACKAGE_kmod-fs-exportfs=y\nCONFIG_PACKAGE_kmod-fs-nfs=y\nCONFIG_PACKAGE_kmod-fs-nfs-common=y\nCONFIG_PACKAGE_kmod-fs-nfs-common-rpcsec=y\nCONFIG_PACKAGE_kmod-fs-nfs-v4=y\nCONFIG_PACKAGE_kmod-fs-nfsd=y\nCONFIG_PACKAGE_kmod-hid=y\nCONFIG_PACKAGE_kmod-hid-generic=y\nCONFIG_PACKAGE_kmod-ifb=y\nCONFIG_PACKAGE_kmod-ikconfig=y\nCONFIG_PACKAGE_kmod-input-core=y\nCONFIG_PACKAGE_kmod-input-evdev=y\nCONFIG_PACKAGE_kmod-ipsec=y\nCONFIG_PACKAGE_kmod-ipsec4=y\nCONFIG_PACKAGE_kmod-ipsec6=y\nCONFIG_PACKAGE_kmod-ipt-conntrack-extra=y\nCONFIG_PACKAGE_kmod-ipt-extra=y\nCONFIG_PACKAGE_kmod-ipt-ipopt=y\nCONFIG_PACKAGE_kmod-ipt-ipsec=y\nCONFIG_PACKAGE_kmod-ipt-nat6=y\nCONFIG_PACKAGE_kmod-iptunnel=y\nCONFIG_PACKAGE_kmod-iptunnel4=y\nCONFIG_PACKAGE_kmod-iptunnel6=y\nCONFIG_PACKAGE_kmod-usb-net-asix=y\nCONFIG_PACKAGE_kmod-usb-net-asix-ax88179=y\nCONFIG_PACKAGE_kmod-usb-net-cdc-eem=y\nCONFIG_PACKAGE_kmod-usb-net-cdc-ether=y\nCONFIG_PACKAGE_kmod-usb-net-cdc-mbim=y\nCONFIG_PACKAGE_kmod-usb-net-cdc-ncm=y\nCONFIG_PACKAGE_kmod-usb-net-cdc-subset=y\nCONFIG_PACKAGE_kmod-usb-printer=y\nCONFIG_PACKAGE_kmod-usb2=y\nCONFIG_PACKAGE_kmod-usb3=y\nCONFIG_PACKAGE_kmod-usbip-client=y\nCONFIG_PACKAGE_kmod-wireguard=y\n\nCONFIG_PACKAGE_cfdisk=y\nCONFIG_PACKAGE_lsblk=y\nCONFIG_PACKAGE_mwan3=y\nCONFIG_PACKAGE_nano=y\nCONFIG_PACKAGE_netdata=y\nCONFIG_PACKAGE_nfs-kernel-server=y\nCONFIG_PACKAGE_nfs-kernel-server-utils=y\nCONFIG_PACKAGE_nfs-utils=y\nCONFIG_PACKAGE_nfs-utils-libs=y\nCONFIG_PACKAGE_nft-qos=y\nCONFIG_PACKAGE_nftables-nojson=y\nCONFIG_PACKAGE_npc=y\nCONFIG_PACKAGE_nspr=y\nCONFIG_PACKAGE_ocserv=y\nCONFIG_PACKAGE_odhcp6c=y\nCONFIG_PACKAGE_odhcp6c_ext_cer_id=0\nCONFIG_PACKAGE_odhcpd-ipv6only=y\nCONFIG_PACKAGE_odhcpd_ipv6only_ext_cer_id=0\nCONFIG_PACKAGE_openssh-sftp-client=y\nCONFIG_PACKAGE_openssh-sftp-server=y\nCONFIG_PACKAGE_openvpn-easy-rsa=y\nCONFIG_PACKAGE_openvpn-openssl=y\nCONFIG_PACKAGE_p54-usb-firmware=y\nCONFIG_PACKAGE_p910nd=y\nCONFIG_PACKAGE_smartmontools=y\nCONFIG_PACKAGE_sqm-scripts=y\nCONFIG_PACKAGE_strongswan=y\nCONFIG_PACKAGE_strongswan-charon=y\nCONFIG_PACKAGE_strongswan-ipsec=y\nCONFIG_PACKAGE_strongswan-minimal=y\nCONFIG_PACKAGE_strongswan-mod-aes=y\nCONFIG_PACKAGE_strongswan-mod-gmp=y\nCONFIG_PACKAGE_strongswan-mod-hmac=y\nCONFIG_PACKAGE_strongswan-mod-kernel-netlink=y\nCONFIG_PACKAGE_strongswan-mod-nonce=y\nCONFIG_PACKAGE_strongswan-mod-pubkey=y\nCONFIG_PACKAGE_strongswan-mod-random=y\nCONFIG_PACKAGE_strongswan-mod-sha1=y\nCONFIG_PACKAGE_strongswan-mod-socket-default=y\nCONFIG_PACKAGE_strongswan-mod-stroke=y\nCONFIG_PACKAGE_strongswan-mod-updown=y\nCONFIG_PACKAGE_strongswan-mod-x509=y\nCONFIG_PACKAGE_strongswan-mod-xauth-generic=y\nCONFIG_PACKAGE_strongswan-mod-xcbc=y\nCONFIG_PACKAGE_tc=y\nCONFIG_PACKAGE_ttyd=y\nCONFIG_PACKAGE_uclibcxx=y\nCONFIG_PACKAGE_unzip=y\nCONFIG_PACKAGE_usbutils=y\nCONFIG_PACKAGE_wireguard-tools=y\nCONFIG_PACKAGE_wireless-regdb=y\n"
  },
  {
    "path": "Nanopi_R4S.config",
    "content": "CONFIG_TARGET_rockchip=y\nCONFIG_TARGET_rockchip_armv8=y\nCONFIG_TARGET_rockchip_armv8_DEVICE_friendlyarm_nanopi-r4s=y\nCONFIG_DEVEL=y\nCONFIG_ATH_USER_REGD=y\nCONFIG_DRIVER_11AC_SUPPORT=y\nCONFIG_DRIVER_11N_SUPPORT=y\nCONFIG_DRIVER_11W_SUPPORT=y\nCONFIG_DROPBEAR_ECC=y\nCONFIG_DROPBEAR_ECC_FULL=y\nCONFIG_GNUTLS_ALPN=y\nCONFIG_GNUTLS_ANON=y\nCONFIG_GNUTLS_CRYPTODEV=y\nCONFIG_GNUTLS_DTLS_SRTP=y\nCONFIG_GNUTLS_HEARTBEAT=y\nCONFIG_GNUTLS_OCSP=y\nCONFIG_GNUTLS_PSK=y\nCONFIG_LIBCURL_COOKIES=y\nCONFIG_LIBCURL_CRYPTO_AUTH=y\nCONFIG_LIBCURL_FILE=y\nCONFIG_LIBCURL_FTP=y\nCONFIG_LIBCURL_HTTP=y\nCONFIG_LIBCURL_LDAP=y\nCONFIG_LIBCURL_LDAPS=y\nCONFIG_LIBCURL_NGHTTP2=y\nCONFIG_LIBCURL_OPENSSL=y\nCONFIG_LIBCURL_PROXY=y\nCONFIG_LIBCURL_TFTP=y\nCONFIG_LIBCURL_THREADED_RESOLVER=y\nCONFIG_LIBCURL_TLS_SRP=y\nCONFIG_LIBCURL_UNIX_SOCKETS=y\nCONFIG_OCSERV_HTTP_PARSER=y\nCONFIG_OCSERV_PROTOBUF=y\nCONFIG_OPENCONNECT_GNUTLS=y\nCONFIG_OPENSSL_WITH_ARIA=y\nCONFIG_OPENSSL_WITH_CAMELLIA=y\nCONFIG_OPENSSL_WITH_COMPRESSION=y\nCONFIG_OPENSSL_WITH_DTLS=y\nCONFIG_OPENSSL_WITH_EC2M=y\nCONFIG_OPENSSL_WITH_GOST=y\nCONFIG_OPENSSL_WITH_IDEA=y\nCONFIG_OPENSSL_WITH_RFC3779=y\nCONFIG_OPENSSL_WITH_SEED=y\nCONFIG_OPENSSL_WITH_SM234=y\nCONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y\nCONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y\nCONFIG_OPENVPN_openssl_ENABLE_LZ4=y\nCONFIG_OPENVPN_openssl_ENABLE_LZO=y\nCONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y\nCONFIG_OPENVPN_openssl_ENABLE_PF=y\nCONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y\nCONFIG_OPENVPN_openssl_ENABLE_SMALL=y\nCONFIG_PACKAGE_6in4=y\nCONFIG_PACKAGE_ATH_DFS=y\nCONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK=y\nCONFIG_PACKAGE_MAC80211_DEBUGFS=y\nCONFIG_PACKAGE_MAC80211_MESH=y\n# CONFIG_PACKAGE_UnblockNeteaseMusic is not set\n# CONFIG_PACKAGE_UnblockNeteaseMusic-Go is not set\nCONFIG_PACKAGE_adguardhome=y\nCONFIG_PACKAGE_bash=y\nCONFIG_PACKAGE_bc=y\nCONFIG_PACKAGE_bind-client=y\nCONFIG_PACKAGE_bind-dig=y\nCONFIG_PACKAGE_bind-libs=y\nCONFIG_PACKAGE_blkid=y\nCONFIG_PACKAGE_boost=y\nCONFIG_PACKAGE_boost-date_time=y\nCONFIG_PACKAGE_boost-program_options=y\nCONFIG_PACKAGE_boost-system=y\nCONFIG_PACKAGE_brook=y\nCONFIG_PACKAGE_btrfs-progs=y\nCONFIG_PACKAGE_ca-bundle=y\nCONFIG_PACKAGE_ccrypt=y\nCONFIG_PACKAGE_certtool=y\nCONFIG_PACKAGE_cfdisk=y\nCONFIG_PACKAGE_chinadns-ng=y\nCONFIG_PACKAGE_collectd=y\nCONFIG_PACKAGE_collectd-mod-cpu=y\nCONFIG_PACKAGE_collectd-mod-df=y\nCONFIG_PACKAGE_collectd-mod-disk=y\nCONFIG_PACKAGE_collectd-mod-dns=y\nCONFIG_PACKAGE_collectd-mod-ethstat=y\nCONFIG_PACKAGE_collectd-mod-exec=y\nCONFIG_PACKAGE_collectd-mod-interface=y\nCONFIG_PACKAGE_collectd-mod-iptables=y\nCONFIG_PACKAGE_collectd-mod-irq=y\nCONFIG_PACKAGE_collectd-mod-iwinfo=y\nCONFIG_PACKAGE_collectd-mod-load=y\nCONFIG_PACKAGE_collectd-mod-memory=y\nCONFIG_PACKAGE_collectd-mod-netlink=y\nCONFIG_PACKAGE_collectd-mod-network=y\nCONFIG_PACKAGE_collectd-mod-processes=y\nCONFIG_PACKAGE_collectd-mod-protocols=y\nCONFIG_PACKAGE_collectd-mod-rrdtool=y\nCONFIG_PACKAGE_collectd-mod-sensors=y\nCONFIG_PACKAGE_collectd-mod-sqm=y\nCONFIG_PACKAGE_collectd-mod-tcpconns=y\nCONFIG_PACKAGE_collectd-mod-thermal=y\nCONFIG_PACKAGE_collectd-mod-uptime=y\nCONFIG_PACKAGE_coreutils-nohup=y\nCONFIG_PACKAGE_curl=y\nCONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y\nCONFIG_PACKAGE_ddns-scripts_cnkuai_cn=y\nCONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y\nCONFIG_PACKAGE_ddns-scripts_no-ip_com=y\nCONFIG_PACKAGE_ddns-scripts_nsupdate=y\nCONFIG_PACKAGE_dmesg=y\nCONFIG_PACKAGE_dnsforwarder=y\nCONFIG_PACKAGE_frpc=y\nCONFIG_PACKAGE_frps=y\nCONFIG_PACKAGE_giflib-utils=y\nCONFIG_PACKAGE_gost=y\nCONFIG_PACKAGE_haproxy=y\nCONFIG_PACKAGE_hostapd-common=y\nCONFIG_PACKAGE_https-dns-proxy=y\nCONFIG_PACKAGE_i2c-tools=y\nCONFIG_PACKAGE_iftop=y\nCONFIG_PACKAGE_igmpproxy=y\nCONFIG_PACKAGE_ip6tables=y\nCONFIG_PACKAGE_ip6tables-mod-nat=y\nCONFIG_PACKAGE_iperf3=y\nCONFIG_PACKAGE_ipt2socks=y\nCONFIG_PACKAGE_iptables-mod-conntrack-extra=y\nCONFIG_PACKAGE_iptables-mod-extra=y\nCONFIG_PACKAGE_iptables-mod-ipopt=y\nCONFIG_PACKAGE_iptables-mod-ipsec=y\nCONFIG_PACKAGE_iputils-arping=y\nCONFIG_PACKAGE_ipv6helper=y\nCONFIG_PACKAGE_iw=y\nCONFIG_PACKAGE_iwinfo=y\nCONFIG_PACKAGE_jq=y\nCONFIG_PACKAGE_kcptun-client=y\nCONFIG_PACKAGE_kmod-ata-core=y\nCONFIG_PACKAGE_kmod-ath=y\nCONFIG_PACKAGE_kmod-ath6kl=y\nCONFIG_PACKAGE_kmod-ath6kl-usb=y\nCONFIG_PACKAGE_kmod-cfg80211=y\nCONFIG_PACKAGE_kmod-crypto-acompress=y\nCONFIG_PACKAGE_kmod-crypto-cbc=y\nCONFIG_PACKAGE_kmod-crypto-ccm=y\nCONFIG_PACKAGE_kmod-crypto-cmac=y\nCONFIG_PACKAGE_kmod-crypto-ctr=y\nCONFIG_PACKAGE_kmod-crypto-cts=y\nCONFIG_PACKAGE_kmod-crypto-deflate=y\nCONFIG_PACKAGE_kmod-crypto-des=y\nCONFIG_PACKAGE_kmod-crypto-ecdh=y\nCONFIG_PACKAGE_kmod-crypto-echainiv=y\nCONFIG_PACKAGE_kmod-crypto-fcrypt=y\nCONFIG_PACKAGE_kmod-crypto-gcm=y\nCONFIG_PACKAGE_kmod-crypto-gf128=y\nCONFIG_PACKAGE_kmod-crypto-ghash=y\nCONFIG_PACKAGE_kmod-crypto-hmac=y\nCONFIG_PACKAGE_kmod-crypto-hw-hifn-795x=y\nCONFIG_PACKAGE_kmod-crypto-hw-padlock=y\nCONFIG_PACKAGE_kmod-crypto-hw-talitos=y\nCONFIG_PACKAGE_kmod-crypto-kpp=y\nCONFIG_PACKAGE_kmod-crypto-md4=y\nCONFIG_PACKAGE_kmod-crypto-md5=y\nCONFIG_PACKAGE_kmod-crypto-michael-mic=y\nCONFIG_PACKAGE_kmod-crypto-misc=y\nCONFIG_PACKAGE_kmod-crypto-pcbc=y\nCONFIG_PACKAGE_kmod-crypto-rmd160=y\nCONFIG_PACKAGE_kmod-crypto-rng=y\nCONFIG_PACKAGE_kmod-crypto-seqiv=y\nCONFIG_PACKAGE_kmod-crypto-sha256=y\nCONFIG_PACKAGE_kmod-crypto-sha512=y\nCONFIG_PACKAGE_kmod-crypto-test=y\nCONFIG_PACKAGE_kmod-crypto-wq=y\nCONFIG_PACKAGE_kmod-crypto-xcbc=y\nCONFIG_PACKAGE_kmod-crypto-xts=y\nCONFIG_PACKAGE_kmod-fast-classifier=y\nCONFIG_PACKAGE_kmod-fs-btrfs=y\nCONFIG_PACKAGE_kmod-fs-cifs=y\nCONFIG_PACKAGE_kmod-hwmon-core=y\nCONFIG_PACKAGE_kmod-hwmon-drivetemp=y\nCONFIG_PACKAGE_kmod-hwmon-gpiofan=y\nCONFIG_PACKAGE_kmod-hwmon-pwmfan=y\nCONFIG_PACKAGE_kmod-i2c-algo-bit=y\nCONFIG_PACKAGE_kmod-i2c-core=y\nCONFIG_PACKAGE_kmod-i2c-gpio=y\nCONFIG_PACKAGE_kmod-ifb=y\nCONFIG_PACKAGE_kmod-ipsec=y\nCONFIG_PACKAGE_kmod-ipsec4=y\nCONFIG_PACKAGE_kmod-ipsec6=y\nCONFIG_PACKAGE_kmod-ipt-conntrack-extra=y\nCONFIG_PACKAGE_kmod-ipt-extra=y\nCONFIG_PACKAGE_kmod-ipt-ipopt=y\nCONFIG_PACKAGE_kmod-ipt-ipsec=y\nCONFIG_PACKAGE_kmod-ipt-nat6=y\nCONFIG_PACKAGE_kmod-iptunnel=y\nCONFIG_PACKAGE_kmod-iptunnel4=y\nCONFIG_PACKAGE_kmod-iptunnel6=y\nCONFIG_PACKAGE_kmod-leds-gpio=y\nCONFIG_PACKAGE_kmod-ledtrig-gpio=y\nCONFIG_PACKAGE_kmod-lib-crc-itu-t=y\nCONFIG_PACKAGE_kmod-lib-crc32c=y\nCONFIG_PACKAGE_kmod-lib-lzo=y\nCONFIG_PACKAGE_kmod-lib-raid6=y\nCONFIG_PACKAGE_kmod-lib-xor=y\nCONFIG_PACKAGE_kmod-lib-zlib-deflate=y\nCONFIG_PACKAGE_kmod-lib-zlib-inflate=y\nCONFIG_PACKAGE_kmod-lib-zstd=y\nCONFIG_PACKAGE_kmod-mac80211=y\nCONFIG_PACKAGE_kmod-mii=y\nCONFIG_PACKAGE_kmod-mt76-core=y\nCONFIG_PACKAGE_kmod-mt76-usb=y\nCONFIG_PACKAGE_kmod-mt7601u-ap=y\nCONFIG_PACKAGE_kmod-mt76x0-common=y\nCONFIG_PACKAGE_kmod-mt76x02-common=y\nCONFIG_PACKAGE_kmod-mt76x02-usb=y\nCONFIG_PACKAGE_kmod-mt76x0u=y\nCONFIG_PACKAGE_kmod-mt76x2-common=y\nCONFIG_PACKAGE_kmod-mt76x2u=y\nCONFIG_PACKAGE_kmod-netlink-diag=y\nCONFIG_PACKAGE_kmod-nf-nat6=y\nCONFIG_PACKAGE_kmod-random-core=y\nCONFIG_PACKAGE_kmod-rt2500-usb=y\nCONFIG_PACKAGE_kmod-rt2800-lib=y\nCONFIG_PACKAGE_kmod-rt2800-usb=y\nCONFIG_PACKAGE_kmod-rt2x00-lib=y\nCONFIG_PACKAGE_kmod-rt2x00-usb=y\nCONFIG_PACKAGE_kmod-rtl8192c-common=y\nCONFIG_PACKAGE_kmod-rtl8192ce=y\nCONFIG_PACKAGE_kmod-rtl8192cu=y\nCONFIG_PACKAGE_kmod-rtl8192de=y\nCONFIG_PACKAGE_kmod-rtl8192se=y\nCONFIG_PACKAGE_kmod-rtl8812au-ac=y\nCONFIG_PACKAGE_kmod-rtl8821ae=y\nCONFIG_PACKAGE_kmod-rtl8821cu=y\nCONFIG_PACKAGE_kmod-rtl88x2bu=y\nCONFIG_PACKAGE_kmod-rtl8xxxu=y\nCONFIG_PACKAGE_kmod-rtlwifi=y\nCONFIG_PACKAGE_kmod-rtlwifi-btcoexist=y\nCONFIG_PACKAGE_kmod-rtlwifi-pci=y\nCONFIG_PACKAGE_kmod-rtlwifi-usb=y\nCONFIG_PACKAGE_kmod-sched-cake=y\nCONFIG_PACKAGE_kmod-sched-core=y\nCONFIG_PACKAGE_kmod-shortcut-fe=y\nCONFIG_PACKAGE_kmod-sit=y\nCONFIG_PACKAGE_kmod-udptunnel4=y\nCONFIG_PACKAGE_kmod-udptunnel6=y\nCONFIG_PACKAGE_kmod-usb-net=y\nCONFIG_PACKAGE_kmod-usb-net-cdc-ether=y\nCONFIG_PACKAGE_kmod-usb-net-cdc-ncm=y\nCONFIG_PACKAGE_kmod-usb-net-hso=y\nCONFIG_PACKAGE_kmod-usb-net-huawei-cdc-ncm=y\nCONFIG_PACKAGE_kmod-usb-net-ipheth=y\nCONFIG_PACKAGE_kmod-usb-net-kalmia=y\nCONFIG_PACKAGE_kmod-usb-net-rndis=y\nCONFIG_PACKAGE_kmod-usb-wdm=y\nCONFIG_PACKAGE_kmod-wireguard=y\nCONFIG_PACKAGE_libattr=y\nCONFIG_PACKAGE_libbz2=y\nCONFIG_PACKAGE_libcap-bin=y\nCONFIG_PACKAGE_libcap-bin-capsh-shell=\"/bin/sh\"\nCONFIG_PACKAGE_libcurl=y\nCONFIG_PACKAGE_libdb47=y\nCONFIG_PACKAGE_libevdev=y\nCONFIG_PACKAGE_libevent2=y\nCONFIG_PACKAGE_libffi=y\nCONFIG_PACKAGE_libgcrypt=y\nCONFIG_PACKAGE_libgd=y\nCONFIG_PACKAGE_libgdbm=y\nCONFIG_PACKAGE_libgnutls=y\nCONFIG_PACKAGE_libgpg-error=y\nCONFIG_PACKAGE_libhttp-parser=y\nCONFIG_PACKAGE_libi2c=y\nCONFIG_PACKAGE_libiconv-full=y\nCONFIG_PACKAGE_libimobiledevice=y\nCONFIG_PACKAGE_libjpeg-turbo=y\nCONFIG_PACKAGE_libltdl=y\nCONFIG_PACKAGE_liblua5.3=y\nCONFIG_PACKAGE_liblzma=y\nCONFIG_PACKAGE_liblzo=y\nCONFIG_PACKAGE_libmount=y\nCONFIG_PACKAGE_libmsgpack-c=y\nCONFIG_PACKAGE_libopenldap=y\nCONFIG_PACKAGE_libpcap=y\nCONFIG_PACKAGE_libpcre2=y\nCONFIG_PACKAGE_libpcsclite=y\nCONFIG_PACKAGE_libplist=y\nCONFIG_PACKAGE_libpng=y\nCONFIG_PACKAGE_libprotobuf-c=y\nCONFIG_PACKAGE_libreadline=y\nCONFIG_PACKAGE_librrd1=y\nCONFIG_PACKAGE_libruby=y\nCONFIG_PACKAGE_libsasl2=y\nCONFIG_PACKAGE_libssh=y\nCONFIG_PACKAGE_libtasn1=y\nCONFIG_PACKAGE_libtirpc=y\nCONFIG_PACKAGE_libudev-zero=y\nCONFIG_PACKAGE_libunbound=y\nCONFIG_PACKAGE_libunbound_ipset=y\nCONFIG_PACKAGE_libunbound_libevent=y\nCONFIG_PACKAGE_libunbound_libpthread=y\nCONFIG_PACKAGE_libusb-1.0=y\nCONFIG_PACKAGE_libusbmuxd=y\nCONFIG_PACKAGE_libwebp=y\nCONFIG_PACKAGE_libwebsockets-full=y\nCONFIG_PACKAGE_libxml2=y\nCONFIG_PACKAGE_libyaml=y\nCONFIG_PACKAGE_libyaml-cpp=y\nCONFIG_PACKAGE_lm-sensors-detect=y\nCONFIG_PACKAGE_lrzsz=y\nCONFIG_PACKAGE_lsblk=y\nCONFIG_PACKAGE_lscpu=y\nCONFIG_PACKAGE_lsof=y\nCONFIG_PACKAGE_luasocket=y\nCONFIG_PACKAGE_luci-app-adguardhome=y\nCONFIG_PACKAGE_luci-app-argon-config=y\nCONFIG_PACKAGE_luci-app-beardropper=y\nCONFIG_PACKAGE_luci-app-cifs-mount=y\nCONFIG_PACKAGE_luci-app-diskman=y\nCONFIG_PACKAGE_luci-app-eqos=y\nCONFIG_PACKAGE_luci-app-frpc=y\nCONFIG_PACKAGE_luci-app-frps=y\nCONFIG_PACKAGE_luci-app-gost=y\nCONFIG_PACKAGE_luci-app-haproxy-tcp=y\nCONFIG_PACKAGE_luci-app-ipsec-vpnd=y\nCONFIG_PACKAGE_luci-app-jd-dailybonus=y\nCONFIG_PACKAGE_luci-app-mentohust=y\nCONFIG_PACKAGE_luci-app-mwan3=y\nCONFIG_PACKAGE_luci-app-mwan3helper=y\nCONFIG_PACKAGE_luci-app-nps=y\nCONFIG_PACKAGE_luci-app-ocserv=y\nCONFIG_PACKAGE_luci-app-onliner=y\nCONFIG_PACKAGE_luci-app-openclash=y\nCONFIG_PACKAGE_luci-app-openvpn=y\nCONFIG_PACKAGE_luci-app-openvpn-server=y\nCONFIG_PACKAGE_luci-app-serverchan=y\nCONFIG_PACKAGE_luci-app-smartdns=y\nCONFIG_PACKAGE_luci-app-softethervpn=y\nCONFIG_PACKAGE_luci-app-softethervpn5=y\nCONFIG_PACKAGE_luci-app-sqm=y\nCONFIG_PACKAGE_luci-app-ssr-libev-server=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_Plugin=y\nCONFIG_PACKAGE_luci-app-statistics=y\nCONFIG_PACKAGE_luci-app-syncdial=y\nCONFIG_PACKAGE_luci-app-ttyd=y\nCONFIG_PACKAGE_luci-app-turboacc_INCLUDE_dnsforwarder=y\nCONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y\nCONFIG_PACKAGE_luci-app-udpxy=y\nCONFIG_PACKAGE_luci-app-uhttpd=y\n# CONFIG_PACKAGE_luci-app-unblockmusic is not set\nCONFIG_PACKAGE_luci-app-unblockneteasemusic=y\nCONFIG_PACKAGE_luci-app-unbound=y\nCONFIG_PACKAGE_luci-app-v2ray-server=y\nCONFIG_PACKAGE_luci-app-vnstat=y\nCONFIG_PACKAGE_luci-app-watchcat=y\nCONFIG_PACKAGE_luci-app-wireguard=y\nCONFIG_PACKAGE_luci-app-wrtbwmon=y\nCONFIG_PACKAGE_luci-app-xlnetacc=y\nCONFIG_PACKAGE_luci-compat=y\nCONFIG_PACKAGE_luci-i18n-adguardhome-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-argon-config-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-beardropper-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-cifs-mount-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-eqos-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-frpc-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-frps-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-gost-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-haproxy-tcp-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-ipsec-vpnd-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-mentohust-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-mwan3-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-mwan3helper-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-nps-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-onliner-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-openvpn-en=y\nCONFIG_PACKAGE_luci-i18n-openvpn-server-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-openvpn-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-smartdns-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-softethervpn-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-softethervpn5-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-sqm-en=y\nCONFIG_PACKAGE_luci-i18n-sqm-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-ssr-libev-server-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-statistics-en=y\nCONFIG_PACKAGE_luci-i18n-statistics-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-ttyd-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-uhttpd-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-unbound-en=y\nCONFIG_PACKAGE_luci-i18n-unbound-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-v2ray-server-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-vnstat-en=y\nCONFIG_PACKAGE_luci-i18n-vnstat-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-watchcat-en=y\nCONFIG_PACKAGE_luci-i18n-watchcat-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-wireguard-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-wrtbwmon-zh-cn=y\nCONFIG_PACKAGE_luci-proto-ipv6=y\nCONFIG_PACKAGE_luci-proto-openconnect=y\nCONFIG_PACKAGE_luci-proto-wireguard=y\nCONFIG_PACKAGE_luci-ssl-openssl=y\nCONFIG_PACKAGE_luci-theme-argon-mc=y\nCONFIG_PACKAGE_luci-theme-argonv3=y\nCONFIG_PACKAGE_luci-theme-atmaterial=y\nCONFIG_PACKAGE_luci-theme-darkmatter=y\nCONFIG_PACKAGE_luci-theme-edge=y\nCONFIG_PACKAGE_luci-theme-infinityfreedom=y\nCONFIG_PACKAGE_mentohust=y\nCONFIG_PACKAGE_minieap=y\nCONFIG_PACKAGE_mtr=y\nCONFIG_PACKAGE_mwan3=y\nCONFIG_PACKAGE_nano=y\nCONFIG_PACKAGE_node-request=y\nCONFIG_PACKAGE_npc=y\nCONFIG_PACKAGE_ocserv=y\nCONFIG_PACKAGE_odhcp6c=y\nCONFIG_PACKAGE_odhcp6c_ext_cer_id=0\nCONFIG_PACKAGE_odhcpd-ipv6only=y\nCONFIG_PACKAGE_odhcpd_ipv6only_ext_cer_id=0\nCONFIG_PACKAGE_openconnect=y\nCONFIG_PACKAGE_openvpn-easy-rsa=y\nCONFIG_PACKAGE_openvpn-openssl=y\nCONFIG_PACKAGE_parted=y\nCONFIG_PACKAGE_pcscd=y\nCONFIG_PACKAGE_perl=y\nCONFIG_PACKAGE_perlbase-base=y\nCONFIG_PACKAGE_perlbase-bytes=y\nCONFIG_PACKAGE_perlbase-class=y\nCONFIG_PACKAGE_perlbase-config=y\nCONFIG_PACKAGE_perlbase-cwd=y\nCONFIG_PACKAGE_perlbase-errno=y\nCONFIG_PACKAGE_perlbase-essential=y\nCONFIG_PACKAGE_perlbase-fcntl=y\nCONFIG_PACKAGE_perlbase-file=y\nCONFIG_PACKAGE_perlbase-filehandle=y\nCONFIG_PACKAGE_perlbase-i18n=y\nCONFIG_PACKAGE_perlbase-integer=y\nCONFIG_PACKAGE_perlbase-io=y\nCONFIG_PACKAGE_perlbase-list=y\nCONFIG_PACKAGE_perlbase-locale=y\nCONFIG_PACKAGE_perlbase-params=y\nCONFIG_PACKAGE_perlbase-posix=y\nCONFIG_PACKAGE_perlbase-re=y\nCONFIG_PACKAGE_perlbase-scalar=y\nCONFIG_PACKAGE_perlbase-selectsaver=y\nCONFIG_PACKAGE_perlbase-socket=y\nCONFIG_PACKAGE_perlbase-symbol=y\nCONFIG_PACKAGE_perlbase-tie=y\nCONFIG_PACKAGE_perlbase-unicore=y\nCONFIG_PACKAGE_perlbase-utf8=y\nCONFIG_PACKAGE_perlbase-xsloader=y\nCONFIG_PACKAGE_port-mirroring=y\nCONFIG_PACKAGE_python3=y\nCONFIG_PACKAGE_python3-asyncio=y\nCONFIG_PACKAGE_python3-base=y\nCONFIG_PACKAGE_python3-cgi=y\nCONFIG_PACKAGE_python3-cgitb=y\nCONFIG_PACKAGE_python3-codecs=y\nCONFIG_PACKAGE_python3-ctypes=y\nCONFIG_PACKAGE_python3-dbm=y\nCONFIG_PACKAGE_python3-decimal=y\nCONFIG_PACKAGE_python3-distutils=y\nCONFIG_PACKAGE_python3-email=y\nCONFIG_PACKAGE_python3-gdbm=y\nCONFIG_PACKAGE_python3-light=y\nCONFIG_PACKAGE_python3-logging=y\nCONFIG_PACKAGE_python3-lzma=y\nCONFIG_PACKAGE_python3-multiprocessing=y\nCONFIG_PACKAGE_python3-ncurses=y\nCONFIG_PACKAGE_python3-openssl=y\nCONFIG_PACKAGE_python3-pkg-resources=y\nCONFIG_PACKAGE_python3-pydoc=y\nCONFIG_PACKAGE_python3-setuptools=y\nCONFIG_PACKAGE_python3-sqlite3=y\nCONFIG_PACKAGE_python3-unittest=y\nCONFIG_PACKAGE_python3-urllib=y\nCONFIG_PACKAGE_python3-xml=y\nCONFIG_PACKAGE_redsocks2=y\nCONFIG_PACKAGE_rng-tools=y\nCONFIG_PACKAGE_rrdtool1=y\nCONFIG_PACKAGE_rt2800-usb-firmware=y\nCONFIG_PACKAGE_rtl8192ce-firmware=y\nCONFIG_PACKAGE_rtl8192cu-firmware=y\nCONFIG_PACKAGE_rtl8192de-firmware=y\nCONFIG_PACKAGE_rtl8192se-firmware=y\nCONFIG_PACKAGE_rtl8821ae-firmware=y\nCONFIG_PACKAGE_ruby=y\nCONFIG_PACKAGE_ruby-bigdecimal=y\nCONFIG_PACKAGE_ruby-date=y\nCONFIG_PACKAGE_ruby-dbm=y\nCONFIG_PACKAGE_ruby-digest=y\nCONFIG_PACKAGE_ruby-enc=y\nCONFIG_PACKAGE_ruby-pstore=y\nCONFIG_PACKAGE_ruby-psych=y\nCONFIG_PACKAGE_ruby-stringio=y\nCONFIG_PACKAGE_ruby-strscan=y\nCONFIG_PACKAGE_ruby-yaml=y\nCONFIG_PACKAGE_shadowsocks-libev-ss-server=y\nCONFIG_PACKAGE_smartdns=y\nCONFIG_PACKAGE_smartmontools=y\nCONFIG_PACKAGE_socat=y\nCONFIG_PACKAGE_softethervpn5-bridge=y\nCONFIG_PACKAGE_softethervpn5-client=y\nCONFIG_PACKAGE_softethervpn5-libs=y\nCONFIG_PACKAGE_softethervpn5-server=y\nCONFIG_PACKAGE_speedtest-cli=y\nCONFIG_PACKAGE_sqm-scripts=y\nCONFIG_PACKAGE_ss=y\nCONFIG_PACKAGE_ssocks=y\nCONFIG_PACKAGE_stress=y\nCONFIG_PACKAGE_strongswan=y\nCONFIG_PACKAGE_strongswan-charon=y\nCONFIG_PACKAGE_strongswan-ipsec=y\nCONFIG_PACKAGE_strongswan-minimal=y\nCONFIG_PACKAGE_strongswan-mod-aes=y\nCONFIG_PACKAGE_strongswan-mod-gmp=y\nCONFIG_PACKAGE_strongswan-mod-hmac=y\nCONFIG_PACKAGE_strongswan-mod-kernel-libipsec=y\nCONFIG_PACKAGE_strongswan-mod-kernel-netlink=y\nCONFIG_PACKAGE_strongswan-mod-nonce=y\nCONFIG_PACKAGE_strongswan-mod-pubkey=y\nCONFIG_PACKAGE_strongswan-mod-random=y\nCONFIG_PACKAGE_strongswan-mod-sha1=y\nCONFIG_PACKAGE_strongswan-mod-socket-default=y\nCONFIG_PACKAGE_strongswan-mod-stroke=y\nCONFIG_PACKAGE_strongswan-mod-updown=y\nCONFIG_PACKAGE_strongswan-mod-x509=y\nCONFIG_PACKAGE_strongswan-mod-xauth-generic=y\nCONFIG_PACKAGE_strongswan-mod-xcbc=y\nCONFIG_PACKAGE_sub-web=y\nCONFIG_PACKAGE_subconverter=y\nCONFIG_PACKAGE_swconfig=y\nCONFIG_PACKAGE_tc=y\nCONFIG_PACKAGE_tcpdump=y\nCONFIG_PACKAGE_tmate=y\nCONFIG_PACKAGE_trojan=y\nCONFIG_PACKAGE_trojan-plus=y\nCONFIG_PACKAGE_ttyd=y\nCONFIG_PACKAGE_uclibcxx=y\nCONFIG_PACKAGE_udpxy=y\nCONFIG_PACKAGE_unbound-daemon=y\nCONFIG_PACKAGE_unzip=y\nCONFIG_PACKAGE_usb-modeswitch=y\nCONFIG_PACKAGE_usbids=y\nCONFIG_PACKAGE_usbmuxd=y\nCONFIG_PACKAGE_usbutils=y\nCONFIG_PACKAGE_v2ray-plugin=y\nCONFIG_PACKAGE_vim-fuller=y\nCONFIG_PACKAGE_vnstat=y\nCONFIG_PACKAGE_vnstati=y\nCONFIG_PACKAGE_vpnc-scripts=y\nCONFIG_PACKAGE_watchcat=y\nCONFIG_PACKAGE_wireguard=y\nCONFIG_PACKAGE_wireguard-tools=y\nCONFIG_PACKAGE_wireless-regdb=y\nCONFIG_PACKAGE_wireless-tools=y\nCONFIG_PACKAGE_wpad-openssl=y\nCONFIG_PERL_NOCOMMENT=y\nCONFIG_SOCAT_SSL=y\nCONFIG_STRONGSWAN_ROUTING_TABLE=\"220\"\nCONFIG_STRONGSWAN_ROUTING_TABLE_PRIO=\"220\"\nCONFIG_TARGET_KERNEL_PARTSIZE=30\nCONFIG_TARGET_ROOTFS_PARTSIZE=950\nCONFIG_WPA_MSG_MIN_PRIORITY=3\nCONFIG_boost-compile-visibility-hidden=y\nCONFIG_boost-runtime-shared=y\nCONFIG_boost-static-and-shared-libs=y\nCONFIG_boost-variant-release=y\n#CONFIG_PACKAGE_luci-app-passwall=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Brook=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ChinaDNS_NG=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Haproxy=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Hysteria=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Kcptun=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_NaiveProxy=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_PDNSD=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Libev_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Libev_Server=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Rust_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_Libev_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_Libev_Server=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Simple_Obfs=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan_GO=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan_Plus=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_V2ray=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_V2ray_Plugin=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Xray=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Xray_Plugin=y\n"
  },
  {
    "path": "Newifi_D2.config",
    "content": "CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_mt7621=y\nCONFIG_TARGET_ramips_mt7621_DEVICE_d-team_newifi-d2=y\n# CONFIG_BUSYBOX_DEFAULT_FEATURE_IPV6 is not set\n# CONFIG_IPV6 is not set\n# CONFIG_KERNEL_IPV6 is not set\nCONFIG_PACKAGE_autosamba=y\nCONFIG_PACKAGE_curl=y\nCONFIG_PACKAGE_ddns-scripts_no-ip_com=y\nCONFIG_PACKAGE_f2fsck=y\nCONFIG_PACKAGE_htop=y\nCONFIG_PACKAGE_nano=y\nCONFIG_PACKAGE_openssh-sftp-client=y\nCONFIG_PACKAGE_openssh-sftp-server=y\nCONFIG_PACKAGE_openssl-util=y\nCONFIG_PACKAGE_kmod-fs-f2fs=y\nCONFIG_PACKAGE_kmod-mt76=y\nCONFIG_PACKAGE_kmod-usb-storage=y\nCONFIG_PACKAGE_kmod-usb-storage-extras=y\nCONFIG_PACKAGE_kmod-usb-storage-uas=y\nCONFIG_PACKAGE_kmod-usb2=y\nCONFIG_PACKAGE_kmod-usb3=y\nCONFIG_PACKAGE_kmod-sdhci=y\nCONFIG_PACKAGE_kmod-sdhci-mt7620=y\nCONFIG_PACKAGE_kmod-usb-ohci=y\nCONFIG_PACKAGE_kmod-usb-uhci=y\nCONFIG_PACKAGE_luci-app-webadmin=y\nCONFIG_PACKAGE_luci-app-ipsec-vpnd=y\nCONFIG_PACKAGE_luci-app-nps=y\nCONFIG_PACKAGE_luci-app-samba=y\nCONFIG_PACKAGE_luci-app-ttyd=y\nCONFIG_PACKAGE_ttyd=y\nCONFIG_PACKAGE_luci-app-p910nd=y\nCONFIG_PACKAGE_p910nd=y\nCONFIG_PACKAGE_luci-app-ssr-plus=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks_Rust=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_plugin=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Xray=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Server=y\nCONFIG_PACKAGE_luci-i18n-ssr-plus-zh-cn=y\n"
  },
  {
    "path": "README.md",
    "content": "# AutoBuild-OpenWrt\n[![LICENSE](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat&logo=github&label=LICENSE)](https://github.com/esirplayground/AutoBuild-OpenWrt/blob/master/LICENSE)\n![GitHub Stars](https://img.shields.io/github/stars/esirplayground/AutoBuild-OpenWrt.svg?style=flat&logo=appveyor&label=Stars&logo=github)\n![GitHub Forks](https://img.shields.io/github/forks/esirplayground/AutoBuild-OpenWrt.svg?style=flat&logo=appveyor&label=Forks&logo=github)\n![GitHub last commit](https://img.shields.io/github/last-commit/esirplayground/AutoBuild-OpenWrt?label=Latest%20Commit&logo=github)\n\nBuild OpenWrt firware [Lean's OpenWrt](https://github.com/coolsnowwolf/lede) using GitHub Actions  \nHereby thank P3TERX for his amazing job: https://github.com/P3TERX/Actions-OpenWrt/  \n\nHereby thank KFERMercer for his amazing job: https://github.com/KFERMercer/OpenWrt-CI  \nYou could edit and enable \"Sync Code\" YAML file to let your forked repo keep updated.\n\n## Usage\n\n🔥🔥[Video Tutorial (in Mandrin) | 视频教程(国语)](https://youtu.be/9YO7nxNry-4)📺🎉\n\n**1. Prerequisite**\n  - Sign up for [GitHub Actions](https://github.com/features/actions/signup)\n  - Fork [this GitHub repository](https://github.com/esirplayground/AutoBuild-OpenWrt)\n    \n**2. Compile Firmware**\n  - Click `[.github/workflows]` folder on the top of repo and you could see few workflow files, Each for one particular architecture(device).\n  - Edit the workflow file you desire，uncomment push section 3 lines together and submit the commit.(Other 2 methods wait you to discover)\n  - The build starts automatically. Progress can be viewed on the Actions page.\n  - When the build is complete, click the `Artifacts` button in the upper right corner of the Actions page to download the binaries.\n  - Default Web Admin IP: `192.168.5.1`, username `root`, no login password\n\n**3. Sync Code**\n  - Uncomment 'push-branches-master' 3 lines under **`On`** section and commit changes to let the script sync the code once for you.\n  - Uncomment 'schedule-cron' 2 lines under **`On`** section and commit changes to let the script sync the code everyday on 3 am[UTC +8]\n"
  },
  {
    "path": "customize.sh",
    "content": "#!/bin/bash\n#=================================================\n# Description: DIY script\n# Lisence: MIT\n# Author: eSirPlayground\n# Youtube Channel: https://goo.gl/fvkdwm \n#=================================================\n#1. Modify default IP\nsed -i 's/192.168.1.1/192.168.5.1/g' openwrt/package/base-files/files/bin/config_generate\n\n#2. 修改主机名\nsed -i '/uci commit system/i\\uci set system.@system[0].hostname='OpenWRT'' openwrt/package/lean/default-settings/files/zzz-default-settings\n\n#3. 版本号里显示一个自己的名字\nsed -i \"s/OpenWrt /zNing build $(TZ=UTC-8 date \"+%Y.%m.%d\") @ OpenWrt /g\" openwrt/package/lean/default-settings/files/zzz-default-settings\n\n#4. Replace with JerryKuKu’s Argon\nrm openwrt/package/lean/luci-theme-argon -rf\n"
  },
  {
    "path": "patches/1806-modify_for_r4s.patch",
    "content": "diff --git a/include/target.mk b/include/target.mk\nindex 530e711fa5..d58f08c0e5 100644\n--- a/include/target.mk\n+++ b/include/target.mk\n@@ -168,7 +168,7 @@ LINUX_RECONF_DIFF = $(SCRIPT_DIR)/kconfig.pl - '>' $(call __linux_confcmd,$(filt\n ifeq ($(DUMP),1)\n   BuildTarget=$(BuildTargets/DumpCurrent)\n \n-  CPU_CFLAGS = -Os -pipe\n+  CPU_CFLAGS = -O3 -pipe\n   ifneq ($(findstring mips,$(ARCH)),)\n     ifneq ($(findstring mips64,$(ARCH)),)\n       CPU_TYPE ?= mips64\n@@ -209,7 +209,7 @@ ifeq ($(DUMP),1)\n   endif\n   ifeq ($(ARCH),aarch64)\n     CPU_TYPE ?= generic\n-    CPU_CFLAGS_generic = -mcpu=generic\n+    CPU_CFLAGS_generic = -march=armv8-a+crypto+crc -mcpu=cortex-a73.cortex-a53+crypto+crc -mtune=cortex-a73.cortex-a53\n     CPU_CFLAGS_cortex-a53 = -mcpu=cortex-a53\n   endif\n   ifeq ($(ARCH),arc)\ndiff --git a/package/ctcgfw/luci-app-turboacc/Makefile b/package/ctcgfw/luci-app-turboacc/Makefile\nindex 7e07b87fee..a08cc4dbe3 100644\n--- a/package/ctcgfw/luci-app-turboacc/Makefile\n+++ b/package/ctcgfw/luci-app-turboacc/Makefile\n@@ -22,7 +22,7 @@ LUCI_PKGARCH:=all\n define Package/$(PKG_NAME)/config\n config PACKAGE_$(PKG_NAME)_INCLUDE_flow-offload\n \tbool \"Include Flow Offload\"\n-\tdepends on PACKAGE_$(PKG_NAME)_INCLUDE_shortcut-fe=n\n+\t#depends on PACKAGE_$(PKG_NAME)_INCLUDE_shortcut-fe=n\n \tdefault y\n \n config PACKAGE_$(PKG_NAME)_INCLUDE_shortcut-fe\ndiff --git a/package/ctcgfw/luci-app-turboacc/root/etc/config/turboacc b/package/ctcgfw/luci-app-turboacc/root/etc/config/turboacc\nindex 067aad2763..b221186ba4 100644\n--- a/package/ctcgfw/luci-app-turboacc/root/etc/config/turboacc\n+++ b/package/ctcgfw/luci-app-turboacc/root/etc/config/turboacc\n@@ -1,9 +1,9 @@\n \n config turboacc 'config'\n \toption sw_flow '1'\n-\toption hw_flow '1'\n-\toption sfe_flow '1'\n-\toption sfe_bridge '1'\n+\toption hw_flow '0'\n+\toption sfe_flow '0'\n+\toption sfe_bridge '0'\n \toption sfe_ipv6 '0'\n \toption bbr_cca '1'\n \toption fullcone_nat '1'\ndiff --git a/package/ctcgfw/luci-app-vssr/root/usr/share/vssr/genconfig_trojan.lua b/package/ctcgfw/luci-app-vssr/root/usr/share/vssr/genconfig_trojan.lua\nindex 875813dc08..f2e186e9c2 100644\n--- a/package/ctcgfw/luci-app-vssr/root/usr/share/vssr/genconfig_trojan.lua\n+++ b/package/ctcgfw/luci-app-vssr/root/usr/share/vssr/genconfig_trojan.lua\n@@ -21,8 +21,8 @@ local trojan = {\n         verify = (server.insecure == '0') and true or false,\n         verify_hostname = (server.tls == '1') and true or false,\n         cert = '',\n-        cipher = 'ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA:AES128-SHA:AES256-SHA:DES-CBC3-SHA',\n-        cipher_tls13 = 'TLS_AES_128_GCM_SHA256:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384',\n+        cipher = 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA:AES128-SHA:AES256-SHA:DES-CBC3-SHA',\n+        cipher_tls13 = 'TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384',\n         sni = server.peer,\n         alpn = {'h2', 'http/1.1'},\n         curve = '',\ndiff --git a/package/lean/luci-app-cpufreq/root/etc/config/cpufreq b/package/lean/luci-app-cpufreq/root/etc/config/cpufreq\nindex 5c2c070e9d..e1ce69b52e 100644\n--- a/package/lean/luci-app-cpufreq/root/etc/config/cpufreq\n+++ b/package/lean/luci-app-cpufreq/root/etc/config/cpufreq\n@@ -1,3 +1,9 @@\n \n config settings 'cpufreq'\n+\toption governor0 'schedutil'\n+\toption maxfreq0 '1608000'\n+\toption governor4 'schedutil'\n+\toption maxfreq4 '2016000'\n+\toption minfreq0 '600000'\n+\toption minfreq4 '600000'\n "
  },
  {
    "path": "redmi_ac2100.config",
    "content": "CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_mt7621=y\nCONFIG_TARGET_ramips_mt7621_DEVICE_xiaomi_redmi-router-ac2100=y\n# CONFIG_FEED_helloworld is not set\nCONFIG_LIBCURL_COOKIES=y\nCONFIG_LIBCURL_FILE=y\nCONFIG_LIBCURL_FTP=y\nCONFIG_LIBCURL_HTTP=y\nCONFIG_LIBCURL_NO_SMB=\"!\"\nCONFIG_LIBCURL_OPENSSL=y\nCONFIG_LIBCURL_PROXY=y\nCONFIG_PACKAGE_6in4=y\nCONFIG_PACKAGE_bind-client=y\nCONFIG_PACKAGE_bind-libs=y\nCONFIG_PACKAGE_bind-tools=y\nCONFIG_PACKAGE_boost=y\nCONFIG_PACKAGE_boost-date_time=y\nCONFIG_PACKAGE_boost-program_options=y\nCONFIG_PACKAGE_boost-system=y\nCONFIG_PACKAGE_ca-bundle=y\nCONFIG_PACKAGE_cfdisk=y\nCONFIG_PACKAGE_curl=y\nCONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y\nCONFIG_PACKAGE_ddns-scripts_freedns_42_pl=y\nCONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y\nCONFIG_PACKAGE_ddns-scripts_no-ip_com=y\nCONFIG_PACKAGE_ddns-scripts_nsupdate=y\nCONFIG_PACKAGE_ddns-scripts_route53-v1=y\nCONFIG_PACKAGE_ip6tables=y\nCONFIG_PACKAGE_ipt2socks=y\nCONFIG_PACKAGE_ipv6helper=y\nCONFIG_PACKAGE_kcptun-client=y\nCONFIG_PACKAGE_kmod-crypto-crc32=y\nCONFIG_PACKAGE_kmod-crypto-crc32c=y\nCONFIG_PACKAGE_kmod-crypto-des=y\nCONFIG_PACKAGE_kmod-crypto-hmac=y\nCONFIG_PACKAGE_kmod-crypto-md4=y\nCONFIG_PACKAGE_kmod-crypto-md5=y\nCONFIG_PACKAGE_kmod-crypto-sha256=y\nCONFIG_PACKAGE_kmod-fs-cifs=y\nCONFIG_PACKAGE_kmod-fs-ext4=y\nCONFIG_PACKAGE_kmod-fs-f2fs=y\nCONFIG_PACKAGE_kmod-fs-msdos=y\nCONFIG_PACKAGE_kmod-fs-vfat=y\nCONFIG_PACKAGE_kmod-ipt-nat6=y\nCONFIG_PACKAGE_kmod-iptunnel=y\nCONFIG_PACKAGE_kmod-iptunnel4=y\nCONFIG_PACKAGE_kmod-lib-crc16=y\nCONFIG_PACKAGE_kmod-nf-nat6=y\nCONFIG_PACKAGE_kmod-nls-base=y\nCONFIG_PACKAGE_kmod-nls-cp437=y\nCONFIG_PACKAGE_kmod-nls-iso8859-1=y\nCONFIG_PACKAGE_kmod-nls-utf8=y\nCONFIG_PACKAGE_kmod-scsi-core=y\nCONFIG_PACKAGE_kmod-sit=y\nCONFIG_PACKAGE_kmod-usb-core=y\nCONFIG_PACKAGE_kmod-usb-ehci=y\nCONFIG_PACKAGE_kmod-usb-storage=y\nCONFIG_PACKAGE_kmod-usb-storage-extras=y\nCONFIG_PACKAGE_kmod-usb-storage-uas=y\nCONFIG_PACKAGE_kmod-usb-uhci=y\nCONFIG_PACKAGE_kmod-usb2=y\nCONFIG_PACKAGE_kmod-usb3=y\nCONFIG_PACKAGE_libblkid=y\nCONFIG_PACKAGE_libcurl=y\nCONFIG_PACKAGE_libevent2=y\nCONFIG_PACKAGE_libfdisk=y\nCONFIG_PACKAGE_libmount=y\nCONFIG_PACKAGE_libncurses=y\nCONFIG_PACKAGE_libsmartcols=y\nCONFIG_PACKAGE_libstdcpp=y\nCONFIG_PACKAGE_luci-app-ssr-plus=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks_Rust=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_plugin=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Xray=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_NaiveProxy=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Server=y\nCONFIG_PACKAGE_luci-i18n-ssr-plus-zh-cn=y\nCONFIG_PACKAGE_luci-proto-ipv6=y\nCONFIG_PACKAGE_luci-theme-argon=y\nCONFIG_PACKAGE_nano=y\nCONFIG_PACKAGE_odhcp6c=y\nCONFIG_PACKAGE_odhcp6c_ext_cer_id=0\nCONFIG_PACKAGE_odhcpd-ipv6only=y\nCONFIG_PACKAGE_odhcpd_ipv6only_ext_cer_id=0\nCONFIG_PACKAGE_openssh-sftp-client=y\nCONFIG_PACKAGE_openssh-sftp-server=y\nCONFIG_PACKAGE_redsocks2=y\nCONFIG_PACKAGE_shadowsocksr-libev-server=y\nCONFIG_PACKAGE_terminfo=y\nCONFIG_PACKAGE_trojan=y\nCONFIG_PACKAGE_v2ray=y\nCONFIG_PACKAGE_v2ray-plugin=y\nCONFIG_V2RAY_COMPRESS_UPX=y\nCONFIG_V2RAY_DISABLE_NONE=y\nCONFIG_V2RAY_EXCLUDE_ASSETS=y\nCONFIG_V2RAY_EXCLUDE_V2CTL=y\nCONFIG_V2RAY_JSON_INTERNAL=y\nCONFIG_boost-compile-visibility-hidden=y\nCONFIG_boost-runtime-shared=y\nCONFIG_boost-static-and-shared-libs=y\nCONFIG_boost-variant-release=y\n# CONFIG_TARGET_ramips_mt7620_DEVICE_aigale_ai-br100 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_alfa-network_ac1200rm is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_alfa-network_r36m-e4g is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_alfa-network_tube-e4g is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_asus_rp-n53 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_asus_rt-ac51u is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_asus_rt-n12p is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_asus_rt-n14u is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_bdcom_wap2100-sk is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_buffalo_whr-1166d is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_buffalo_whr-300hp2 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_buffalo_whr-600d is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_buffalo_wmr-300 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_comfast_cf-wr800n is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dch-m225 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dir-510l is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dir-810l is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dwr-116-a1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dwr-118-a1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dwr-118-a2 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dwr-921-c1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dwr-921-c3 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dlink_dwr-922-e2 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_dovado_tiny-ac is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_edimax_br-6478ac-v2 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_edimax_ew-7476rpc is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_edimax_ew-7478ac is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_edimax_ew-7478apc is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_elecom_wrh-300cr is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_engenius_esr600 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_fon_fon2601 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_glinet_gl-mt300a is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_glinet_gl-mt300n is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_glinet_gl-mt750 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_head-weblink_hdrm200 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_hiwifi_hc5661 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_hiwifi_hc5761 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_hiwifi_hc5861 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_hnet_c108 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_iodata_wn-ac1167gr is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_iodata_wn-ac733gr3 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_iptime_a104ns is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_kimax_u25awf-h1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_kimax_u35wf is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_kingston_mlw221 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_kingston_mlwg2 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_lava_lr-25g001 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_lenovo_newifi-y1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_lenovo_newifi-y1s is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_linksys_e1700 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_microduino_microwrt is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_netgear_ex2700 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_netgear_ex3700 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_netgear_ex6130 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_netgear_wn3000rp-v3 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_nexx_wt3020-4m is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_nexx_wt3020-8m is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_ohyeah_oy-0001 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_phicomm_k2g is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_phicomm_psg1208 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_phicomm_psg1218a is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_phicomm_psg1218b is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_planex_cs-qr10 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_planex_db-wrt01 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_planex_mzk-750dhp is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_planex_mzk-ex300np is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_planex_mzk-ex750np is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_ralink_mt7620a-evb is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_ralink_mt7620a-mt7530-evb is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_ralink_mt7620a-mt7610e-evb is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_ralink_mt7620a-v22sg-evb is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_ravpower_wd03 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_sanlinking_d240 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_sercomm_na930 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_tplink_archer-c2-v1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_tplink_archer-c20-v1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_tplink_archer-c20i is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_tplink_archer-c50-v1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_tplink_archer-mr200 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_tplink_re200-v1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_tplink_re210-v1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_vonets_var11n-300 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_wrtnode_wrtnode is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_xiaomi_miwifi-mini is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_xiaomi_miwifi-r3 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_youku_yk1 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_yukai_bocco is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-ape522ii is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-cpe102 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-wa05 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-we1026-5g-16m is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-we1026-h-32m is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-we2026 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-we826-16m is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-we826-32m is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-we826-e is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zbtlink_zbt-wr8305rt is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zte_q7 is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zyxel_keenetic-omni is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zyxel_keenetic-omni-ii is not set\n# CONFIG_TARGET_ramips_mt7620_DEVICE_zyxel_keenetic-viva is not set\n# CONFIG_TARGET_ramips_mt7620_Default is not set\n# CONFIG_TARGET_x86_64 is not set\n# CONFIG_TARGET_x86_64_Generic is not set\n# CONFIG_TARGET_x86_generic is not set\n# CONFIG_TARGET_x86_geode is not set\n# CONFIG_TARGET_x86_legacy is not set\n# CONFIG_TARGET_x86_zen is not set\n# CONFIG_PACKAGE_luci-app-vsftpd is not set\n# CONFIG_PACKAGE_vsftpd is not set\n# CONFIG_PACKAGE_vsftpd-alt is not set\n# CONFIG_PACKAGE_vsftpd-tls is not set\n"
  },
  {
    "path": "redmi_ac2100_zn.config",
    "content": "CONFIG_TARGET_ramips=y\r\nCONFIG_TARGET_ramips_mt7621=y\r\nCONFIG_TARGET_ramips_mt7621_DEVICE_xiaomi_redmi-router-ac2100=y\r\nCONFIG_KSMBD_SMB_INSECURE_SERVER=y\r\nCONFIG_NODEJS_ICU_NONE=y\r\nCONFIG_PACKAGE_6in4=y\r\nCONFIG_PACKAGE_TAR_BZIP2=y\r\nCONFIG_PACKAGE_TAR_GZIP=y\r\nCONFIG_PACKAGE_TAR_XZ=y\r\nCONFIG_PACKAGE_TAR_ZSTD=y\r\nCONFIG_PACKAGE_bash=y\r\nCONFIG_PACKAGE_bzip2=y\r\nCONFIG_PACKAGE_coreutils-nohup=y\r\nCONFIG_PACKAGE_coreutils-stat=y\r\nCONFIG_PACKAGE_coreutils-stty=y\r\nCONFIG_PACKAGE_ddnsto=y\r\nCONFIG_PACKAGE_ip6tables=y\r\nCONFIG_PACKAGE_iptables-mod-conntrack-extra=y\r\nCONFIG_PACKAGE_iptables-mod-ipopt=y\r\nCONFIG_PACKAGE_iputils-arping=y\r\nCONFIG_PACKAGE_ipv6helper=y\r\nCONFIG_PACKAGE_jq=y\r\nCONFIG_PACKAGE_kcptun-client=y\r\nCONFIG_PACKAGE_kcptun-config=y\r\nCONFIG_PACKAGE_kmod-crypto-cbc=y\r\nCONFIG_PACKAGE_kmod-crypto-ccm=y\r\nCONFIG_PACKAGE_kmod-crypto-cmac=y\r\nCONFIG_PACKAGE_kmod-crypto-crc32c=y\r\nCONFIG_PACKAGE_kmod-crypto-ctr=y\r\nCONFIG_PACKAGE_kmod-crypto-cts=y\r\nCONFIG_PACKAGE_kmod-crypto-gcm=y\r\nCONFIG_PACKAGE_kmod-crypto-gf128=y\r\nCONFIG_PACKAGE_kmod-crypto-ghash=y\r\nCONFIG_PACKAGE_kmod-crypto-hmac=y\r\nCONFIG_PACKAGE_kmod-crypto-md4=y\r\nCONFIG_PACKAGE_kmod-crypto-rng=y\r\nCONFIG_PACKAGE_kmod-crypto-seqiv=y\r\nCONFIG_PACKAGE_kmod-crypto-sha512=y\r\nCONFIG_PACKAGE_kmod-dnsresolver=y\r\nCONFIG_PACKAGE_kmod-fs-exfat=y\r\nCONFIG_PACKAGE_kmod-fs-exportfs=y\r\nCONFIG_PACKAGE_kmod-fs-ext4=y\r\nCONFIG_PACKAGE_kmod-fs-ksmbd=y\r\nCONFIG_PACKAGE_kmod-fs-nfs=y\r\nCONFIG_PACKAGE_kmod-fs-nfs-common=y\r\nCONFIG_PACKAGE_kmod-fs-nfs-common-rpcsec=y\r\nCONFIG_PACKAGE_kmod-fs-nfs-v4=y\r\nCONFIG_PACKAGE_kmod-fs-nfsd=y\r\nCONFIG_PACKAGE_kmod-fs-vfat=y\r\nCONFIG_PACKAGE_kmod-ip6tables=y\r\nCONFIG_PACKAGE_kmod-ipt-conntrack-extra=y\r\nCONFIG_PACKAGE_kmod-ipt-ipopt=y\r\nCONFIG_PACKAGE_kmod-ipt-nat6=y\r\nCONFIG_PACKAGE_kmod-iptunnel=y\r\nCONFIG_PACKAGE_kmod-iptunnel4=y\r\nCONFIG_PACKAGE_kmod-lib-crc16=y\r\nCONFIG_PACKAGE_kmod-nf-ipt6=y\r\nCONFIG_PACKAGE_kmod-nf-log6=y\r\nCONFIG_PACKAGE_kmod-nf-nat6=y\r\nCONFIG_PACKAGE_kmod-nf-reject6=y\r\nCONFIG_PACKAGE_kmod-nls-base=y\r\nCONFIG_PACKAGE_kmod-nls-cp437=y\r\nCONFIG_PACKAGE_kmod-nls-iso8859-1=y\r\nCONFIG_PACKAGE_kmod-nls-utf8=y\r\nCONFIG_PACKAGE_kmod-oid-registry=y\r\nCONFIG_PACKAGE_kmod-scsi-core=y\r\nCONFIG_PACKAGE_kmod-sit=y\r\nCONFIG_PACKAGE_kmod-usb-core=y\r\nCONFIG_PACKAGE_kmod-usb-ehci=y\r\nCONFIG_PACKAGE_kmod-usb-storage=y\r\nCONFIG_PACKAGE_kmod-usb-storage-extras=y\r\nCONFIG_PACKAGE_kmod-usb-xhci-hcd=y\r\nCONFIG_PACKAGE_kmod-usb-xhci-mtk=y\r\nCONFIG_PACKAGE_kmod-usb2=y\r\nCONFIG_PACKAGE_kmod-usb2-pci=y\r\nCONFIG_PACKAGE_kmod-usb3=y\r\nCONFIG_PACKAGE_libatomic=y\r\nCONFIG_PACKAGE_libblkid=y\r\nCONFIG_PACKAGE_libbz2=y\r\nCONFIG_PACKAGE_libcap=y\r\nCONFIG_PACKAGE_libcap-bin=y\r\nCONFIG_PACKAGE_libcap-bin-capsh-shell=\"/bin/sh\"\r\nCONFIG_PACKAGE_libcares=y\r\nCONFIG_PACKAGE_libdb47=y\r\nCONFIG_PACKAGE_libevent2=y\r\nCONFIG_PACKAGE_libffi=y\r\nCONFIG_PACKAGE_libgdbm=y\r\nCONFIG_PACKAGE_libgmp=y\r\nCONFIG_PACKAGE_libhttp-parser=y\r\nCONFIG_PACKAGE_liblzma=y\r\nCONFIG_PACKAGE_libmaxminddb=y\r\nCONFIG_PACKAGE_libminiupnpc=y\r\nCONFIG_PACKAGE_libmount=y\r\nCONFIG_PACKAGE_libnatpmp=y\r\nCONFIG_PACKAGE_libncurses=y\r\nCONFIG_PACKAGE_libpcap=y\r\nCONFIG_PACKAGE_libpython3=y\r\nCONFIG_PACKAGE_libreadline=y\r\nCONFIG_PACKAGE_libruby=y\r\nCONFIG_PACKAGE_libsmartcols=y\r\nCONFIG_PACKAGE_libsqlite3=y\r\nCONFIG_PACKAGE_libstdcpp=y\r\nCONFIG_PACKAGE_libuv=y\r\nCONFIG_PACKAGE_libwebsockets-full=y\r\nCONFIG_PACKAGE_libxml2=y\r\nCONFIG_PACKAGE_libyaml=y\r\nCONFIG_PACKAGE_libzstd=y\r\nCONFIG_PACKAGE_lua-cjson=y\r\nCONFIG_PACKAGE_lua-maxminddb=y\r\nCONFIG_PACKAGE_luasocket=y\r\nCONFIG_PACKAGE_luci-app-argon-config=y\r\nCONFIG_PACKAGE_luci-app-ddnsto=y\r\nCONFIG_PACKAGE_luci-app-mwan3=y\r\nCONFIG_PACKAGE_luci-app-poweroff=y\r\nCONFIG_PACKAGE_luci-app-serverchan=y\r\nCONFIG_PACKAGE_luci-app-store=y\r\nCONFIG_PACKAGE_luci-app-syncdial=y\r\nCONFIG_PACKAGE_luci-compat=y\r\nCONFIG_PACKAGE_luci-i18n-argon-config-zh-cn=y\r\nCONFIG_PACKAGE_luci-i18n-ddnsto-zh-cn=y\r\nCONFIG_PACKAGE_luci-i18n-mwan3-zh-cn=y\r\nCONFIG_PACKAGE_luci-i18n-poweroff-zh-cn=y\r\nCONFIG_PACKAGE_luci-i18n-vssr-zh-cn=y\r\nCONFIG_PACKAGE_luci-lib-taskd=y\r\nCONFIG_PACKAGE_luci-lib-xterm=y\r\nCONFIG_PACKAGE_luci-proto-ipv6=y\r\nCONFIG_PACKAGE_luci-theme-argon-jerrykuku=y\r\nCONFIG_PACKAGE_luci-theme-atmaterial_new=y\r\nCONFIG_PACKAGE_luci-theme-netgear=y\r\nCONFIG_PACKAGE_mount-utils=y\r\nCONFIG_PACKAGE_mwan3=y\r\nCONFIG_PACKAGE_node=y\r\nCONFIG_PACKAGE_odhcp6c=y\r\nCONFIG_PACKAGE_odhcp6c_ext_cer_id=0\r\nCONFIG_PACKAGE_odhcpd-ipv6only=y\r\nCONFIG_PACKAGE_odhcpd_ipv6only_ext_cer_id=0\r\nCONFIG_PACKAGE_p910nd=y\r\nCONFIG_PACKAGE_python3=y\r\nCONFIG_PACKAGE_python3-asyncio=y\r\nCONFIG_PACKAGE_python3-base=y\r\nCONFIG_PACKAGE_python3-cgi=y\r\nCONFIG_PACKAGE_python3-cgitb=y\r\nCONFIG_PACKAGE_python3-codecs=y\r\nCONFIG_PACKAGE_python3-ctypes=y\r\nCONFIG_PACKAGE_python3-dbm=y\r\nCONFIG_PACKAGE_python3-decimal=y\r\nCONFIG_PACKAGE_python3-distutils=y\r\nCONFIG_PACKAGE_python3-email=y\r\nCONFIG_PACKAGE_python3-light=y\r\nCONFIG_PACKAGE_python3-logging=y\r\nCONFIG_PACKAGE_python3-lzma=y\r\nCONFIG_PACKAGE_python3-multiprocessing=y\r\nCONFIG_PACKAGE_python3-ncurses=y\r\nCONFIG_PACKAGE_python3-openssl=y\r\nCONFIG_PACKAGE_python3-pydoc=y\r\nCONFIG_PACKAGE_python3-readline=y\r\nCONFIG_PACKAGE_python3-sqlite3=y\r\nCONFIG_PACKAGE_python3-unittest=y\r\nCONFIG_PACKAGE_python3-urllib=y\r\nCONFIG_PACKAGE_python3-uuid=y\r\nCONFIG_PACKAGE_python3-xml=y\r\nCONFIG_PACKAGE_redsocks2=y\r\nCONFIG_PACKAGE_rp-pppoe-common=y\r\nCONFIG_PACKAGE_rp-pppoe-server=y\r\nCONFIG_PACKAGE_ruby=y\r\nCONFIG_PACKAGE_ruby-bigdecimal=y\r\nCONFIG_PACKAGE_ruby-date=y\r\nCONFIG_PACKAGE_ruby-digest=y\r\nCONFIG_PACKAGE_ruby-enc=y\r\nCONFIG_PACKAGE_ruby-forwardable=y\r\nCONFIG_PACKAGE_ruby-pstore=y\r\nCONFIG_PACKAGE_ruby-psych=y\r\nCONFIG_PACKAGE_ruby-stringio=y\r\nCONFIG_PACKAGE_ruby-strscan=y\r\nCONFIG_PACKAGE_ruby-yaml=y\r\nCONFIG_PACKAGE_script-utils=y\r\nCONFIG_PACKAGE_smartdns=y\r\nCONFIG_PACKAGE_tar=y\r\nCONFIG_PACKAGE_taskd=y\r\nCONFIG_PACKAGE_tcpdump=y\r\nCONFIG_PACKAGE_terminfo=y\r\nCONFIG_PACKAGE_wsdd2=y\r\nCONFIG_PACKAGE_xray-core=y\r\nCONFIG_PACKAGE_xz=y\r\nCONFIG_PACKAGE_xz-utils=y\r\nCONFIG_PACKAGE_zerotier=y\r\nCONFIG_SQLITE3_COLUMN_METADATA=y\r\nCONFIG_SQLITE3_DYNAMIC_EXTENSIONS=y\r\nCONFIG_SQLITE3_FTS3=y\r\nCONFIG_SQLITE3_FTS4=y\r\nCONFIG_SQLITE3_FTS5=y\r\nCONFIG_SQLITE3_JSON1=y\r\nCONFIG_SQLITE3_RTREE=y\r\nCONFIG_ZSTD_OPTIMIZE_O3=y\r\n"
  },
  {
    "path": "x86.config",
    "content": "CONFIG_TARGET_x86=y\nCONFIG_TARGET_x86_generic=y\nCONFIG_TARGET_x86_generic_Generic=y\nCONFIG_PACKAGE_grub2-efi=y\nCONFIG_EFI_IMAGES=y\nCONFIG_TARGET_IMAGES_GZIP=y\nCONFIG_TARGET_KERNEL_PARTSIZE=16\nCONFIG_TARGET_ROOTFS_PARTSIZE=300\n# CONFIG_GRUB_CONSOLE is not set\nCONFIG_PACKAGE_luci-app-ssr-plus=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks_Rust=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_plugin=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Xray=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_NaiveProxy=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Server=y\nCONFIG_PACKAGE_luci-i18n-ssr-plus-zh-cn=y\n# CONFIG_PACKAGE_luci-app-qbittorrent is not set\nCONFIG_PACKAGE_luci-theme-argon=y\nCONFIG_PACKAGE_luci-app-mwan3=y\nCONFIG_PACKAGE_luci-app-mwan3helper=y\nCONFIG_PACKAGE_luci-i18n-mwan3-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-mwan3helper-zh-cn=y\nCONFIG_PACKAGE_luci-app-syncdial=y\nCONFIG_PACKAGE_luci-app-ttyd=y\nCONFIG_PACKAGE_luci-i18n-ttyd-zh-cn=y\nCONFIG_PACKAGE_luci-app-webadmin=y\nCONFIG_PACKAGE_luci-i18n-webadmin-zh-cn=y\nCONFIG_PACKAGE_dnsmasq_full_auth=y\nCONFIG_PACKAGE_dnsmasq_full_conntrack=y\nCONFIG_PACKAGE_dnsmasq_full_dnssec=y\nCONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y\nCONFIG_PACKAGE_ddns-scripts_freedns_42_pl=y\nCONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y\nCONFIG_PACKAGE_ddns-scripts_no-ip_com=y\nCONFIG_PACKAGE_ddns-scripts_nsupdate=y\nCONFIG_PACKAGE_ddns-scripts_route53-v1=y\nCONFIG_PACKAGE_curl=y\nCONFIG_PACKAGE_htop=y\nCONFIG_PACKAGE_nano=y\nCONFIG_PACKAGE_wget=y\nCONFIG_PACKAGE_kmod-kvm-amd=y\nCONFIG_PACKAGE_kmod-kvm-intel=y\nCONFIG_PACKAGE_kmod-kvm-x86=y\nCONFIG_OPENSSL_ENGINE_CRYPTO=y\nCONFIG_OPENSSL_ENGINE_DIGEST=y\nCONFIG_OPENSSL_WITH_CAMELLIA=y\nCONFIG_OPENSSL_WITH_COMPRESSION=y\nCONFIG_OPENSSL_WITH_DTLS=y\nCONFIG_OPENSSL_WITH_EC2M=y\nCONFIG_OPENSSL_WITH_ERROR_MESSAGES=y\nCONFIG_OPENSSL_WITH_GOST=y\nCONFIG_OPENSSL_WITH_IDEA=y\nCONFIG_OPENSSL_WITH_MDC2=y\nCONFIG_OPENSSL_WITH_RFC3779=y\nCONFIG_OPENSSL_WITH_SEED=y\nCONFIG_OPENSSL_WITH_WHIRLPOOL=y\nCONFIG_KERNEL_BUILD_USER=\"eSir Playground\"\nCONFIG_GRUB_TITLE=\"OpenWrt AutoBuild by eSirPlayground\"\nCONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y\nCONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y\nCONFIG_OPENVPN_openssl_ENABLE_LZ4=y\nCONFIG_OPENVPN_openssl_ENABLE_LZO=y\nCONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y\nCONFIG_OPENVPN_openssl_ENABLE_PF=y\nCONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y\nCONFIG_OPENVPN_openssl_ENABLE_SERVER=y\nCONFIG_OPENVPN_openssl_ENABLE_SMALL=y\nCONFIG_PACKAGE_kmod-usb-ohci=y\nCONFIG_PACKAGE_kmod-usb-ohci-pci=y\nCONFIG_PACKAGE_kmod-usb-storage-uas=y\nCONFIG_PACKAGE_kmod-usb-uhci=y\nCONFIG_PACKAGE_kmod-sdhci=y\nCONFIG_PACKAGE_kmod-usb-ehci=y\nCONFIG_PACKAGE_kmod-usb2=y\nCONFIG_PACKAGE_kmod-usb2-pci=y\nCONFIG_PACKAGE_kmod-usb3=y\nCONFIG_PACKAGE_luci-app-frpc=y\n#CONFIG_PACKAGE_luci-app-passwall=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Brook=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ChinaDNS_NG=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Haproxy=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Hysteria=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Kcptun=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_NaiveProxy=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_PDNSD=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Libev_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Libev_Server=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Rust_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_Libev_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_Libev_Server=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Simple_Obfs=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan_GO=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan_Plus=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_V2ray=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_V2ray_Plugin=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Xray=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Xray_Plugin=y\n"
  },
  {
    "path": "x86_64.config",
    "content": "CONFIG_TARGET_x86=y\nCONFIG_TARGET_x86_64=y\nCONFIG_TARGET_x86_64_Generic=y\nCONFIG_PACKAGE_grub2-efi=y\nCONFIG_EFI_IMAGES=y\nCONFIG_TARGET_IMAGES_GZIP=y\nCONFIG_TARGET_KERNEL_PARTSIZE=16\nCONFIG_TARGET_ROOTFS_PARTSIZE=300\n# CONFIG_GRUB_CONSOLE is not set\nCONFIG_PACKAGE_luci-app-docker=y\nCONFIG_PACKAGE_luci-i18n-docker-zh-cn=y\n# CONFIG_PACKAGE_luci-app-qbittorrent is not set\nCONFIG_PACKAGE_luci-app-ssr-plus=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks_Rust=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_plugin=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Xray=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_NaiveProxy=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y\nCONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Server=y\nCONFIG_PACKAGE_luci-i18n-ssr-plus-zh-cn=y\nCONFIG_PACKAGE_luci-theme-argon=y\nCONFIG_PACKAGE_luci-app-mwan3=y\nCONFIG_PACKAGE_luci-app-mwan3helper=y\nCONFIG_PACKAGE_luci-i18n-mwan3-zh-cn=y\nCONFIG_PACKAGE_luci-i18n-mwan3helper-zh-cn=y\nCONFIG_PACKAGE_luci-app-syncdial=y\nCONFIG_PACKAGE_luci-app-ttyd=y\nCONFIG_PACKAGE_luci-i18n-ttyd-zh-cn=y\nCONFIG_PACKAGE_luci-app-webadmin=y\nCONFIG_PACKAGE_luci-i18n-webadmin-zh-cn=y\nCONFIG_PACKAGE_dnsmasq_full_auth=y\nCONFIG_PACKAGE_dnsmasq_full_conntrack=y\nCONFIG_PACKAGE_dnsmasq_full_dnssec=y\nCONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y\nCONFIG_PACKAGE_ddns-scripts_freedns_42_pl=y\nCONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y\nCONFIG_PACKAGE_ddns-scripts_no-ip_com=y\nCONFIG_PACKAGE_ddns-scripts_nsupdate=y\nCONFIG_PACKAGE_ddns-scripts_route53-v1=y\nCONFIG_PACKAGE_curl=y\nCONFIG_PACKAGE_htop=y\nCONFIG_PACKAGE_nano=y\nCONFIG_PACKAGE_wget=y\nCONFIG_PACKAGE_kmod-kvm-amd=y\nCONFIG_PACKAGE_kmod-kvm-intel=y\nCONFIG_PACKAGE_kmod-kvm-x86=y\nCONFIG_OPENSSL_ENGINE_CRYPTO=y\nCONFIG_OPENSSL_ENGINE_DIGEST=y\nCONFIG_OPENSSL_WITH_CAMELLIA=y\nCONFIG_OPENSSL_WITH_COMPRESSION=y\nCONFIG_OPENSSL_WITH_DTLS=y\nCONFIG_OPENSSL_WITH_EC2M=y\nCONFIG_OPENSSL_WITH_ERROR_MESSAGES=y\nCONFIG_OPENSSL_WITH_GOST=y\nCONFIG_OPENSSL_WITH_IDEA=y\nCONFIG_OPENSSL_WITH_MDC2=y\nCONFIG_OPENSSL_WITH_RFC3779=y\nCONFIG_OPENSSL_WITH_SEED=y\nCONFIG_OPENSSL_WITH_WHIRLPOOL=y\nCONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y\nCONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y\nCONFIG_OPENVPN_openssl_ENABLE_LZ4=y\nCONFIG_OPENVPN_openssl_ENABLE_LZO=y\nCONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y\nCONFIG_OPENVPN_openssl_ENABLE_PF=y\nCONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y\nCONFIG_OPENVPN_openssl_ENABLE_SERVER=y\nCONFIG_OPENVPN_openssl_ENABLE_SMALL=y\nCONFIG_KERNEL_BUILD_USER=\"eSir Playground\"\nCONFIG_GRUB_TITLE=\"OpenWrt AutoBuild by eSirPlayground\"\nCONFIG_PACKAGE_kmod-usb-ohci=y\nCONFIG_PACKAGE_kmod-usb-ohci-pci=y\nCONFIG_PACKAGE_kmod-usb-storage-uas=y\nCONFIG_PACKAGE_kmod-usb-uhci=y\nCONFIG_PACKAGE_kmod-sdhci=y\nCONFIG_PACKAGE_kmod-usb-ehci=y\nCONFIG_PACKAGE_kmod-usb2=y\nCONFIG_PACKAGE_kmod-usb2-pci=y\nCONFIG_PACKAGE_kmod-usb3=y\nCONFIG_PACKAGE_luci-app-frpc=y\n#CONFIG_PACKAGE_luci-app-passwall=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Brook=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ChinaDNS_NG=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Haproxy=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Hysteria=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Kcptun=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_NaiveProxy=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_PDNSD=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Libev_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Libev_Server=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_Rust_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_Libev_Client=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_Libev_Server=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Simple_Obfs=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan_GO=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan_Plus=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_V2ray=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_V2ray_Plugin=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Xray=y\n#CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Xray_Plugin=y\n"
  },
  {
    "path": "x86_64_zn.config",
    "content": "CONFIG_TARGET_x86=y\r\nCONFIG_TARGET_x86_64=y\r\nCONFIG_TARGET_x86_64_DEVICE_generic=y\r\nCONFIG_BIND_ENABLE_DOH=y\r\nCONFIG_PACKAGE_TAR_BZIP2=y\r\nCONFIG_PACKAGE_TAR_GZIP=y\r\nCONFIG_PACKAGE_TAR_XZ=y\r\nCONFIG_PACKAGE_TAR_ZSTD=y\r\n# CONFIG_PACKAGE_UnblockNeteaseMusic-Go is not set\r\n# CONFIG_PACKAGE_adbyby is not set\r\n# CONFIG_PACKAGE_attr is not set\r\n# CONFIG_PACKAGE_autosamba is not set\r\n# CONFIG_PACKAGE_avahi-dbus-daemon is not set\r\nCONFIG_PACKAGE_bash=y\r\nCONFIG_PACKAGE_bind-client=y\r\nCONFIG_PACKAGE_bind-libs=y\r\nCONFIG_PACKAGE_boost=y\r\nCONFIG_PACKAGE_boost-date_time=y\r\nCONFIG_PACKAGE_boost-program_options=y\r\nCONFIG_PACKAGE_boost-system=y\r\nCONFIG_PACKAGE_bzip2=y\r\nCONFIG_PACKAGE_coreutils-stat=y\r\nCONFIG_PACKAGE_coreutils-stty=y\r\n# CONFIG_PACKAGE_dbus is not set\r\nCONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y\r\nCONFIG_PACKAGE_ddns-scripts_freedns_42_pl=y\r\nCONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y\r\nCONFIG_PACKAGE_ddns-scripts_no-ip_com=y\r\nCONFIG_PACKAGE_ddns-scripts_nsupdate=y\r\nCONFIG_PACKAGE_ddns-scripts_route53-v1=y\r\nCONFIG_PACKAGE_ddnsto=y\r\nCONFIG_PACKAGE_fdisk=y\r\nCONFIG_PACKAGE_glib2=y\r\nCONFIG_PACKAGE_hysteria=y\r\nCONFIG_PACKAGE_iftop=y\r\nCONFIG_PACKAGE_ipt2socks=y\r\n# CONFIG_PACKAGE_iptables-mod-ipsec is not set\r\nCONFIG_PACKAGE_iputils-arping=y\r\nCONFIG_PACKAGE_jq=y\r\nCONFIG_PACKAGE_kcptun-client=y\r\nCONFIG_PACKAGE_kcptun-config=y\r\n# CONFIG_PACKAGE_kmod-crypto-cbc is not set\r\n# CONFIG_PACKAGE_kmod-crypto-deflate is not set\r\n# CONFIG_PACKAGE_kmod-crypto-des is not set\r\n# CONFIG_PACKAGE_kmod-crypto-echainiv is not set\r\n# CONFIG_PACKAGE_kmod-crypto-hmac is not set\r\n# CONFIG_PACKAGE_kmod-crypto-kpp is not set\r\n# CONFIG_PACKAGE_kmod-crypto-md5 is not set\r\n# CONFIG_PACKAGE_kmod-ipsec is not set\r\n# CONFIG_PACKAGE_kmod-ipt-ipsec is not set\r\n# CONFIG_PACKAGE_kmod-iptunnel6 is not set\r\n# CONFIG_PACKAGE_kmod-nf-conntrack-netlink is not set\r\n# CONFIG_PACKAGE_kmod-shortcut-fe is not set\r\n# CONFIG_PACKAGE_kmod-shortcut-fe-cm is not set\r\n# CONFIG_PACKAGE_kmod-tcp-bbr is not set\r\nCONFIG_PACKAGE_kmod-usb-printer=y\r\n# CONFIG_PACKAGE_kmod-wireguard is not set\r\n# CONFIG_PACKAGE_libavahi-client is not set\r\n# CONFIG_PACKAGE_libavahi-dbus-support is not set\r\nCONFIG_PACKAGE_libbz2=y\r\n# CONFIG_PACKAGE_libdaemon is not set\r\n# CONFIG_PACKAGE_libdbus is not set\r\nCONFIG_PACKAGE_libdnet=y\r\n# CONFIG_PACKAGE_libexpat is not set\r\nCONFIG_PACKAGE_libffi=y\r\n# CONFIG_PACKAGE_libgmp is not set\r\n# CONFIG_PACKAGE_libgnutls is not set\r\nCONFIG_PACKAGE_liblzma=y\r\nCONFIG_PACKAGE_libmaxminddb=y\r\nCONFIG_PACKAGE_libmspack=y\r\nCONFIG_PACKAGE_libnetsnmp=y\r\n# CONFIG_PACKAGE_libnettle is not set\r\nCONFIG_PACKAGE_libpcap=y\r\nCONFIG_PACKAGE_libpcre2=y\r\n# CONFIG_PACKAGE_libpopt is not set\r\n# CONFIG_PACKAGE_libtasn1 is not set\r\n# CONFIG_PACKAGE_liburing is not set\r\nCONFIG_PACKAGE_libzstd=y\r\nCONFIG_PACKAGE_lua-cjson=y\r\nCONFIG_PACKAGE_lua-maxminddb=y\r\nCONFIG_PACKAGE_luasocket=y\r\n# CONFIG_PACKAGE_luci-app-accesscontrol is not set\r\n# CONFIG_PACKAGE_luci-app-adbyby-plus is not set\r\nCONFIG_PACKAGE_luci-app-argon-config=y\r\n# CONFIG_PACKAGE_luci-app-arpbind is not set\r\n# CONFIG_PACKAGE_luci-app-autoreboot is not set\r\nCONFIG_PACKAGE_luci-app-ddnsto=y\r\n# CONFIG_PACKAGE_luci-app-ipsec-vpnd is not set\r\n# CONFIG_PACKAGE_luci-app-nlbwmon is not set\r\nCONFIG_PACKAGE_luci-app-p910nd=y\r\nCONFIG_PACKAGE_luci-app-poweroff=y\r\n# CONFIG_PACKAGE_luci-app-rclone_INCLUDE_rclone-ng is not set\r\n# CONFIG_PACKAGE_luci-app-rclone_INCLUDE_rclone-webui is not set\r\n# CONFIG_PACKAGE_luci-app-samba4 is not set\r\nCONFIG_PACKAGE_luci-app-serverchan=y\r\nCONFIG_PACKAGE_luci-app-store=y\r\n# CONFIG_PACKAGE_luci-app-turboacc is not set\r\n# CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_BBR_CCA is not set\r\n# CONFIG_PACKAGE_luci-app-unblockmusic is not set\r\n# CONFIG_PACKAGE_luci-app-unblockmusic_INCLUDE_UnblockNeteaseMusic_Go is not set\r\n# CONFIG_PACKAGE_luci-app-upnp is not set\r\nCONFIG_PACKAGE_luci-app-usb-printer=y\r\n# CONFIG_PACKAGE_luci-app-vlmcsd is not set\r\n# CONFIG_PACKAGE_luci-app-vsftpd is not set\r\n# CONFIG_PACKAGE_luci-app-wireguard is not set\r\n# CONFIG_PACKAGE_luci-app-xlnetacc is not set\r\nCONFIG_PACKAGE_luci-i18n-argon-config-zh-cn=y\r\nCONFIG_PACKAGE_luci-i18n-ddnsto-zh-cn=y\r\nCONFIG_PACKAGE_luci-i18n-p910nd-zh-cn=y\r\nCONFIG_PACKAGE_luci-i18n-poweroff-zh-cn=y\r\nCONFIG_PACKAGE_luci-i18n-usb-printer-zh-cn=y\r\nCONFIG_PACKAGE_luci-lib-taskd=y\r\nCONFIG_PACKAGE_luci-lib-xterm=y\r\n# CONFIG_PACKAGE_luci-proto-wireguard is not set\r\nCONFIG_PACKAGE_luci-theme-argon-jerrykuku=y\r\nCONFIG_PACKAGE_luci-theme-atmaterial_new=y\r\nCONFIG_PACKAGE_luci-theme-netgear=y\r\n# CONFIG_PACKAGE_miniupnpd is not set\r\nCONFIG_PACKAGE_mount-utils=y\r\n# CONFIG_PACKAGE_nlbwmon is not set\r\nCONFIG_PACKAGE_open-vm-tools=y\r\nCONFIG_PACKAGE_openssh-sftp-server=y\r\nCONFIG_PACKAGE_p910nd=y\r\n# CONFIG_PACKAGE_pdnsd-alt is not set\r\n# CONFIG_PACKAGE_samba4-libs is not set\r\n# CONFIG_PACKAGE_samba4-server is not set\r\nCONFIG_PACKAGE_script-utils=y\r\nCONFIG_PACKAGE_snmpd=y\r\n# CONFIG_PACKAGE_strongswan is not set\r\nCONFIG_PACKAGE_tar=y\r\nCONFIG_PACKAGE_taskd=y\r\nCONFIG_PACKAGE_tree=y\r\nCONFIG_PACKAGE_trojan=y\r\nCONFIG_PACKAGE_usb-modeswitch=y\r\nCONFIG_PACKAGE_vim-fuller=y\r\n# CONFIG_PACKAGE_vlmcsd is not set\r\n# CONFIG_PACKAGE_vsftpd-alt is not set\r\n# CONFIG_PACKAGE_wireguard-tools is not set\r\n# CONFIG_PACKAGE_wsdd2 is not set\r\nCONFIG_PACKAGE_xray-plugin=y\r\nCONFIG_PACKAGE_xz=y\r\nCONFIG_PACKAGE_xz-utils=y\r\nCONFIG_PACKAGE_zsh=y\r\nCONFIG_PCRE2_JIT_ENABLED=y\r\nCONFIG_TARGET_ROOTFS_PARTSIZE=1500\r\nCONFIG_TARGET_ROOTFS_TARGZ=y\r\n# CONFIG_VMDK_IMAGES is not set\r\nCONFIG_ZSTD_OPTIMIZE_O3=y\r\nCONFIG_boost-compile-visibility-hidden=y\r\nCONFIG_boost-runtime-shared=y\r\nCONFIG_boost-static-and-shared-libs=y\r\nCONFIG_boost-variant-release=y\r\n"
  }
]