├── .dockerignore ├── .drone.yml ├── .gitignore ├── .no-chown ├── .wrap-docker-args ├── Dockerfile.dapper ├── LICENSE ├── Makefile ├── README.md ├── config ├── amd64 │ └── buildroot-config ├── arm64 │ └── buildroot-config └── busybox-dynamic.config └── scripts ├── build-busybox ├── ci ├── config ├── entry ├── fix-up-image.sh └── release /.dockerignore: -------------------------------------------------------------------------------- 1 | assets 2 | build 3 | dist 4 | .buildroot-ccache 5 | .kernel-ccache 6 | .dl 7 | .idea 8 | .git 9 | -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- 1 | build: 2 | image: rancher/dapper:1.10.3 3 | volumes: 4 | - /var/run/docker.sock:/var/run/docker.sock 5 | commands: 6 | - dapper ./scripts/ci 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /assets 2 | /build 3 | /.buildroot-ccache 4 | /.kernel-ccache 5 | /config/.dockerfile 6 | /dist 7 | /.dl 8 | /Dockerfile 9 | *.swp 10 | /.dapper 11 | -------------------------------------------------------------------------------- /.no-chown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/os-base/d6139b0e08e9560598b19da4336d916a8972981c/.no-chown -------------------------------------------------------------------------------- /.wrap-docker-args: -------------------------------------------------------------------------------- 1 | -e RUN_EXEC=true -e HOME=/source --privileged 2 | -------------------------------------------------------------------------------- /Dockerfile.dapper: -------------------------------------------------------------------------------- 1 | FROM rancher/os-ubuntuconsole-base 2 | # FROM amd64=ubuntu:16.04 arm64=aarch64/ubuntu:16.04 3 | 4 | RUN apt-get update && \ 5 | apt-get install -y build-essential wget libncurses5-dev unzip bc curl python rsync ccache vim less cpio texinfo locales git 6 | 7 | RUN locale-gen en_US.UTF-8 8 | ENV LANG en_US.UTF-8 9 | 10 | ENV DAPPER_SOURCE /source 11 | ENV DAPPER_OUTPUT ./dist 12 | ENV SHELL /bin/bash 13 | ENV ARTIFACTS /usr/src 14 | WORKDIR ${DAPPER_SOURCE} 15 | 16 | ENV VERSION 2018.02.11-1 17 | ENV TARBALL ${VERSION}.tar.gz 18 | RUN cd ${ARTIFACTS} && \ 19 | wget https://github.com/rancher/buildroot/archive/$TARBALL 20 | 21 | ARG DAPPER_HOST_ARCH=amd64 22 | ARG HOST_ARCH=${DAPPER_HOST_ARCH} 23 | ARG ARCH=${HOST_ARCH} 24 | ENV ARCH=${ARCH} 25 | ENV HOST_ARCH=${HOST_ARCH} 26 | 27 | ENTRYPOINT ["./scripts/entry"] 28 | CMD ["ci"] 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | TARGETS := $(shell ls scripts | grep -vE 'clean|run|help|config') 2 | 3 | .dapper: 4 | @echo Downloading dapper 5 | @curl -sL https://releases.rancher.com/dapper/latest/dapper-`uname -s`-`uname -m|sed 's/v7l//'` > .dapper.tmp 6 | @@chmod +x .dapper.tmp 7 | @./.dapper.tmp -v 8 | @mv .dapper.tmp .dapper 9 | 10 | $(TARGETS): .dapper 11 | ./.dapper $@ 2>&1 | tee $@.log 12 | 13 | config: .dapper 14 | ./.dapper config 15 | 16 | shell-bind: .dapper 17 | ./.dapper -m bind -s 18 | 19 | help: 20 | @./scripts/help 21 | 22 | .DEFAULT_GOAL := ci 23 | 24 | .PHONY: $(TARGETS) config 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RancherOS Base System 2 | 3 | This repo contains the Linux kernel and system programs for RancherOS. RancherOS is built from [buildroot](https://buildroot.org/). 4 | 5 | ## Building 6 | 7 | You need Docker 1.5+ 8 | 9 | make 10 | 11 | ## Using a custom version of os-base in RancherOS 12 | 13 | ``` 14 | # Clone repos 15 | git clone https://github.com/rancherio/os.git 16 | git clone https://github.com/rancherio/os-base.git 17 | 18 | # Build os-base 19 | cd os-base 20 | make 21 | 22 | # Copy custom to a HTTP website so that you can download it 23 | # cp dist/artifacts/os-base.tar.xz ... 24 | 25 | # Build RancherOS 26 | cd ../os 27 | # Update OS_BASE_URL_amd64 and OS_BASE_URL_arm64 in Dockerfile.dapper 28 | # Run make 29 | make 30 | ``` 31 | ## Contact 32 | For bugs, questions, comments, corrections, suggestions, etc., open an issue in 33 | [rancher/os](//github.com/rancher/os/issues) with a title starting with `[os-base] `. 34 | 35 | Or just [click here](//github.com/rancher/os/issues/new?title=%5Bos-base%5D%20) to create a new issue. 36 | 37 | 38 | # License 39 | Copyright (c) 2014-2019 [Rancher Labs, Inc.](http://rancher.com) 40 | 41 | Licensed under the Apache License, Version 2.0 (the "License"); 42 | you may not use this file except in compliance with the License. 43 | You may obtain a copy of the License at 44 | 45 | [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) 46 | 47 | Unless required by applicable law or agreed to in writing, software 48 | distributed under the License is distributed on an "AS IS" BASIS, 49 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 50 | See the License for the specific language governing permissions and 51 | limitations under the License. 52 | 53 | -------------------------------------------------------------------------------- /config/arm64/buildroot-config: -------------------------------------------------------------------------------- 1 | # 2 | # Automatically generated file; DO NOT EDIT. 3 | # Buildroot 2018.02.11 Configuration 4 | # 5 | BR2_HAVE_DOT_CONFIG=y 6 | BR2_HOST_GCC_AT_LEAST_4_5=y 7 | BR2_HOST_GCC_AT_LEAST_4_6=y 8 | BR2_HOST_GCC_AT_LEAST_4_7=y 9 | BR2_HOST_GCC_AT_LEAST_4_8=y 10 | BR2_HOST_GCC_AT_LEAST_4_9=y 11 | BR2_HOST_GCC_AT_LEAST_5=y 12 | 13 | # 14 | # Target options 15 | # 16 | BR2_ARCH_IS_64=y 17 | BR2_ARCH_HAS_MMU_MANDATORY=y 18 | BR2_ARCH_HAS_MMU_OPTIONAL=y 19 | # BR2_arcle is not set 20 | # BR2_arceb is not set 21 | # BR2_arm is not set 22 | # BR2_armeb is not set 23 | BR2_aarch64=y 24 | # BR2_aarch64_be is not set 25 | # BR2_bfin is not set 26 | # BR2_csky is not set 27 | # BR2_i386 is not set 28 | # BR2_m68k is not set 29 | # BR2_microblazeel is not set 30 | # BR2_microblazebe is not set 31 | # BR2_mips is not set 32 | # BR2_mipsel is not set 33 | # BR2_mips64 is not set 34 | # BR2_mips64el is not set 35 | # BR2_nios2 is not set 36 | # BR2_or1k is not set 37 | # BR2_powerpc is not set 38 | # BR2_powerpc64 is not set 39 | # BR2_powerpc64le is not set 40 | # BR2_sh is not set 41 | # BR2_sparc is not set 42 | # BR2_sparc64 is not set 43 | # BR2_x86_64 is not set 44 | # BR2_xtensa is not set 45 | BR2_ARCH_HAS_TOOLCHAIN_BUILDROOT=y 46 | BR2_ARCH="aarch64" 47 | BR2_ENDIAN="LITTLE" 48 | BR2_GCC_TARGET_ABI="lp64" 49 | BR2_GCC_TARGET_CPU="cortex-a53" 50 | BR2_BINFMT_SUPPORTS_SHARED=y 51 | BR2_READELF_ARCH_NAME="AArch64" 52 | BR2_BINFMT_ELF=y 53 | BR2_ARM_CPU_HAS_VFPV2=y 54 | BR2_ARM_CPU_HAS_VFPV3=y 55 | BR2_ARM_CPU_HAS_VFPV4=y 56 | BR2_ARM_CPU_HAS_FP_ARMV8=y 57 | BR2_ARM_CPU_ARMV8A=y 58 | 59 | # 60 | # armv8 cores 61 | # 62 | # BR2_cortex_a35 is not set 63 | BR2_cortex_a53=y 64 | # BR2_cortex_a57 is not set 65 | # BR2_cortex_a57_a53 is not set 66 | # BR2_cortex_a72 is not set 67 | # BR2_cortex_a72_a53 is not set 68 | # BR2_cortex_a73 is not set 69 | # BR2_cortex_a73_a35 is not set 70 | # BR2_cortex_a73_a53 is not set 71 | # BR2_exynos_m1 is not set 72 | # BR2_falkor is not set 73 | # BR2_qdf24xx is not set 74 | # BR2_thunderx is not set 75 | # BR2_thunderxt81 is not set 76 | # BR2_thunderxt83 is not set 77 | # BR2_thunderxt88 is not set 78 | # BR2_thunderxt88p1 is not set 79 | # BR2_xgene1 is not set 80 | 81 | # 82 | # armv8.1a cores 83 | # 84 | # BR2_thunderx2t99 is not set 85 | # BR2_thunderx2t99p1 is not set 86 | # BR2_vulcan is not set 87 | # BR2_ARM_FPU_VFPV2 is not set 88 | # BR2_ARM_FPU_VFPV3 is not set 89 | # BR2_ARM_FPU_VFPV3D16 is not set 90 | # BR2_ARM_FPU_VFPV4 is not set 91 | # BR2_ARM_FPU_VFPV4D16 is not set 92 | BR2_ARM_FPU_FP_ARMV8=y 93 | 94 | # 95 | # Build options 96 | # 97 | 98 | # 99 | # Commands 100 | # 101 | BR2_WGET="wget --passive-ftp -nd -t 3" 102 | BR2_SVN="svn" 103 | BR2_BZR="bzr" 104 | BR2_GIT="git" 105 | BR2_CVS="cvs" 106 | BR2_LOCALFILES="cp" 107 | BR2_SCP="scp" 108 | BR2_SSH="ssh" 109 | BR2_HG="hg" 110 | BR2_ZCAT="gzip -d -c" 111 | BR2_BZCAT="bzcat" 112 | BR2_XZCAT="xzcat" 113 | BR2_LZCAT="lzip -d -c" 114 | BR2_TAR_OPTIONS="" 115 | BR2_DEFCONFIG="$(CONFIG_DIR)/defconfig" 116 | BR2_DL_DIR="$(HOME)/.dl" 117 | BR2_HOST_DIR="$(BASE_DIR)/host" 118 | 119 | # 120 | # Mirrors and Download locations 121 | # 122 | BR2_PRIMARY_SITE="" 123 | BR2_BACKUP_SITE="http://sources.buildroot.net" 124 | BR2_KERNEL_MIRROR="https://www.kernel.org/pub" 125 | BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu" 126 | BR2_LUAROCKS_MIRROR="http://rocks.moonscript.org" 127 | BR2_CPAN_MIRROR="http://cpan.metacpan.org" 128 | BR2_JLEVEL=0 129 | BR2_CCACHE=y 130 | BR2_CCACHE_DIR="$(HOME)/.buildroot-ccache" 131 | BR2_CCACHE_INITIAL_SETUP="" 132 | BR2_CCACHE_USE_BASEDIR=y 133 | # BR2_ENABLE_DEBUG is not set 134 | BR2_STRIP_strip=y 135 | BR2_STRIP_EXCLUDE_FILES="" 136 | BR2_STRIP_EXCLUDE_DIRS="" 137 | # BR2_OPTIMIZE_0 is not set 138 | # BR2_OPTIMIZE_1 is not set 139 | # BR2_OPTIMIZE_2 is not set 140 | # BR2_OPTIMIZE_3 is not set 141 | # BR2_OPTIMIZE_G is not set 142 | BR2_OPTIMIZE_S=y 143 | # BR2_STATIC_LIBS is not set 144 | BR2_SHARED_LIBS=y 145 | # BR2_SHARED_STATIC_LIBS is not set 146 | BR2_PACKAGE_OVERRIDE_FILE="$(CONFIG_DIR)/local.mk" 147 | BR2_GLOBAL_PATCH_DIR="" 148 | 149 | # 150 | # Advanced 151 | # 152 | # BR2_COMPILER_PARANOID_UNSAFE_PATH is not set 153 | BR2_REPRODUCIBLE=y 154 | 155 | # 156 | # Security Hardening Options 157 | # 158 | # BR2_SSP_NONE is not set 159 | # BR2_SSP_REGULAR is not set 160 | # BR2_SSP_STRONG is not set 161 | BR2_SSP_ALL=y 162 | BR2_RELRO_NONE=y 163 | # BR2_RELRO_PARTIAL is not set 164 | # BR2_RELRO_FULL is not set 165 | BR2_FORTIFY_SOURCE_NONE=y 166 | # BR2_FORTIFY_SOURCE_1 is not set 167 | # BR2_FORTIFY_SOURCE_2 is not set 168 | 169 | # 170 | # Toolchain 171 | # 172 | BR2_TOOLCHAIN=y 173 | BR2_TOOLCHAIN_USES_GLIBC=y 174 | BR2_TOOLCHAIN_BUILDROOT=y 175 | # BR2_TOOLCHAIN_EXTERNAL is not set 176 | 177 | # 178 | # Toolchain Buildroot Options 179 | # 180 | BR2_TOOLCHAIN_BUILDROOT_VENDOR="buildroot" 181 | # BR2_TOOLCHAIN_BUILDROOT_UCLIBC is not set 182 | BR2_TOOLCHAIN_BUILDROOT_GLIBC=y 183 | # BR2_TOOLCHAIN_BUILDROOT_MUSL is not set 184 | BR2_TOOLCHAIN_BUILDROOT_LIBC="glibc" 185 | 186 | # 187 | # Kernel Header Options 188 | # 189 | # BR2_KERNEL_HEADERS_4_1 is not set 190 | # BR2_KERNEL_HEADERS_4_4 is not set 191 | BR2_KERNEL_HEADERS_4_9=y 192 | # BR2_KERNEL_HEADERS_4_10 is not set 193 | # BR2_KERNEL_HEADERS_4_11 is not set 194 | # BR2_KERNEL_HEADERS_4_12 is not set 195 | # BR2_KERNEL_HEADERS_4_13 is not set 196 | # BR2_KERNEL_HEADERS_4_14 is not set 197 | # BR2_KERNEL_HEADERS_4_15 is not set 198 | # BR2_KERNEL_HEADERS_VERSION is not set 199 | BR2_DEFAULT_KERNEL_HEADERS="4.9.156" 200 | BR2_PACKAGE_LINUX_HEADERS=y 201 | BR2_PACKAGE_GLIBC=y 202 | 203 | # 204 | # Binutils Options 205 | # 206 | BR2_PACKAGE_HOST_BINUTILS_SUPPORTS_CFI=y 207 | # BR2_BINUTILS_VERSION_2_28_X is not set 208 | # BR2_BINUTILS_VERSION_2_29_X is not set 209 | BR2_BINUTILS_VERSION_2_30_X=y 210 | BR2_BINUTILS_VERSION="2.30" 211 | BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="" 212 | 213 | # 214 | # GCC Options 215 | # 216 | # BR2_GCC_VERSION_4_9_X is not set 217 | # BR2_GCC_VERSION_5_X is not set 218 | BR2_GCC_VERSION_6_X=y 219 | # BR2_GCC_VERSION_7_X is not set 220 | BR2_GCC_ARCH_HAS_CONFIGURABLE_DEFAULTS=y 221 | BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE=y 222 | BR2_GCC_VERSION="6.4.0" 223 | BR2_EXTRA_GCC_CONFIG_OPTIONS="" 224 | # BR2_TOOLCHAIN_BUILDROOT_CXX is not set 225 | # BR2_TOOLCHAIN_BUILDROOT_FORTRAN is not set 226 | # BR2_GCC_ENABLE_LTO is not set 227 | # BR2_GCC_ENABLE_OPENMP is not set 228 | # BR2_GCC_ENABLE_GRAPHITE is not set 229 | BR2_PACKAGE_HOST_GDB_ARCH_SUPPORTS=y 230 | 231 | # 232 | # Host GDB Options 233 | # 234 | # BR2_PACKAGE_HOST_GDB is not set 235 | 236 | # 237 | # Toolchain Generic Options 238 | # 239 | BR2_TOOLCHAIN_HAS_NATIVE_RPC=y 240 | BR2_USE_WCHAR=y 241 | BR2_ENABLE_LOCALE=y 242 | BR2_TOOLCHAIN_HAS_THREADS=y 243 | BR2_TOOLCHAIN_HAS_THREADS_DEBUG=y 244 | BR2_TOOLCHAIN_HAS_THREADS_NPTL=y 245 | BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS=y 246 | BR2_TOOLCHAIN_HAS_SSP=y 247 | BR2_TOOLCHAIN_SUPPORTS_PIE=y 248 | # BR2_TOOLCHAIN_GLIBC_GCONV_LIBS_COPY is not set 249 | BR2_TOOLCHAIN_HAS_FULL_GETTEXT=y 250 | BR2_USE_MMU=y 251 | BR2_TARGET_OPTIMIZATION="-pipe" 252 | BR2_TARGET_LDFLAGS="" 253 | # BR2_ECLIPSE_REGISTER is not set 254 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0=y 255 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1=y 256 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2=y 257 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3=y 258 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4=y 259 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5=y 260 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6=y 261 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7=y 262 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8=y 263 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9=y 264 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10=y 265 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11=y 266 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12=y 267 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13=y 268 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14=y 269 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15=y 270 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16=y 271 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17=y 272 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18=y 273 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_19=y 274 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0=y 275 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1=y 276 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2=y 277 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3=y 278 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4=y 279 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_5=y 280 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6=y 281 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7=y 282 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8=y 283 | BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9=y 284 | BR2_TOOLCHAIN_HEADERS_AT_LEAST="4.9" 285 | BR2_TOOLCHAIN_GCC_AT_LEAST_4_3=y 286 | BR2_TOOLCHAIN_GCC_AT_LEAST_4_4=y 287 | BR2_TOOLCHAIN_GCC_AT_LEAST_4_5=y 288 | BR2_TOOLCHAIN_GCC_AT_LEAST_4_6=y 289 | BR2_TOOLCHAIN_GCC_AT_LEAST_4_7=y 290 | BR2_TOOLCHAIN_GCC_AT_LEAST_4_8=y 291 | BR2_TOOLCHAIN_GCC_AT_LEAST_4_9=y 292 | BR2_TOOLCHAIN_GCC_AT_LEAST_5=y 293 | BR2_TOOLCHAIN_GCC_AT_LEAST_6=y 294 | BR2_TOOLCHAIN_GCC_AT_LEAST="6" 295 | BR2_TOOLCHAIN_HAS_MNAN_OPTION=y 296 | BR2_TOOLCHAIN_HAS_SYNC_1=y 297 | BR2_TOOLCHAIN_HAS_SYNC_2=y 298 | BR2_TOOLCHAIN_HAS_SYNC_4=y 299 | BR2_TOOLCHAIN_HAS_SYNC_8=y 300 | BR2_TOOLCHAIN_HAS_LIBATOMIC=y 301 | BR2_TOOLCHAIN_HAS_ATOMIC=y 302 | 303 | # 304 | # System configuration 305 | # 306 | BR2_ROOTFS_SKELETON_DEFAULT=y 307 | # BR2_ROOTFS_SKELETON_CUSTOM is not set 308 | BR2_ROOTFS_MERGED_USR=y 309 | BR2_TARGET_GENERIC_HOSTNAME="rancher" 310 | BR2_TARGET_GENERIC_ISSUE="RancherOS" 311 | # BR2_TARGET_GENERIC_PASSWD_MD5 is not set 312 | BR2_TARGET_GENERIC_PASSWD_SHA256=y 313 | # BR2_TARGET_GENERIC_PASSWD_SHA512 is not set 314 | BR2_TARGET_GENERIC_PASSWD_METHOD="sha-256" 315 | # BR2_INIT_BUSYBOX is not set 316 | # BR2_INIT_SYSV is not set 317 | # BR2_INIT_SYSTEMD is not set 318 | BR2_INIT_NONE=y 319 | # BR2_ROOTFS_DEVICE_CREATION_STATIC is not set 320 | # BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS is not set 321 | # BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV is not set 322 | BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y 323 | BR2_ROOTFS_DEVICE_TABLE="system/device_table.txt" 324 | # BR2_ROOTFS_DEVICE_TABLE_SUPPORTS_EXTENDED_ATTRIBUTES is not set 325 | BR2_TARGET_ENABLE_ROOT_LOGIN=y 326 | BR2_TARGET_GENERIC_ROOT_PASSWD="" 327 | # BR2_SYSTEM_BIN_SH_BUSYBOX is not set 328 | BR2_SYSTEM_BIN_SH_BASH=y 329 | # BR2_SYSTEM_BIN_SH_DASH is not set 330 | # BR2_SYSTEM_BIN_SH_MKSH is not set 331 | # BR2_SYSTEM_BIN_SH_ZSH is not set 332 | # BR2_SYSTEM_BIN_SH_NONE is not set 333 | BR2_SYSTEM_BIN_SH="bash" 334 | # BR2_TARGET_GENERIC_GETTY is not set 335 | # BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set 336 | BR2_SYSTEM_DHCP="" 337 | BR2_ENABLE_LOCALE_PURGE=y 338 | BR2_ENABLE_LOCALE_WHITELIST="C en_US" 339 | BR2_GENERATE_LOCALE="" 340 | # BR2_SYSTEM_ENABLE_NLS is not set 341 | # BR2_TARGET_TZ_INFO is not set 342 | BR2_ROOTFS_USERS_TABLES="" 343 | BR2_ROOTFS_OVERLAY="" 344 | BR2_ROOTFS_POST_BUILD_SCRIPT="../../scripts/fix-up-image.sh" 345 | BR2_ROOTFS_POST_FAKEROOT_SCRIPT="" 346 | BR2_ROOTFS_POST_IMAGE_SCRIPT="" 347 | BR2_ROOTFS_POST_SCRIPT_ARGS="" 348 | 349 | # 350 | # Kernel 351 | # 352 | # BR2_LINUX_KERNEL is not set 353 | 354 | # 355 | # Target packages 356 | # 357 | BR2_PACKAGE_BUSYBOX=y 358 | BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-dynamic.config" 359 | BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="" 360 | BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y 361 | # BR2_PACKAGE_BUSYBOX_SELINUX is not set 362 | # BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES is not set 363 | # BR2_PACKAGE_BUSYBOX_WATCHDOG is not set 364 | BR2_PACKAGE_SKELETON=y 365 | BR2_PACKAGE_HAS_SKELETON=y 366 | BR2_PACKAGE_PROVIDES_SKELETON="skeleton-init-none" 367 | BR2_PACKAGE_SKELETON_INIT_COMMON=y 368 | BR2_PACKAGE_SKELETON_INIT_NONE=y 369 | 370 | # 371 | # Audio and video applications 372 | # 373 | # BR2_PACKAGE_ALSA_UTILS is not set 374 | # BR2_PACKAGE_ATEST is not set 375 | # BR2_PACKAGE_AUMIX is not set 376 | 377 | # 378 | # bellagio needs a toolchain w/ C++, threads, dynamic library 379 | # 380 | # BR2_PACKAGE_DVBLAST is not set 381 | # BR2_PACKAGE_DVDAUTHOR is not set 382 | 383 | # 384 | # dvdrw-tools needs a toolchain w/ threads, C++, wchar 385 | # 386 | 387 | # 388 | # espeak needs a toolchain w/ C++, wchar, threads, dynamic library 389 | # 390 | # BR2_PACKAGE_FAAD2 is not set 391 | BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS=y 392 | # BR2_PACKAGE_FFMPEG is not set 393 | # BR2_PACKAGE_FLAC is not set 394 | # BR2_PACKAGE_FLITE is not set 395 | # BR2_PACKAGE_GMRENDER_RESURRECT is not set 396 | # BR2_PACKAGE_GSTREAMER is not set 397 | # BR2_PACKAGE_GSTREAMER1 is not set 398 | 399 | # 400 | # jack2 needs a toolchain w/ threads, C++, dynamic library 401 | # 402 | BR2_PACKAGE_KODI_ARCH_SUPPORTS=y 403 | 404 | # 405 | # kodi needs python w/ .py modules, a uClibc or glibc toolchain w/ C++, threads, wchar, dynamic library, gcc >= 4.8, host gcc >= 4.6 406 | # 407 | BR2_PACKAGE_KODI_EGL_GLES=y 408 | # BR2_PACKAGE_LAME is not set 409 | # BR2_PACKAGE_MADPLAY is not set 410 | # BR2_PACKAGE_MIMIC is not set 411 | 412 | # 413 | # miraclecast needs systemd and a glibc toolchain w/ threads and wchar 414 | # 415 | 416 | # 417 | # mjpegtools needs a toolchain w/ C++, threads 418 | # 419 | 420 | # 421 | # modplugtools needs a toolchain w/ C++ 422 | # 423 | # BR2_PACKAGE_MOTION is not set 424 | 425 | # 426 | # mpd needs a toolchain w/ C++, threads, wchar, gcc >= 4.9 427 | # 428 | # BR2_PACKAGE_MPD_MPC is not set 429 | # BR2_PACKAGE_MPG123 is not set 430 | BR2_PACKAGE_MPLAYER_ARCH_SUPPORTS=y 431 | # BR2_PACKAGE_MPLAYER is not set 432 | # BR2_PACKAGE_MPV is not set 433 | # BR2_PACKAGE_MULTICAT is not set 434 | # BR2_PACKAGE_MUSEPACK is not set 435 | # BR2_PACKAGE_NCMPC is not set 436 | # BR2_PACKAGE_OPUS_TOOLS is not set 437 | BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC=y 438 | # BR2_PACKAGE_PULSEAUDIO is not set 439 | # BR2_PACKAGE_SOX is not set 440 | # BR2_PACKAGE_SQUEEZELITE is not set 441 | 442 | # 443 | # tovid needs a glibc or uclibc toolchain w/ threads, C++, wchar 444 | # 445 | 446 | # 447 | # tovid depends on python or python3 448 | # 449 | # BR2_PACKAGE_TSTOOLS is not set 450 | # BR2_PACKAGE_TWOLAME is not set 451 | # BR2_PACKAGE_UDPXY is not set 452 | 453 | # 454 | # upmpdcli needs a toolchain w/ C++, threads, gcc >= 4.9 455 | # 456 | 457 | # 458 | # v4l2grab needs a toolchain w/ threads, dynamic library, C++ and headers >= 3.0 459 | # 460 | 461 | # 462 | # v4l2loopback needs a Linux kernel to be built 463 | # 464 | 465 | # 466 | # vlc needs a toolchain w/ C++, dynamic library, wchar, threads, headers >= 3.7 467 | # 468 | # BR2_PACKAGE_VORBIS_TOOLS is not set 469 | # BR2_PACKAGE_WAVPACK is not set 470 | # BR2_PACKAGE_YAVTA is not set 471 | # BR2_PACKAGE_YMPD is not set 472 | 473 | # 474 | # Compressors and decompressors 475 | # 476 | # BR2_PACKAGE_BROTLI is not set 477 | # BR2_PACKAGE_BZIP2 is not set 478 | # BR2_PACKAGE_GZIP is not set 479 | # BR2_PACKAGE_LZ4 is not set 480 | 481 | # 482 | # lzip needs a toolchain w/ C++ 483 | # 484 | # BR2_PACKAGE_LZOP is not set 485 | 486 | # 487 | # p7zip needs a toolchain w/ threads, wchar, C++ 488 | # 489 | # BR2_PACKAGE_PIXZ is not set 490 | 491 | # 492 | # unrar needs a toolchain w/ C++, wchar, threads 493 | # 494 | # BR2_PACKAGE_UNZIP is not set 495 | BR2_PACKAGE_XZ=y 496 | # BR2_PACKAGE_ZIP is not set 497 | # BR2_PACKAGE_ZSTD is not set 498 | 499 | # 500 | # Debugging, profiling and benchmark 501 | # 502 | # BR2_PACKAGE_BLKTRACE is not set 503 | 504 | # 505 | # bonnie++ needs a toolchain w/ C++ 506 | # 507 | # BR2_PACKAGE_CACHE_CALIBRATOR is not set 508 | # BR2_PACKAGE_DHRYSTONE is not set 509 | # BR2_PACKAGE_DIEHARDER is not set 510 | # BR2_PACKAGE_DMALLOC is not set 511 | # BR2_PACKAGE_DROPWATCH is not set 512 | # BR2_PACKAGE_DSTAT is not set 513 | # BR2_PACKAGE_DT is not set 514 | 515 | # 516 | # duma needs a toolchain w/ C++, threads, dynamic library 517 | # 518 | # BR2_PACKAGE_FIO is not set 519 | # BR2_PACKAGE_FWTS is not set 520 | BR2_PACKAGE_GDB_ARCH_SUPPORTS=y 521 | # BR2_PACKAGE_GDB is not set 522 | BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS=y 523 | 524 | # 525 | # google-breakpad requires a glibc or uClibc toolchain w/ wchar, thread, C++, gcc >= 4.8 526 | # 527 | # BR2_PACKAGE_IOZONE is not set 528 | 529 | # 530 | # ktap needs a Linux kernel to be built 531 | # 532 | # BR2_PACKAGE_LATENCYTOP is not set 533 | # BR2_PACKAGE_LMBENCH is not set 534 | # BR2_PACKAGE_LSOF is not set 535 | BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS=y 536 | # BR2_PACKAGE_LTP_TESTSUITE is not set 537 | # BR2_PACKAGE_LTTNG_BABELTRACE is not set 538 | 539 | # 540 | # lttng-modules needs a Linux kernel to be built 541 | # 542 | # BR2_PACKAGE_LTTNG_TOOLS is not set 543 | # BR2_PACKAGE_MEMSTAT is not set 544 | # BR2_PACKAGE_NETPERF is not set 545 | # BR2_PACKAGE_NETSNIFF_NG is not set 546 | # BR2_PACKAGE_NMON is not set 547 | BR2_PACKAGE_OPROFILE_ARCH_SUPPORTS=y 548 | 549 | # 550 | # oprofile needs a toolchain w/ C++, wchar 551 | # 552 | # BR2_PACKAGE_PAX_UTILS is not set 553 | # BR2_PACKAGE_PV is not set 554 | # BR2_PACKAGE_RAMSMP is not set 555 | # BR2_PACKAGE_RAMSPEED is not set 556 | # BR2_PACKAGE_RT_TESTS is not set 557 | # BR2_PACKAGE_SPIDEV_TEST is not set 558 | # BR2_PACKAGE_STRACE is not set 559 | # BR2_PACKAGE_STRESS is not set 560 | # BR2_PACKAGE_STRESS_NG is not set 561 | # BR2_PACKAGE_TCF_AGENT is not set 562 | BR2_PACKAGE_TCF_AGENT_ARCH="a64" 563 | BR2_PACKAGE_TCF_AGENT_ARCH_SUPPORTS=y 564 | # BR2_PACKAGE_TINYMEMBENCH is not set 565 | # BR2_PACKAGE_TRACE_CMD is not set 566 | BR2_PACKAGE_TRINITY_ARCH_SUPPORTS=y 567 | # BR2_PACKAGE_TRINITY is not set 568 | # BR2_PACKAGE_UCLIBC_NG_TEST is not set 569 | # BR2_PACKAGE_WHETSTONE is not set 570 | 571 | # 572 | # Development tools 573 | # 574 | # BR2_PACKAGE_BINUTILS is not set 575 | # BR2_PACKAGE_BSDIFF is not set 576 | # BR2_PACKAGE_CHECK is not set 577 | BR2_PACKAGE_CMAKE_ARCH_SUPPORTS=y 578 | 579 | # 580 | # ctest needs a toolchain w/ C++, wchar, dynamic library, gcc >= 4.7, NPTL 581 | # 582 | 583 | # 584 | # cppunit needs a toolchain w/ C++, dynamic library 585 | # 586 | # BR2_PACKAGE_CVS is not set 587 | 588 | # 589 | # cxxtest needs a toolchain w/ C++ support 590 | # 591 | # BR2_PACKAGE_DIFFUTILS is not set 592 | # BR2_PACKAGE_DOS2UNIX is not set 593 | # BR2_PACKAGE_FINDUTILS is not set 594 | # BR2_PACKAGE_FLEX is not set 595 | # BR2_PACKAGE_GAWK is not set 596 | BR2_PACKAGE_GETTEXT=y 597 | # BR2_PACKAGE_GIT is not set 598 | 599 | # 600 | # git-crypt needs a toolchain w/ C++ 601 | # 602 | 603 | # 604 | # gperf needs a toolchain w/ C++ 605 | # 606 | # BR2_PACKAGE_GREP is not set 607 | # BR2_PACKAGE_JO is not set 608 | BR2_PACKAGE_JQ=y 609 | # BR2_PACKAGE_LIBTOOL is not set 610 | # BR2_PACKAGE_MAKE is not set 611 | # BR2_PACKAGE_PATCH is not set 612 | # BR2_PACKAGE_PKGCONF is not set 613 | # BR2_PACKAGE_SED is not set 614 | # BR2_PACKAGE_SUBVERSION is not set 615 | # BR2_PACKAGE_TREE is not set 616 | 617 | # 618 | # Filesystem and flash utilities 619 | # 620 | 621 | # 622 | # aufs-util needs a linux kernel and a toolchain w/ threads 623 | # 624 | # BR2_PACKAGE_AUTOFS is not set 625 | # BR2_PACKAGE_BTRFS_PROGS is not set 626 | # BR2_PACKAGE_CIFS_UTILS is not set 627 | # BR2_PACKAGE_CPIO is not set 628 | # BR2_PACKAGE_CRAMFS is not set 629 | # BR2_PACKAGE_CURLFTPFS is not set 630 | # BR2_PACKAGE_DOSFSTOOLS is not set 631 | BR2_PACKAGE_E2FSPROGS=y 632 | # BR2_PACKAGE_E2FSPROGS_DEBUGFS is not set 633 | # BR2_PACKAGE_E2FSPROGS_E2IMAGE is not set 634 | # BR2_PACKAGE_E2FSPROGS_E4DEFRAG is not set 635 | BR2_PACKAGE_E2FSPROGS_FSCK=y 636 | # BR2_PACKAGE_E2FSPROGS_FUSE2FS is not set 637 | BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y 638 | # BR2_PACKAGE_E2TOOLS is not set 639 | # BR2_PACKAGE_ECRYPTFS_UTILS is not set 640 | # BR2_PACKAGE_EXFAT is not set 641 | # BR2_PACKAGE_EXFAT_UTILS is not set 642 | # BR2_PACKAGE_F2FS_TOOLS is not set 643 | # BR2_PACKAGE_FLASHBENCH is not set 644 | # BR2_PACKAGE_FSCRYPTCTL is not set 645 | # BR2_PACKAGE_FWUP is not set 646 | # BR2_PACKAGE_GENEXT2FS is not set 647 | # BR2_PACKAGE_GENPART is not set 648 | # BR2_PACKAGE_GENROMFS is not set 649 | # BR2_PACKAGE_MMC_UTILS is not set 650 | # BR2_PACKAGE_MTD is not set 651 | # BR2_PACKAGE_MTOOLS is not set 652 | # BR2_PACKAGE_NFS_UTILS is not set 653 | # BR2_PACKAGE_NILFS_UTILS is not set 654 | # BR2_PACKAGE_NTFS_3G is not set 655 | # BR2_PACKAGE_SP_OOPS_EXTRACT is not set 656 | # BR2_PACKAGE_SQUASHFS is not set 657 | # BR2_PACKAGE_SSHFS is not set 658 | # BR2_PACKAGE_UNIONFS is not set 659 | BR2_PACKAGE_XFSPROGS=y 660 | 661 | # 662 | # Fonts, cursors, icons, sounds and themes 663 | # 664 | 665 | # 666 | # Cursors 667 | # 668 | # BR2_PACKAGE_COMIX_CURSORS is not set 669 | # BR2_PACKAGE_OBSIDIAN_CURSORS is not set 670 | 671 | # 672 | # Fonts 673 | # 674 | # BR2_PACKAGE_BITSTREAM_VERA is not set 675 | # BR2_PACKAGE_CANTARELL is not set 676 | # BR2_PACKAGE_DEJAVU is not set 677 | # BR2_PACKAGE_FONT_AWESOME is not set 678 | # BR2_PACKAGE_GHOSTSCRIPT_FONTS is not set 679 | # BR2_PACKAGE_INCONSOLATA is not set 680 | # BR2_PACKAGE_LIBERATION is not set 681 | 682 | # 683 | # Icons 684 | # 685 | # BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS is not set 686 | # BR2_PACKAGE_HICOLOR_ICON_THEME is not set 687 | 688 | # 689 | # Sounds 690 | # 691 | # BR2_PACKAGE_SOUND_THEME_BOREALIS is not set 692 | # BR2_PACKAGE_SOUND_THEME_FREEDESKTOP is not set 693 | 694 | # 695 | # Themes 696 | # 697 | 698 | # 699 | # Games 700 | # 701 | # BR2_PACKAGE_CHOCOLATE_DOOM is not set 702 | 703 | # 704 | # gnuchess needs a toolchain w/ C++, threads 705 | # 706 | # BR2_PACKAGE_LBREAKOUT2 is not set 707 | # BR2_PACKAGE_LTRIS is not set 708 | # BR2_PACKAGE_OPENTYRIAN is not set 709 | # BR2_PACKAGE_PRBOOM is not set 710 | # BR2_PACKAGE_SL is not set 711 | 712 | # 713 | # stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 4.9 714 | # 715 | 716 | # 717 | # Graphic libraries and applications (graphic/text) 718 | # 719 | 720 | # 721 | # Graphic applications 722 | # 723 | 724 | # 725 | # expedite needs a toolchain w/ C++ 726 | # 727 | # BR2_PACKAGE_FSWEBCAM is not set 728 | # BR2_PACKAGE_GHOSTSCRIPT is not set 729 | 730 | # 731 | # glmark2 needs a toolchain w/ C++, gcc >= 4.9 732 | # 733 | # BR2_PACKAGE_GNUPLOT is not set 734 | # BR2_PACKAGE_JHEAD is not set 735 | 736 | # 737 | # libva-utils needs a toolchain w/ C++, threads, dynamic library 738 | # 739 | # BR2_PACKAGE_MESA3D_DEMOS is not set 740 | # BR2_PACKAGE_PNGQUANT is not set 741 | # BR2_PACKAGE_RRDTOOL is not set 742 | 743 | # 744 | # tesseract-ocr needs a toolchain w/ threads, C++, gcc >= 4.8, dynamic library, wchar 745 | # 746 | 747 | # 748 | # Graphic libraries 749 | # 750 | 751 | # 752 | # cegui06 needs a toolchain w/ C++, threads, dynamic library 753 | # 754 | 755 | # 756 | # directfb needs a glibc or uClibc toolchain w/ C++, NPTL, gcc >= 4.5, dynamic library 757 | # 758 | # BR2_PACKAGE_FBDUMP is not set 759 | # BR2_PACKAGE_FBGRAB is not set 760 | BR2_PACKAGE_FBSET=y 761 | # BR2_PACKAGE_FB_TEST_APP is not set 762 | 763 | # 764 | # fbterm needs a toolchain w/ C++, wchar, locale 765 | # 766 | # BR2_PACKAGE_FBV is not set 767 | 768 | # 769 | # freerdp needs a toolchain w/ wchar, dynamic library, threads, C++ 770 | # 771 | # BR2_PACKAGE_IMAGEMAGICK is not set 772 | 773 | # 774 | # linux-fusion needs a Linux kernel to be built 775 | # 776 | BR2_PACKAGE_PROVIDES_LIBEGL="odroid-mali" 777 | BR2_PACKAGE_PROVIDES_LIBGLES="odroid-mali" 778 | 779 | # 780 | # mesa3d needs a toolchain w/ C++, NPTL, dynamic library 781 | # 782 | 783 | # 784 | # ocrad needs a toolchain w/ C++ 785 | # 786 | # BR2_PACKAGE_PSPLASH is not set 787 | # BR2_PACKAGE_SDL is not set 788 | # BR2_PACKAGE_SDL2 is not set 789 | 790 | # 791 | # Other GUIs 792 | # 793 | 794 | # 795 | # qt needs a toolchain w/ C++, threads 796 | # 797 | BR2_PACKAGE_QT5_GL_AVAILABLE=y 798 | BR2_PACKAGE_QT5_JSCORE_AVAILABLE=y 799 | 800 | # 801 | # Qt5 needs a toolchain w/ wchar, NPTL, C++, dynamic library 802 | # 803 | 804 | # 805 | # tekui needs a Lua interpreter and a toolchain w/ threads, dynamic library 806 | # 807 | # BR2_PACKAGE_WESTON is not set 808 | # BR2_PACKAGE_XORG7 is not set 809 | # BR2_PACKAGE_XKEYBOARD_CONFIG is not set 810 | 811 | # 812 | # Hardware handling 813 | # 814 | 815 | # 816 | # Firmware 817 | # 818 | # BR2_PACKAGE_ARMBIAN_FIRMWARE is not set 819 | # BR2_PACKAGE_B43_FIRMWARE is not set 820 | # BR2_PACKAGE_LINUX_FIRMWARE is not set 821 | # BR2_PACKAGE_RPI_BT_FIRMWARE is not set 822 | # BR2_PACKAGE_RPI_FIRMWARE is not set 823 | # BR2_PACKAGE_RPI_WIFI_FIRMWARE is not set 824 | # BR2_PACKAGE_UX500_FIRMWARE is not set 825 | # BR2_PACKAGE_WILC1000_FIRMWARE is not set 826 | # BR2_PACKAGE_WILINK_BT_FIRMWARE is not set 827 | # BR2_PACKAGE_ZD1211_FIRMWARE is not set 828 | # BR2_PACKAGE_ACPICA is not set 829 | 830 | # 831 | # acpitool needs a toolchain w/ threads, C++, dynamic library 832 | # 833 | # BR2_PACKAGE_AER_INJECT is not set 834 | # BR2_PACKAGE_AVRDUDE is not set 835 | # BR2_PACKAGE_BCACHE_TOOLS is not set 836 | # BR2_PACKAGE_BRLTTY is not set 837 | 838 | # 839 | # cc-tool needs a toolchain w/ C++, threads, wchar 840 | # 841 | # BR2_PACKAGE_CDRKIT is not set 842 | BR2_PACKAGE_CRYPTSETUP=y 843 | # BR2_PACKAGE_CWIID is not set 844 | 845 | # 846 | # dahdi-linux needs a Linux kernel to be built 847 | # 848 | 849 | # 850 | # dahdi-tools needs a toolchain w/ threads and a Linux kernel to be built 851 | # 852 | # BR2_PACKAGE_DBUS is not set 853 | # BR2_PACKAGE_DEVMEM2 is not set 854 | # BR2_PACKAGE_DFU_UTIL is not set 855 | # BR2_PACKAGE_DMIDECODE is not set 856 | # BR2_PACKAGE_DMRAID is not set 857 | # BR2_PACKAGE_DT_UTILS is not set 858 | # BR2_PACKAGE_DTV_SCAN_TABLES is not set 859 | # BR2_PACKAGE_DUMP1090 is not set 860 | # BR2_PACKAGE_DVB_APPS is not set 861 | # BR2_PACKAGE_DVBSNOOP is not set 862 | # BR2_PACKAGE_EDID_DECODE is not set 863 | BR2_PACKAGE_EUDEV=y 864 | BR2_PACKAGE_PROVIDES_UDEV="eudev" 865 | # BR2_PACKAGE_EUDEV_RULES_GEN is not set 866 | BR2_PACKAGE_EUDEV_ENABLE_HWDB=y 867 | # BR2_PACKAGE_EVEMU is not set 868 | # BR2_PACKAGE_EVTEST is not set 869 | # BR2_PACKAGE_FAN_CTRL is not set 870 | # BR2_PACKAGE_FCONFIG is not set 871 | # BR2_PACKAGE_FIS is not set 872 | # BR2_PACKAGE_FMTOOLS is not set 873 | # BR2_PACKAGE_FXLOAD is not set 874 | # BR2_PACKAGE_GADGETFS_TEST is not set 875 | # BR2_PACKAGE_GPM is not set 876 | # BR2_PACKAGE_GPSD is not set 877 | 878 | # 879 | # gptfdisk needs a toolchain w/ C++ 880 | # 881 | # BR2_PACKAGE_GVFS is not set 882 | # BR2_PACKAGE_HDPARM is not set 883 | # BR2_PACKAGE_HWDATA is not set 884 | # BR2_PACKAGE_HWLOC is not set 885 | # BR2_PACKAGE_I2C_TOOLS is not set 886 | # BR2_PACKAGE_INPUT_EVENT_DAEMON is not set 887 | # BR2_PACKAGE_IOSTAT is not set 888 | # BR2_PACKAGE_IPMITOOL is not set 889 | 890 | # 891 | # iqvlinux needs a Linux kernel to be built 892 | # 893 | # BR2_PACKAGE_IRDA_UTILS is not set 894 | # BR2_PACKAGE_KBD is not set 895 | # BR2_PACKAGE_LCDPROC is not set 896 | # BR2_PACKAGE_LIBUIO is not set 897 | # BR2_PACKAGE_LINUXCONSOLETOOLS is not set 898 | 899 | # 900 | # linux-backports needs a Linux kernel to be built 901 | # 902 | 903 | # 904 | # lirc-tools needs a toolchain w/ threads, dynamic library, C++ 905 | # 906 | # BR2_PACKAGE_LM_SENSORS is not set 907 | 908 | # 909 | # lshw needs a toolchain w/ C++, wchar 910 | # 911 | # BR2_PACKAGE_LSSCSI is not set 912 | # BR2_PACKAGE_LSUIO is not set 913 | # BR2_PACKAGE_LUKSMETA is not set 914 | BR2_PACKAGE_LVM2=y 915 | BR2_PACKAGE_LVM2_STANDARD_INSTALL=y 916 | # BR2_PACKAGE_LVM2_APP_LIBRARY is not set 917 | BR2_PACKAGE_MDADM=y 918 | # BR2_PACKAGE_MEMTESTER is not set 919 | # BR2_PACKAGE_MEMTOOL is not set 920 | # BR2_PACKAGE_MINICOM is not set 921 | # BR2_PACKAGE_NANOCOM is not set 922 | # BR2_PACKAGE_NEARD is not set 923 | # BR2_PACKAGE_NVME is not set 924 | BR2_PACKAGE_ODROID_MALI=y 925 | BR2_PACKAGE_ODROID_SCRIPTS=y 926 | # BR2_PACKAGE_OFONO is not set 927 | # BR2_PACKAGE_OPEN2300 is not set 928 | # BR2_PACKAGE_OPENIPMI is not set 929 | # BR2_PACKAGE_OPENOCD is not set 930 | BR2_PACKAGE_PARTED=y 931 | # BR2_PACKAGE_PCIUTILS is not set 932 | # BR2_PACKAGE_PDBG is not set 933 | # BR2_PACKAGE_PICOCOM is not set 934 | 935 | # 936 | # powertop needs a toolchain w/ C++, threads, wchar 937 | # 938 | # BR2_PACKAGE_PPS_TOOLS is not set 939 | # BR2_PACKAGE_READ_EDID is not set 940 | BR2_PACKAGE_RNG_TOOLS=y 941 | # BR2_PACKAGE_RS485CONF is not set 942 | 943 | # 944 | # rtl8188eu needs a Linux kernel to be built 945 | # 946 | 947 | # 948 | # rtl8723bs needs a Linux kernel to be built 949 | # 950 | 951 | # 952 | # rtl8723bu needs a Linux kernel to be built 953 | # 954 | 955 | # 956 | # rtl8821au needs a Linux kernel to be built 957 | # 958 | 959 | # 960 | # rtl8189fs needs a Linux kernel to be built 961 | # 962 | # BR2_PACKAGE_SANE_BACKENDS is not set 963 | # BR2_PACKAGE_SDPARM is not set 964 | # BR2_PACKAGE_SETSERIAL is not set 965 | # BR2_PACKAGE_SG3_UTILS is not set 966 | # BR2_PACKAGE_SIGROK_CLI is not set 967 | # BR2_PACKAGE_SISPMCTL is not set 968 | 969 | # 970 | # smartmontools needs a toolchain w/ C++ 971 | # 972 | # BR2_PACKAGE_SMSTOOLS3 is not set 973 | # BR2_PACKAGE_SPI_TOOLS is not set 974 | # BR2_PACKAGE_SREDIRD is not set 975 | # BR2_PACKAGE_STATSERIAL is not set 976 | # BR2_PACKAGE_STM32FLASH is not set 977 | # BR2_PACKAGE_SYSSTAT is not set 978 | 979 | # 980 | # targetcli-fb depends on Python 981 | # 982 | 983 | # 984 | # ti-sgx-um needs the ti-sgx-km driver 985 | # 986 | # BR2_PACKAGE_TI_UIM is not set 987 | # BR2_PACKAGE_TI_UTILS is not set 988 | # BR2_PACKAGE_TRIGGERHAPPY is not set 989 | # BR2_PACKAGE_UBOOT_TOOLS is not set 990 | # BR2_PACKAGE_UBUS is not set 991 | 992 | # 993 | # uccp420wlan needs a Linux kernel >= 4.2 to be built 994 | # 995 | BR2_PACKAGE_HAS_UDEV=y 996 | # BR2_PACKAGE_UDISKS is not set 997 | # BR2_PACKAGE_UHUBCTL is not set 998 | # BR2_PACKAGE_UPOWER is not set 999 | # BR2_PACKAGE_USB_MODESWITCH is not set 1000 | # BR2_PACKAGE_USB_MODESWITCH_DATA is not set 1001 | # BR2_PACKAGE_USBMOUNT is not set 1002 | # BR2_PACKAGE_USBUTILS is not set 1003 | # BR2_PACKAGE_W_SCAN is not set 1004 | # BR2_PACKAGE_WIPE is not set 1005 | # BR2_PACKAGE_XORRISO is not set 1006 | 1007 | # 1008 | # xr819-xradio driver needs a Linux kernel to be built 1009 | # 1010 | 1011 | # 1012 | # Interpreter languages and scripting 1013 | # 1014 | # BR2_PACKAGE_4TH is not set 1015 | # BR2_PACKAGE_ENSCRIPT is not set 1016 | # BR2_PACKAGE_EXECLINE is not set 1017 | # BR2_PACKAGE_FICL is not set 1018 | # BR2_PACKAGE_GUILE is not set 1019 | # BR2_PACKAGE_HASERL is not set 1020 | # BR2_PACKAGE_JIMTCL is not set 1021 | # BR2_PACKAGE_LUA is not set 1022 | # BR2_PACKAGE_MICROPYTHON is not set 1023 | # BR2_PACKAGE_MOARVM is not set 1024 | BR2_PACKAGE_NODEJS_ARCH_SUPPORTS=y 1025 | 1026 | # 1027 | # nodejs needs a toolchain w/ C++, dynamic library, NPTL, gcc >= 4.8, wchar 1028 | # 1029 | # BR2_PACKAGE_PERL is not set 1030 | # BR2_PACKAGE_PHP is not set 1031 | # BR2_PACKAGE_PYTHON is not set 1032 | # BR2_PACKAGE_PYTHON3 is not set 1033 | # BR2_PACKAGE_RUBY is not set 1034 | # BR2_PACKAGE_TCL is not set 1035 | 1036 | # 1037 | # Libraries 1038 | # 1039 | 1040 | # 1041 | # Audio/Sound 1042 | # 1043 | # BR2_PACKAGE_ALSA_LIB is not set 1044 | # BR2_PACKAGE_AUBIO is not set 1045 | 1046 | # 1047 | # audiofile needs a toolchain w/ C++ 1048 | # 1049 | # BR2_PACKAGE_BCG729 is not set 1050 | # BR2_PACKAGE_CELT051 is not set 1051 | # BR2_PACKAGE_LIBAO is not set 1052 | 1053 | # 1054 | # asplib needs a toolchain w/ C++ 1055 | # 1056 | # BR2_PACKAGE_LIBBROADVOICE is not set 1057 | # BR2_PACKAGE_LIBCDAUDIO is not set 1058 | # BR2_PACKAGE_LIBCDDB is not set 1059 | # BR2_PACKAGE_LIBCDIO is not set 1060 | # BR2_PACKAGE_LIBCODEC2 is not set 1061 | # BR2_PACKAGE_LIBCUE is not set 1062 | # BR2_PACKAGE_LIBCUEFILE is not set 1063 | # BR2_PACKAGE_LIBEBUR128 is not set 1064 | # BR2_PACKAGE_LIBG7221 is not set 1065 | # BR2_PACKAGE_LIBGSM is not set 1066 | # BR2_PACKAGE_LIBID3TAG is not set 1067 | # BR2_PACKAGE_LIBILBC is not set 1068 | # BR2_PACKAGE_LIBLO is not set 1069 | # BR2_PACKAGE_LIBMAD is not set 1070 | 1071 | # 1072 | # libmodplug needs a toolchain w/ C++ 1073 | # 1074 | # BR2_PACKAGE_LIBMPD is not set 1075 | # BR2_PACKAGE_LIBMPDCLIENT is not set 1076 | # BR2_PACKAGE_LIBREPLAYGAIN is not set 1077 | # BR2_PACKAGE_LIBSAMPLERATE is not set 1078 | 1079 | # 1080 | # libsidplay2 needs a toolchain w/ C++ 1081 | # 1082 | # BR2_PACKAGE_LIBSILK is not set 1083 | # BR2_PACKAGE_LIBSNDFILE is not set 1084 | 1085 | # 1086 | # libsoundtouch needs a toolchain w/ C++ 1087 | # 1088 | # BR2_PACKAGE_LIBSOXR is not set 1089 | # BR2_PACKAGE_LIBVORBIS is not set 1090 | 1091 | # 1092 | # mp4v2 needs a toolchain w/ C++ 1093 | # 1094 | BR2_PACKAGE_OPENAL_ARCH_SUPPORTS=y 1095 | 1096 | # 1097 | # openal needs a toolchain w/ NPTL, C++ 1098 | # 1099 | 1100 | # 1101 | # opencore-amr needs a toolchain w/ C++ 1102 | # 1103 | # BR2_PACKAGE_OPUS is not set 1104 | # BR2_PACKAGE_OPUSFILE is not set 1105 | # BR2_PACKAGE_PORTAUDIO is not set 1106 | # BR2_PACKAGE_SBC is not set 1107 | # BR2_PACKAGE_SPEEX is not set 1108 | 1109 | # 1110 | # taglib needs a toolchain w/ C++, wchar 1111 | # 1112 | # BR2_PACKAGE_TINYALSA is not set 1113 | # BR2_PACKAGE_TREMOR is not set 1114 | # BR2_PACKAGE_VO_AACENC is not set 1115 | 1116 | # 1117 | # Compression and decompression 1118 | # 1119 | # BR2_PACKAGE_LIBARCHIVE is not set 1120 | 1121 | # 1122 | # libsquish needs a toolchain w/ C++ 1123 | # 1124 | # BR2_PACKAGE_LIBZIP is not set 1125 | # BR2_PACKAGE_LZO is not set 1126 | # BR2_PACKAGE_MINIZIP is not set 1127 | 1128 | # 1129 | # snappy needs a toolchain w/ C++ 1130 | # 1131 | # BR2_PACKAGE_SZIP is not set 1132 | BR2_PACKAGE_ZLIB_NG_ARCH_SUPPORTS=y 1133 | BR2_PACKAGE_ZLIB=y 1134 | BR2_PACKAGE_LIBZLIB=y 1135 | # BR2_PACKAGE_ZLIB_NG is not set 1136 | BR2_PACKAGE_HAS_ZLIB=y 1137 | BR2_PACKAGE_PROVIDES_ZLIB="libzlib" 1138 | BR2_PACKAGE_PROVIDES_HOST_ZLIB="host-libzlib" 1139 | 1140 | # 1141 | # Crypto 1142 | # 1143 | # BR2_PACKAGE_BEECRYPT is not set 1144 | # BR2_PACKAGE_CA_CERTIFICATES is not set 1145 | 1146 | # 1147 | # cryptodev needs a Linux kernel to be built 1148 | # 1149 | # BR2_PACKAGE_GCR is not set 1150 | # BR2_PACKAGE_GNUTLS is not set 1151 | # BR2_PACKAGE_LIBASSUAN is not set 1152 | # BR2_PACKAGE_LIBGCRYPT is not set 1153 | BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS=y 1154 | # BR2_PACKAGE_LIBGPG_ERROR is not set 1155 | BR2_PACKAGE_LIBGPG_ERROR_SYSCFG="aarch64-unknown-linux-gnu" 1156 | # BR2_PACKAGE_LIBGPGME is not set 1157 | # BR2_PACKAGE_LIBKCAPI is not set 1158 | # BR2_PACKAGE_LIBKSBA is not set 1159 | # BR2_PACKAGE_LIBMCRYPT is not set 1160 | # BR2_PACKAGE_LIBMHASH is not set 1161 | # BR2_PACKAGE_LIBNSS is not set 1162 | # BR2_PACKAGE_LIBSCRYPT is not set 1163 | # BR2_PACKAGE_LIBSECRET is not set 1164 | # BR2_PACKAGE_LIBSHA1 is not set 1165 | # BR2_PACKAGE_LIBSODIUM is not set 1166 | # BR2_PACKAGE_LIBSSH is not set 1167 | # BR2_PACKAGE_LIBSSH2 is not set 1168 | # BR2_PACKAGE_LIBTOMCRYPT is not set 1169 | # BR2_PACKAGE_LIBUECC is not set 1170 | # BR2_PACKAGE_MBEDTLS is not set 1171 | # BR2_PACKAGE_NETTLE is not set 1172 | BR2_PACKAGE_OPENSSL=y 1173 | BR2_PACKAGE_LIBOPENSSL=y 1174 | # BR2_PACKAGE_LIBOPENSSL_BIN is not set 1175 | # BR2_PACKAGE_LIBOPENSSL_ENGINES is not set 1176 | # BR2_PACKAGE_LIBRESSL is not set 1177 | BR2_PACKAGE_HAS_OPENSSL=y 1178 | BR2_PACKAGE_PROVIDES_OPENSSL="libopenssl" 1179 | BR2_PACKAGE_PROVIDES_HOST_OPENSSL="host-libopenssl" 1180 | # BR2_PACKAGE_RHASH is not set 1181 | # BR2_PACKAGE_TINYDTLS is not set 1182 | # BR2_PACKAGE_TROUSERS is not set 1183 | # BR2_PACKAGE_USTREAM_SSL is not set 1184 | # BR2_PACKAGE_WOLFSSL is not set 1185 | 1186 | # 1187 | # Database 1188 | # 1189 | # BR2_PACKAGE_BERKELEYDB is not set 1190 | # BR2_PACKAGE_GDBM is not set 1191 | # BR2_PACKAGE_HIREDIS is not set 1192 | 1193 | # 1194 | # kompexsqlite needs a toolchain w/ C++, wchar, threads, dynamic library 1195 | # 1196 | 1197 | # 1198 | # leveldb needs a toolchain w/ C++, threads 1199 | # 1200 | BR2_PACKAGE_MONGODB_ARCH_SUPPORTS=y 1201 | 1202 | # 1203 | # mongodb needs a glibc toolchain w/ wchar, threads, C++, gcc >= 4.8 1204 | # 1205 | 1206 | # 1207 | # mysql needs a toolchain w/ C++, threads 1208 | # 1209 | # BR2_PACKAGE_POSTGRESQL is not set 1210 | # BR2_PACKAGE_REDIS is not set 1211 | # BR2_PACKAGE_SQLCIPHER is not set 1212 | # BR2_PACKAGE_SQLITE is not set 1213 | # BR2_PACKAGE_UNIXODBC is not set 1214 | 1215 | # 1216 | # Filesystem 1217 | # 1218 | # BR2_PACKAGE_GAMIN is not set 1219 | # BR2_PACKAGE_LIBCONFIG is not set 1220 | # BR2_PACKAGE_LIBCONFUSE is not set 1221 | # BR2_PACKAGE_LIBFUSE is not set 1222 | # BR2_PACKAGE_LIBLOCKFILE is not set 1223 | # BR2_PACKAGE_LIBNFS is not set 1224 | # BR2_PACKAGE_LIBSYSFS is not set 1225 | # BR2_PACKAGE_LOCKDEV is not set 1226 | 1227 | # 1228 | # physfs needs a toolchain w/ C++, threads 1229 | # 1230 | 1231 | # 1232 | # Graphics 1233 | # 1234 | 1235 | # 1236 | # assimp needs a toolchain w/ C++ 1237 | # 1238 | # BR2_PACKAGE_ATK is not set 1239 | 1240 | # 1241 | # atkmm needs a toolchain w/ C++, wchar, threads, gcc >= 4.9 1242 | # 1243 | 1244 | # 1245 | # bullet needs a toolchain w/ C++ 1246 | # 1247 | # BR2_PACKAGE_CAIRO is not set 1248 | 1249 | # 1250 | # cairomm needs a toolchain w/ C++, wchar, threads, gcc >= 4.8 1251 | # 1252 | 1253 | # 1254 | # exiv2 needs a uClibc or glibc toolchain w/ C++, wchar, dynamic library, threads 1255 | # 1256 | # BR2_PACKAGE_FONTCONFIG is not set 1257 | # BR2_PACKAGE_FREETYPE is not set 1258 | # BR2_PACKAGE_GD is not set 1259 | # BR2_PACKAGE_GDK_PIXBUF is not set 1260 | # BR2_PACKAGE_GIFLIB is not set 1261 | 1262 | # 1263 | # granite needs libgtk3 and a toolchain w/ wchar, threads 1264 | # 1265 | 1266 | # 1267 | # graphite2 needs a toolchain w/ C++, dynamic library 1268 | # 1269 | 1270 | # 1271 | # gtkmm3 needs libgtk3 and a toolchain w/ C++, wchar, threads, gcc >= 4.9 1272 | # 1273 | 1274 | # 1275 | # harfbuzz needs a toolchain w/ C++ 1276 | # 1277 | # BR2_PACKAGE_IJS is not set 1278 | # BR2_PACKAGE_IMLIB2 is not set 1279 | 1280 | # 1281 | # irrlicht needs a toolchain w/ C++ 1282 | # 1283 | # BR2_PACKAGE_JASPER is not set 1284 | # BR2_PACKAGE_JPEG is not set 1285 | BR2_PACKAGE_JPEG_SIMD_SUPPORT=y 1286 | 1287 | # 1288 | # kms++ needs a toolchain w/ threads, C++, gcc >= 4.8, headers >= 3.8 1289 | # 1290 | # BR2_PACKAGE_LCMS2 is not set 1291 | 1292 | # 1293 | # lensfun needs a toolchain w/ C++, threads, wchar 1294 | # 1295 | # BR2_PACKAGE_LEPTONICA is not set 1296 | # BR2_PACKAGE_LIBART is not set 1297 | # BR2_PACKAGE_LIBDMTX is not set 1298 | # BR2_PACKAGE_LIBDRM is not set 1299 | # BR2_PACKAGE_LIBEPOXY is not set 1300 | # BR2_PACKAGE_LIBEXIF is not set 1301 | 1302 | # 1303 | # libfm needs X.org and a toolchain w/ wchar, threads, C++ 1304 | # 1305 | # BR2_PACKAGE_LIBFM_EXTRA is not set 1306 | 1307 | # 1308 | # libfreeglut depends on X.org and needs an OpenGL backend 1309 | # 1310 | 1311 | # 1312 | # libfreeimage needs a toolchain w/ C++, dynamic library, wchar 1313 | # 1314 | # BR2_PACKAGE_LIBGEOTIFF is not set 1315 | 1316 | # 1317 | # libglew depends on X.org and needs an OpenGL backend 1318 | # 1319 | 1320 | # 1321 | # libglfw depends on X.org and needs an OpenGL backend 1322 | # 1323 | 1324 | # 1325 | # libglu needs an OpenGL backend 1326 | # 1327 | # BR2_PACKAGE_LIBGTA is not set 1328 | 1329 | # 1330 | # libgtk3 needs a toolchain w/ wchar, threads, C++ 1331 | # 1332 | 1333 | # 1334 | # libgtk3 needs an OpenGL or an OpenGL-EGL/wayland backend 1335 | # 1336 | # BR2_PACKAGE_LIBMEDIAART is not set 1337 | # BR2_PACKAGE_LIBMNG is not set 1338 | # BR2_PACKAGE_LIBPNG is not set 1339 | # BR2_PACKAGE_LIBQRENCODE is not set 1340 | 1341 | # 1342 | # libraw needs a toolchain w/ C++ 1343 | # 1344 | 1345 | # 1346 | # librsvg needs a toolchain w/ wchar, threads, C++ 1347 | # 1348 | 1349 | # 1350 | # libsoil needs an OpenGL backend and a toolchain w/ dynamic library 1351 | # 1352 | # BR2_PACKAGE_LIBSVG is not set 1353 | # BR2_PACKAGE_LIBSVG_CAIRO is not set 1354 | # BR2_PACKAGE_LIBSVGTINY is not set 1355 | # BR2_PACKAGE_LIBVA is not set 1356 | 1357 | # 1358 | # libvips needs a toolchain w/ wchar, threads, C++ 1359 | # 1360 | # BR2_PACKAGE_MENU_CACHE is not set 1361 | 1362 | # 1363 | # opencv needs a toolchain w/ C++, NPTL, wchar 1364 | # 1365 | 1366 | # 1367 | # opencv3 needs a toolchain w/ C++, NPTL, wchar, dynamic library 1368 | # 1369 | BR2_PACKAGE_HAS_LIBEGL=y 1370 | BR2_PACKAGE_HAS_LIBGLES=y 1371 | # BR2_PACKAGE_OPENJPEG is not set 1372 | 1373 | # 1374 | # pango needs a toolchain w/ wchar, threads, C++ 1375 | # 1376 | 1377 | # 1378 | # pangomm needs a toolchain w/ C++, wchar, threads, gcc >= 4.9 1379 | # 1380 | # BR2_PACKAGE_PIXMAN is not set 1381 | 1382 | # 1383 | # poppler needs a toolchain w/ C++, threads 1384 | # 1385 | # BR2_PACKAGE_TIFF is not set 1386 | # BR2_PACKAGE_WAYLAND is not set 1387 | # BR2_PACKAGE_WEBP is not set 1388 | 1389 | # 1390 | # zbar needs a toolchain w/ threads, C++ and headers >= 3.0 1391 | # 1392 | 1393 | # 1394 | # zxing-cpp needs a toolchain w/ C++, dynamic library 1395 | # 1396 | 1397 | # 1398 | # Hardware handling 1399 | # 1400 | # BR2_PACKAGE_ACSCCID is not set 1401 | # BR2_PACKAGE_C_PERIPHERY is not set 1402 | # BR2_PACKAGE_CCID is not set 1403 | # BR2_PACKAGE_DTC is not set 1404 | # BR2_PACKAGE_GNU_EFI is not set 1405 | # BR2_PACKAGE_HIDAPI is not set 1406 | 1407 | # 1408 | # lcdapi needs a toolchain w/ C++, threads 1409 | # 1410 | 1411 | # 1412 | # let-me-create needs a toolchain w/ C++, threads, dynamic library 1413 | # 1414 | BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS=y 1415 | # BR2_PACKAGE_LIBAIO is not set 1416 | # BR2_PACKAGE_LIBATASMART is not set 1417 | 1418 | # 1419 | # libcec needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 4.7 1420 | # 1421 | # BR2_PACKAGE_LIBFREEFARE is not set 1422 | # BR2_PACKAGE_LIBFTDI is not set 1423 | # BR2_PACKAGE_LIBFTDI1 is not set 1424 | # BR2_PACKAGE_LIBGPHOTO2 is not set 1425 | # BR2_PACKAGE_LIBGPIOD is not set 1426 | # BR2_PACKAGE_LIBGUDEV is not set 1427 | # BR2_PACKAGE_LIBHID is not set 1428 | # BR2_PACKAGE_LIBIIO is not set 1429 | # BR2_PACKAGE_LIBINPUT is not set 1430 | # BR2_PACKAGE_LIBIQRF is not set 1431 | # BR2_PACKAGE_LIBLLCP is not set 1432 | # BR2_PACKAGE_LIBMBIM is not set 1433 | # BR2_PACKAGE_LIBNFC is not set 1434 | # BR2_PACKAGE_LIBPCIACCESS is not set 1435 | # BR2_PACKAGE_LIBPHIDGET is not set 1436 | 1437 | # 1438 | # libpri needs a kernel to be built 1439 | # 1440 | # BR2_PACKAGE_LIBQMI is not set 1441 | # BR2_PACKAGE_LIBRAW1394 is not set 1442 | # BR2_PACKAGE_LIBRTLSDR is not set 1443 | 1444 | # 1445 | # libserial needs a toolchain w/ C++, threads, wchar 1446 | # 1447 | # BR2_PACKAGE_LIBSERIALPORT is not set 1448 | # BR2_PACKAGE_LIBSIGROK is not set 1449 | # BR2_PACKAGE_LIBSIGROKDECODE is not set 1450 | # BR2_PACKAGE_LIBSOC is not set 1451 | 1452 | # 1453 | # libss7 needs a kernel to be built 1454 | # 1455 | # BR2_PACKAGE_LIBUSB is not set 1456 | # BR2_PACKAGE_LIBUSBGX is not set 1457 | 1458 | # 1459 | # libv4l needs a toolchain w/ threads, C++ and headers >= 3.0 1460 | # 1461 | # BR2_PACKAGE_LIBXKBCOMMON is not set 1462 | # BR2_PACKAGE_MTDEV is not set 1463 | # BR2_PACKAGE_NEARDAL is not set 1464 | # BR2_PACKAGE_OWFS is not set 1465 | # BR2_PACKAGE_PCSC_LITE is not set 1466 | # BR2_PACKAGE_TSLIB is not set 1467 | 1468 | # 1469 | # urg needs a toolchain w/ C++ 1470 | # 1471 | # BR2_PACKAGE_WIRINGPI is not set 1472 | 1473 | # 1474 | # Javascript 1475 | # 1476 | # BR2_PACKAGE_ANGULARJS is not set 1477 | # BR2_PACKAGE_BOOTSTRAP is not set 1478 | # BR2_PACKAGE_EXPLORERCANVAS is not set 1479 | # BR2_PACKAGE_FLOT is not set 1480 | # BR2_PACKAGE_JQUERY is not set 1481 | # BR2_PACKAGE_JSMIN is not set 1482 | # BR2_PACKAGE_JSON_JAVASCRIPT is not set 1483 | 1484 | # 1485 | # JSON/XML 1486 | # 1487 | 1488 | # 1489 | # benejson needs a toolchain w/ C++ 1490 | # 1491 | # BR2_PACKAGE_CJSON is not set 1492 | # BR2_PACKAGE_EXPAT is not set 1493 | # BR2_PACKAGE_EZXML is not set 1494 | # BR2_PACKAGE_JANSSON is not set 1495 | # BR2_PACKAGE_JOSE is not set 1496 | # BR2_PACKAGE_JSMN is not set 1497 | BR2_PACKAGE_JSON_C=y 1498 | 1499 | # 1500 | # json-for-modern-cpp needs a toolchain w/ C++, gcc >= 4.9 1501 | # 1502 | # BR2_PACKAGE_JSON_GLIB is not set 1503 | 1504 | # 1505 | # jsoncpp needs a toolchain w/ C++, gcc >= 4.7 1506 | # 1507 | # BR2_PACKAGE_LIBBSON is not set 1508 | BR2_PACKAGE_LIBFASTJSON=y 1509 | 1510 | # 1511 | # libjson needs a toolchain w/ C++ 1512 | # 1513 | # BR2_PACKAGE_LIBROXML is not set 1514 | # BR2_PACKAGE_LIBUCL is not set 1515 | # BR2_PACKAGE_LIBXML2 is not set 1516 | 1517 | # 1518 | # libxml++ needs a toolchain w/ C++, wchar, threads, gcc >= 4.9 1519 | # 1520 | # BR2_PACKAGE_LIBXMLRPC is not set 1521 | # BR2_PACKAGE_LIBXSLT is not set 1522 | # BR2_PACKAGE_LIBYAML is not set 1523 | # BR2_PACKAGE_MXML is not set 1524 | 1525 | # 1526 | # pugixml needs a toolchain w/ C++ 1527 | # 1528 | 1529 | # 1530 | # rapidjson needs a toolchain w/ C++ 1531 | # 1532 | # BR2_PACKAGE_RAPIDXML is not set 1533 | # BR2_PACKAGE_RAPTOR is not set 1534 | 1535 | # 1536 | # tinyxml needs a toolchain w/ C++ 1537 | # 1538 | 1539 | # 1540 | # tinyxml2 needs a toolchain w/ C++ 1541 | # 1542 | 1543 | # 1544 | # valijson needs a toolchain w/ C++, threads, wchar support 1545 | # 1546 | 1547 | # 1548 | # xerces-c++ needs a toolchain w/ C++, wchar 1549 | # 1550 | # BR2_PACKAGE_YAJL is not set 1551 | 1552 | # 1553 | # yaml-cpp needs a toolchain w/ C++, threads, wchar 1554 | # 1555 | 1556 | # 1557 | # Logging 1558 | # 1559 | # BR2_PACKAGE_EVENTLOG is not set 1560 | 1561 | # 1562 | # glog needs a toolchain w/ C++, threads, dynamic library 1563 | # 1564 | # BR2_PACKAGE_LIBLOG4C_LOCALTIME is not set 1565 | BR2_PACKAGE_LIBLOGGING=y 1566 | 1567 | # 1568 | # log4cplus needs a toolchain w/ C++, wchar, threads 1569 | # 1570 | 1571 | # 1572 | # log4cpp needs a toolchain w/ C++, threads 1573 | # 1574 | 1575 | # 1576 | # log4cxx needs a toolchain w/ C++, threads, dynamic library 1577 | # 1578 | 1579 | # 1580 | # opentracing-cpp needs a toolchain w/ C++, gcc >= 4.8 1581 | # 1582 | # BR2_PACKAGE_ZLOG is not set 1583 | 1584 | # 1585 | # Multimedia 1586 | # 1587 | # BR2_PACKAGE_BITSTREAM is not set 1588 | 1589 | # 1590 | # kvazaar needs a toolchain w/ C++, threads 1591 | # 1592 | # BR2_PACKAGE_LIBAACS is not set 1593 | # BR2_PACKAGE_LIBAMCODEC is not set 1594 | # BR2_PACKAGE_LIBASS is not set 1595 | # BR2_PACKAGE_LIBBDPLUS is not set 1596 | # BR2_PACKAGE_LIBBLURAY is not set 1597 | # BR2_PACKAGE_LIBDCADEC is not set 1598 | # BR2_PACKAGE_LIBDVBCSA is not set 1599 | # BR2_PACKAGE_LIBDVBPSI is not set 1600 | 1601 | # 1602 | # libdvbsi++ needs a toolchain w/ C++, wchar, threads 1603 | # 1604 | # BR2_PACKAGE_LIBDVDCSS is not set 1605 | # BR2_PACKAGE_LIBDVDNAV is not set 1606 | # BR2_PACKAGE_LIBDVDREAD is not set 1607 | 1608 | # 1609 | # libebml needs a toolchain w/ C++, wchar 1610 | # 1611 | # BR2_PACKAGE_LIBHDHOMERUN is not set 1612 | 1613 | # 1614 | # libmatroska needs a toolchain w/ C++, wchar 1615 | # 1616 | # BR2_PACKAGE_LIBMMS is not set 1617 | # BR2_PACKAGE_LIBMPEG2 is not set 1618 | # BR2_PACKAGE_LIBOGG is not set 1619 | BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS=y 1620 | 1621 | # 1622 | # libopenh264 needs a toolchain w/ C++, dynamic library, threads 1623 | # 1624 | # BR2_PACKAGE_LIBPLAYER is not set 1625 | # BR2_PACKAGE_LIBTHEORA is not set 1626 | # BR2_PACKAGE_LIBVPX is not set 1627 | 1628 | # 1629 | # libyuv needs a toolchain w/ C++, dynamic library 1630 | # 1631 | 1632 | # 1633 | # live555 needs a toolchain w/ C++ 1634 | # 1635 | 1636 | # 1637 | # mediastreamer needs a toolchain w/ threads, C++ 1638 | # 1639 | # BR2_PACKAGE_X264 is not set 1640 | 1641 | # 1642 | # x265 needs a toolchain w/ C++, threads, dynamic library 1643 | # 1644 | 1645 | # 1646 | # Networking 1647 | # 1648 | 1649 | # 1650 | # agent++ needs a toolchain w/ threads, C++, dynamic library 1651 | # 1652 | 1653 | # 1654 | # alljoyn needs a toolchain w/ C++, threads, wchar and dynamic library 1655 | # 1656 | 1657 | # 1658 | # alljoyn-base needs a toolchain w/ C++, threads, wchar, dynamic library 1659 | # 1660 | # BR2_PACKAGE_ALLJOYN_TCL is not set 1661 | # BR2_PACKAGE_ALLJOYN_TCL_BASE is not set 1662 | 1663 | # 1664 | # azmq needs a toolchain w/ C++11, wchar and NTPL 1665 | # 1666 | 1667 | # 1668 | # azure-iot-sdk-c needs a toolchain w/ C++ and NPTL 1669 | # 1670 | 1671 | # 1672 | # batman-adv needs a Linux kernel to be built 1673 | # 1674 | # BR2_PACKAGE_C_ARES is not set 1675 | # BR2_PACKAGE_CGIC is not set 1676 | 1677 | # 1678 | # cppzmq needs a toolchain w/ C++, threads 1679 | # 1680 | 1681 | # 1682 | # curlpp needs a toolchain w/ C++, dynamic library 1683 | # 1684 | 1685 | # 1686 | # czmq needs a toolchain w/ C++, threads 1687 | # 1688 | # BR2_PACKAGE_DAQ is not set 1689 | 1690 | # 1691 | # filemq needs a toolchain w/ C++, threads 1692 | # 1693 | # BR2_PACKAGE_FLICKCURL is not set 1694 | # BR2_PACKAGE_FREERADIUS_CLIENT is not set 1695 | # BR2_PACKAGE_GEOIP is not set 1696 | # BR2_PACKAGE_GLIB_NETWORKING is not set 1697 | # BR2_PACKAGE_GSSDP is not set 1698 | # BR2_PACKAGE_GUPNP is not set 1699 | # BR2_PACKAGE_GUPNP_AV is not set 1700 | # BR2_PACKAGE_GUPNP_DLNA is not set 1701 | 1702 | # 1703 | # ibrcommon needs a toolchain w/ C++, threads 1704 | # 1705 | 1706 | # 1707 | # ibrdtn needs a toolchain w/ C++, threads 1708 | # 1709 | # BR2_PACKAGE_LIBCGI is not set 1710 | 1711 | # 1712 | # libcgicc needs a toolchain w/ C++ 1713 | # 1714 | # BR2_PACKAGE_LIBCOAP is not set 1715 | 1716 | # 1717 | # libcpprestsdk needs a toolchain w/ NPTL, C++, wchar 1718 | # 1719 | # BR2_PACKAGE_LIBCURL is not set 1720 | # BR2_PACKAGE_LIBDNET is not set 1721 | # BR2_PACKAGE_LIBEXOSIP2 is not set 1722 | # BR2_PACKAGE_LIBFCGI is not set 1723 | # BR2_PACKAGE_LIBGSASL is not set 1724 | # BR2_PACKAGE_LIBHTTPPARSER is not set 1725 | # BR2_PACKAGE_LIBIDN is not set 1726 | # BR2_PACKAGE_LIBISCSI is not set 1727 | # BR2_PACKAGE_LIBLDNS is not set 1728 | # BR2_PACKAGE_LIBMAXMINDDB is not set 1729 | # BR2_PACKAGE_LIBMBUS is not set 1730 | 1731 | # 1732 | # libmemcached needs a toolchain w/ C++, threads 1733 | # 1734 | # BR2_PACKAGE_LIBMICROHTTPD is not set 1735 | # BR2_PACKAGE_LIBMINIUPNPC is not set 1736 | # BR2_PACKAGE_LIBMNL is not set 1737 | # BR2_PACKAGE_LIBMODBUS is not set 1738 | # BR2_PACKAGE_LIBNATPMP is not set 1739 | # BR2_PACKAGE_LIBNDP is not set 1740 | # BR2_PACKAGE_LIBNET is not set 1741 | # BR2_PACKAGE_LIBNETFILTER_ACCT is not set 1742 | # BR2_PACKAGE_LIBNETFILTER_CONNTRACK is not set 1743 | # BR2_PACKAGE_LIBNETFILTER_CTHELPER is not set 1744 | # BR2_PACKAGE_LIBNETFILTER_CTTIMEOUT is not set 1745 | # BR2_PACKAGE_LIBNETFILTER_LOG is not set 1746 | # BR2_PACKAGE_LIBNETFILTER_QUEUE is not set 1747 | # BR2_PACKAGE_LIBNFNETLINK is not set 1748 | # BR2_PACKAGE_LIBNFTNL is not set 1749 | # BR2_PACKAGE_LIBNICE is not set 1750 | BR2_PACKAGE_LIBNL=y 1751 | # BR2_PACKAGE_LIBNL_TOOLS is not set 1752 | # BR2_PACKAGE_LIBOAUTH is not set 1753 | # BR2_PACKAGE_LIBOPING is not set 1754 | # BR2_PACKAGE_LIBOSIP2 is not set 1755 | # BR2_PACKAGE_LIBPCAP is not set 1756 | 1757 | # 1758 | # libpjsip needs a toolchain w/ C++, threads 1759 | # 1760 | # BR2_PACKAGE_LIBRSYNC is not set 1761 | # BR2_PACKAGE_LIBSHAIRPLAY is not set 1762 | # BR2_PACKAGE_LIBSHOUT is not set 1763 | # BR2_PACKAGE_LIBSOCKETCAN is not set 1764 | # BR2_PACKAGE_LIBSOUP is not set 1765 | # BR2_PACKAGE_LIBSRTP is not set 1766 | # BR2_PACKAGE_LIBSTROPHE is not set 1767 | BR2_PACKAGE_LIBTIRPC=y 1768 | 1769 | # 1770 | # libtorrent needs a toolchain w/ C++, threads 1771 | # 1772 | # BR2_PACKAGE_LIBUPNP is not set 1773 | # BR2_PACKAGE_LIBUPNP18 is not set 1774 | 1775 | # 1776 | # libupnpp needs a toolchain w/ C++, threads, gcc >= 4.9 1777 | # 1778 | # BR2_PACKAGE_LIBURIPARSER is not set 1779 | # BR2_PACKAGE_LIBVNCSERVER is not set 1780 | # BR2_PACKAGE_LIBWEBSOCK is not set 1781 | # BR2_PACKAGE_LIBWEBSOCKETS is not set 1782 | # BR2_PACKAGE_LKSCTP_TOOLS is not set 1783 | # BR2_PACKAGE_MONGOOSE is not set 1784 | # BR2_PACKAGE_NANOMSG is not set 1785 | # BR2_PACKAGE_NEON is not set 1786 | 1787 | # 1788 | # norm needs a toolchain w/ C++, threads, dynamic library 1789 | # 1790 | # BR2_PACKAGE_NSS_PAM_LDAPD is not set 1791 | 1792 | # 1793 | # omniORB needs a toolchain w/ C++, threads 1794 | # 1795 | # BR2_PACKAGE_OPENLDAP is not set 1796 | 1797 | # 1798 | # openmpi needs a toolchain w/ dynamic library, NPTL, wchar, C++ 1799 | # 1800 | # BR2_PACKAGE_OPENPGM is not set 1801 | 1802 | # 1803 | # openzwave needs udev and a toolchain w/ C++, threads, wchar 1804 | # 1805 | 1806 | # 1807 | # ortp needs a toolchain w/ C++, threads 1808 | # 1809 | # BR2_PACKAGE_PAHO_MQTT_C is not set 1810 | # BR2_PACKAGE_QDECODER is not set 1811 | # BR2_PACKAGE_QPID_PROTON is not set 1812 | # BR2_PACKAGE_RABBITMQ_C is not set 1813 | # BR2_PACKAGE_RTMPDUMP is not set 1814 | # BR2_PACKAGE_SLIRP is not set 1815 | 1816 | # 1817 | # snmp++ needs a toolchain w/ threads, C++, dynamic library 1818 | # 1819 | # BR2_PACKAGE_SOFIA_SIP is not set 1820 | 1821 | # 1822 | # thrift needs a toolchain w/ C++, wchar, threads 1823 | # 1824 | # BR2_PACKAGE_USBREDIR is not set 1825 | 1826 | # 1827 | # zeromq needs a toolchain w/ C++, threads 1828 | # 1829 | 1830 | # 1831 | # zmqpp needs a toolchain w/ C++, threads, gcc >= 4.7 1832 | # 1833 | 1834 | # 1835 | # zyre needs a toolchain w/ C++, threads 1836 | # 1837 | 1838 | # 1839 | # Other 1840 | # 1841 | # BR2_PACKAGE_APR is not set 1842 | # BR2_PACKAGE_APR_UTIL is not set 1843 | 1844 | # 1845 | # armadillo needs a toolchain w/ C++ 1846 | # 1847 | 1848 | # 1849 | # atf needs a toolchain w/ C++ 1850 | # 1851 | 1852 | # 1853 | # bctoolbox needs a toolchain w/ C++, threads 1854 | # 1855 | # BR2_PACKAGE_BDWGC is not set 1856 | 1857 | # 1858 | # boost needs a toolchain w/ C++, threads, wchar 1859 | # 1860 | # BR2_PACKAGE_CLAPACK is not set 1861 | 1862 | # 1863 | # cppcms needs a toolchain w/ C++, NPTL, wchar, dynamic library 1864 | # 1865 | # BR2_PACKAGE_CRACKLIB is not set 1866 | 1867 | # 1868 | # dawgdic needs a toolchain w/ C++, gcc >= 4.6 1869 | # 1870 | # BR2_PACKAGE_DING_LIBS is not set 1871 | 1872 | # 1873 | # eigen needs a toolchain w/ C++ 1874 | # 1875 | # BR2_PACKAGE_ELFUTILS is not set 1876 | # BR2_PACKAGE_FFTW is not set 1877 | 1878 | # 1879 | # flann needs a toolchain w/ C++, dynamic library 1880 | # 1881 | 1882 | # 1883 | # flatbuffers needs a toolchain w/ C++, gcc >= 4.7 1884 | # 1885 | # BR2_PACKAGE_GCONF is not set 1886 | 1887 | # 1888 | # gflags needs a toolchain w/ C++ 1889 | # 1890 | 1891 | # 1892 | # glibmm needs a toolchain w/ C++, wchar, threads, gcc >= 4.9 1893 | # 1894 | 1895 | # 1896 | # glm needs a toolchain w/ C++ 1897 | # 1898 | # BR2_PACKAGE_GMP is not set 1899 | # BR2_PACKAGE_GSL is not set 1900 | 1901 | # 1902 | # gtest needs a toolchain w/ C++, wchar, threads 1903 | # 1904 | BR2_PACKAGE_JEMALLOC_ARCH_SUPPORTS=y 1905 | # BR2_PACKAGE_JEMALLOC is not set 1906 | 1907 | # 1908 | # lapack/blas needs a toolchain w/ fortran 1909 | # 1910 | # BR2_PACKAGE_LIBARGTABLE2 is not set 1911 | BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS=y 1912 | # BR2_PACKAGE_LIBATOMIC_OPS is not set 1913 | # BR2_PACKAGE_LIBB64 is not set 1914 | BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS=y 1915 | # BR2_PACKAGE_LIBBSD is not set 1916 | # BR2_PACKAGE_LIBCAP is not set 1917 | # BR2_PACKAGE_LIBCAP_NG is not set 1918 | 1919 | # 1920 | # libcgroup needs a glibc toolchain w/ C++ 1921 | # 1922 | # BR2_PACKAGE_LIBCROCO is not set 1923 | 1924 | # 1925 | # libcrossguid needs a toolchain w/ C++, gcc >= 4.7 1926 | # 1927 | # BR2_PACKAGE_LIBCSV is not set 1928 | # BR2_PACKAGE_LIBDAEMON is not set 1929 | # BR2_PACKAGE_LIBEE is not set 1930 | # BR2_PACKAGE_LIBEV is not set 1931 | # BR2_PACKAGE_LIBEVDEV is not set 1932 | BR2_PACKAGE_LIBEVENT=y 1933 | # BR2_PACKAGE_LIBFFI is not set 1934 | # BR2_PACKAGE_LIBGEE is not set 1935 | # BR2_PACKAGE_LIBGLIB2 is not set 1936 | # BR2_PACKAGE_LIBGLOB is not set 1937 | 1938 | # 1939 | # libical needs a toolchain w/ C++, dynamic library, wchar 1940 | # 1941 | # BR2_PACKAGE_LIBITE is not set 1942 | 1943 | # 1944 | # liblinear needs a toolchain w/ C++ 1945 | # 1946 | 1947 | # 1948 | # libloki needs a toolchain w/ C++, threads 1949 | # 1950 | # BR2_PACKAGE_LIBNPTH is not set 1951 | BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT=y 1952 | # BR2_PACKAGE_LIBNSPR is not set 1953 | # BR2_PACKAGE_LIBPFM4 is not set 1954 | 1955 | # 1956 | # libplist needs a toolchain w/ C++, threads 1957 | # 1958 | # BR2_PACKAGE_LIBPTHREAD_STUBS is not set 1959 | # BR2_PACKAGE_LIBPTHSEM is not set 1960 | # BR2_PACKAGE_LIBPWQUALITY is not set 1961 | BR2_PACKAGE_LIBSECCOMP_ARCH_SUPPORTS=y 1962 | # BR2_PACKAGE_LIBSECCOMP is not set 1963 | 1964 | # 1965 | # libsigc++ needs a toolchain w/ C++, gcc >= 4.8 1966 | # 1967 | BR2_PACKAGE_LIBSIGSEGV_ARCH_SUPPORTS=y 1968 | # BR2_PACKAGE_LIBSIGSEGV is not set 1969 | 1970 | # 1971 | # libspatialindex needs a toolchain w/ C++ 1972 | # 1973 | # BR2_PACKAGE_LIBTASN1 is not set 1974 | # BR2_PACKAGE_LIBTOMMATH is not set 1975 | # BR2_PACKAGE_LIBTPL is not set 1976 | # BR2_PACKAGE_LIBUBOX is not set 1977 | # BR2_PACKAGE_LIBUCI is not set 1978 | BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS=y 1979 | # BR2_PACKAGE_LIBURCU is not set 1980 | # BR2_PACKAGE_LIBUV is not set 1981 | # BR2_PACKAGE_LINUX_PAM is not set 1982 | # BR2_PACKAGE_LIQUID_DSP is not set 1983 | # BR2_PACKAGE_LTTNG_LIBUST is not set 1984 | # BR2_PACKAGE_MPC is not set 1985 | # BR2_PACKAGE_MPDECIMAL is not set 1986 | # BR2_PACKAGE_MPFR is not set 1987 | # BR2_PACKAGE_MPIR is not set 1988 | 1989 | # 1990 | # msgpack needs a toolchain w/ C++ 1991 | # 1992 | # BR2_PACKAGE_MTDEV2TUIO is not set 1993 | BR2_PACKAGE_OPENBLAS_DEFAULT_TARGET="ARMV8" 1994 | BR2_PACKAGE_OPENBLAS_ARCH_SUPPORTS=y 1995 | # BR2_PACKAGE_OPENBLAS is not set 1996 | # BR2_PACKAGE_ORC is not set 1997 | # BR2_PACKAGE_P11_KIT is not set 1998 | 1999 | # 2000 | # poco needs a toolchain w/ wchar, NPTL, C++, dynamic library 2001 | # 2002 | 2003 | # 2004 | # qhull needs a toolchain w/ C++, dynamic library, gcc >= 4.4 2005 | # 2006 | # BR2_PACKAGE_QLIBC is not set 2007 | 2008 | # 2009 | # shapelib needs a toolchain w/ C++, threads 2010 | # 2011 | # BR2_PACKAGE_SKALIBS is not set 2012 | # BR2_PACKAGE_SPHINXBASE is not set 2013 | # BR2_PACKAGE_TINYCBOR is not set 2014 | 2015 | # 2016 | # Security 2017 | # 2018 | # BR2_PACKAGE_LIBSELINUX is not set 2019 | # BR2_PACKAGE_LIBSEMANAGE is not set 2020 | # BR2_PACKAGE_LIBSEPOL is not set 2021 | # BR2_PACKAGE_SAFECLIB is not set 2022 | 2023 | # 2024 | # Text and terminal handling 2025 | # 2026 | # BR2_PACKAGE_AUGEAS is not set 2027 | 2028 | # 2029 | # enchant needs a toolchain w/ C++, threads, wchar 2030 | # 2031 | 2032 | # 2033 | # fmt needs a toolchain w/ C++, wchar 2034 | # 2035 | 2036 | # 2037 | # icu needs a toolchain w/ C++, wchar, threads, gcc >= 4.8, host gcc >= 4.8 2038 | # 2039 | # BR2_PACKAGE_LIBCLI is not set 2040 | # BR2_PACKAGE_LIBEDIT is not set 2041 | # BR2_PACKAGE_LIBENCA is not set 2042 | BR2_PACKAGE_LIBESTR=y 2043 | # BR2_PACKAGE_LIBFRIBIDI is not set 2044 | # BR2_PACKAGE_LIBUNISTRING is not set 2045 | # BR2_PACKAGE_LINENOISE is not set 2046 | BR2_PACKAGE_NCURSES=y 2047 | # BR2_PACKAGE_NCURSES_WCHAR is not set 2048 | # BR2_PACKAGE_NCURSES_TARGET_PROGS is not set 2049 | # BR2_PACKAGE_NEWT is not set 2050 | # BR2_PACKAGE_PCRE is not set 2051 | # BR2_PACKAGE_PCRE2 is not set 2052 | BR2_PACKAGE_POPT=y 2053 | BR2_PACKAGE_READLINE=y 2054 | # BR2_PACKAGE_SLANG is not set 2055 | 2056 | # 2057 | # tclap needs a toolchain w/ C++ 2058 | # 2059 | # BR2_PACKAGE_USTR is not set 2060 | 2061 | # 2062 | # Mail 2063 | # 2064 | # BR2_PACKAGE_DOVECOT is not set 2065 | # BR2_PACKAGE_EXIM is not set 2066 | # BR2_PACKAGE_FETCHMAIL is not set 2067 | # BR2_PACKAGE_HEIRLOOM_MAILX is not set 2068 | # BR2_PACKAGE_LIBESMTP is not set 2069 | # BR2_PACKAGE_MSMTP is not set 2070 | # BR2_PACKAGE_MUTT is not set 2071 | 2072 | # 2073 | # Miscellaneous 2074 | # 2075 | # BR2_PACKAGE_AESPIPE is not set 2076 | # BR2_PACKAGE_BC is not set 2077 | # BR2_PACKAGE_CLAMAV is not set 2078 | # BR2_PACKAGE_COLLECTD is not set 2079 | 2080 | # 2081 | # domoticz needs lua >= 5.2 and a toolchain w/ C++, NPTL, wchar, dynamic library 2082 | # 2083 | # BR2_PACKAGE_EMPTY is not set 2084 | 2085 | # 2086 | # gnuradio needs a toolchain w/ C++, NPTL, wchar, dynamic library 2087 | # 2088 | # BR2_PACKAGE_GOOGLEFONTDIRECTORY is not set 2089 | 2090 | # 2091 | # gqrx needs a toolchain w/ C++, threads, wchar 2092 | # 2093 | 2094 | # 2095 | # gqrx needs qt5, gnuradio, fftw's single precision 2096 | # 2097 | # BR2_PACKAGE_GSETTINGS_DESKTOP_SCHEMAS is not set 2098 | # BR2_PACKAGE_HAVEGED is not set 2099 | # BR2_PACKAGE_LINUX_SYSCALL_SUPPORT is not set 2100 | # BR2_PACKAGE_MCRYPT is not set 2101 | # BR2_PACKAGE_MOBILE_BROADBAND_PROVIDER_INFO is not set 2102 | # BR2_PACKAGE_PROJ is not set 2103 | BR2_PACKAGE_QEMU_ARCH_SUPPORTS_TARGET=y 2104 | # BR2_PACKAGE_QEMU is not set 2105 | 2106 | # 2107 | # qpdf needs a toolchain w/ C++ 2108 | # 2109 | # BR2_PACKAGE_SHARED_MIME_INFO is not set 2110 | 2111 | # 2112 | # taskd needs a toolchain w/ C++, wchar, dynamic library 2113 | # 2114 | # BR2_PACKAGE_XUTIL_UTIL_MACROS is not set 2115 | 2116 | # 2117 | # Networking applications 2118 | # 2119 | 2120 | # 2121 | # aircrack-ng needs a toolchain w/ threads, C++ 2122 | # 2123 | # BR2_PACKAGE_AOETOOLS is not set 2124 | # BR2_PACKAGE_APACHE is not set 2125 | # BR2_PACKAGE_ARGUS is not set 2126 | # BR2_PACKAGE_ARP_SCAN is not set 2127 | # BR2_PACKAGE_ARPTABLES is not set 2128 | 2129 | # 2130 | # asterisk needs a glibc toolchain w/ C++ 2131 | # 2132 | # BR2_PACKAGE_ATFTP is not set 2133 | # BR2_PACKAGE_AUTOSSH is not set 2134 | # BR2_PACKAGE_AVAHI is not set 2135 | # BR2_PACKAGE_AXEL is not set 2136 | # BR2_PACKAGE_BABELD is not set 2137 | # BR2_PACKAGE_BANDWIDTHD is not set 2138 | # BR2_PACKAGE_BATCTL is not set 2139 | 2140 | # 2141 | # bcusdk needs a toolchain w/ C++ 2142 | # 2143 | # BR2_PACKAGE_BIND is not set 2144 | # BR2_PACKAGE_BLUEZ_UTILS is not set 2145 | # BR2_PACKAGE_BLUEZ5_UTILS is not set 2146 | # BR2_PACKAGE_BMON is not set 2147 | # BR2_PACKAGE_BOA is not set 2148 | 2149 | # 2150 | # boinc needs a toolchain w/ dynamic library, C++, threads 2151 | # 2152 | # BR2_PACKAGE_BRIDGE_UTILS is not set 2153 | # BR2_PACKAGE_BWM_NG is not set 2154 | # BR2_PACKAGE_C_ICAP is not set 2155 | # BR2_PACKAGE_CAN_UTILS is not set 2156 | 2157 | # 2158 | # cannelloni needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.8 2159 | # 2160 | # BR2_PACKAGE_CHRONY is not set 2161 | # BR2_PACKAGE_CIVETWEB is not set 2162 | # BR2_PACKAGE_CONNMAN is not set 2163 | 2164 | # 2165 | # connman-gtk needs libgtk3 and a glibc or uClibc toolchain w/ wchar, threads, resolver, dynamic library 2166 | # 2167 | # BR2_PACKAGE_CONNTRACK_TOOLS is not set 2168 | # BR2_PACKAGE_CRDA is not set 2169 | 2170 | # 2171 | # ctorrent needs a toolchain w/ C++ 2172 | # 2173 | 2174 | # 2175 | # cups needs a toolchain w/ C++, threads 2176 | # 2177 | 2178 | # 2179 | # cups-filters needs a toolchain w/ wchar, C++, threads and dynamic library, gcc >= 4.8 2180 | # 2181 | # BR2_PACKAGE_DANTE is not set 2182 | # BR2_PACKAGE_DARKHTTPD is not set 2183 | # BR2_PACKAGE_DHCP is not set 2184 | BR2_PACKAGE_DHCPCD=y 2185 | # BR2_PACKAGE_DHCPDUMP is not set 2186 | # BR2_PACKAGE_DNSMASQ is not set 2187 | # BR2_PACKAGE_DRBD_UTILS is not set 2188 | # BR2_PACKAGE_DROPBEAR is not set 2189 | # BR2_PACKAGE_EBTABLES is not set 2190 | 2191 | # 2192 | # ejabberd needs erlang, toolchain w/ C++ 2193 | # 2194 | # BR2_PACKAGE_ETHTOOL is not set 2195 | # BR2_PACKAGE_FAIFA is not set 2196 | # BR2_PACKAGE_FASTD is not set 2197 | # BR2_PACKAGE_FCGIWRAP is not set 2198 | # BR2_PACKAGE_FPING is not set 2199 | 2200 | # 2201 | # freeswitch needs a toolchain w/ C++, dynamic library, threads, wchar 2202 | # 2203 | # BR2_PACKAGE_GESFTPSERVER is not set 2204 | # BR2_PACKAGE_GLORYTUN is not set 2205 | 2206 | # 2207 | # gupnp-tools needs libgtk3 2208 | # 2209 | 2210 | # 2211 | # hans needs a toolchain w/ C++ 2212 | # 2213 | # BR2_PACKAGE_HIAWATHA is not set 2214 | # BR2_PACKAGE_HOSTAPD is not set 2215 | # BR2_PACKAGE_HTTPING is not set 2216 | 2217 | # 2218 | # ibrdtn-tools needs a toolchain w/ C++, threads 2219 | # 2220 | 2221 | # 2222 | # ibrdtnd needs a toolchain w/ C++, threads 2223 | # 2224 | # BR2_PACKAGE_IFENSLAVE is not set 2225 | # BR2_PACKAGE_IFPLUGD is not set 2226 | # BR2_PACKAGE_IFTOP is not set 2227 | # BR2_PACKAGE_IFUPDOWN is not set 2228 | BR2_PACKAGE_IFUPDOWN_SCRIPTS=y 2229 | # BR2_PACKAGE_IGD2_FOR_LINUX is not set 2230 | 2231 | # 2232 | # igh-ethercat needs a Linux kernel to be built 2233 | # 2234 | # BR2_PACKAGE_IGMPPROXY is not set 2235 | # BR2_PACKAGE_INADYN is not set 2236 | # BR2_PACKAGE_IODINE is not set 2237 | 2238 | # 2239 | # iperf needs a toolchain w/ C++ 2240 | # 2241 | # BR2_PACKAGE_IPERF3 is not set 2242 | BR2_PACKAGE_IPROUTE2=y 2243 | # BR2_PACKAGE_IPSEC_TOOLS is not set 2244 | # BR2_PACKAGE_IPSET is not set 2245 | # BR2_PACKAGE_IPTABLES is not set 2246 | # BR2_PACKAGE_IPTRAF_NG is not set 2247 | # BR2_PACKAGE_IPUTILS is not set 2248 | # BR2_PACKAGE_IRSSI is not set 2249 | # BR2_PACKAGE_IW is not set 2250 | # BR2_PACKAGE_JANUS_GATEWAY is not set 2251 | # BR2_PACKAGE_KEEPALIVED is not set 2252 | 2253 | # 2254 | # kismet needs a toolchain w/ threads, C++, dynamic library 2255 | # 2256 | # BR2_PACKAGE_KNOCK is not set 2257 | # BR2_PACKAGE_LEAFNODE2 is not set 2258 | # BR2_PACKAGE_LFT is not set 2259 | 2260 | # 2261 | # lftp requires a toolchain w/ C++, wchar 2262 | # 2263 | # BR2_PACKAGE_LIGHTTPD is not set 2264 | 2265 | # 2266 | # linknx needs a toolchain w/ C++ 2267 | # 2268 | # BR2_PACKAGE_LINKS is not set 2269 | 2270 | # 2271 | # linphone needs a toolchain w/ threads, C++ 2272 | # 2273 | # BR2_PACKAGE_LINUX_ZIGBEE is not set 2274 | # BR2_PACKAGE_LINUXPTP is not set 2275 | # BR2_PACKAGE_LLDPD is not set 2276 | # BR2_PACKAGE_LRZSZ is not set 2277 | # BR2_PACKAGE_LYNX is not set 2278 | # BR2_PACKAGE_MACCHANGER is not set 2279 | # BR2_PACKAGE_MEMCACHED is not set 2280 | # BR2_PACKAGE_MII_DIAG is not set 2281 | # BR2_PACKAGE_MINIDLNA is not set 2282 | # BR2_PACKAGE_MINISSDPD is not set 2283 | # BR2_PACKAGE_MJPG_STREAMER is not set 2284 | # BR2_PACKAGE_MODEM_MANAGER is not set 2285 | BR2_PACKAGE_MONGREL2_LIBC_SUPPORTS=y 2286 | 2287 | # 2288 | # mongrel2 needs a uClibc or glibc toolchain w/ C++, threads, dynamic library 2289 | # 2290 | # BR2_PACKAGE_MONKEY is not set 2291 | # BR2_PACKAGE_MOSQUITTO is not set 2292 | # BR2_PACKAGE_MROUTED is not set 2293 | # BR2_PACKAGE_MTR is not set 2294 | # BR2_PACKAGE_NBD is not set 2295 | # BR2_PACKAGE_NCFTP is not set 2296 | # BR2_PACKAGE_NDISC6 is not set 2297 | # BR2_PACKAGE_NETATALK is not set 2298 | # BR2_PACKAGE_NETCAT is not set 2299 | # BR2_PACKAGE_NETCAT_OPENBSD is not set 2300 | # BR2_PACKAGE_NETPLUG is not set 2301 | # BR2_PACKAGE_NETSNMP is not set 2302 | # BR2_PACKAGE_NETSTAT_NAT is not set 2303 | # BR2_PACKAGE_NET_TOOLS is not set 2304 | # BR2_PACKAGE_NETWORK_MANAGER is not set 2305 | # BR2_PACKAGE_NFACCT is not set 2306 | # BR2_PACKAGE_NFTABLES is not set 2307 | # BR2_PACKAGE_NGINX is not set 2308 | # BR2_PACKAGE_NGIRCD is not set 2309 | # BR2_PACKAGE_NGREP is not set 2310 | 2311 | # 2312 | # nload needs a toolchain w/ C++ 2313 | # 2314 | 2315 | # 2316 | # nmap needs a toolchain w/ C++, threads 2317 | # 2318 | # BR2_PACKAGE_NOIP is not set 2319 | BR2_PACKAGE_NTP=y 2320 | # BR2_PACKAGE_NTP_SNTP is not set 2321 | # BR2_PACKAGE_NTP_NTP_KEYGEN is not set 2322 | # BR2_PACKAGE_NTP_NTP_SHM_CLK is not set 2323 | BR2_PACKAGE_NTP_NTPD=y 2324 | # BR2_PACKAGE_NTP_NTPD_ATOM_PPS is not set 2325 | # BR2_PACKAGE_NTP_NTPDATE is not set 2326 | # BR2_PACKAGE_NTP_NTPDC is not set 2327 | # BR2_PACKAGE_NTP_NTPQ is not set 2328 | # BR2_PACKAGE_NTP_NTPSNMPD is not set 2329 | # BR2_PACKAGE_NTP_NTPTIME is not set 2330 | # BR2_PACKAGE_NTP_TICKADJ is not set 2331 | # BR2_PACKAGE_NUTTCP is not set 2332 | # BR2_PACKAGE_ODHCP6C is not set 2333 | # BR2_PACKAGE_ODHCPLOC is not set 2334 | # BR2_PACKAGE_OLSR is not set 2335 | # BR2_PACKAGE_OPEN_LLDP is not set 2336 | # BR2_PACKAGE_OPEN_PLC_UTILS is not set 2337 | # BR2_PACKAGE_OPENOBEX is not set 2338 | BR2_PACKAGE_OPENSSH=y 2339 | # BR2_PACKAGE_OPENSWAN is not set 2340 | # BR2_PACKAGE_OPENVPN is not set 2341 | # BR2_PACKAGE_P910ND is not set 2342 | # BR2_PACKAGE_PHIDGETWEBSERVICE is not set 2343 | # BR2_PACKAGE_PHYTOOL is not set 2344 | # BR2_PACKAGE_PIMD is not set 2345 | # BR2_PACKAGE_POUND is not set 2346 | # BR2_PACKAGE_PPPD is not set 2347 | # BR2_PACKAGE_PPTP_LINUX is not set 2348 | # BR2_PACKAGE_PRIVOXY is not set 2349 | # BR2_PACKAGE_PROFTPD is not set 2350 | 2351 | # 2352 | # prosody needs the lua interpreter 2353 | # 2354 | # BR2_PACKAGE_PROXYCHAINS_NG is not set 2355 | # BR2_PACKAGE_PTPD is not set 2356 | # BR2_PACKAGE_PTPD2 is not set 2357 | # BR2_PACKAGE_PURE_FTPD is not set 2358 | # BR2_PACKAGE_PUTTY is not set 2359 | # BR2_PACKAGE_QUAGGA is not set 2360 | 2361 | # 2362 | # rabbitmq-server needs erlang 2363 | # 2364 | # BR2_PACKAGE_RADVD is not set 2365 | # BR2_PACKAGE_RP_PPPOE is not set 2366 | # BR2_PACKAGE_RPCBIND is not set 2367 | # BR2_PACKAGE_RSH_REDONE is not set 2368 | BR2_PACKAGE_RSYNC=y 2369 | 2370 | # 2371 | # rtorrent needs a toolchain w/ C++, threads, wchar 2372 | # 2373 | # BR2_PACKAGE_RTPTOOLS is not set 2374 | # BR2_PACKAGE_RYGEL is not set 2375 | # BR2_PACKAGE_S6_DNS is not set 2376 | # BR2_PACKAGE_S6_NETWORKING is not set 2377 | # BR2_PACKAGE_SAMBA4 is not set 2378 | 2379 | # 2380 | # sconeserver needs a toolchain with dynamic library, C++, NPTL 2381 | # 2382 | # BR2_PACKAGE_SER2NET is not set 2383 | 2384 | # 2385 | # shairport-sync needs a toolchain w/ C++, NPTL 2386 | # 2387 | # BR2_PACKAGE_SHELLINABOX is not set 2388 | # BR2_PACKAGE_SMCROUTE is not set 2389 | # BR2_PACKAGE_SNGREP is not set 2390 | # BR2_PACKAGE_SOCAT is not set 2391 | # BR2_PACKAGE_SOCKETCAND is not set 2392 | # BR2_PACKAGE_SOFTETHER is not set 2393 | # BR2_PACKAGE_SPAWN_FCGI is not set 2394 | # BR2_PACKAGE_SPICE_PROTOCOL is not set 2395 | 2396 | # 2397 | # squid needs a toolchain w/ C++ 2398 | # 2399 | # BR2_PACKAGE_SSHPASS is not set 2400 | 2401 | # 2402 | # sslh needs a toolchain w/ C++ 2403 | # 2404 | # BR2_PACKAGE_STRONGSWAN is not set 2405 | # BR2_PACKAGE_STUNNEL is not set 2406 | # BR2_PACKAGE_TCPDUMP is not set 2407 | # BR2_PACKAGE_TCPING is not set 2408 | # BR2_PACKAGE_TCPREPLAY is not set 2409 | # BR2_PACKAGE_TFTPD is not set 2410 | # BR2_PACKAGE_THTTPD is not set 2411 | # BR2_PACKAGE_TINC is not set 2412 | # BR2_PACKAGE_TINYHTTPD is not set 2413 | # BR2_PACKAGE_TN5250 is not set 2414 | # BR2_PACKAGE_TOR is not set 2415 | # BR2_PACKAGE_TRACEROUTE is not set 2416 | # BR2_PACKAGE_TRANSMISSION is not set 2417 | # BR2_PACKAGE_TUNCTL is not set 2418 | # BR2_PACKAGE_TVHEADEND is not set 2419 | # BR2_PACKAGE_UDPCAST is not set 2420 | # BR2_PACKAGE_UHTTPD is not set 2421 | # BR2_PACKAGE_ULOGD is not set 2422 | # BR2_PACKAGE_USHARE is not set 2423 | # BR2_PACKAGE_USSP_PUSH is not set 2424 | # BR2_PACKAGE_VDE2 is not set 2425 | 2426 | # 2427 | # vdr needs a glibc or uClibc toolchain w/ C++, dynamic library, NPTL, wchar, headers >= 3.9 2428 | # 2429 | # BR2_PACKAGE_VNSTAT is not set 2430 | # BR2_PACKAGE_VPNC is not set 2431 | # BR2_PACKAGE_VSFTPD is not set 2432 | # BR2_PACKAGE_VTUN is not set 2433 | # BR2_PACKAGE_WAVEMON is not set 2434 | # BR2_PACKAGE_WGET is not set 2435 | # BR2_PACKAGE_WHOIS is not set 2436 | # BR2_PACKAGE_WIREGUARD is not set 2437 | # BR2_PACKAGE_WIRELESS_REGDB is not set 2438 | BR2_PACKAGE_WIRELESS_TOOLS=y 2439 | # BR2_PACKAGE_WIRELESS_TOOLS_LIB is not set 2440 | # BR2_PACKAGE_WIRESHARK is not set 2441 | BR2_PACKAGE_WPA_SUPPLICANT=y 2442 | BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y 2443 | # BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT is not set 2444 | # BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN is not set 2445 | # BR2_PACKAGE_WPA_SUPPLICANT_EAP is not set 2446 | # BR2_PACKAGE_WPA_SUPPLICANT_HOTSPOT is not set 2447 | # BR2_PACKAGE_WPA_SUPPLICANT_DEBUG_SYSLOG is not set 2448 | # BR2_PACKAGE_WPA_SUPPLICANT_WPS is not set 2449 | BR2_PACKAGE_WPA_SUPPLICANT_CLI=y 2450 | # BR2_PACKAGE_WPA_SUPPLICANT_WPA_CLIENT_SO is not set 2451 | BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y 2452 | # BR2_PACKAGE_WPAN_TOOLS is not set 2453 | # BR2_PACKAGE_XINETD is not set 2454 | # BR2_PACKAGE_XL2TP is not set 2455 | 2456 | # 2457 | # xtables-addons needs a Linux kernel to be built 2458 | # 2459 | 2460 | # 2461 | # znc needs a toolchain w/ C++, dynamic library, gcc >= 4.8, threads 2462 | # 2463 | 2464 | # 2465 | # Package managers 2466 | # 2467 | 2468 | # 2469 | # ------------------------------------------------------- 2470 | # 2471 | 2472 | # 2473 | # Please note: 2474 | # 2475 | 2476 | # 2477 | # - Buildroot does *not* generate binary packages, 2478 | # 2479 | 2480 | # 2481 | # - Buildroot does *not* install any package database. 2482 | # 2483 | 2484 | # 2485 | # * 2486 | # 2487 | 2488 | # 2489 | # It is up to you to provide those by yourself if you 2490 | # 2491 | 2492 | # 2493 | # want to use any of those package managers. 2494 | # 2495 | 2496 | # 2497 | # * 2498 | # 2499 | 2500 | # 2501 | # See the manual: 2502 | # 2503 | 2504 | # 2505 | # http://buildroot.org/manual.html#faq-no-binary-packages 2506 | # 2507 | 2508 | # 2509 | # ------------------------------------------------------- 2510 | # 2511 | # BR2_PACKAGE_OPKG is not set 2512 | # BR2_PACKAGE_RPM is not set 2513 | 2514 | # 2515 | # Real-Time 2516 | # 2517 | 2518 | # 2519 | # Security 2520 | # 2521 | # BR2_PACKAGE_CHECKPOLICY is not set 2522 | # BR2_PACKAGE_PAXTEST is not set 2523 | # BR2_PACKAGE_POLICYCOREUTILS is not set 2524 | # BR2_PACKAGE_REFPOLICY is not set 2525 | # BR2_PACKAGE_RESTORECOND is not set 2526 | # BR2_PACKAGE_SELINUX_PYTHON is not set 2527 | # BR2_PACKAGE_SEMODULE_UTILS is not set 2528 | # BR2_PACKAGE_SETOOLS is not set 2529 | 2530 | # 2531 | # setools needs a glibc toolchain w/ threads, C++, wchar, dynamic library 2532 | # 2533 | 2534 | # 2535 | # Shell and utilities 2536 | # 2537 | 2538 | # 2539 | # Shells 2540 | # 2541 | BR2_PACKAGE_BASH=y 2542 | # BR2_PACKAGE_DASH is not set 2543 | # BR2_PACKAGE_MKSH is not set 2544 | # BR2_PACKAGE_ZSH is not set 2545 | 2546 | # 2547 | # Utilities 2548 | # 2549 | # BR2_PACKAGE_AT is not set 2550 | # BR2_PACKAGE_CCRYPT is not set 2551 | # BR2_PACKAGE_DIALOG is not set 2552 | # BR2_PACKAGE_DTACH is not set 2553 | # BR2_PACKAGE_EASY_RSA is not set 2554 | # BR2_PACKAGE_FILE is not set 2555 | # BR2_PACKAGE_GNUPG is not set 2556 | # BR2_PACKAGE_GNUPG2 is not set 2557 | # BR2_PACKAGE_INOTIFY_TOOLS is not set 2558 | # BR2_PACKAGE_LOCKFILE_PROGS is not set 2559 | BR2_PACKAGE_LOGROTATE=y 2560 | # BR2_PACKAGE_LOGSURFER is not set 2561 | # BR2_PACKAGE_PDMENU is not set 2562 | # BR2_PACKAGE_PINENTRY is not set 2563 | # BR2_PACKAGE_RANGER is not set 2564 | # BR2_PACKAGE_SCREEN is not set 2565 | BR2_PACKAGE_SUDO=y 2566 | # BR2_PACKAGE_TIME is not set 2567 | # BR2_PACKAGE_TMUX is not set 2568 | # BR2_PACKAGE_WHICH is not set 2569 | # BR2_PACKAGE_XMLSTARLET is not set 2570 | # BR2_PACKAGE_XXHASH is not set 2571 | 2572 | # 2573 | # System tools 2574 | # 2575 | # BR2_PACKAGE_ACL is not set 2576 | # BR2_PACKAGE_ANDROID_TOOLS is not set 2577 | # BR2_PACKAGE_ATOP is not set 2578 | # BR2_PACKAGE_ATTR is not set 2579 | BR2_PACKAGE_AUDIT_ARCH_SUPPORTS=y 2580 | # BR2_PACKAGE_AUDIT is not set 2581 | # BR2_PACKAGE_BOOTUTILS is not set 2582 | # BR2_PACKAGE_CGROUPFS_MOUNT is not set 2583 | 2584 | # 2585 | # circus needs Python and a toolchain w/ C++, threads 2586 | # 2587 | # BR2_PACKAGE_COREUTILS is not set 2588 | # BR2_PACKAGE_CPULOAD is not set 2589 | # BR2_PACKAGE_DAEMON is not set 2590 | # BR2_PACKAGE_DC3DD is not set 2591 | # BR2_PACKAGE_DCRON is not set 2592 | 2593 | # 2594 | # ddrescue needs a toolchain w/ C++ 2595 | # 2596 | # BR2_PACKAGE_DEBIANUTILS is not set 2597 | # BR2_PACKAGE_EFIBOOTMGR is not set 2598 | BR2_PACKAGE_EFIVAR_ARCH_SUPPORTS=y 2599 | # BR2_PACKAGE_EFIVAR is not set 2600 | 2601 | # 2602 | # emlog needs a Linux kernel to be built 2603 | # 2604 | # BR2_PACKAGE_FTOP is not set 2605 | # BR2_PACKAGE_GETENT is not set 2606 | # BR2_PACKAGE_HTOP is not set 2607 | 2608 | # 2609 | # iotop depends on python or python3 2610 | # 2611 | # BR2_PACKAGE_IPRUTILS is not set 2612 | # BR2_PACKAGE_IRQBALANCE is not set 2613 | # BR2_PACKAGE_KEYUTILS is not set 2614 | BR2_PACKAGE_KMOD=y 2615 | # BR2_PACKAGE_KMOD_TOOLS is not set 2616 | # BR2_PACKAGE_KVMTOOL is not set 2617 | # BR2_PACKAGE_LIBOSTREE is not set 2618 | # BR2_PACKAGE_LXC is not set 2619 | # BR2_PACKAGE_MONIT is not set 2620 | # BR2_PACKAGE_NCDU is not set 2621 | # BR2_PACKAGE_NUMACTL is not set 2622 | 2623 | # 2624 | # nut needs a toolchain w/ C++ 2625 | # 2626 | # BR2_PACKAGE_POLKIT is not set 2627 | # BR2_PACKAGE_PROCPS_NG is not set 2628 | # BR2_PACKAGE_PROCRANK_LINUX is not set 2629 | # BR2_PACKAGE_PSMISC is not set 2630 | # BR2_PACKAGE_PWGEN is not set 2631 | # BR2_PACKAGE_QUOTA is not set 2632 | # BR2_PACKAGE_RAUC is not set 2633 | BR2_PACKAGE_RSYSLOG=y 2634 | # BR2_PACKAGE_S6 is not set 2635 | # BR2_PACKAGE_S6_LINUX_INIT is not set 2636 | # BR2_PACKAGE_S6_LINUX_UTILS is not set 2637 | # BR2_PACKAGE_S6_PORTABLE_UTILS is not set 2638 | # BR2_PACKAGE_S6_RC is not set 2639 | # BR2_PACKAGE_SCRUB is not set 2640 | # BR2_PACKAGE_SCRYPT is not set 2641 | # BR2_PACKAGE_SMACK is not set 2642 | # BR2_PACKAGE_START_STOP_DAEMON is not set 2643 | 2644 | # 2645 | # supervisor needs the python interpreter 2646 | # 2647 | # BR2_PACKAGE_SWUPDATE is not set 2648 | # BR2_PACKAGE_SYSKLOGD is not set 2649 | # BR2_PACKAGE_SYSLOG_NG is not set 2650 | BR2_PACKAGE_SYSTEMD_ARCH_SUPPORTS=y 2651 | # BR2_PACKAGE_TAR is not set 2652 | # BR2_PACKAGE_TPM_TOOLS is not set 2653 | # BR2_PACKAGE_UNSCD is not set 2654 | BR2_PACKAGE_UTIL_LINUX=y 2655 | BR2_PACKAGE_UTIL_LINUX_LIBBLKID=y 2656 | BR2_PACKAGE_UTIL_LINUX_LIBFDISK=y 2657 | BR2_PACKAGE_UTIL_LINUX_LIBMOUNT=y 2658 | BR2_PACKAGE_UTIL_LINUX_LIBSMARTCOLS=y 2659 | BR2_PACKAGE_UTIL_LINUX_LIBUUID=y 2660 | BR2_PACKAGE_UTIL_LINUX_BINARIES=y 2661 | BR2_PACKAGE_UTIL_LINUX_AGETTY=y 2662 | # BR2_PACKAGE_UTIL_LINUX_BFS is not set 2663 | # BR2_PACKAGE_UTIL_LINUX_CAL is not set 2664 | # BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH is not set 2665 | # BR2_PACKAGE_UTIL_LINUX_CHMEM is not set 2666 | # BR2_PACKAGE_UTIL_LINUX_CRAMFS is not set 2667 | # BR2_PACKAGE_UTIL_LINUX_EJECT is not set 2668 | # BR2_PACKAGE_UTIL_LINUX_FALLOCATE is not set 2669 | # BR2_PACKAGE_UTIL_LINUX_FDFORMAT is not set 2670 | # BR2_PACKAGE_UTIL_LINUX_FSCK is not set 2671 | # BR2_PACKAGE_UTIL_LINUX_HWCLOCK is not set 2672 | # BR2_PACKAGE_UTIL_LINUX_IPCRM is not set 2673 | # BR2_PACKAGE_UTIL_LINUX_IPCS is not set 2674 | # BR2_PACKAGE_UTIL_LINUX_KILL is not set 2675 | # BR2_PACKAGE_UTIL_LINUX_LAST is not set 2676 | # BR2_PACKAGE_UTIL_LINUX_LINE is not set 2677 | # BR2_PACKAGE_UTIL_LINUX_LOGGER is not set 2678 | # BR2_PACKAGE_UTIL_LINUX_LOGIN is not set 2679 | # BR2_PACKAGE_UTIL_LINUX_LOSETUP is not set 2680 | # BR2_PACKAGE_UTIL_LINUX_LSLOGINS is not set 2681 | # BR2_PACKAGE_UTIL_LINUX_LSMEM is not set 2682 | # BR2_PACKAGE_UTIL_LINUX_MESG is not set 2683 | # BR2_PACKAGE_UTIL_LINUX_MINIX is not set 2684 | # BR2_PACKAGE_UTIL_LINUX_MORE is not set 2685 | # BR2_PACKAGE_UTIL_LINUX_MOUNT is not set 2686 | # BR2_PACKAGE_UTIL_LINUX_MOUNTPOINT is not set 2687 | # BR2_PACKAGE_UTIL_LINUX_NEWGRP is not set 2688 | # BR2_PACKAGE_UTIL_LINUX_NOLOGIN is not set 2689 | # BR2_PACKAGE_UTIL_LINUX_NSENTER is not set 2690 | # BR2_PACKAGE_UTIL_LINUX_PG is not set 2691 | BR2_PACKAGE_UTIL_LINUX_PARTX=y 2692 | # BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT is not set 2693 | # BR2_PACKAGE_UTIL_LINUX_RAW is not set 2694 | # BR2_PACKAGE_UTIL_LINUX_RENAME is not set 2695 | # BR2_PACKAGE_UTIL_LINUX_RFKILL is not set 2696 | # BR2_PACKAGE_UTIL_LINUX_RUNUSER is not set 2697 | # BR2_PACKAGE_UTIL_LINUX_SCHEDUTILS is not set 2698 | # BR2_PACKAGE_UTIL_LINUX_SETPRIV is not set 2699 | # BR2_PACKAGE_UTIL_LINUX_SETTERM is not set 2700 | # BR2_PACKAGE_UTIL_LINUX_SU is not set 2701 | # BR2_PACKAGE_UTIL_LINUX_SULOGIN is not set 2702 | # BR2_PACKAGE_UTIL_LINUX_SWITCH_ROOT is not set 2703 | # BR2_PACKAGE_UTIL_LINUX_TUNELP is not set 2704 | # BR2_PACKAGE_UTIL_LINUX_UL is not set 2705 | # BR2_PACKAGE_UTIL_LINUX_UNSHARE is not set 2706 | # BR2_PACKAGE_UTIL_LINUX_UTMPDUMP is not set 2707 | # BR2_PACKAGE_UTIL_LINUX_UUIDD is not set 2708 | # BR2_PACKAGE_UTIL_LINUX_VIPW is not set 2709 | # BR2_PACKAGE_UTIL_LINUX_WALL is not set 2710 | # BR2_PACKAGE_UTIL_LINUX_WDCTL is not set 2711 | # BR2_PACKAGE_UTIL_LINUX_WRITE is not set 2712 | # BR2_PACKAGE_UTIL_LINUX_ZRAMCTL is not set 2713 | # BR2_PACKAGE_XEN is not set 2714 | BR2_PACKAGE_XVISOR_ARCH_SUPPORTS=y 2715 | # BR2_PACKAGE_XVISOR is not set 2716 | 2717 | # 2718 | # Text editors and viewers 2719 | # 2720 | # BR2_PACKAGE_ED is not set 2721 | # BR2_PACKAGE_JOE is not set 2722 | # BR2_PACKAGE_LESS is not set 2723 | # BR2_PACKAGE_MC is not set 2724 | # BR2_PACKAGE_NANO is not set 2725 | # BR2_PACKAGE_UEMACS is not set 2726 | # BR2_PACKAGE_VIM is not set 2727 | 2728 | # 2729 | # Filesystem images 2730 | # 2731 | # BR2_TARGET_ROOTFS_AXFS is not set 2732 | # BR2_TARGET_ROOTFS_CLOOP is not set 2733 | # BR2_TARGET_ROOTFS_CPIO is not set 2734 | # BR2_TARGET_ROOTFS_CRAMFS is not set 2735 | # BR2_TARGET_ROOTFS_EXT2 is not set 2736 | 2737 | # 2738 | # initramfs needs a Linux kernel to be built 2739 | # 2740 | # BR2_TARGET_ROOTFS_JFFS2 is not set 2741 | # BR2_TARGET_ROOTFS_ROMFS is not set 2742 | # BR2_TARGET_ROOTFS_SQUASHFS is not set 2743 | BR2_TARGET_ROOTFS_TAR=y 2744 | BR2_TARGET_ROOTFS_TAR_NONE=y 2745 | # BR2_TARGET_ROOTFS_TAR_GZIP is not set 2746 | # BR2_TARGET_ROOTFS_TAR_BZIP2 is not set 2747 | # BR2_TARGET_ROOTFS_TAR_LZ4 is not set 2748 | # BR2_TARGET_ROOTFS_TAR_LZMA is not set 2749 | # BR2_TARGET_ROOTFS_TAR_LZO is not set 2750 | # BR2_TARGET_ROOTFS_TAR_XZ is not set 2751 | BR2_TARGET_ROOTFS_TAR_OPTIONS="" 2752 | # BR2_TARGET_ROOTFS_UBI is not set 2753 | # BR2_TARGET_ROOTFS_UBIFS is not set 2754 | # BR2_TARGET_ROOTFS_YAFFS2 is not set 2755 | 2756 | # 2757 | # Bootloaders 2758 | # 2759 | # BR2_TARGET_BAREBOX is not set 2760 | # BR2_TARGET_BINARIES_MARVELL is not set 2761 | 2762 | # 2763 | # boot-wrapper-aarch64 needs a Linux kernel to be built 2764 | # 2765 | # BR2_TARGET_MV_DDR_MARVELL is not set 2766 | # BR2_TARGET_UBOOT is not set 2767 | # BR2_TARGET_VEXPRESS_FIRMWARE is not set 2768 | 2769 | # 2770 | # Host utilities 2771 | # 2772 | # BR2_PACKAGE_HOST_AESPIPE is not set 2773 | # BR2_PACKAGE_HOST_ANDROID_TOOLS is not set 2774 | # BR2_PACKAGE_HOST_CHECKPOLICY is not set 2775 | # BR2_PACKAGE_HOST_CMAKE is not set 2776 | # BR2_PACKAGE_HOST_CRAMFS is not set 2777 | # BR2_PACKAGE_HOST_CRYPTSETUP is not set 2778 | # BR2_PACKAGE_HOST_DFU_UTIL is not set 2779 | # BR2_PACKAGE_HOST_DOS2UNIX is not set 2780 | # BR2_PACKAGE_HOST_DOSFSTOOLS is not set 2781 | # BR2_PACKAGE_HOST_DTC is not set 2782 | # BR2_PACKAGE_HOST_E2FSPROGS is not set 2783 | # BR2_PACKAGE_HOST_E2TOOLS is not set 2784 | # BR2_PACKAGE_HOST_FAKETIME is not set 2785 | # BR2_PACKAGE_HOST_FWUP is not set 2786 | # BR2_PACKAGE_HOST_GENEXT2FS is not set 2787 | # BR2_PACKAGE_HOST_GENIMAGE is not set 2788 | # BR2_PACKAGE_HOST_GENPART is not set 2789 | # BR2_PACKAGE_HOST_GNUPG is not set 2790 | BR2_PACKAGE_HOST_GOOGLE_BREAKPAD_ARCH_SUPPORTS=y 2791 | # BR2_PACKAGE_HOST_GPTFDISK is not set 2792 | # BR2_PACKAGE_HOST_JQ is not set 2793 | # BR2_PACKAGE_HOST_JSMIN is not set 2794 | # BR2_PACKAGE_HOST_LPC3250LOADER is not set 2795 | # BR2_PACKAGE_HOST_LTTNG_BABELTRACE is not set 2796 | # BR2_PACKAGE_HOST_MKPASSWD is not set 2797 | # BR2_PACKAGE_HOST_MTD is not set 2798 | # BR2_PACKAGE_HOST_MTOOLS is not set 2799 | # BR2_PACKAGE_HOST_OPENOCD is not set 2800 | # BR2_PACKAGE_HOST_OPKG_UTILS is not set 2801 | # BR2_PACKAGE_HOST_PARTED is not set 2802 | BR2_PACKAGE_HOST_PATCHELF=y 2803 | # BR2_PACKAGE_HOST_PKGCONF is not set 2804 | # BR2_PACKAGE_HOST_PWGEN is not set 2805 | # BR2_PACKAGE_HOST_PYTHON_LXML is not set 2806 | # BR2_PACKAGE_HOST_PYTHON_SIX is not set 2807 | BR2_PACKAGE_HOST_QEMU_ARCH_SUPPORTS=y 2808 | BR2_PACKAGE_HOST_QEMU_SYSTEM_ARCH_SUPPORTS=y 2809 | BR2_PACKAGE_HOST_QEMU_USER_ARCH_SUPPORTS=y 2810 | # BR2_PACKAGE_HOST_QEMU is not set 2811 | # BR2_PACKAGE_HOST_RAUC is not set 2812 | BR2_PACKAGE_HOST_RUSTC_ARCH="aarch64" 2813 | # BR2_PACKAGE_HOST_SQUASHFS is not set 2814 | # BR2_PACKAGE_HOST_UBOOT_TOOLS is not set 2815 | # BR2_PACKAGE_HOST_UTIL_LINUX is not set 2816 | # BR2_PACKAGE_HOST_VBOOT_UTILS is not set 2817 | # BR2_PACKAGE_HOST_XORRISO is not set 2818 | # BR2_PACKAGE_HOST_ZIP is not set 2819 | 2820 | # 2821 | # Legacy config options 2822 | # 2823 | 2824 | # 2825 | # Legacy options removed in 2018.02 2826 | # 2827 | # BR2_PACKAGE_TRANSMISSION_REMOTE is not set 2828 | # BR2_KERNEL_HEADERS_3_4 is not set 2829 | # BR2_KERNEL_HEADERS_3_10 is not set 2830 | # BR2_KERNEL_HEADERS_3_12 is not set 2831 | # BR2_BINUTILS_VERSION_2_27_X is not set 2832 | # BR2_PACKAGE_EEPROG is not set 2833 | # BR2_PACKAGE_GNUPG2_GPGV2 is not set 2834 | # BR2_PACKAGE_IMX_GPU_VIV_APITRACE is not set 2835 | # BR2_PACKAGE_IMX_GPU_VIV_G2D is not set 2836 | 2837 | # 2838 | # Legacy options removed in 2017.11 2839 | # 2840 | # BR2_PACKAGE_RFKILL is not set 2841 | # BR2_PACKAGE_UTIL_LINUX_RESET is not set 2842 | # BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW is not set 2843 | # BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND is not set 2844 | # BR2_PACKAGE_SEPOLGEN is not set 2845 | # BR2_PACKAGE_OPENOBEX_BLUEZ is not set 2846 | # BR2_PACKAGE_OPENOBEX_LIBUSB is not set 2847 | # BR2_PACKAGE_OPENOBEX_APPS is not set 2848 | # BR2_PACKAGE_OPENOBEX_SYSLOG is not set 2849 | # BR2_PACKAGE_OPENOBEX_DUMP is not set 2850 | # BR2_PACKAGE_AICCU is not set 2851 | # BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS is not set 2852 | 2853 | # 2854 | # Legacy options removed in 2017.08 2855 | # 2856 | # BR2_TARGET_GRUB is not set 2857 | # BR2_PACKAGE_SIMICSFS is not set 2858 | # BR2_BINUTILS_VERSION_2_26_X is not set 2859 | BR2_XTENSA_OVERLAY_DIR="" 2860 | BR2_XTENSA_CUSTOM_NAME="" 2861 | # BR2_PACKAGE_HOST_MKE2IMG is not set 2862 | BR2_TARGET_ROOTFS_EXT2_BLOCKS=0 2863 | BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES=0 2864 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE is not set 2865 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC is not set 2866 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP is not set 2867 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE is not set 2868 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE is not set 2869 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX is not set 2870 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT is not set 2871 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI is not set 2872 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA is not set 2873 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE is not set 2874 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK is not set 2875 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL is not set 2876 | # BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD is not set 2877 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC is not set 2878 | # BR2_STRIP_none is not set 2879 | # BR2_PACKAGE_BEECRYPT_CPP is not set 2880 | # BR2_PACKAGE_SPICE_CLIENT is not set 2881 | # BR2_PACKAGE_SPICE_GUI is not set 2882 | # BR2_PACKAGE_SPICE_TUNNEL is not set 2883 | # BR2_PACKAGE_INPUT_TOOLS is not set 2884 | # BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH is not set 2885 | # BR2_PACKAGE_INPUT_TOOLS_JSCAL is not set 2886 | # BR2_PACKAGE_INPUT_TOOLS_JSTEST is not set 2887 | # BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH is not set 2888 | # BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86 is not set 2889 | # BR2_GCC_VERSION_4_8_X is not set 2890 | 2891 | # 2892 | # Legacy options removed in 2017.05 2893 | # 2894 | # BR2_PACKAGE_SUNXI_MALI_R2P4 is not set 2895 | # BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT is not set 2896 | # BR2_PACKAGE_NODEJS_MODULES_EXPRESS is not set 2897 | # BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL is not set 2898 | # BR2_PACKAGE_OPENOCD_FT2XXX is not set 2899 | # BR2_PACKAGE_KODI_RTMPDUMP is not set 2900 | # BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN is not set 2901 | # BR2_PACKAGE_PORTMAP is not set 2902 | # BR2_BINUTILS_VERSION_2_25_X is not set 2903 | # BR2_TOOLCHAIN_BUILDROOT_INET_RPC is not set 2904 | BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS=0 2905 | # BR2_PACKAGE_SYSTEMD_KDBUS is not set 2906 | # BR2_PACKAGE_POLARSSL is not set 2907 | # BR2_NBD_CLIENT is not set 2908 | # BR2_NBD_SERVER is not set 2909 | # BR2_PACKAGE_GMOCK is not set 2910 | # BR2_KERNEL_HEADERS_4_8 is not set 2911 | # BR2_KERNEL_HEADERS_3_18 is not set 2912 | # BR2_GLIBC_VERSION_2_22 is not set 2913 | 2914 | # 2915 | # Legacy options removed in 2017.02 2916 | # 2917 | # BR2_PACKAGE_PERL_DB_FILE is not set 2918 | # BR2_KERNEL_HEADERS_4_7 is not set 2919 | # BR2_KERNEL_HEADERS_4_6 is not set 2920 | # BR2_KERNEL_HEADERS_4_5 is not set 2921 | # BR2_KERNEL_HEADERS_3_14 is not set 2922 | # BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS is not set 2923 | # BR2_UCLIBC_INSTALL_TEST_SUITE is not set 2924 | # BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX is not set 2925 | # BR2_PACKAGE_MAKEDEVS is not set 2926 | # BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A is not set 2927 | # BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE is not set 2928 | # BR2_PACKAGE_SNOWBALL_HDMISERVICE is not set 2929 | # BR2_PACKAGE_SNOWBALL_INIT is not set 2930 | # BR2_GDB_VERSION_7_9 is not set 2931 | 2932 | # 2933 | # Legacy options removed in 2016.11 2934 | # 2935 | # BR2_PACKAGE_PHP_SAPI_CLI_CGI is not set 2936 | # BR2_PACKAGE_PHP_SAPI_CLI_FPM is not set 2937 | # BR2_PACKAGE_WVSTREAMS is not set 2938 | # BR2_PACKAGE_WVDIAL is not set 2939 | # BR2_PACKAGE_WEBKITGTK24 is not set 2940 | # BR2_PACKAGE_TORSMO is not set 2941 | # BR2_PACKAGE_SSTRIP is not set 2942 | # BR2_KERNEL_HEADERS_4_3 is not set 2943 | # BR2_KERNEL_HEADERS_4_2 is not set 2944 | # BR2_PACKAGE_KODI_ADDON_XVDR is not set 2945 | # BR2_PACKAGE_IPKG is not set 2946 | # BR2_GCC_VERSION_4_7_X is not set 2947 | # BR2_BINUTILS_VERSION_2_24_X is not set 2948 | # BR2_PACKAGE_WESTON_RPI is not set 2949 | # BR2_GCC_VERSION_4_8_ARC is not set 2950 | # BR2_KERNEL_HEADERS_4_0 is not set 2951 | # BR2_KERNEL_HEADERS_3_19 is not set 2952 | # BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS is not set 2953 | # BR2_PACKAGE_ELEMENTARY is not set 2954 | # BR2_LINUX_KERNEL_CUSTOM_LOCAL is not set 2955 | 2956 | # 2957 | # Legacy options removed in 2016.08 2958 | # 2959 | # BR2_PACKAGE_EFL_JP2K is not set 2960 | # BR2_PACKAGE_SYSTEMD_COMPAT is not set 2961 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER is not set 2962 | # BR2_PACKAGE_LIBFSLVPUWRAP is not set 2963 | # BR2_PACKAGE_LIBFSLPARSER is not set 2964 | # BR2_PACKAGE_LIBFSLCODEC is not set 2965 | # BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT is not set 2966 | # BR2_PTHREADS_OLD is not set 2967 | # BR2_BINUTILS_VERSION_2_23_X is not set 2968 | # BR2_TOOLCHAIN_BUILDROOT_EGLIBC is not set 2969 | # BR2_GDB_VERSION_7_8 is not set 2970 | 2971 | # 2972 | # Legacy options removed in 2016.05 2973 | # 2974 | # BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL is not set 2975 | # BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE is not set 2976 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP is not set 2977 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 is not set 2978 | # BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC is not set 2979 | # BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2 is not set 2980 | # BR2_x86_i386 is not set 2981 | # BR2_PACKAGE_QT5QUICK1 is not set 2982 | BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR="" 2983 | # BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID is not set 2984 | # BR2_KERNEL_HEADERS_3_17 is not set 2985 | # BR2_GDB_VERSION_7_7 is not set 2986 | # BR2_PACKAGE_FOOMATIC_FILTERS is not set 2987 | # BR2_PACKAGE_SAMBA is not set 2988 | # BR2_PACKAGE_KODI_WAVPACK is not set 2989 | # BR2_PACKAGE_KODI_RSXS is not set 2990 | # BR2_PACKAGE_KODI_GOOM is not set 2991 | # BR2_PACKAGE_SYSTEMD_ALL_EXTRAS is not set 2992 | # BR2_GCC_VERSION_4_5_X is not set 2993 | # BR2_PACKAGE_SQLITE_READLINE is not set 2994 | 2995 | # 2996 | # Legacy options removed in 2016.02 2997 | # 2998 | # BR2_PACKAGE_DOVECOT_BZIP2 is not set 2999 | # BR2_PACKAGE_DOVECOT_ZLIB is not set 3000 | # BR2_PACKAGE_E2FSPROGS_FINDFS is not set 3001 | # BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL is not set 3002 | # BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE is not set 3003 | # BR2_PACKAGE_OPENPOWERLINK_LIBPCAP is not set 3004 | # BR2_LINUX_KERNEL_SAME_AS_HEADERS is not set 3005 | # BR2_PACKAGE_CUPS_PDFTOPS is not set 3006 | # BR2_KERNEL_HEADERS_3_16 is not set 3007 | # BR2_PACKAGE_PYTHON_PYXML is not set 3008 | # BR2_ENABLE_SSP is not set 3009 | # BR2_PACKAGE_DIRECTFB_CLE266 is not set 3010 | # BR2_PACKAGE_DIRECTFB_UNICHROME is not set 3011 | # BR2_PACKAGE_LIBELEMENTARY is not set 3012 | # BR2_PACKAGE_LIBEINA is not set 3013 | # BR2_PACKAGE_LIBEET is not set 3014 | # BR2_PACKAGE_LIBEVAS is not set 3015 | # BR2_PACKAGE_LIBECORE is not set 3016 | # BR2_PACKAGE_LIBEDBUS is not set 3017 | # BR2_PACKAGE_LIBEFREET is not set 3018 | # BR2_PACKAGE_LIBEIO is not set 3019 | # BR2_PACKAGE_LIBEMBRYO is not set 3020 | # BR2_PACKAGE_LIBEDJE is not set 3021 | # BR2_PACKAGE_LIBETHUMB is not set 3022 | # BR2_PACKAGE_INFOZIP is not set 3023 | # BR2_BR2_PACKAGE_NODEJS_0_10_X is not set 3024 | # BR2_BR2_PACKAGE_NODEJS_0_12_X is not set 3025 | # BR2_BR2_PACKAGE_NODEJS_4_X is not set 3026 | 3027 | # 3028 | # Legacy options removed in 2015.11 3029 | # 3030 | # BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL is not set 3031 | # BR2_PACKAGE_MEDIA_CTL is not set 3032 | # BR2_PACKAGE_SCHIFRA is not set 3033 | # BR2_PACKAGE_ZXING is not set 3034 | # BR2_PACKAGE_BLACKBOX is not set 3035 | # BR2_KERNEL_HEADERS_3_0 is not set 3036 | # BR2_KERNEL_HEADERS_3_11 is not set 3037 | # BR2_KERNEL_HEADERS_3_13 is not set 3038 | # BR2_KERNEL_HEADERS_3_15 is not set 3039 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI is not set 3040 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD is not set 3041 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD is not set 3042 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER is not set 3043 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD is not set 3044 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK is not set 3045 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST is not set 3046 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE is not set 3047 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP is not set 3048 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS is not set 3049 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT is not set 3050 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK is not set 3051 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES is not set 3052 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER is not set 3053 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX is not set 3054 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER is not set 3055 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO is not set 3056 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD is not set 3057 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE is not set 3058 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE is not set 3059 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER is not set 3060 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS is not set 3061 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE is not set 3062 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO is not set 3063 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE is not set 3064 | # BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW is not set 3065 | # BR2_PACKAGE_KOBS_NG is not set 3066 | # BR2_PACKAGE_SAWMAN is not set 3067 | # BR2_PACKAGE_DIVINE is not set 3068 | 3069 | # 3070 | # Legacy options removed in 2015.08 3071 | # 3072 | # BR2_PACKAGE_KODI_PVR_ADDONS is not set 3073 | # BR2_BINUTILS_VERSION_2_23_2 is not set 3074 | # BR2_BINUTILS_VERSION_2_24 is not set 3075 | # BR2_BINUTILS_VERSION_2_25 is not set 3076 | # BR2_PACKAGE_PERF is not set 3077 | # BR2_BINUTILS_VERSION_2_22 is not set 3078 | # BR2_PACKAGE_GPU_VIV_BIN_MX6Q is not set 3079 | # BR2_TARGET_UBOOT_NETWORK is not set 3080 | 3081 | # 3082 | # Legacy options removed in 2015.05 3083 | # 3084 | # BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K is not set 3085 | # BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K is not set 3086 | # BR2_PACKAGE_MONO_20 is not set 3087 | # BR2_PACKAGE_MONO_40 is not set 3088 | # BR2_PACKAGE_MONO_45 is not set 3089 | # BR2_CIVETWEB_WITH_LUA is not set 3090 | # BR2_PACKAGE_TIFF_TIFF2PDF is not set 3091 | # BR2_PACKAGE_TIFF_TIFFCP is not set 3092 | # BR2_LINUX_KERNEL_EXT_RTAI_PATCH is not set 3093 | # BR2_TARGET_GENERIC_PASSWD_DES is not set 3094 | # BR2_PACKAGE_GTK2_THEME_HICOLOR is not set 3095 | # BR2_PACKAGE_VALGRIND_PTRCHECK is not set 3096 | 3097 | # 3098 | # Legacy options removed in 2015.02 3099 | # 3100 | # BR2_PACKAGE_LIBGC is not set 3101 | # BR2_PACKAGE_WDCTL is not set 3102 | # BR2_PACKAGE_UTIL_LINUX_ARCH is not set 3103 | # BR2_PACKAGE_UTIL_LINUX_DDATE is not set 3104 | # BR2_PACKAGE_RPM_BZIP2_PAYLOADS is not set 3105 | # BR2_PACKAGE_RPM_XZ_PAYLOADS is not set 3106 | # BR2_PACKAGE_M4 is not set 3107 | # BR2_PACKAGE_FLEX_BINARY is not set 3108 | # BR2_PACKAGE_BISON is not set 3109 | # BR2_PACKAGE_GOB2 is not set 3110 | # BR2_PACKAGE_DISTCC is not set 3111 | # BR2_PACKAGE_HASERL_VERSION_0_8_X is not set 3112 | # BR2_PACKAGE_STRONGSWAN_TOOLS is not set 3113 | # BR2_PACKAGE_XBMC_ADDON_XVDR is not set 3114 | # BR2_PACKAGE_XBMC_PVR_ADDONS is not set 3115 | # BR2_PACKAGE_XBMC is not set 3116 | # BR2_PACKAGE_XBMC_ALSA_LIB is not set 3117 | # BR2_PACKAGE_XBMC_AVAHI is not set 3118 | # BR2_PACKAGE_XBMC_DBUS is not set 3119 | # BR2_PACKAGE_XBMC_LIBBLURAY is not set 3120 | # BR2_PACKAGE_XBMC_GOOM is not set 3121 | # BR2_PACKAGE_XBMC_RSXS is not set 3122 | # BR2_PACKAGE_XBMC_LIBCEC is not set 3123 | # BR2_PACKAGE_XBMC_LIBMICROHTTPD is not set 3124 | # BR2_PACKAGE_XBMC_LIBNFS is not set 3125 | # BR2_PACKAGE_XBMC_RTMPDUMP is not set 3126 | # BR2_PACKAGE_XBMC_LIBSHAIRPLAY is not set 3127 | # BR2_PACKAGE_XBMC_LIBSMBCLIENT is not set 3128 | # BR2_PACKAGE_XBMC_LIBTHEORA is not set 3129 | # BR2_PACKAGE_XBMC_LIBUSB is not set 3130 | # BR2_PACKAGE_XBMC_LIBVA is not set 3131 | # BR2_PACKAGE_XBMC_WAVPACK is not set 3132 | # BR2_PREFER_STATIC_LIB is not set 3133 | 3134 | # 3135 | # Legacy options removed in 2014.11 3136 | # 3137 | # BR2_x86_generic is not set 3138 | # BR2_GCC_VERSION_4_4_X is not set 3139 | # BR2_sparc_sparchfleon is not set 3140 | # BR2_sparc_sparchfleonv8 is not set 3141 | # BR2_sparc_sparcsfleon is not set 3142 | # BR2_sparc_sparcsfleonv8 is not set 3143 | # BR2_PACKAGE_LINUX_FIRMWARE_XC5000 is not set 3144 | # BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 is not set 3145 | # BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 is not set 3146 | # BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 is not set 3147 | 3148 | # 3149 | # Legacy options removed in 2014.08 3150 | # 3151 | # BR2_PACKAGE_LIBELF is not set 3152 | # BR2_KERNEL_HEADERS_3_8 is not set 3153 | # BR2_PACKAGE_GETTEXT_TOOLS is not set 3154 | # BR2_PACKAGE_PROCPS is not set 3155 | # BR2_BINUTILS_VERSION_2_20_1 is not set 3156 | # BR2_BINUTILS_VERSION_2_21 is not set 3157 | # BR2_BINUTILS_VERSION_2_23_1 is not set 3158 | # BR2_UCLIBC_VERSION_0_9_32 is not set 3159 | # BR2_GCC_VERSION_4_3_X is not set 3160 | # BR2_GCC_VERSION_4_6_X is not set 3161 | # BR2_GDB_VERSION_7_4 is not set 3162 | # BR2_GDB_VERSION_7_5 is not set 3163 | # BR2_BUSYBOX_VERSION_1_19_X is not set 3164 | # BR2_BUSYBOX_VERSION_1_20_X is not set 3165 | # BR2_BUSYBOX_VERSION_1_21_X is not set 3166 | # BR2_PACKAGE_LIBV4L_DECODE_TM6000 is not set 3167 | # BR2_PACKAGE_LIBV4L_IR_KEYTABLE is not set 3168 | # BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE is not set 3169 | # BR2_PACKAGE_LIBV4L_V4L2_CTL is not set 3170 | # BR2_PACKAGE_LIBV4L_V4L2_DBG is not set 3171 | 3172 | # 3173 | # Legacy options removed in 2014.05 3174 | # 3175 | # BR2_PACKAGE_EVTEST_CAPTURE is not set 3176 | # BR2_KERNEL_HEADERS_3_6 is not set 3177 | # BR2_KERNEL_HEADERS_3_7 is not set 3178 | # BR2_PACKAGE_VALA is not set 3179 | BR2_PACKAGE_TZDATA_ZONELIST="" 3180 | # BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE is not set 3181 | # BR2_PACKAGE_LUA_INTERPRETER_READLINE is not set 3182 | # BR2_PACKAGE_LUA_INTERPRETER_LINENOISE is not set 3183 | # BR2_PACKAGE_DVB_APPS_UTILS is not set 3184 | # BR2_KERNEL_HEADERS_SNAP is not set 3185 | # BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV is not set 3186 | # BR2_PACKAGE_UDEV is not set 3187 | # BR2_PACKAGE_UDEV_RULES_GEN is not set 3188 | # BR2_PACKAGE_UDEV_ALL_EXTRAS is not set 3189 | 3190 | # 3191 | # Legacy options removed in 2014.02 3192 | # 3193 | # BR2_sh2 is not set 3194 | # BR2_sh3 is not set 3195 | # BR2_sh3eb is not set 3196 | # BR2_KERNEL_HEADERS_3_1 is not set 3197 | # BR2_KERNEL_HEADERS_3_3 is not set 3198 | # BR2_KERNEL_HEADERS_3_5 is not set 3199 | # BR2_GDB_VERSION_7_2 is not set 3200 | # BR2_GDB_VERSION_7_3 is not set 3201 | # BR2_PACKAGE_CCACHE is not set 3202 | # BR2_HAVE_DOCUMENTATION is not set 3203 | # BR2_PACKAGE_AUTOMAKE is not set 3204 | # BR2_PACKAGE_AUTOCONF is not set 3205 | # BR2_PACKAGE_XSTROKE is not set 3206 | # BR2_PACKAGE_LZMA is not set 3207 | # BR2_PACKAGE_TTCP is not set 3208 | # BR2_PACKAGE_LIBNFC_LLCP is not set 3209 | # BR2_PACKAGE_MYSQL_CLIENT is not set 3210 | # BR2_PACKAGE_SQUASHFS3 is not set 3211 | # BR2_TARGET_ROOTFS_SQUASHFS3 is not set 3212 | # BR2_PACKAGE_NETKITBASE is not set 3213 | # BR2_PACKAGE_NETKITTELNET is not set 3214 | # BR2_PACKAGE_LUASQL is not set 3215 | # BR2_PACKAGE_LUACJSON is not set 3216 | 3217 | # 3218 | # Legacy options removed in 2013.11 3219 | # 3220 | # BR2_PACKAGE_LVM2_DMSETUP_ONLY is not set 3221 | # BR2_PACKAGE_QT_JAVASCRIPTCORE is not set 3222 | # BR2_PACKAGE_MODULE_INIT_TOOLS is not set 3223 | BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="" 3224 | BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="" 3225 | BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="" 3226 | BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="" 3227 | 3228 | # 3229 | # Legacy options removed in 2013.08 3230 | # 3231 | # BR2_ARM_OABI is not set 3232 | # BR2_PACKAGE_DOSFSTOOLS_DOSFSCK is not set 3233 | # BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL is not set 3234 | # BR2_PACKAGE_DOSFSTOOLS_MKDOSFS is not set 3235 | # BR2_ELF2FLT is not set 3236 | # BR2_VFP_FLOAT is not set 3237 | # BR2_PACKAGE_GCC_TARGET is not set 3238 | # BR2_HAVE_DEVFILES is not set 3239 | 3240 | # 3241 | # Legacy options removed in 2013.05 3242 | # 3243 | # BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 is not set 3244 | # BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 is not set 3245 | -------------------------------------------------------------------------------- /config/busybox-dynamic.config: -------------------------------------------------------------------------------- 1 | # 2 | # Automatically generated make config: don't edit 3 | # Busybox version: 1.27.2 4 | # 5 | CONFIG_HAVE_DOT_CONFIG=y 6 | 7 | # 8 | # Busybox Settings 9 | # 10 | CONFIG_DESKTOP=y 11 | # CONFIG_EXTRA_COMPAT is not set 12 | # CONFIG_FEDORA_COMPAT is not set 13 | CONFIG_INCLUDE_SUSv2=y 14 | # CONFIG_USE_PORTABLE_CODE is not set 15 | CONFIG_SHOW_USAGE=y 16 | CONFIG_FEATURE_VERBOSE_USAGE=y 17 | # CONFIG_FEATURE_COMPRESS_USAGE is not set 18 | CONFIG_BUSYBOX=y 19 | CONFIG_FEATURE_INSTALLER=y 20 | # CONFIG_INSTALL_NO_USR is not set 21 | # CONFIG_PAM is not set 22 | CONFIG_LONG_OPTS=y 23 | CONFIG_FEATURE_DEVPTS=y 24 | CONFIG_FEATURE_CLEAN_UP=y 25 | CONFIG_FEATURE_UTMP=y 26 | CONFIG_FEATURE_WTMP=y 27 | # CONFIG_FEATURE_PIDFILE is not set 28 | CONFIG_PID_FILE_PATH="" 29 | CONFIG_FEATURE_SUID=y 30 | # CONFIG_FEATURE_SUID_CONFIG is not set 31 | # CONFIG_FEATURE_SUID_CONFIG_QUIET is not set 32 | # CONFIG_SELINUX is not set 33 | # CONFIG_FEATURE_PREFER_APPLETS is not set 34 | CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" 35 | CONFIG_FEATURE_SYSLOG=y 36 | # CONFIG_FEATURE_HAVE_RPC is not set 37 | CONFIG_PLATFORM_LINUX=y 38 | 39 | # 40 | # Build Options 41 | # 42 | # CONFIG_STATIC is not set 43 | # CONFIG_PIE is not set 44 | # CONFIG_NOMMU is not set 45 | # CONFIG_BUILD_LIBBUSYBOX is not set 46 | # CONFIG_FEATURE_INDIVIDUAL is not set 47 | # CONFIG_FEATURE_SHARED_BUSYBOX is not set 48 | CONFIG_LFS=y 49 | CONFIG_CROSS_COMPILER_PREFIX="" 50 | CONFIG_SYSROOT="" 51 | CONFIG_EXTRA_CFLAGS="" 52 | CONFIG_EXTRA_LDFLAGS="" 53 | CONFIG_EXTRA_LDLIBS="" 54 | 55 | # 56 | # Installation Options ("make install" behavior) 57 | # 58 | CONFIG_INSTALL_APPLET_SYMLINKS=y 59 | # CONFIG_INSTALL_APPLET_HARDLINKS is not set 60 | # CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set 61 | # CONFIG_INSTALL_APPLET_DONT is not set 62 | # CONFIG_INSTALL_SH_APPLET_SYMLINK is not set 63 | # CONFIG_INSTALL_SH_APPLET_HARDLINK is not set 64 | # CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set 65 | CONFIG_PREFIX="./_install" 66 | 67 | # 68 | # Debugging Options 69 | # 70 | # CONFIG_DEBUG is not set 71 | # CONFIG_DEBUG_PESSIMIZE is not set 72 | # CONFIG_DEBUG_SANITIZE is not set 73 | # CONFIG_UNIT_TEST is not set 74 | # CONFIG_WERROR is not set 75 | CONFIG_NO_DEBUG_LIB=y 76 | # CONFIG_DMALLOC is not set 77 | # CONFIG_EFENCE is not set 78 | 79 | # 80 | # Busybox Library Tuning 81 | # 82 | # CONFIG_FEATURE_USE_BSS_TAIL is not set 83 | CONFIG_FEATURE_RTMINMAX=y 84 | CONFIG_FEATURE_BUFFERS_USE_MALLOC=y 85 | # CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set 86 | # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set 87 | CONFIG_PASSWORD_MINLEN=6 88 | CONFIG_MD5_SMALL=1 89 | CONFIG_SHA3_SMALL=1 90 | # CONFIG_FEATURE_FAST_TOP is not set 91 | # CONFIG_FEATURE_ETC_NETWORKS is not set 92 | CONFIG_FEATURE_EDITING=y 93 | CONFIG_FEATURE_EDITING_MAX_LEN=1024 94 | CONFIG_FEATURE_EDITING_VI=y 95 | CONFIG_FEATURE_EDITING_HISTORY=999 96 | CONFIG_FEATURE_EDITING_SAVEHISTORY=y 97 | # CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set 98 | CONFIG_FEATURE_REVERSE_SEARCH=y 99 | CONFIG_FEATURE_TAB_COMPLETION=y 100 | # CONFIG_FEATURE_USERNAME_COMPLETION is not set 101 | CONFIG_FEATURE_EDITING_FANCY_PROMPT=y 102 | # CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set 103 | # CONFIG_LOCALE_SUPPORT is not set 104 | # CONFIG_UNICODE_SUPPORT is not set 105 | # CONFIG_UNICODE_USING_LOCALE is not set 106 | # CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set 107 | CONFIG_SUBST_WCHAR=0 108 | CONFIG_LAST_SUPPORTED_WCHAR=0 109 | # CONFIG_UNICODE_COMBINING_WCHARS is not set 110 | # CONFIG_UNICODE_WIDE_WCHARS is not set 111 | # CONFIG_UNICODE_BIDI_SUPPORT is not set 112 | # CONFIG_UNICODE_NEUTRAL_TABLE is not set 113 | # CONFIG_UNICODE_PRESERVE_BROKEN is not set 114 | CONFIG_FEATURE_NON_POSIX_CP=y 115 | # CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set 116 | CONFIG_FEATURE_USE_SENDFILE=y 117 | CONFIG_FEATURE_COPYBUF_KB=4 118 | CONFIG_FEATURE_SKIP_ROOTFS=y 119 | CONFIG_MONOTONIC_SYSCALL=y 120 | CONFIG_IOCTL_HEX2STR_ERROR=y 121 | CONFIG_FEATURE_HWIB=y 122 | 123 | # 124 | # Applets 125 | # 126 | 127 | # 128 | # Archival Utilities 129 | # 130 | # CONFIG_FEATURE_SEAMLESS_XZ is not set 131 | # CONFIG_FEATURE_SEAMLESS_LZMA is not set 132 | # CONFIG_FEATURE_SEAMLESS_BZ2 is not set 133 | # CONFIG_FEATURE_SEAMLESS_GZ is not set 134 | # CONFIG_FEATURE_SEAMLESS_Z is not set 135 | CONFIG_AR=y 136 | # CONFIG_FEATURE_AR_LONG_FILENAMES is not set 137 | CONFIG_FEATURE_AR_CREATE=y 138 | # CONFIG_UNCOMPRESS is not set 139 | CONFIG_GUNZIP=y 140 | CONFIG_ZCAT=y 141 | CONFIG_FEATURE_GUNZIP_LONG_OPTIONS=y 142 | CONFIG_BUNZIP2=y 143 | CONFIG_BZCAT=y 144 | CONFIG_UNLZMA=y 145 | CONFIG_LZCAT=y 146 | CONFIG_LZMA=y 147 | # CONFIG_FEATURE_LZMA_FAST is not set 148 | CONFIG_UNXZ=y 149 | CONFIG_XZCAT=y 150 | CONFIG_XZ=y 151 | # CONFIG_BZIP2 is not set 152 | CONFIG_FEATURE_BZIP2_DECOMPRESS=y 153 | CONFIG_CPIO=y 154 | # CONFIG_FEATURE_CPIO_O is not set 155 | # CONFIG_FEATURE_CPIO_P is not set 156 | # CONFIG_DPKG is not set 157 | # CONFIG_DPKG_DEB is not set 158 | CONFIG_GZIP=y 159 | # CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set 160 | CONFIG_GZIP_FAST=0 161 | # CONFIG_FEATURE_GZIP_LEVELS is not set 162 | CONFIG_FEATURE_GZIP_DECOMPRESS=y 163 | # CONFIG_LZOP is not set 164 | # CONFIG_UNLZOP is not set 165 | # CONFIG_LZOPCAT is not set 166 | # CONFIG_LZOP_COMPR_HIGH is not set 167 | # CONFIG_RPM is not set 168 | # CONFIG_RPM2CPIO is not set 169 | CONFIG_TAR=y 170 | CONFIG_FEATURE_TAR_LONG_OPTIONS=y 171 | CONFIG_FEATURE_TAR_CREATE=y 172 | # CONFIG_FEATURE_TAR_AUTODETECT is not set 173 | CONFIG_FEATURE_TAR_FROM=y 174 | # CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set 175 | # CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set 176 | CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y 177 | CONFIG_FEATURE_TAR_TO_COMMAND=y 178 | # CONFIG_FEATURE_TAR_UNAME_GNAME is not set 179 | # CONFIG_FEATURE_TAR_NOPRESERVE_TIME is not set 180 | # CONFIG_FEATURE_TAR_SELINUX is not set 181 | CONFIG_UNZIP=y 182 | CONFIG_FEATURE_UNZIP_CDF=y 183 | CONFIG_FEATURE_UNZIP_BZIP2=y 184 | CONFIG_FEATURE_UNZIP_LZMA=y 185 | CONFIG_FEATURE_UNZIP_XZ=y 186 | 187 | # 188 | # Coreutils 189 | # 190 | CONFIG_BASENAME=y 191 | CONFIG_CAT=y 192 | CONFIG_FEATURE_CATV=y 193 | CONFIG_CHGRP=y 194 | CONFIG_CHMOD=y 195 | CONFIG_CHOWN=y 196 | # CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set 197 | CONFIG_CHROOT=y 198 | CONFIG_CKSUM=y 199 | # CONFIG_COMM is not set 200 | CONFIG_CP=y 201 | # CONFIG_FEATURE_CP_LONG_OPTIONS is not set 202 | CONFIG_CUT=y 203 | CONFIG_DATE=y 204 | CONFIG_FEATURE_DATE_ISOFMT=y 205 | # CONFIG_FEATURE_DATE_NANO is not set 206 | CONFIG_FEATURE_DATE_COMPAT=y 207 | CONFIG_DD=y 208 | CONFIG_FEATURE_DD_SIGNAL_HANDLING=y 209 | # CONFIG_FEATURE_DD_THIRD_STATUS_LINE is not set 210 | CONFIG_FEATURE_DD_IBS_OBS=y 211 | CONFIG_FEATURE_DD_STATUS=y 212 | CONFIG_DF=y 213 | # CONFIG_FEATURE_DF_FANCY is not set 214 | CONFIG_DIRNAME=y 215 | CONFIG_DOS2UNIX=y 216 | CONFIG_UNIX2DOS=y 217 | CONFIG_DU=y 218 | CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y 219 | CONFIG_ECHO=y 220 | CONFIG_FEATURE_FANCY_ECHO=y 221 | CONFIG_ENV=y 222 | # CONFIG_FEATURE_ENV_LONG_OPTIONS is not set 223 | # CONFIG_EXPAND is not set 224 | # CONFIG_FEATURE_EXPAND_LONG_OPTIONS is not set 225 | # CONFIG_UNEXPAND is not set 226 | # CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS is not set 227 | CONFIG_EXPR=y 228 | CONFIG_EXPR_MATH_SUPPORT_64=y 229 | CONFIG_FACTOR=y 230 | CONFIG_FALSE=y 231 | CONFIG_FOLD=y 232 | # CONFIG_FSYNC is not set 233 | CONFIG_HEAD=y 234 | CONFIG_FEATURE_FANCY_HEAD=y 235 | CONFIG_HOSTID=y 236 | CONFIG_ID=y 237 | # CONFIG_GROUPS is not set 238 | CONFIG_INSTALL=y 239 | CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y 240 | CONFIG_LINK=y 241 | CONFIG_LN=y 242 | CONFIG_LOGNAME=y 243 | CONFIG_LS=y 244 | CONFIG_FEATURE_LS_FILETYPES=y 245 | CONFIG_FEATURE_LS_FOLLOWLINKS=y 246 | CONFIG_FEATURE_LS_RECURSIVE=y 247 | CONFIG_FEATURE_LS_WIDTH=y 248 | CONFIG_FEATURE_LS_SORTFILES=y 249 | CONFIG_FEATURE_LS_TIMESTAMPS=y 250 | CONFIG_FEATURE_LS_USERNAME=y 251 | CONFIG_FEATURE_LS_COLOR=y 252 | CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y 253 | CONFIG_MD5SUM=y 254 | CONFIG_SHA1SUM=y 255 | CONFIG_SHA256SUM=y 256 | CONFIG_SHA512SUM=y 257 | CONFIG_SHA3SUM=y 258 | 259 | # 260 | # Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum 261 | # 262 | CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y 263 | CONFIG_MKDIR=y 264 | CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y 265 | CONFIG_MKFIFO=y 266 | CONFIG_MKNOD=y 267 | CONFIG_MKTEMP=y 268 | CONFIG_MV=y 269 | CONFIG_FEATURE_MV_LONG_OPTIONS=y 270 | CONFIG_NICE=y 271 | CONFIG_NL=y 272 | CONFIG_NOHUP=y 273 | CONFIG_NPROC=y 274 | CONFIG_OD=y 275 | CONFIG_PASTE=y 276 | CONFIG_PRINTENV=y 277 | CONFIG_PRINTF=y 278 | CONFIG_PWD=y 279 | CONFIG_READLINK=y 280 | CONFIG_FEATURE_READLINK_FOLLOW=y 281 | CONFIG_REALPATH=y 282 | CONFIG_RM=y 283 | CONFIG_RMDIR=y 284 | # CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set 285 | CONFIG_SEQ=y 286 | CONFIG_SHRED=y 287 | CONFIG_SHUF=y 288 | CONFIG_SLEEP=y 289 | # CONFIG_FEATURE_FANCY_SLEEP is not set 290 | # CONFIG_FEATURE_FLOAT_SLEEP is not set 291 | CONFIG_SORT=y 292 | CONFIG_FEATURE_SORT_BIG=y 293 | # CONFIG_SPLIT is not set 294 | # CONFIG_FEATURE_SPLIT_FANCY is not set 295 | CONFIG_STAT=y 296 | CONFIG_FEATURE_STAT_FORMAT=y 297 | CONFIG_FEATURE_STAT_FILESYSTEM=y 298 | CONFIG_STTY=y 299 | # CONFIG_SUM is not set 300 | CONFIG_SYNC=y 301 | CONFIG_FEATURE_SYNC_FANCY=y 302 | # CONFIG_TAC is not set 303 | CONFIG_TAIL=y 304 | CONFIG_FEATURE_FANCY_TAIL=y 305 | CONFIG_TEE=y 306 | CONFIG_FEATURE_TEE_USE_BLOCK_IO=y 307 | CONFIG_TEST=y 308 | CONFIG_TEST1=y 309 | CONFIG_TEST2=y 310 | CONFIG_FEATURE_TEST_64=y 311 | # CONFIG_TIMEOUT is not set 312 | CONFIG_TOUCH=y 313 | # CONFIG_FEATURE_TOUCH_NODEREF is not set 314 | CONFIG_FEATURE_TOUCH_SUSV3=y 315 | CONFIG_TR=y 316 | CONFIG_FEATURE_TR_CLASSES=y 317 | CONFIG_FEATURE_TR_EQUIV=y 318 | CONFIG_TRUE=y 319 | CONFIG_TRUNCATE=y 320 | CONFIG_TTY=y 321 | CONFIG_UNAME=y 322 | CONFIG_UNAME_OSNAME="GNU/Linux" 323 | CONFIG_UNIQ=y 324 | CONFIG_UNLINK=y 325 | CONFIG_USLEEP=y 326 | CONFIG_UUDECODE=y 327 | # CONFIG_BASE64 is not set 328 | CONFIG_UUENCODE=y 329 | CONFIG_WC=y 330 | # CONFIG_FEATURE_WC_LARGE is not set 331 | CONFIG_WHO=y 332 | CONFIG_W=y 333 | # CONFIG_USERS is not set 334 | CONFIG_WHOAMI=y 335 | CONFIG_YES=y 336 | 337 | # 338 | # Common options 339 | # 340 | CONFIG_FEATURE_VERBOSE=y 341 | 342 | # 343 | # Common options for cp and mv 344 | # 345 | CONFIG_FEATURE_PRESERVE_HARDLINKS=y 346 | 347 | # 348 | # Common options for df, du, ls 349 | # 350 | CONFIG_FEATURE_HUMAN_READABLE=y 351 | 352 | # 353 | # Console Utilities 354 | # 355 | CONFIG_CHVT=y 356 | CONFIG_CLEAR=y 357 | CONFIG_DEALLOCVT=y 358 | CONFIG_DUMPKMAP=y 359 | # CONFIG_FGCONSOLE is not set 360 | # CONFIG_KBD_MODE is not set 361 | CONFIG_LOADFONT=y 362 | # CONFIG_SETFONT is not set 363 | # CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set 364 | CONFIG_DEFAULT_SETFONT_DIR="" 365 | 366 | # 367 | # Common options for loadfont and setfont 368 | # 369 | CONFIG_FEATURE_LOADFONT_PSF2=y 370 | CONFIG_FEATURE_LOADFONT_RAW=y 371 | CONFIG_LOADKMAP=y 372 | CONFIG_OPENVT=y 373 | CONFIG_RESET=y 374 | CONFIG_RESIZE=y 375 | CONFIG_FEATURE_RESIZE_PRINT=y 376 | CONFIG_SETCONSOLE=y 377 | # CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set 378 | CONFIG_SETKEYCODES=y 379 | CONFIG_SETLOGCONS=y 380 | # CONFIG_SHOWKEY is not set 381 | 382 | # 383 | # Debian Utilities 384 | # 385 | CONFIG_PIPE_PROGRESS=y 386 | CONFIG_RUN_PARTS=y 387 | CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y 388 | # CONFIG_FEATURE_RUN_PARTS_FANCY is not set 389 | CONFIG_START_STOP_DAEMON=y 390 | CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y 391 | CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y 392 | CONFIG_WHICH=y 393 | 394 | # 395 | # Editors 396 | # 397 | CONFIG_AWK=y 398 | # CONFIG_FEATURE_AWK_LIBM is not set 399 | CONFIG_FEATURE_AWK_GNU_EXTENSIONS=y 400 | CONFIG_CMP=y 401 | CONFIG_DIFF=y 402 | # CONFIG_FEATURE_DIFF_LONG_OPTIONS is not set 403 | CONFIG_FEATURE_DIFF_DIR=y 404 | # CONFIG_ED is not set 405 | CONFIG_PATCH=y 406 | CONFIG_SED=y 407 | CONFIG_VI=y 408 | CONFIG_FEATURE_VI_MAX_LEN=4096 409 | CONFIG_FEATURE_VI_8BIT=y 410 | CONFIG_FEATURE_VI_COLON=y 411 | CONFIG_FEATURE_VI_YANKMARK=y 412 | CONFIG_FEATURE_VI_SEARCH=y 413 | # CONFIG_FEATURE_VI_REGEX_SEARCH is not set 414 | CONFIG_FEATURE_VI_USE_SIGNALS=y 415 | CONFIG_FEATURE_VI_DOT_CMD=y 416 | CONFIG_FEATURE_VI_READONLY=y 417 | CONFIG_FEATURE_VI_SETOPTS=y 418 | CONFIG_FEATURE_VI_SET=y 419 | CONFIG_FEATURE_VI_WIN_RESIZE=y 420 | CONFIG_FEATURE_VI_ASK_TERMINAL=y 421 | CONFIG_FEATURE_VI_UNDO=y 422 | CONFIG_FEATURE_VI_UNDO_QUEUE=y 423 | CONFIG_FEATURE_VI_UNDO_QUEUE_MAX=256 424 | CONFIG_FEATURE_ALLOW_EXEC=y 425 | 426 | # 427 | # Finding Utilities 428 | # 429 | CONFIG_FIND=y 430 | CONFIG_FEATURE_FIND_PRINT0=y 431 | CONFIG_FEATURE_FIND_MTIME=y 432 | CONFIG_FEATURE_FIND_MMIN=y 433 | CONFIG_FEATURE_FIND_PERM=y 434 | CONFIG_FEATURE_FIND_TYPE=y 435 | CONFIG_FEATURE_FIND_XDEV=y 436 | CONFIG_FEATURE_FIND_MAXDEPTH=y 437 | CONFIG_FEATURE_FIND_NEWER=y 438 | # CONFIG_FEATURE_FIND_INUM is not set 439 | CONFIG_FEATURE_FIND_EXEC=y 440 | CONFIG_FEATURE_FIND_EXEC_PLUS=y 441 | CONFIG_FEATURE_FIND_USER=y 442 | CONFIG_FEATURE_FIND_GROUP=y 443 | CONFIG_FEATURE_FIND_NOT=y 444 | CONFIG_FEATURE_FIND_DEPTH=y 445 | CONFIG_FEATURE_FIND_PAREN=y 446 | CONFIG_FEATURE_FIND_SIZE=y 447 | CONFIG_FEATURE_FIND_PRUNE=y 448 | # CONFIG_FEATURE_FIND_DELETE is not set 449 | CONFIG_FEATURE_FIND_PATH=y 450 | CONFIG_FEATURE_FIND_REGEX=y 451 | # CONFIG_FEATURE_FIND_CONTEXT is not set 452 | # CONFIG_FEATURE_FIND_LINKS is not set 453 | CONFIG_GREP=y 454 | CONFIG_EGREP=y 455 | CONFIG_FGREP=y 456 | CONFIG_FEATURE_GREP_CONTEXT=y 457 | CONFIG_XARGS=y 458 | # CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION is not set 459 | CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y 460 | CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y 461 | CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y 462 | CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR=y 463 | 464 | # 465 | # Init Utilities 466 | # 467 | # CONFIG_BOOTCHARTD is not set 468 | # CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set 469 | # CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE is not set 470 | CONFIG_HALT=y 471 | CONFIG_POWEROFF=y 472 | CONFIG_REBOOT=y 473 | # CONFIG_FEATURE_CALL_TELINIT is not set 474 | CONFIG_TELINIT_PATH="" 475 | CONFIG_INIT=y 476 | CONFIG_LINUXRC=y 477 | CONFIG_FEATURE_USE_INITTAB=y 478 | CONFIG_FEATURE_KILL_REMOVED=y 479 | CONFIG_FEATURE_KILL_DELAY=0 480 | CONFIG_FEATURE_INIT_SCTTY=y 481 | CONFIG_FEATURE_INIT_SYSLOG=y 482 | CONFIG_FEATURE_INIT_QUIET=y 483 | # CONFIG_FEATURE_INIT_COREDUMPS is not set 484 | CONFIG_INIT_TERMINAL_TYPE="linux" 485 | CONFIG_FEATURE_INIT_MODIFY_CMDLINE=y 486 | 487 | # 488 | # Login/Password Management Utilities 489 | # 490 | CONFIG_FEATURE_SHADOWPASSWDS=y 491 | # CONFIG_USE_BB_PWD_GRP is not set 492 | # CONFIG_USE_BB_SHADOW is not set 493 | CONFIG_USE_BB_CRYPT=y 494 | CONFIG_USE_BB_CRYPT_SHA=y 495 | # CONFIG_ADD_SHELL is not set 496 | # CONFIG_REMOVE_SHELL is not set 497 | CONFIG_ADDGROUP=y 498 | # CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set 499 | CONFIG_FEATURE_ADDUSER_TO_GROUP=y 500 | CONFIG_ADDUSER=y 501 | # CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set 502 | # CONFIG_FEATURE_CHECK_NAMES is not set 503 | CONFIG_LAST_ID=60000 504 | CONFIG_FIRST_SYSTEM_ID=100 505 | CONFIG_LAST_SYSTEM_ID=999 506 | CONFIG_CHPASSWD=y 507 | CONFIG_FEATURE_DEFAULT_PASSWD_ALGO="des" 508 | # CONFIG_CRYPTPW is not set 509 | CONFIG_MKPASSWD=y 510 | CONFIG_DELUSER=y 511 | CONFIG_DELGROUP=y 512 | # CONFIG_FEATURE_DEL_USER_FROM_GROUP is not set 513 | CONFIG_GETTY=y 514 | CONFIG_LOGIN=y 515 | # CONFIG_LOGIN_SESSION_AS_CHILD is not set 516 | # CONFIG_LOGIN_SCRIPTS is not set 517 | CONFIG_FEATURE_NOLOGIN=y 518 | CONFIG_FEATURE_SECURETTY=y 519 | CONFIG_PASSWD=y 520 | CONFIG_FEATURE_PASSWD_WEAK_CHECK=y 521 | CONFIG_SU=y 522 | CONFIG_FEATURE_SU_SYSLOG=y 523 | CONFIG_FEATURE_SU_CHECKS_SHELLS=y 524 | # CONFIG_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY is not set 525 | CONFIG_SULOGIN=y 526 | CONFIG_VLOCK=y 527 | 528 | # 529 | # Linux Ext2 FS Progs 530 | # 531 | CONFIG_CHATTR=y 532 | CONFIG_FSCK=y 533 | CONFIG_LSATTR=y 534 | # CONFIG_TUNE2FS is not set 535 | 536 | # 537 | # Linux Module Utilities 538 | # 539 | # CONFIG_MODPROBE_SMALL is not set 540 | # CONFIG_DEPMOD is not set 541 | CONFIG_INSMOD=y 542 | CONFIG_LSMOD=y 543 | CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT=y 544 | # CONFIG_MODINFO is not set 545 | CONFIG_MODPROBE=y 546 | # CONFIG_FEATURE_MODPROBE_BLACKLIST is not set 547 | CONFIG_RMMOD=y 548 | 549 | # 550 | # Options common to multiple modutils 551 | # 552 | CONFIG_FEATURE_CMDLINE_MODULE_OPTIONS=y 553 | # CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set 554 | # CONFIG_FEATURE_2_4_MODULES is not set 555 | # CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set 556 | # CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set 557 | # CONFIG_FEATURE_INSMOD_LOADINKMEM is not set 558 | # CONFIG_FEATURE_INSMOD_LOAD_MAP is not set 559 | # CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set 560 | CONFIG_FEATURE_CHECK_TAINTED_MODULE=y 561 | # CONFIG_FEATURE_INSMOD_TRY_MMAP is not set 562 | CONFIG_FEATURE_MODUTILS_ALIAS=y 563 | CONFIG_FEATURE_MODUTILS_SYMBOLS=y 564 | CONFIG_DEFAULT_MODULES_DIR="/lib/modules" 565 | CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" 566 | 567 | # 568 | # Linux System Utilities 569 | # 570 | # CONFIG_ACPID is not set 571 | # CONFIG_FEATURE_ACPID_COMPAT is not set 572 | CONFIG_BLKDISCARD=y 573 | CONFIG_BLKID=y 574 | # CONFIG_FEATURE_BLKID_TYPE is not set 575 | # CONFIG_BLOCKDEV is not set 576 | # CONFIG_CAL is not set 577 | CONFIG_CHRT=y 578 | CONFIG_DMESG=y 579 | CONFIG_FEATURE_DMESG_PRETTY=y 580 | CONFIG_EJECT=y 581 | # CONFIG_FEATURE_EJECT_SCSI is not set 582 | CONFIG_FALLOCATE=y 583 | CONFIG_FATATTR=y 584 | CONFIG_FBSET=y 585 | CONFIG_FEATURE_FBSET_FANCY=y 586 | CONFIG_FEATURE_FBSET_READMODE=y 587 | CONFIG_FDFORMAT=y 588 | CONFIG_FDISK=y 589 | # CONFIG_FDISK_SUPPORT_LARGE_DISKS is not set 590 | CONFIG_FEATURE_FDISK_WRITABLE=y 591 | # CONFIG_FEATURE_AIX_LABEL is not set 592 | # CONFIG_FEATURE_SGI_LABEL is not set 593 | # CONFIG_FEATURE_SUN_LABEL is not set 594 | # CONFIG_FEATURE_OSF_LABEL is not set 595 | CONFIG_FEATURE_GPT_LABEL=y 596 | CONFIG_FEATURE_FDISK_ADVANCED=y 597 | # CONFIG_FINDFS is not set 598 | # CONFIG_FLOCK is not set 599 | CONFIG_FDFLUSH=y 600 | CONFIG_FREERAMDISK=y 601 | # CONFIG_FSCK_MINIX is not set 602 | CONFIG_FSFREEZE=y 603 | CONFIG_FSTRIM=y 604 | CONFIG_GETOPT=y 605 | CONFIG_FEATURE_GETOPT_LONG=y 606 | CONFIG_HEXDUMP=y 607 | # CONFIG_FEATURE_HEXDUMP_REVERSE is not set 608 | # CONFIG_HD is not set 609 | CONFIG_XXD=y 610 | CONFIG_HWCLOCK=y 611 | CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS=y 612 | CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS=y 613 | # CONFIG_IONICE is not set 614 | CONFIG_IPCRM=y 615 | CONFIG_IPCS=y 616 | CONFIG_LAST=y 617 | # CONFIG_FEATURE_LAST_FANCY is not set 618 | CONFIG_LOSETUP=y 619 | CONFIG_LSPCI=y 620 | CONFIG_LSUSB=y 621 | CONFIG_MDEV=y 622 | CONFIG_FEATURE_MDEV_CONF=y 623 | CONFIG_FEATURE_MDEV_RENAME=y 624 | # CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set 625 | CONFIG_FEATURE_MDEV_EXEC=y 626 | # CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set 627 | CONFIG_MESG=y 628 | CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y 629 | CONFIG_MKE2FS=y 630 | # CONFIG_MKFS_EXT2 is not set 631 | # CONFIG_MKFS_MINIX is not set 632 | # CONFIG_FEATURE_MINIX2 is not set 633 | # CONFIG_MKFS_REISER is not set 634 | CONFIG_MKDOSFS=y 635 | # CONFIG_MKFS_VFAT is not set 636 | CONFIG_MKSWAP=y 637 | # CONFIG_FEATURE_MKSWAP_UUID is not set 638 | CONFIG_MORE=y 639 | CONFIG_MOUNT=y 640 | # CONFIG_FEATURE_MOUNT_FAKE is not set 641 | # CONFIG_FEATURE_MOUNT_VERBOSE is not set 642 | # CONFIG_FEATURE_MOUNT_HELPERS is not set 643 | # CONFIG_FEATURE_MOUNT_LABEL is not set 644 | # CONFIG_FEATURE_MOUNT_NFS is not set 645 | CONFIG_FEATURE_MOUNT_CIFS=y 646 | CONFIG_FEATURE_MOUNT_FLAGS=y 647 | CONFIG_FEATURE_MOUNT_FSTAB=y 648 | CONFIG_FEATURE_MOUNT_OTHERTAB=y 649 | CONFIG_MOUNTPOINT=y 650 | CONFIG_NSENTER=y 651 | CONFIG_FEATURE_NSENTER_LONG_OPTS=y 652 | CONFIG_PIVOT_ROOT=y 653 | CONFIG_RDATE=y 654 | # CONFIG_RDEV is not set 655 | CONFIG_READPROFILE=y 656 | CONFIG_RENICE=y 657 | # CONFIG_REV is not set 658 | # CONFIG_RTCWAKE is not set 659 | # CONFIG_SCRIPT is not set 660 | # CONFIG_SCRIPTREPLAY is not set 661 | CONFIG_SETARCH=y 662 | CONFIG_LINUX32=y 663 | CONFIG_LINUX64=y 664 | CONFIG_SETPRIV=y 665 | CONFIG_SETSID=y 666 | CONFIG_SWAPON=y 667 | CONFIG_FEATURE_SWAPON_DISCARD=y 668 | # CONFIG_FEATURE_SWAPON_PRI is not set 669 | CONFIG_SWAPOFF=y 670 | CONFIG_SWITCH_ROOT=y 671 | # CONFIG_TASKSET is not set 672 | # CONFIG_FEATURE_TASKSET_FANCY is not set 673 | CONFIG_UEVENT=y 674 | CONFIG_UMOUNT=y 675 | CONFIG_FEATURE_UMOUNT_ALL=y 676 | CONFIG_UNSHARE=y 677 | # CONFIG_WALL is not set 678 | 679 | # 680 | # Common options for mount/umount 681 | # 682 | CONFIG_FEATURE_MOUNT_LOOP=y 683 | CONFIG_FEATURE_MOUNT_LOOP_CREATE=y 684 | # CONFIG_FEATURE_MTAB_SUPPORT is not set 685 | CONFIG_VOLUMEID=y 686 | 687 | # 688 | # Filesystem/Volume identification 689 | # 690 | CONFIG_FEATURE_VOLUMEID_BCACHE=y 691 | # CONFIG_FEATURE_VOLUMEID_BTRFS is not set 692 | # CONFIG_FEATURE_VOLUMEID_CRAMFS is not set 693 | CONFIG_FEATURE_VOLUMEID_EXFAT=y 694 | CONFIG_FEATURE_VOLUMEID_EXT=y 695 | CONFIG_FEATURE_VOLUMEID_F2FS=y 696 | CONFIG_FEATURE_VOLUMEID_FAT=y 697 | # CONFIG_FEATURE_VOLUMEID_HFS is not set 698 | # CONFIG_FEATURE_VOLUMEID_ISO9660 is not set 699 | # CONFIG_FEATURE_VOLUMEID_JFS is not set 700 | # CONFIG_FEATURE_VOLUMEID_LINUXRAID is not set 701 | # CONFIG_FEATURE_VOLUMEID_LINUXSWAP is not set 702 | # CONFIG_FEATURE_VOLUMEID_LUKS is not set 703 | # CONFIG_FEATURE_VOLUMEID_NILFS is not set 704 | # CONFIG_FEATURE_VOLUMEID_NTFS is not set 705 | # CONFIG_FEATURE_VOLUMEID_OCFS2 is not set 706 | # CONFIG_FEATURE_VOLUMEID_REISERFS is not set 707 | # CONFIG_FEATURE_VOLUMEID_ROMFS is not set 708 | # CONFIG_FEATURE_VOLUMEID_SQUASHFS is not set 709 | # CONFIG_FEATURE_VOLUMEID_SYSV is not set 710 | CONFIG_FEATURE_VOLUMEID_UBIFS=y 711 | # CONFIG_FEATURE_VOLUMEID_UDF is not set 712 | # CONFIG_FEATURE_VOLUMEID_XFS is not set 713 | 714 | # 715 | # Miscellaneous Utilities 716 | # 717 | # CONFIG_ADJTIMEX is not set 718 | # CONFIG_BBCONFIG is not set 719 | # CONFIG_FEATURE_COMPRESS_BBCONFIG is not set 720 | # CONFIG_BEEP is not set 721 | CONFIG_FEATURE_BEEP_FREQ=0 722 | CONFIG_FEATURE_BEEP_LENGTH_MS=0 723 | # CONFIG_CHAT is not set 724 | # CONFIG_FEATURE_CHAT_NOFAIL is not set 725 | # CONFIG_FEATURE_CHAT_TTY_HIFI is not set 726 | # CONFIG_FEATURE_CHAT_IMPLICIT_CR is not set 727 | # CONFIG_FEATURE_CHAT_SWALLOW_OPTS is not set 728 | # CONFIG_FEATURE_CHAT_SEND_ESCAPES is not set 729 | # CONFIG_FEATURE_CHAT_VAR_ABORT_LEN is not set 730 | # CONFIG_FEATURE_CHAT_CLR_ABORT is not set 731 | # CONFIG_CONSPY is not set 732 | CONFIG_CROND=y 733 | # CONFIG_FEATURE_CROND_D is not set 734 | # CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set 735 | CONFIG_FEATURE_CROND_DIR="/var/spool/cron" 736 | CONFIG_CRONTAB=y 737 | CONFIG_DC=y 738 | # CONFIG_FEATURE_DC_LIBM is not set 739 | # CONFIG_DEVFSD is not set 740 | # CONFIG_DEVFSD_MODLOAD is not set 741 | # CONFIG_DEVFSD_FG_NP is not set 742 | # CONFIG_DEVFSD_VERBOSE is not set 743 | # CONFIG_FEATURE_DEVFS is not set 744 | CONFIG_DEVMEM=y 745 | # CONFIG_FBSPLASH is not set 746 | # CONFIG_FLASH_ERASEALL is not set 747 | # CONFIG_FLASH_LOCK is not set 748 | # CONFIG_FLASH_UNLOCK is not set 749 | # CONFIG_FLASHCP is not set 750 | CONFIG_HDPARM=y 751 | CONFIG_FEATURE_HDPARM_GET_IDENTITY=y 752 | # CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set 753 | # CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set 754 | # CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set 755 | # CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set 756 | # CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA is not set 757 | CONFIG_I2CGET=y 758 | CONFIG_I2CSET=y 759 | CONFIG_I2CDUMP=y 760 | CONFIG_I2CDETECT=y 761 | # CONFIG_INOTIFYD is not set 762 | CONFIG_LESS=y 763 | CONFIG_FEATURE_LESS_MAXLINES=9999999 764 | CONFIG_FEATURE_LESS_BRACKETS=y 765 | CONFIG_FEATURE_LESS_FLAGS=y 766 | CONFIG_FEATURE_LESS_TRUNCATE=y 767 | # CONFIG_FEATURE_LESS_MARKS is not set 768 | CONFIG_FEATURE_LESS_REGEXP=y 769 | # CONFIG_FEATURE_LESS_WINCH is not set 770 | # CONFIG_FEATURE_LESS_ASK_TERMINAL is not set 771 | # CONFIG_FEATURE_LESS_DASHCMD is not set 772 | # CONFIG_FEATURE_LESS_LINENUMS is not set 773 | CONFIG_LSSCSI=y 774 | CONFIG_MAKEDEVS=y 775 | # CONFIG_FEATURE_MAKEDEVS_LEAF is not set 776 | CONFIG_FEATURE_MAKEDEVS_TABLE=y 777 | # CONFIG_MAN is not set 778 | CONFIG_MICROCOM=y 779 | CONFIG_MT=y 780 | # CONFIG_NANDWRITE is not set 781 | # CONFIG_NANDDUMP is not set 782 | CONFIG_PARTPROBE=y 783 | # CONFIG_RAIDAUTORUN is not set 784 | # CONFIG_READAHEAD is not set 785 | # CONFIG_RFKILL is not set 786 | CONFIG_RUNLEVEL=y 787 | # CONFIG_RX is not set 788 | CONFIG_SETSERIAL=y 789 | CONFIG_STRINGS=y 790 | CONFIG_TIME=y 791 | # CONFIG_TTYSIZE is not set 792 | # CONFIG_UBIATTACH is not set 793 | # CONFIG_UBIDETACH is not set 794 | # CONFIG_UBIMKVOL is not set 795 | # CONFIG_UBIRMVOL is not set 796 | # CONFIG_UBIRSVOL is not set 797 | # CONFIG_UBIUPDATEVOL is not set 798 | CONFIG_UBIRENAME=y 799 | # CONFIG_VOLNAME is not set 800 | CONFIG_WATCHDOG=y 801 | 802 | # 803 | # Networking Utilities 804 | # 805 | CONFIG_FEATURE_IPV6=y 806 | # CONFIG_FEATURE_UNIX_LOCAL is not set 807 | CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y 808 | # CONFIG_VERBOSE_RESOLUTION_ERRORS is not set 809 | # CONFIG_ARP is not set 810 | CONFIG_ARPING=y 811 | # CONFIG_BRCTL is not set 812 | # CONFIG_FEATURE_BRCTL_FANCY is not set 813 | # CONFIG_FEATURE_BRCTL_SHOW is not set 814 | CONFIG_DNSD=y 815 | CONFIG_ETHER_WAKE=y 816 | # CONFIG_FTPD is not set 817 | # CONFIG_FEATURE_FTPD_WRITE is not set 818 | # CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST is not set 819 | # CONFIG_FEATURE_FTPD_AUTHENTICATION is not set 820 | # CONFIG_FTPGET is not set 821 | # CONFIG_FTPPUT is not set 822 | # CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set 823 | CONFIG_HOSTNAME=y 824 | CONFIG_DNSDOMAINNAME=y 825 | # CONFIG_HTTPD is not set 826 | # CONFIG_FEATURE_HTTPD_RANGES is not set 827 | # CONFIG_FEATURE_HTTPD_SETUID is not set 828 | # CONFIG_FEATURE_HTTPD_BASIC_AUTH is not set 829 | # CONFIG_FEATURE_HTTPD_AUTH_MD5 is not set 830 | # CONFIG_FEATURE_HTTPD_CGI is not set 831 | # CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set 832 | # CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set 833 | # CONFIG_FEATURE_HTTPD_ENCODE_URL_STR is not set 834 | # CONFIG_FEATURE_HTTPD_ERROR_PAGES is not set 835 | # CONFIG_FEATURE_HTTPD_PROXY is not set 836 | # CONFIG_FEATURE_HTTPD_GZIP is not set 837 | CONFIG_IFCONFIG=y 838 | CONFIG_FEATURE_IFCONFIG_STATUS=y 839 | CONFIG_FEATURE_IFCONFIG_SLIP=y 840 | CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y 841 | CONFIG_FEATURE_IFCONFIG_HW=y 842 | # CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set 843 | # CONFIG_IFENSLAVE is not set 844 | # CONFIG_IFPLUGD is not set 845 | CONFIG_IFUP=y 846 | CONFIG_IFDOWN=y 847 | CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" 848 | CONFIG_FEATURE_IFUPDOWN_IP=y 849 | CONFIG_FEATURE_IFUPDOWN_IPV4=y 850 | CONFIG_FEATURE_IFUPDOWN_IPV6=y 851 | CONFIG_FEATURE_IFUPDOWN_MAPPING=y 852 | # CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set 853 | CONFIG_INETD=y 854 | CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO=y 855 | CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD=y 856 | CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME=y 857 | CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME=y 858 | CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN=y 859 | # CONFIG_FEATURE_INETD_RPC is not set 860 | CONFIG_IP=y 861 | CONFIG_IPADDR=y 862 | CONFIG_IPLINK=y 863 | CONFIG_IPROUTE=y 864 | CONFIG_IPTUNNEL=y 865 | CONFIG_IPRULE=y 866 | CONFIG_IPNEIGH=y 867 | CONFIG_FEATURE_IP_ADDRESS=y 868 | CONFIG_FEATURE_IP_LINK=y 869 | CONFIG_FEATURE_IP_ROUTE=y 870 | CONFIG_FEATURE_IP_ROUTE_DIR="/etc/iproute2" 871 | CONFIG_FEATURE_IP_TUNNEL=y 872 | CONFIG_FEATURE_IP_RULE=y 873 | CONFIG_FEATURE_IP_NEIGH=y 874 | # CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set 875 | # CONFIG_IPCALC is not set 876 | # CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set 877 | # CONFIG_FEATURE_IPCALC_FANCY is not set 878 | # CONFIG_FAKEIDENTD is not set 879 | CONFIG_NAMEIF=y 880 | # CONFIG_FEATURE_NAMEIF_EXTENDED is not set 881 | # CONFIG_NBDCLIENT is not set 882 | # CONFIG_NC is not set 883 | # CONFIG_NC_SERVER is not set 884 | # CONFIG_NC_EXTRA is not set 885 | # CONFIG_NC_110_COMPAT is not set 886 | CONFIG_NETSTAT=y 887 | # CONFIG_FEATURE_NETSTAT_WIDE is not set 888 | # CONFIG_FEATURE_NETSTAT_PRG is not set 889 | CONFIG_NSLOOKUP=y 890 | # CONFIG_NTPD is not set 891 | # CONFIG_FEATURE_NTPD_SERVER is not set 892 | # CONFIG_FEATURE_NTPD_CONF is not set 893 | CONFIG_PING=y 894 | CONFIG_PING6=y 895 | CONFIG_FEATURE_FANCY_PING=y 896 | # CONFIG_PSCAN is not set 897 | CONFIG_ROUTE=y 898 | # CONFIG_SLATTACH is not set 899 | CONFIG_SSL_CLIENT=y 900 | # CONFIG_TCPSVD is not set 901 | # CONFIG_UDPSVD is not set 902 | CONFIG_TELNET=y 903 | CONFIG_FEATURE_TELNET_TTYPE=y 904 | CONFIG_FEATURE_TELNET_AUTOLOGIN=y 905 | CONFIG_FEATURE_TELNET_WIDTH=y 906 | # CONFIG_TELNETD is not set 907 | # CONFIG_FEATURE_TELNETD_STANDALONE is not set 908 | # CONFIG_FEATURE_TELNETD_INETD_WAIT is not set 909 | CONFIG_TFTP=y 910 | # CONFIG_TFTPD is not set 911 | 912 | # 913 | # Common options for tftp/tftpd 914 | # 915 | CONFIG_FEATURE_TFTP_GET=y 916 | CONFIG_FEATURE_TFTP_PUT=y 917 | CONFIG_FEATURE_TFTP_BLOCKSIZE=y 918 | # CONFIG_FEATURE_TFTP_PROGRESS_BAR is not set 919 | # CONFIG_TFTP_DEBUG is not set 920 | CONFIG_TLS=y 921 | CONFIG_TRACEROUTE=y 922 | # CONFIG_TRACEROUTE6 is not set 923 | # CONFIG_FEATURE_TRACEROUTE_VERBOSE is not set 924 | # CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set 925 | # CONFIG_TUNCTL is not set 926 | # CONFIG_FEATURE_TUNCTL_UG is not set 927 | CONFIG_VCONFIG=y 928 | CONFIG_WGET=y 929 | CONFIG_FEATURE_WGET_LONG_OPTIONS=y 930 | CONFIG_FEATURE_WGET_STATUSBAR=y 931 | CONFIG_FEATURE_WGET_AUTHENTICATION=y 932 | CONFIG_FEATURE_WGET_TIMEOUT=y 933 | CONFIG_FEATURE_WGET_HTTPS=y 934 | CONFIG_FEATURE_WGET_OPENSSL=y 935 | # CONFIG_WHOIS is not set 936 | # CONFIG_ZCIP is not set 937 | # CONFIG_UDHCPC6 is not set 938 | # CONFIG_FEATURE_UDHCPC6_RFC3646 is not set 939 | # CONFIG_FEATURE_UDHCPC6_RFC4704 is not set 940 | # CONFIG_FEATURE_UDHCPC6_RFC4833 is not set 941 | # CONFIG_UDHCPD is not set 942 | # CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set 943 | # CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set 944 | CONFIG_DHCPD_LEASES_FILE="" 945 | # CONFIG_DUMPLEASES is not set 946 | # CONFIG_DHCPRELAY is not set 947 | # CONFIG_UDHCPC is not set 948 | # CONFIG_FEATURE_UDHCPC_ARPING is not set 949 | # CONFIG_FEATURE_UDHCPC_SANITIZEOPT is not set 950 | CONFIG_UDHCPC_DEFAULT_SCRIPT="" 951 | # CONFIG_FEATURE_UDHCP_PORT is not set 952 | CONFIG_UDHCP_DEBUG=0 953 | # CONFIG_FEATURE_UDHCP_RFC3397 is not set 954 | # CONFIG_FEATURE_UDHCP_8021Q is not set 955 | CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=0 956 | CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" 957 | 958 | # 959 | # Print Utilities 960 | # 961 | # CONFIG_LPD is not set 962 | # CONFIG_LPR is not set 963 | # CONFIG_LPQ is not set 964 | 965 | # 966 | # Mail Utilities 967 | # 968 | # CONFIG_MAKEMIME is not set 969 | # CONFIG_POPMAILDIR is not set 970 | # CONFIG_FEATURE_POPMAILDIR_DELIVERY is not set 971 | # CONFIG_REFORMIME is not set 972 | # CONFIG_FEATURE_REFORMIME_COMPAT is not set 973 | # CONFIG_SENDMAIL is not set 974 | CONFIG_FEATURE_MIME_CHARSET="" 975 | 976 | # 977 | # Process Utilities 978 | # 979 | CONFIG_FREE=y 980 | CONFIG_FUSER=y 981 | # CONFIG_IOSTAT is not set 982 | CONFIG_KILL=y 983 | CONFIG_KILLALL=y 984 | CONFIG_KILLALL5=y 985 | CONFIG_LSOF=y 986 | # CONFIG_MPSTAT is not set 987 | # CONFIG_NMETER is not set 988 | # CONFIG_PGREP is not set 989 | # CONFIG_PKILL is not set 990 | CONFIG_PIDOF=y 991 | CONFIG_FEATURE_PIDOF_SINGLE=y 992 | CONFIG_FEATURE_PIDOF_OMIT=y 993 | # CONFIG_PMAP is not set 994 | # CONFIG_POWERTOP is not set 995 | # CONFIG_FEATURE_POWERTOP_INTERACTIVE is not set 996 | CONFIG_PS=y 997 | # CONFIG_FEATURE_PS_WIDE is not set 998 | # CONFIG_FEATURE_PS_LONG is not set 999 | # CONFIG_FEATURE_PS_TIME is not set 1000 | # CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set 1001 | # CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS is not set 1002 | # CONFIG_PSTREE is not set 1003 | # CONFIG_PWDX is not set 1004 | # CONFIG_SMEMCAP is not set 1005 | CONFIG_BB_SYSCTL=y 1006 | CONFIG_TOP=y 1007 | CONFIG_FEATURE_TOP_INTERACTIVE=y 1008 | CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y 1009 | CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y 1010 | # CONFIG_FEATURE_TOP_SMP_CPU is not set 1011 | # CONFIG_FEATURE_TOP_DECIMALS is not set 1012 | # CONFIG_FEATURE_TOP_SMP_PROCESS is not set 1013 | # CONFIG_FEATURE_TOPMEM is not set 1014 | CONFIG_UPTIME=y 1015 | # CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set 1016 | CONFIG_WATCH=y 1017 | # CONFIG_FEATURE_SHOW_THREADS is not set 1018 | 1019 | # 1020 | # Runit Utilities 1021 | # 1022 | # CONFIG_CHPST is not set 1023 | # CONFIG_SETUIDGID is not set 1024 | # CONFIG_ENVUIDGID is not set 1025 | # CONFIG_ENVDIR is not set 1026 | # CONFIG_SOFTLIMIT is not set 1027 | # CONFIG_RUNSV is not set 1028 | # CONFIG_RUNSVDIR is not set 1029 | # CONFIG_FEATURE_RUNSVDIR_LOG is not set 1030 | # CONFIG_SV is not set 1031 | CONFIG_SV_DEFAULT_SERVICE_DIR="" 1032 | CONFIG_SVC=y 1033 | # CONFIG_SVLOGD is not set 1034 | # CONFIG_CHCON is not set 1035 | # CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set 1036 | # CONFIG_GETENFORCE is not set 1037 | # CONFIG_GETSEBOOL is not set 1038 | # CONFIG_LOAD_POLICY is not set 1039 | # CONFIG_MATCHPATHCON is not set 1040 | # CONFIG_RUNCON is not set 1041 | # CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set 1042 | # CONFIG_SELINUXENABLED is not set 1043 | # CONFIG_SESTATUS is not set 1044 | # CONFIG_SETENFORCE is not set 1045 | # CONFIG_SETFILES is not set 1046 | # CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set 1047 | # CONFIG_RESTORECON is not set 1048 | # CONFIG_SETSEBOOL is not set 1049 | 1050 | # 1051 | # Shells 1052 | # 1053 | CONFIG_SH_IS_ASH=y 1054 | # CONFIG_SH_IS_HUSH is not set 1055 | # CONFIG_SH_IS_NONE is not set 1056 | # CONFIG_BASH_IS_ASH is not set 1057 | # CONFIG_BASH_IS_HUSH is not set 1058 | CONFIG_BASH_IS_NONE=y 1059 | CONFIG_ASH=y 1060 | CONFIG_ASH_OPTIMIZE_FOR_SIZE=y 1061 | CONFIG_ASH_INTERNAL_GLOB=y 1062 | CONFIG_ASH_BASH_COMPAT=y 1063 | CONFIG_ASH_JOB_CONTROL=y 1064 | CONFIG_ASH_ALIAS=y 1065 | CONFIG_ASH_RANDOM_SUPPORT=y 1066 | CONFIG_ASH_EXPAND_PRMT=y 1067 | CONFIG_ASH_IDLE_TIMEOUT=y 1068 | # CONFIG_ASH_MAIL is not set 1069 | CONFIG_ASH_ECHO=y 1070 | CONFIG_ASH_PRINTF=y 1071 | CONFIG_ASH_TEST=y 1072 | CONFIG_ASH_HELP=y 1073 | CONFIG_ASH_GETOPTS=y 1074 | CONFIG_ASH_CMDCMD=y 1075 | # CONFIG_CTTYHACK is not set 1076 | # CONFIG_HUSH is not set 1077 | # CONFIG_HUSH_BASH_COMPAT is not set 1078 | # CONFIG_HUSH_BRACE_EXPANSION is not set 1079 | # CONFIG_HUSH_INTERACTIVE is not set 1080 | # CONFIG_HUSH_SAVEHISTORY is not set 1081 | # CONFIG_HUSH_JOB is not set 1082 | # CONFIG_HUSH_TICK is not set 1083 | # CONFIG_HUSH_IF is not set 1084 | # CONFIG_HUSH_LOOPS is not set 1085 | # CONFIG_HUSH_CASE is not set 1086 | # CONFIG_HUSH_FUNCTIONS is not set 1087 | # CONFIG_HUSH_LOCAL is not set 1088 | # CONFIG_HUSH_RANDOM_SUPPORT is not set 1089 | # CONFIG_HUSH_MODE_X is not set 1090 | # CONFIG_HUSH_ECHO is not set 1091 | # CONFIG_HUSH_PRINTF is not set 1092 | # CONFIG_HUSH_TEST is not set 1093 | # CONFIG_HUSH_HELP is not set 1094 | # CONFIG_HUSH_EXPORT is not set 1095 | # CONFIG_HUSH_EXPORT_N is not set 1096 | # CONFIG_HUSH_KILL is not set 1097 | # CONFIG_HUSH_WAIT is not set 1098 | # CONFIG_HUSH_TRAP is not set 1099 | # CONFIG_HUSH_TYPE is not set 1100 | # CONFIG_HUSH_READ is not set 1101 | # CONFIG_HUSH_SET is not set 1102 | # CONFIG_HUSH_UNSET is not set 1103 | # CONFIG_HUSH_ULIMIT is not set 1104 | # CONFIG_HUSH_UMASK is not set 1105 | # CONFIG_HUSH_MEMLEAK is not set 1106 | # CONFIG_MSH is not set 1107 | 1108 | # 1109 | # Options common to all shells 1110 | # 1111 | CONFIG_FEATURE_SH_MATH=y 1112 | CONFIG_FEATURE_SH_MATH_64=y 1113 | CONFIG_FEATURE_SH_EXTRA_QUIET=y 1114 | # CONFIG_FEATURE_SH_STANDALONE is not set 1115 | # CONFIG_FEATURE_SH_NOFORK is not set 1116 | # CONFIG_FEATURE_SH_HISTFILESIZE is not set 1117 | 1118 | # 1119 | # System Logging Utilities 1120 | # 1121 | CONFIG_KLOGD=y 1122 | CONFIG_FEATURE_KLOGD_KLOGCTL=y 1123 | CONFIG_LOGGER=y 1124 | # CONFIG_LOGREAD is not set 1125 | # CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set 1126 | CONFIG_SYSLOGD=y 1127 | CONFIG_FEATURE_ROTATE_LOGFILE=y 1128 | CONFIG_FEATURE_REMOTE_LOG=y 1129 | # CONFIG_FEATURE_SYSLOGD_DUP is not set 1130 | # CONFIG_FEATURE_SYSLOGD_CFG is not set 1131 | CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=256 1132 | # CONFIG_FEATURE_IPC_SYSLOG is not set 1133 | CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 1134 | # CONFIG_FEATURE_KMSG_SYSLOG is not set 1135 | -------------------------------------------------------------------------------- /scripts/build-busybox: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $(dirname $0)/.. 5 | 6 | : ${ARTIFACTS:=$(pwd)/assets} 7 | : ${BUILD:=$(pwd)/build} 8 | 9 | busybox_install() 10 | { 11 | local build=$1 12 | local conf=$2 13 | local bbconf=$3 14 | local target=$4 15 | echo "SO $build, $conf, $bbconf, $target" 16 | echo "SO $target" 17 | 18 | mkdir -p ${BUILD} 19 | cd ${BUILD} 20 | 21 | local buildroot=$(ls -1 ${ARTIFACTS}/${TARBALL}) 22 | 23 | if [ ! -e "${buildroot}" ]; then 24 | echo "Failed to find busybox archive, found : ${buildroot}" 1>&2 25 | return 1 26 | else 27 | buildroot=$(basename $buildroot) 28 | fi 29 | 30 | DIR=${buildroot/.tar.*//} 31 | mkdir -p ${DIR} 32 | tar xf ${ARTIFACTS}/${buildroot} -C ${DIR} --strip-components=1 33 | cd ${DIR} 34 | 35 | cp $conf .config 36 | if [ -n "$bbconf" ]; then 37 | cp $bbconf package/busybox/ 38 | fi 39 | export HOME=${BUILD} 40 | make oldconfig 41 | cp .config ${target}.config 42 | 43 | if [ "$build" == "config" ]; then 44 | make busybox-menuconfig 45 | cp output/build/busybox-*/.config ${target}.$(basename $bbconf) 46 | fi 47 | 48 | 49 | if [ "$build" == "build" ]; then 50 | make 51 | tar cvJf $target -C output/images . 52 | fi 53 | } 54 | 55 | busybox_install "$1" "$2" "$3" "$4" 56 | -------------------------------------------------------------------------------- /scripts/ci: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $(dirname $0)/.. 5 | 6 | : ${CONFIG:=$(pwd)/config} 7 | : ${DIST:=$(pwd)/dist} 8 | : ${ARCH:='amd64 arm64'} 9 | 10 | echo "about to build ${ARCH}" 11 | 12 | mkdir -p ${DIST}/artifacts 13 | 14 | for arch in $ARCH; do 15 | echo "++++++++ BUILDING ${arch}" 16 | ./scripts/build-busybox "build" ${CONFIG}/${arch}/buildroot-config ${CONFIG}/busybox-dynamic.config ${DIST}/artifacts/os-base_${arch}.tar.xz 17 | done 18 | -------------------------------------------------------------------------------- /scripts/config: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -ex 3 | 4 | cd $(dirname $0)/.. 5 | 6 | : ${CONFIG:=$(pwd)/config} 7 | : ${DIST:=$(pwd)/dist} 8 | : ${ARCH:='amd64 arm64'} 9 | 10 | echo "about to update config ${ARCH}" 11 | 12 | mkdir -p ${DIST}/artifacts 13 | 14 | for arch in $ARCH; do 15 | echo "++++++++ updating config ${arch}" 16 | ./scripts/build-busybox "config" ${CONFIG}/${arch}/buildroot-config ${CONFIG}/busybox-dynamic.config ${DIST}/artifacts/os-base_${arch}.tar.xz 17 | done 18 | -------------------------------------------------------------------------------- /scripts/entry: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | mkdir -p bin dist build/initrd 5 | if [ -e ./scripts/$1 ]; then 6 | ./scripts/"$@" 7 | else 8 | "$@" 9 | fi 10 | 11 | EXIT=$? 12 | 13 | chown -R $DAPPER_UID:$DAPPER_GID . 14 | 15 | exit $EXIT 16 | -------------------------------------------------------------------------------- /scripts/fix-up-image.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd output/target 4 | rm -rfv \ 5 | usr/share/locale \ 6 | usr/bin/cal \ 7 | usr/bin/col \ 8 | usr/bin/colcrt \ 9 | usr/bin/colrm \ 10 | usr/bin/column \ 11 | usr/bin/findmnt \ 12 | usr/bin/flock \ 13 | usr/bin/i386 \ 14 | usr/bin/ipcmk \ 15 | usr/bin/isosize \ 16 | usr/bin/look \ 17 | usr/bin/lsblk \ 18 | usr/bin/lscpu \ 19 | usr/bin/lsipc \ 20 | usr/bin/lslocks \ 21 | usr/bin/lslogins \ 22 | usr/bin/lsns \ 23 | usr/bin/mcookie \ 24 | usr/bin/namei \ 25 | usr/bin/pg \ 26 | usr/bin/prlimit \ 27 | usr/bin/rev \ 28 | usr/bin/script \ 29 | usr/bin/scriptreplay \ 30 | usr/bin/stat \ 31 | usr/bin/tailf \ 32 | usr/bin/uname26 \ 33 | usr/bin/whereis \ 34 | usr/bin/x86_64 \ 35 | usr/sbin/blkdiscard \ 36 | usr/sbin/blockdev \ 37 | usr/sbin/cfdisk \ 38 | usr/sbin/chcpu \ 39 | usr/sbin/ctrlaltdel \ 40 | usr/sbin/findfs \ 41 | usr/sbin/fsfreeze \ 42 | usr/sbin/ldattach \ 43 | usr/sbin/mkfs \ 44 | usr/sbin/rtcwake \ 45 | usr/sbin/swaplabel \ 46 | usr/sbin/wipefs \ 47 | usr/share/bash-completion/completions/blkdiscard \ 48 | usr/share/bash-completion/completions/blkid \ 49 | usr/share/bash-completion/completions/blockdev \ 50 | usr/share/bash-completion/completions/cal \ 51 | usr/share/bash-completion/completions/cfdisk \ 52 | usr/share/bash-completion/completions/chcpu \ 53 | usr/share/bash-completion/completions/col \ 54 | usr/share/bash-completion/completions/colcrt \ 55 | usr/share/bash-completion/completions/colrm \ 56 | usr/share/bash-completion/completions/column \ 57 | usr/share/bash-completion/completions/ctrlaltdel \ 58 | usr/share/bash-completion/completions/dmesg \ 59 | usr/share/bash-completion/completions/fdisk \ 60 | usr/share/bash-completion/completions/findmnt \ 61 | usr/share/bash-completion/completions/flock \ 62 | usr/share/bash-completion/completions/fsfreeze \ 63 | usr/share/bash-completion/completions/fstrim \ 64 | usr/share/bash-completion/completions/getopt \ 65 | usr/share/bash-completion/completions/hexdump \ 66 | usr/share/bash-completion/completions/ipcmk \ 67 | usr/share/bash-completion/completions/ipcrm \ 68 | usr/share/bash-completion/completions/ipcs \ 69 | usr/share/bash-completion/completions/isosize \ 70 | usr/share/bash-completion/completions/ldattach \ 71 | usr/share/bash-completion/completions/logger \ 72 | usr/share/bash-completion/completions/look \ 73 | usr/share/bash-completion/completions/lsblk \ 74 | usr/share/bash-completion/completions/lscpu \ 75 | usr/share/bash-completion/completions/lsipc \ 76 | usr/share/bash-completion/completions/lslocks \ 77 | usr/share/bash-completion/completions/lslogins \ 78 | usr/share/bash-completion/completions/lsns \ 79 | usr/share/bash-completion/completions/mcookie \ 80 | usr/share/bash-completion/completions/mkfs \ 81 | usr/share/bash-completion/completions/mkswap \ 82 | usr/share/bash-completion/completions/namei \ 83 | usr/share/bash-completion/completions/pg \ 84 | usr/share/bash-completion/completions/prlimit \ 85 | usr/share/bash-completion/completions/readprofile \ 86 | usr/share/bash-completion/completions/renice \ 87 | usr/share/bash-completion/completions/rev \ 88 | usr/share/bash-completion/completions/rtcwake \ 89 | usr/share/bash-completion/completions/script \ 90 | usr/share/bash-completion/completions/scriptreplay \ 91 | usr/share/bash-completion/completions/setarch \ 92 | usr/share/bash-completion/completions/setsid \ 93 | usr/share/bash-completion/completions/swaplabel \ 94 | usr/share/bash-completion/completions/swapoff \ 95 | usr/share/bash-completion/completions/swapon \ 96 | usr/share/bash-completion/completions/tailf \ 97 | usr/share/bash-completion/completions/whereis \ 98 | usr/share/bash-completion/completions/wipefs 99 | -------------------------------------------------------------------------------- /scripts/release: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname $0)/.. 4 | : ${ARTIFACTS:=$(pwd)/dist/artifacts} 5 | 6 | ./scripts/ci 2>&1 | tee build.log 7 | mv build.log dist/build_${ARCH}.log 8 | 9 | RELEASE_VERSION=$(git tag -l --contains HEAD | head -n 1) 10 | 11 | echo 12 | echo "to publish release to github, run dist/publish.sh" 13 | 14 | echo "#!/bin/sh"> dist/publish.sh 15 | #echo "hub release create -t ${COMMIT} -m v${RELEASE_VERSION} v${RELEASE_VERSION}" >> dist/publish.sh 16 | echo "for f in \$(ls ./dist/artifacts) ; do" >> dist/publish.sh 17 | echo " hub release edit -m v${RELEASE_VERSION} -a ./dist/artifacts/\${f} v${RELEASE_VERSION}" >> dist/publish.sh 18 | echo "done" >> dist/publish.sh 19 | echo "hub release edit -m v${RELEASE_VERSION} -a ./dist/build_${ARCH}.log v${RELEASE_VERSION}" >> dist/publish.sh 20 | 21 | chmod 755 dist/publish.sh 22 | --------------------------------------------------------------------------------