]> rtime.felk.cvut.cz Git - novaboot.git/commitdiff
examples: Do not compile buildroot toolchain, just download a pre-built one
authorMichal Sojka <sojkam1@fel.cvut.cz>
Mon, 14 Apr 2014 07:54:19 +0000 (09:54 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Mon, 14 Apr 2014 07:54:19 +0000 (09:54 +0200)
README.md
examples/build/buildroot/.config

index 0910549ec08270105b809ce8c8cf7aa0ff45958b..4a6ebcbce241e498b01020246a37c1a3bc69a820 100644 (file)
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ target host. Finally, target host's serial output is redirected to
 standard output if that is possible.
 
 Typical way of using novaboot is to make the novaboot script
-executable and set its first line to _\#!/usr/bin/env novaboot_. Then,
+executable and set its first line to _#!/usr/bin/env novaboot_. Then,
 booting a particular OS configuration becomes the same as executing a
 local program - the novaboot script.
 
@@ -63,7 +63,7 @@ host from it. E.g.
     configurations.
 
 Note that the options needed for a specific target can be stored in a
-["CONFIGURATION FILE"](#configuration-file). Then it is sufficient to use only the __\-t__
+["CONFIGURATION FILE"](#configuration-file). Then it is sufficient to use only the __-t__
 option to specify the name of the target.
 
 # PHASES AND OPTIONS
@@ -89,22 +89,22 @@ and options precede the script name, as in the example ["4."](#4) above.
 In this case the current working directory is used as a starting point
 for configuration file search.
 
-- \-c, --config=_filename_
+- -c, --config=_filename_
 
     Use the specified configuration file instead of the default one(s).
 
 ## Command line processing phase
 
-- \--dump-config
+- --dump-config
 
     Dump the current configuration to stdout end exits. Useful as an
     initial template for a configuration file.
 
-- \-h, --help
+- -h, --help
 
-    Print short (__\-h__) or long (__\--help__) help.
+    Print short (__-h__) or long (__--help__) help.
 
-- \-t, --target=_target_
+- -t, --target=_target_
 
     This option serves as a user configurable shortcut for other novaboot
     options. The effect of this option is the same as the options stored
@@ -116,39 +116,39 @@ for configuration file search.
 This phases allows to modify the parsed novaboot script before it is
 used in the later phases.
 
-- \-a, --append=_parameters_
+- -a, --append=_parameters_
 
     Append a string to the first `load` line in the novaboot script. This
     can be used to append parameters to the kernel's or root task's
     command line. Can appear multiple times.
 
-- \-b, --bender
+- -b, --bender
 
     Use `bender` chainloader. Bender scans the PCI bus for PCI serial
     ports and stores the information about them in the BIOS data area for
     use by the kernel.
 
-- \--chainloader=_chainloader_
+- --chainloader=_chainloader_
 
     Chainloader that is loaded before the kernel and other files specified
     in the novaboot script. E.g. 'bin/boot/bender promisc'.
 
-- \--dump
+- --dump
 
     Print the modules to boot and their parameters after this phase
     finishes. Then exit. This is useful for seeing the effect of other
     options in this section.
 
-- \-k, --kernel=`file`
+- -k, --kernel=`file`
 
     Replace the first word on the first `load` line in the novaboot
     script with `file`.
 
-- \--scriptmod=_perl expression_
+- --scriptmod=_perl expression_
 
     When novaboot script is read, _perl expression_ is executed for every
     line (in $\_ variable). For example, `novaboot
-    --scriptmod=s/sigma0/omega6/g` replaces every occurrence of _sigma0_
+    \--scriptmod=s/sigma0/omega6/g` replaces every occurrence of _sigma0_
     in the script with _omega6_.
 
     When this option is present, it overrides _$script\_modifier_ variable
@@ -165,7 +165,7 @@ possible to generate other files using _heredoc_ or _"<"_ syntax in
 novaboot scripts. Finally, binaries can be generated in this phases by
 running `scons` or `make`.
 
-- \--build-dir=_directory_
+- --build-dir=_directory_
 
     Overrides the default build directory location.
 
@@ -176,32 +176,32 @@ running `scons` or `make`.
 
     See also ["BUILDDIR"](#builddir) variable.
 
-- \-g, --grub\[=_filename_\]
+- -g, --grub\[=_filename_\]
 
     Generates grub bootloader menu file. If the _filename_ is not
     specified, `menu.lst` is used. The _filename_ is relative to the
-    build directory (see __\--build-dir__).
+    build directory (see __--build-dir__).
 
-- \--grub-preamble=_prefix_
+- --grub-preamble=_prefix_
 
     Specifies the _preable_ that is at the beginning of the generated
     GRUB or GRUB2 config files. This is useful for specifying GRUB's
     timeout.
 
-- \--grub-prefix=_prefix_
+- --grub-prefix=_prefix_
 
     Specifies _prefix_ that is put in front of every file name in GRUB's
     `menu.lst`. The default value is the absolute path to the build directory.
 
     If the _prefix_ contains string $NAME, it will be replaced with the
-    name of the novaboot script (see also __\--name__).
+    name of the novaboot script (see also __--name__).
 
-- \--grub2\[=_filename_\]
+- --grub2\[=_filename_\]
 
     Generate GRUB2 menuentry in _filename_. If _filename_ is not
     specified `grub.cfg` is used. The content of the menuentry can be
-    customized with __\--grub-preable__, __\--grub2-prolog__ or
-    __\--grub\_prefix__ options.
+    customized with __--grub-preable__, __--grub2-prolog__ or
+    __--grub\_prefix__ options.
 
     In order to use the the generated menuentry on your development
     machine that uses GRUB2, append the following snippet to
@@ -212,44 +212,44 @@ running `scons` or `make`.
           source /path/to/nul/build/grub.cfg
         fi
 
-- \--grub2-prolog=_prolog_
+- --grub2-prolog=_prolog_
 
     Specifies text _preable_ that is put at the beginning of the entry
     GRUB2 entry.
 
-- \-m, --make\[=make command\]
+- -m, --make\[=make command\]
 
     Runs `make` to build files that are not generated by novaboot itself.
 
-- \--name=_string_
+- --name=_string_
 
     Use the name _string_ instead of the name of the novaboot script.
     This name is used for things like a title of grub menu or for the
     server directory where the boot files are copied to.
 
-- \--no-file-gen
+- --no-file-gen
 
     Do not run external commands to generate files (i.e. "<" syntax and
     `run` keyword). This switch does not influence generation of files
     specified with "<<WORD" syntax.
 
-- \-p, --pulsar\[=mac\]
+- -p, --pulsar\[=mac\]
 
     Generates pulsar bootloader configuration file named `config-_mac_`
     The _mac_ string is typically a MAC address and defaults to
     _novaboot_.
 
-- \--scons\[=scons command\]
+- --scons\[=scons command\]
 
     Runs `scons` to build files that are not generated by novaboot
     itself.
 
-- \--strip-rom
+- --strip-rom
 
     Strip _rom://_ prefix from command lines and generated config files.
     The _rom://_ prefix is used by NUL. For NRE, it has to be stripped.
 
-- \--gen-only
+- --gen-only
 
     Exit novaboot after file generation phase.
 
@@ -259,7 +259,7 @@ If supported by the target, the connection to it is made and it is
 checked whether the target is not occupied by another novaboot
 user/instance.
 
-- \--amt=_"\[user\[:password\]@\]host\[:port\]_
+- --amt=_"\[user\[:password\]@\]host\[:port\]_
 
     Use Intel AMT technology to control the target machine. WS management
     is used to powercycle it and Serial-Over-Lan (SOL) for input/output.
@@ -268,7 +268,7 @@ user/instance.
     used. The _port_ specifies a TCP port for SOL. If not specified, the
     default is 16992. Default _user_ is admin.
 
-- \--iprelay=_addr\[:port\]_
+- --iprelay=_addr\[:port\]_
 
     Use TCP/IP relay and serial port to access the target's serial port
     and powercycle it. The IP address of the relay is given by _addr_
@@ -276,7 +276,7 @@ user/instance.
 
     Note: This option is supposed to work with HWG-ER02a IP relays.
 
-- \-s, --serial\[=device\]
+- -s, --serial\[=device\]
 
     Target's serial line is connected to host's serial line (device). The
     default value for device is `/dev/ttyUSB0`.
@@ -284,31 +284,29 @@ user/instance.
     The value of this option is exported in NB\_NOVABOOT environment
     variable to all subprocesses run by `novaboot`.
 
-- \--stty=_settings_
+- --stty=_settings_
 
     Specifies settings passed to `stty` invoked on the serial line
-    specified with __\--serial__ option. If this option is not given,
+    specified with __--serial__ option. If this option is not given,
     `stty` is called with `raw -crtscts -onlcr 115200` settings.
 
-- \--remote-cmd=_cmd_
+- --remote-cmd=_cmd_
 
     Command that mediates connection to the target's serial line. For
     example `ssh server 'cu -l /dev/ttyS0'`.
 
-- \--remote-expect=_string_
+- --remote-expect=_string_
 
     Wait for reception of _string_ after establishing the the remote
     connection before continuing.
 
-
-
 ## File deployment phase
 
 In some setups, it is necessary to copy the files needed for booting
 to a particular location, e.g. to a TFTP boot server or to the
 `/boot` partition.
 
-- \-d, --dhcp-tftp
+- -d, --dhcp-tftp
 
     Turns your workstation into a DHCP and TFTP server so that the OS can
     be booted via PXE BIOS (or similar mechanism) on the test machine
@@ -322,71 +320,71 @@ to a particular location, e.g. to a TFTP boot server or to the
         Cmnd_Alias NOVABOOT = /bin/ip a add 10.23.23.1/24 dev eth0, /bin/ip l set dev eth0 up, /usr/sbin/dhcpd -d -cf dhcpd.conf -lf dhcpd.leases -pf dhcpd.pid, /usr/sbin/in.tftpd --foreground --secure -v -v -v --pidfile tftpd.pid *, /usr/bin/touch dhcpd.leases, /usr/bin/pkill --pidfile=dhcpd.pid, /usr/bin/pkill --pidfile=tftpd.pid
         your_login ALL=NOPASSWD: NOVABOOT
 
-- \--iso\[=filename\]
+- --iso\[=filename\]
 
     Generates the ISO image that boots NOVA system via GRUB. If no filename
     is given, the image is stored under _NAME_.iso, where _NAME_ is the name
-    of the novaboot script (see also __\--name__).
+    of the novaboot script (see also __--name__).
 
-- \--server\[=\[\[user@\]server:\]path\]
+- --server\[=\[\[user@\]server:\]path\]
 
-    Copy all files needed for booting to another location (implies __\-g__
-    unless __\--grub2__ is given). The files will be copied (by __rsync__
+    Copy all files needed for booting to another location (implies __-g__
+    unless __--grub2__ is given). The files will be copied (by __rsync__
     tool) to the directory _path_. If the _path_ contains string $NAME,
     it will be replaced with the name of the novaboot script (see also
-    __\--name__).
+    __--name__).
 
-- \--concat
+- --concat
 
-    If __\--server__ is used and its value ends with $NAME, then after
+    If __--server__ is used and its value ends with $NAME, then after
     copying the files, a new bootloader configuration file (e.g. menu.lst)
-    is created at _path-wo-name_, i.e. the path specified by __\--server__
+    is created at _path-wo-name_, i.e. the path specified by __--server__
     with $NAME part removed. The content of the file is created by
     concatenating all files of the same name from all subdirectories of
     _path-wo-name_ found on the "server".
 
-- \--rsync-flags=_flags_
+- --rsync-flags=_flags_
 
     Specifies which _flags_ are appended to `rsync` command line when
-    copying files as a result of _\--server_ option.
+    copying files as a result of _--server_ option.
 
 ## Target power-on and reset phase
 
-- \--on, --off
+- --on, --off
 
     Switch on/off the target machine and exit. The script (if any) is
-    completely ignored. Currently it works only with __\--iprelay__ or
-    __\--amt__.
+    completely ignored. Currently it works only with __--iprelay__ or
+    __--amt__.
 
-- \-Q, --qemu\[=_qemu-binary_\]
+- -Q, --qemu\[=_qemu-binary_\]
 
     Boot the configuration in qemu. Optionally, the name of qemu binary
     can be specified as a parameter.
 
-- \--qemu-append=_flags_
+- --qemu-append=_flags_
 
     Append _flags_ to the default qemu flags (QEMU\_FLAGS variable or
     `-cpu coreduo -smp 2`).
 
-- \-q, --qemu-flags=_flags_
+- -q, --qemu-flags=_flags_
 
     Replace the default qemu flags (QEMU\_FLAGS variable or `-cpu coreduo
-    -smp 2`) with _flags_ specified here.
+    \-smp 2`) with _flags_ specified here.
 
-- \--reset-cmd=_cmd_
+- --reset-cmd=_cmd_
 
     Command that resets the target.
 
 ## Interaction with the bootloader on the target
 
-- \--uboot
+- --uboot
 
     Interact with uBoot bootloader to boot the thing described in the
     novaboot script. Implementation of this option is currently tied to a
     particular board that we use. It may be subject to changes in the
     future!
 
-- \--uboot-init
+- --uboot-init
 
     Command(s) to send the U-Boot bootloader before loading the images and
     booting them.
@@ -397,17 +395,17 @@ In this phase, target's serial output is redirected to stdout and if
 stdin is a TTY, it is redirected to the target's serial input allowing
 interactive work with the target.
 
-- \--exiton=_string_
+- --exiton=_string_
 
     When _string_ is sent by the target, novaboot exits. This option can
     be specified multiple times.
 
-    If _string_ is `-re`, then the next __\--exiton__'s _string_ is
+    If _string_ is `-re`, then the next __--exiton__'s _string_ is
     treated as regular expression. For example:
 
         --exiton -re --exiton 'error:.*failed'
 
-- \-i, --interactive
+- -i, --interactive
 
     Setup things for interactive use of target. Your terminal will be
     switched to raw mode. In raw mode, your system does not process input
@@ -416,24 +414,24 @@ interactive work with the target.
     to the target and does no longer interrupt novaboot. Use "~~."
     sequence to exit novaboot.
 
-- \--expect=_string_
+- --expect=_string_
 
     When _string_ is received from the target, send the string specified
-    with the subsequent __\--send\*__ option to the target.
+    with the subsequent __--send\*__ option to the target.
 
-- \--expect-re=_regex_
+- --expect-re=_regex_
 
     When target's output matches regular expression _regex_, send the
-    string specified with the subsequent __\--send\*__ option to the target.
+    string specified with the subsequent __--send\*__ option to the target.
 
-- \--expect-raw=_perl-code_
+- --expect-raw=_perl-code_
 
     Provides direct control over Perl's Expect module.
 
-- \--send=_string_
+- --send=_string_
 
     Send _string_ to the target after the previously specified
-    __\--expect\*__ was matched in the target's output. The _string_ may
+    __--expect\*__ was matched in the target's output. The _string_ may
     contain escape sequences such as "\\n".
 
     Note that _string_ is actually interpreted by Perl, so it can contain
@@ -442,9 +440,9 @@ interactive work with the target.
 
     Example: `--expect='login: ' --send='root\n'`
 
-- \--sendcont=_string_
+- --sendcont=_string_
 
-    Similar to __\--send__ but continue expecting more input.
+    Similar to __--send__ but continue expecting more input.
 
     Example: `--expect='Continue?' --sendcont='yes\n'`
 
@@ -453,7 +451,7 @@ interactive work with the target.
 The syntax tries to mimic POSIX shell syntax. The syntax is defined
 with the following rules.
 
-Lines starting with "\#" and empty lines are ignored.
+Lines starting with "#" and empty lines are ignored.
 
 Lines that end with "\\" are concatenated with the following line after
 removal of the final "\\" and leading whitespace of the following line.
@@ -464,7 +462,7 @@ section.
 
 Lines starting with `load` keyword represent modules to boot. The
 word after `load` is a file name (relative to the build directory
-(see __\--build-dir__) of the module to load and the remaining words are
+(see __--build-dir__) of the module to load and the remaining words are
 passed to it as the command line parameters.
 
 When the `load` line ends with "<<WORD" then the subsequent lines
@@ -537,14 +535,14 @@ The following variables are interpreted in the novaboot script:
 
 - QEMU
 
-    Use a specific qemu binary (can be overridden with __\-Q__) and flags
+    Use a specific qemu binary (can be overridden with __-Q__) and flags
     when booting this script under qemu. If QEMU\_FLAGS variable is also
     specified flags specified in QEMU variable are replaced by those in
     QEMU\_FLAGS.
 
 - QEMU\_FLAGS
 
-    Use specific qemu flags (can be overridden with __\-q__).
+    Use specific qemu flags (can be overridden with __-q__).
 
 - WVDESC
 
@@ -562,10 +560,10 @@ The following variables are interpreted in the novaboot script:
 Novaboot can read its configuration from one or more files. By
 default, novaboot looks for files named `.novaboot` as described in
 ["Configuration reading phase"](#configuration-reading-phase). Alternatively, its location can be
-specified with the __\-c__ switch or with the NOVABOOT\_CONFIG
+specified with the __-c__ switch or with the NOVABOOT\_CONFIG
 environment variable. The configuration file has perl syntax and
 should set values of certain Perl variables. The current configuration
-can be dumped with the __\--dump-config__ switch. Some configuration
+can be dumped with the __--dump-config__ switch. Some configuration
 variables can be overridden by environment variables (see below) or by
 command line switches.
 
@@ -579,11 +577,11 @@ Supported configuration variables include:
 - $default\_target
 
     Default target (see below) to use when no target is explicitly
-    specified on command line with the __\--target__ option.
+    specified on command line with the __--target__ option.
 
 - %targets
 
-    Hash of shortcuts to be used with the __\--target__ option. If the hash
+    Hash of shortcuts to be used with the __--target__ option. If the hash
     contains, for instance, the following pair of values
 
         'mybox' => '--server=boot:/tftproot --serial=/dev/ttyUSB0 --grub',
@@ -607,7 +605,7 @@ override the environment variables.
 
 - NOVABOOT\_BENDER
 
-    Defining this variable has the same meaning as __\--bender__ option.
+    Defining this variable has the same meaning as __--bender__ option.
 
 # AUTHORS
 
index 6ae2e6d476f989ec2eea0ae1e3066530808bd29d..40f3074fd58039dc3df013776f219a820fba2add 100644 (file)
@@ -3,6 +3,7 @@
 # Buildroot 2013.08.1 Configuration
 #
 BR2_HAVE_DOT_CONFIG=y
+BR2_HOSTARCH_NEEDS_IA32_LIBS=y
 # BR2_arcle is not set
 # BR2_arceb is not set
 # BR2_arm is not set
@@ -107,95 +108,35 @@ BR2_GLOBAL_PATCH_DIR=""
 #
 # Toolchain
 #
-BR2_TOOLCHAIN_USES_UCLIBC=y
-BR2_TOOLCHAIN_BUILDROOT=y
-# BR2_TOOLCHAIN_EXTERNAL is not set
-
-#
-# Kernel Header Options
-#
-# BR2_KERNEL_HEADERS_3_0 is not set
-# BR2_KERNEL_HEADERS_3_2 is not set
-# BR2_KERNEL_HEADERS_3_4 is not set
-# BR2_KERNEL_HEADERS_3_9 is not set
-BR2_KERNEL_HEADERS_3_10=y
-# BR2_KERNEL_HEADERS_VERSION is not set
-# BR2_KERNEL_HEADERS_SNAP is not set
-BR2_DEFAULT_KERNEL_HEADERS="3.10.10"
-BR2_TOOLCHAIN_BUILDROOT_UCLIBC=y
-# BR2_TOOLCHAIN_BUILDROOT_EGLIBC is not set
-BR2_TOOLCHAIN_BUILDROOT_LIBC="uclibc"
-
-#
-# uClibc Options
-#
-# BR2_UCLIBC_VERSION_0_9_32 is not set
-BR2_UCLIBC_VERSION_0_9_33=y
-# BR2_UCLIBC_VERSION_SNAPSHOT is not set
-BR2_UCLIBC_VERSION_STRING="0.9.33.2"
-BR2_UCLIBC_CONFIG="package/uclibc/uClibc-0.9.33.config"
-# BR2_TOOLCHAIN_BUILDROOT_LARGEFILE is not set
-# BR2_TOOLCHAIN_BUILDROOT_INET_IPV6 is not set
-# BR2_TOOLCHAIN_BUILDROOT_INET_RPC is not set
-# BR2_TOOLCHAIN_BUILDROOT_WCHAR is not set
-# BR2_TOOLCHAIN_BUILDROOT_LOCALE is not set
-# BR2_PTHREADS_NONE is not set
-# BR2_PTHREADS is not set
-# BR2_PTHREADS_OLD is not set
-BR2_PTHREADS_NATIVE=y
-# BR2_PTHREAD_DEBUG is not set
-BR2_UCLIBC_INSTALL_UTILS=y
-# BR2_UCLIBC_INSTALL_TEST_SUITE is not set
-BR2_UCLIBC_TARGET_ARCH="i386"
-BR2_UCLIBC_X86_TYPE="586"
-
-#
-# Binutils Options
-#
-# BR2_BINUTILS_VERSION_2_20_1 is not set
-# BR2_BINUTILS_VERSION_2_21 is not set
-BR2_BINUTILS_VERSION_2_21_1=y
-# BR2_BINUTILS_VERSION_2_22 is not set
-# BR2_BINUTILS_VERSION_2_23_1 is not set
-# BR2_BINUTILS_VERSION_2_23_2 is not set
-BR2_BINUTILS_VERSION="2.21.1"
-BR2_BINUTILS_EXTRA_CONFIG_OPTIONS=""
-
-#
-# GCC Options
-#
-BR2_GCC_NEEDS_MPC=y
-# BR2_GCC_VERSION_4_3_X is not set
-# BR2_GCC_VERSION_4_4_X is not set
-# BR2_GCC_VERSION_4_5_X is not set
-# BR2_GCC_VERSION_4_6_X is not set
-BR2_GCC_VERSION_4_7_X=y
-# BR2_GCC_VERSION_4_8_X is not set
-# BR2_GCC_VERSION_SNAP is not set
-BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE=y
-BR2_GCC_VERSION="4.7.3"
-BR2_EXTRA_GCC_CONFIG_OPTIONS=""
-# BR2_INSTALL_OBJC is not set
-# BR2_INSTALL_FORTRAN is not set
-BR2_GCC_ENABLE_TLS=y
-# BR2_GCC_ENABLE_OPENMP is not set
+BR2_TOOLCHAIN_USES_GLIBC=y
+# BR2_TOOLCHAIN_BUILDROOT is not set
+BR2_TOOLCHAIN_EXTERNAL=y
+BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201209=y
+# BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201203 is not set
+# BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201109 is not set
+# BR2_TOOLCHAIN_EXTERNAL_CUSTOM is not set
+BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
+# BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED is not set
+BR2_TOOLCHAIN_EXTERNAL_PREFIX="i686-pc-linux-gnu"
+BR2_TOOLCHAIN_EXTERNAL_GLIBC=y
+# BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY is not set
 # BR2_PACKAGE_HOST_GDB is not set
+BR2_LARGEFILE=y
+BR2_INET_IPV6=y
+BR2_TOOLCHAIN_HAS_NATIVE_RPC=y
+BR2_USE_WCHAR=y
+BR2_ENABLE_LOCALE=y
+BR2_INSTALL_LIBSTDCPP=y
 BR2_TOOLCHAIN_HAS_THREADS=y
+BR2_TOOLCHAIN_HAS_THREADS_DEBUG=y
 BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS=y
 # BR2_ENABLE_LOCALE_PURGE is not set
 BR2_GENERATE_LOCALE=""
-BR2_NEEDS_GETTEXT=y
 BR2_USE_MMU=y
 BR2_TARGET_OPTIMIZATION="-pipe"
 BR2_TARGET_LDFLAGS=""
 # BR2_ECLIPSE_REGISTER is not set
 
-#
-# Toolchain Options
-#
-# BR2_TOOLCHAIN_BUILDROOT_CXX is not set
-# BR2_TOOLCHAIN_BUILDROOT_USE_SSP is not set
-
 #
 # System configuration
 #
@@ -209,10 +150,7 @@ BR2_TARGET_GENERIC_PASSWD_METHOD="md5"
 BR2_ROOTFS_DEVICE_CREATION_STATIC=y
 # BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS is not set
 # BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV is not set
-
-#
-# udev requires a toolchain with LARGEFILE + WCHAR support
-#
+# BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV is not set
 BR2_INIT_BUSYBOX=y
 # BR2_INIT_SYSV is not set
 
@@ -244,7 +182,6 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT=""
 #
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_LATEST_VERSION=y
-# BR2_LINUX_KERNEL_SAME_AS_HEADERS is not set
 # BR2_LINUX_KERNEL_CUSTOM_VERSION is not set
 # BR2_LINUX_KERNEL_CUSTOM_TARBALL is not set
 # BR2_LINUX_KERNEL_CUSTOM_GIT is not set
@@ -281,55 +218,24 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # Audio and video applications
 #
-
-#
-# alsa-utils requires a toolchain with LARGEFILE and threads support
-#
+# BR2_PACKAGE_ALSA_UTILS is not set
 # BR2_PACKAGE_AUMIX is not set
-
-#
-# bellagio requires a toolchain with C++ and threads support enabled
-#
+# BR2_PACKAGE_BELLAGIO is not set
 # BR2_PACKAGE_FAAD2 is not set
 # BR2_PACKAGE_FLAC is not set
-
-#
-# ffmpeg requires a toolchain with LARGEFILE and IPV6 support
-#
-
-#
-# gstreamer requires a toolchain with WCHAR and threads support
-#
-
-#
-# gst-ffmpeg requires a toolchain with LARGEFILE and IPV6 support
-#
-
-#
-# gstreamer1 requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_FFMPEG is not set
+# BR2_PACKAGE_GSTREAMER is not set
+# BR2_PACKAGE_GSTREAMER1 is not set
 # BR2_PACKAGE_LAME is not set
 # BR2_PACKAGE_LIBVPX is not set
 # BR2_PACKAGE_MADPLAY is not set
-
-#
-# mpd requires a toolchain with C++, threading and WCHAR support
-#
+# BR2_PACKAGE_MPD is not set
 # BR2_PACKAGE_MPG123 is not set
-
-#
-# mplayer requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_MPLAYER is not set
 # BR2_PACKAGE_MUSEPACK is not set
 # BR2_PACKAGE_OPUS_TOOLS is not set
-
-#
-# pulseaudio requires a toolchain with WCHAR, LARGEFILE and threads support
-#
-
-#
-# tstools needs largefile support in toolchain
-#
+# BR2_PACKAGE_PULSEAUDIO is not set
+# BR2_PACKAGE_TSTOOLS is not set
 # BR2_PACKAGE_VORBIS_TOOLS is not set
 # BR2_PACKAGE_WAVPACK is not set
 # BR2_PACKAGE_YAVTA is not set
@@ -345,59 +251,32 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # Debugging, profiling and benchmark
 #
-
-#
-# bonnie++ requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_BONNIE is not set
 # BR2_PACKAGE_CACHE_CALIBRATOR is not set
 # BR2_PACKAGE_DHRYSTONE is not set
-
-#
-# dstat requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_DSTAT is not set
 # BR2_PACKAGE_DMALLOC is not set
 # BR2_PACKAGE_DROPWATCH is not set
-
-#
-# gdb/gdbserver require a toolchain with thread and thread debug support
-#
+# BR2_PACKAGE_GDB is not set
 # BR2_PACKAGE_IOZONE is not set
 # BR2_PACKAGE_KEXEC is not set
-
-#
-# latencytop requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_LATENCYTOP is not set
 # BR2_PACKAGE_LMBENCH is not set
-
-#
-# ltp-testsuite requires a toolchain with IPV6, RPC and thread support
-#
+# BR2_PACKAGE_LTP_TESTSUITE is not set
 # BR2_PACKAGE_LTTNG_MODULES is not set
-
-#
-# lttng-tools needs LARGEFILE, threads and wchar support
-#
+# BR2_PACKAGE_LTTNG_TOOLS is not set
 # BR2_PACKAGE_LTRACE is not set
 # BR2_PACKAGE_MEMSTAT is not set
 # BR2_PACKAGE_NETPERF is not set
-
-#
-# oprofile requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_OPROFILE is not set
 # BR2_PACKAGE_PAX_UTILS is not set
-
-#
-# perf only available if Linux kernel is enabled, and requires largefile support
-#
+# BR2_PACKAGE_PERF is not set
 # BR2_PACKAGE_RAMSPEED is not set
 # BR2_PACKAGE_RAMSMP is not set
 # BR2_PACKAGE_RT_TESTS is not set
 # BR2_PACKAGE_STRACE is not set
 # BR2_PACKAGE_STRESS is not set
-
-#
-# sysprof requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_SYSPROF is not set
 # BR2_PACKAGE_TINYMEMBENCH is not set
 # BR2_PACKAGE_WHETSTONE is not set
 # BR2_PACKAGE_VALGRIND is not set
@@ -407,49 +286,19 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # Development tools
 #
 # BR2_PACKAGE_BINUTILS is not set
-
-#
-# bison requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_BISON is not set
 # BR2_PACKAGE_BSDIFF is not set
-
-#
-# bustle requires a toolchain with WCHAR support and threading support
-#
-
-#
-# cvs requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_CVS is not set
 # BR2_PACKAGE_DISTCC is not set
 # BR2_PACKAGE_FLEX is not set
-
-#
-# flex binary requires a toolchain with WCHAR support
-#
-
-#
-# gettext requires a toolchain with WCHAR support
-#
-
-#
-# git requires a toolchain with LARGEFILE support
-#
-
-#
-# gperf requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_GIT is not set
+# BR2_PACKAGE_GPERF is not set
 # BR2_PACKAGE_MAKE is not set
 # BR2_PACKAGE_LIBTOOL is not set
-
-#
-# m4 requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_M4 is not set
 # BR2_PACKAGE_PKGCONF is not set
 # BR2_PACKAGE_SSTRIP is not set
-
-#
-# tree requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_TREE is not set
 # BR2_PACKAGE_YASM is not set
 
 #
@@ -466,61 +315,31 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # Graphic applications
 #
 # BR2_PACKAGE_GNUPLOT is not set
-
-#
-# jhead requires a toolchain with WCHAR support
-#
-
-#
-# rrdtool requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_JHEAD is not set
+# BR2_PACKAGE_RRDTOOL is not set
 
 #
 # graphic libraries
 #
-
-#
-# cegui06 needs a toolchain with C++ and threads
-#
-
-#
-# directfb needs a toolchain with C++ and thread support
-#
+# BR2_PACKAGE_CEGUI06 is not set
+# BR2_PACKAGE_DIRECTFB is not set
 # BR2_PACKAGE_FBDUMP is not set
 # BR2_PACKAGE_FBGRAB is not set
-
-#
-# fbterm requires a toolchain with C++, WCHAR and locale support
-#
+# BR2_PACKAGE_FBTERM is not set
 # BR2_PACKAGE_FBV is not set
 # BR2_PACKAGE_FB_TEST_APP is not set
 # BR2_PACKAGE_IMAGEMAGICK is not set
 # BR2_PACKAGE_LINUX_FUSION is not set
-
-#
-# ocrad needs a toolchain with C++ support
-#
+# BR2_PACKAGE_OCRAD is not set
 # BR2_PACKAGE_SDL is not set
 
 #
 # other GUIs
 #
-
-#
-# EFL requires WCHAR support in toolchain
-#
-
-#
-# qt requires a toolchain with C++ support enabled
-#
-
-#
-# Qt5 needs a toolchain with WCHAR, IPv6, thread and C++ support
-#
-
-#
-# X.org requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_EFL is not set
+# BR2_PACKAGE_QT is not set
+# BR2_PACKAGE_QT5 is not set
+# BR2_PACKAGE_XORG7 is not set
 
 #
 # weston requires udev
@@ -539,10 +358,7 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # X applications
 #
-
-#
-# gob2 requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_GOB2 is not set
 
 #
 # midori requires C++, WCHAR, threading in toolchain and libgtk2
@@ -553,65 +369,24 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # BR2_PACKAGE_CIFS_UTILS is not set
 # BR2_PACKAGE_CRAMFS is not set
-
-#
-# curlftpfs requires a toolchain with LARGEFILE, WCHAR, threading and dynamic library support
-#
-
-#
-# dosfstools requires a toolchain with LARGEFILE and WCHAR support
-#
-
-#
-# e2fsprogs requires a toolchain with LARGEFILE + WCHAR support
-#
-
-#
-# exfat requires a toolchain with LARGEFILE, WCHAR, threads and dynamic library support
-#
-
-#
-# exfat-utils requires a toolchain with LARGEFILE and WCHAR support
-#
-
-#
-# f2fs-tools requires a toolchain with LARGEFILE and WCHAR support
-#
-
-#
-# flashbench requires a toolchain with LARGEFILE support
-#
-
-#
-# genext2fs requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_CURLFTPFS is not set
+# BR2_PACKAGE_DOSFSTOOLS is not set
+# BR2_PACKAGE_E2FSPROGS is not set
+# BR2_PACKAGE_ECRYPTFS_UTILS is not set
+# BR2_PACKAGE_EXFAT is not set
+# BR2_PACKAGE_EXFAT_UTILS is not set
+# BR2_PACKAGE_F2FS_TOOLS is not set
+# BR2_PACKAGE_FLASHBENCH is not set
+# BR2_PACKAGE_GENEXT2FS is not set
 # BR2_PACKAGE_GENROMFS is not set
 # BR2_PACKAGE_MAKEDEVS is not set
 # BR2_PACKAGE_MTD is not set
-
-#
-# nfs-utils requires a toolchain with LARGEFILE support
-#
-
-#
-# ntfs-3g requires a toolchain with LARGEFILE, WCHAR and threads support
-#
-
-#
-# squashfs requires a toolchain with LARGEFILE and threads support
-#
-
-#
-# sshfs requires a toolchain with LARGEFILE, WCHAR, threads and dynamic library support
-#
-
-#
-# unionfs requires a toolchain with LARGEFILE, threads and dynamic library support
-#
-
-#
-# xfsprogs requires a toolchain with LARGEFILE + WCHAR support
-#
+# BR2_PACKAGE_NFS_UTILS is not set
+# BR2_PACKAGE_NTFS_3G is not set
+# BR2_PACKAGE_SQUASHFS is not set
+# BR2_PACKAGE_SSHFS is not set
+# BR2_PACKAGE_UNIONFS is not set
+# BR2_PACKAGE_XFSPROGS is not set
 
 #
 # Hardware handling
@@ -625,21 +400,12 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_UX500_FIRMWARE is not set
 # BR2_PACKAGE_ZD1211_FIRMWARE is not set
 # BR2_PACKAGE_ACPID is not set
-
-#
-# cdrkit requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_CDRKIT is not set
 # BR2_PACKAGE_DBUS is not set
 # BR2_PACKAGE_DMIDECODE is not set
-
-#
-# dmraid requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_DMRAID is not set
 # BR2_PACKAGE_DVB_APPS is not set
-
-#
-# dvbsnoop requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_DVBSNOOP is not set
 # BR2_PACKAGE_EEPROG is not set
 # BR2_PACKAGE_EVTEST is not set
 # BR2_PACKAGE_FAN_CTRL is not set
@@ -650,14 +416,8 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_FXLOAD is not set
 # BR2_PACKAGE_GADGETFS_TEST is not set
 # BR2_PACKAGE_GPSD is not set
-
-#
-# gptfdisk requires a toolchain with LARGEFILE/WCHAR/C++ support enabled
-#
-
-#
-# gvfs requires a toolchain with LARGEFILE, WCHAR and threading support
-#
+# BR2_PACKAGE_GPTFDISK is not set
+# BR2_PACKAGE_GVFS is not set
 # BR2_PACKAGE_HWDATA is not set
 # BR2_PACKAGE_I2C_TOOLS is not set
 # BR2_PACKAGE_INPUT_EVENT_DAEMON is not set
@@ -667,59 +427,28 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_KBD is not set
 # BR2_PACKAGE_LCDPROC is not set
 # BR2_PACKAGE_LM_SENSORS is not set
-
-#
-# lshw requires a toolchain with C++, LARGEFILE & WCHAR support enabled
-#
+# BR2_PACKAGE_LSHW is not set
 # BR2_PACKAGE_LSUIO is not set
-
-#
-# lvm2 requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_LVM2 is not set
 # BR2_PACKAGE_MDADM is not set
 # BR2_PACKAGE_MEDIA_CTL is not set
-
-#
-# memtester requires a toolchain with LARGEFILE support
-#
-
-#
-# minicom requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_MEMTESTER is not set
+# BR2_PACKAGE_MINICOM is not set
 # BR2_PACKAGE_NANOCOM is not set
-
-#
-# neard requires a toolchain with WCHAR and threads support
-#
-
-#
-# ofono requires a toolchain with WCHAR and thread support
-#
+# BR2_PACKAGE_NEARD is not set
+# BR2_PACKAGE_OFONO is not set
 # BR2_PACKAGE_OPEN2300 is not set
 # BR2_PACKAGE_OPENOCD is not set
-
-#
-# parted requires a toolchain with LARGEFILE+WCHAR support
-#
+# BR2_PACKAGE_PARTED is not set
 # BR2_PACKAGE_PCIUTILS is not set
 # BR2_PACKAGE_PICOCOM is not set
 # BR2_PACKAGE_READ_EDID is not set
 # BR2_PACKAGE_RNG_TOOLS is not set
-
-#
-# rpi-userland requires a toolchain with C++ and LARGEFILE support
-#
 # BR2_PACKAGE_SANE_BACKENDS is not set
 # BR2_PACKAGE_SDPARM is not set
 # BR2_PACKAGE_SETSERIAL is not set
-
-#
-# sg3-utils requires a toolchain with LARGEFILE and threads support
-#
-
-#
-# smartmontools requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_SG3_UTILS is not set
+# BR2_PACKAGE_SMARTMONTOOLS is not set
 # BR2_PACKAGE_SNOWBALL_HDMISERVICE is not set
 # BR2_PACKAGE_SREDIRD is not set
 # BR2_PACKAGE_STATSERIAL is not set
@@ -750,31 +479,16 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_ERLANG is not set
 # BR2_PACKAGE_ENSCRIPT is not set
 # BR2_PACKAGE_HASERL is not set
-
-#
-# jamvm requires a toolchain with IPV6 support
-#
+# BR2_PACKAGE_JAMVM is not set
 # BR2_PACKAGE_JIMTCL is not set
 # BR2_PACKAGE_LUA is not set
 # BR2_PACKAGE_LUAJIT is not set
-
-#
-# nodejs requires a toolchain with C++, IPv6, large files, and threading
-#
+# BR2_PACKAGE_NODEJS is not set
 # BR2_PACKAGE_PERL is not set
 # BR2_PACKAGE_PHP is not set
-
-#
-# python requires a toolchain with WCHAR support
-#
-
-#
-# python3 requires a toolchain with WCHAR support
-#
-
-#
-# ruby requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_PYTHON is not set
+# BR2_PACKAGE_PYTHON3 is not set
+# BR2_PACKAGE_RUBY is not set
 # BR2_PACKAGE_TCL is not set
 
 #
@@ -785,15 +499,9 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # Audio/Sound
 #
 # BR2_PACKAGE_ALSA_LIB is not set
-
-#
-# audiofile requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_AUDIOFILE is not set
 # BR2_PACKAGE_CELT051 is not set
-
-#
-# fdk-aac requires a toolchain with C++ support
-#
+# BR2_PACKAGE_FDK_AAC is not set
 # BR2_PACKAGE_LIBAO is not set
 # BR2_PACKAGE_LIBCDAUDIO is not set
 # BR2_PACKAGE_LIBCUE is not set
@@ -801,42 +509,24 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_LIBID3TAG is not set
 # BR2_PACKAGE_LIBLO is not set
 # BR2_PACKAGE_LIBMAD is not set
-
-#
-# libmpd requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_LIBMPD is not set
 # BR2_PACKAGE_LIBREPLAYGAIN is not set
 # BR2_PACKAGE_LIBSAMPLERATE is not set
-
-#
-# libsndfile requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_LIBSNDFILE is not set
 # BR2_PACKAGE_LIBVORBIS is not set
 # BR2_PACKAGE_OPUS is not set
 # BR2_PACKAGE_PORTAUDIO is not set
 # BR2_PACKAGE_SPEEX is not set
-
-#
-# taglib requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_TAGLIB is not set
 # BR2_PACKAGE_TREMOR is not set
-
-#
-# webrtc-audio-processing requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING is not set
 
 #
 # Compression and decompression
 #
-
-#
-# libarchive requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_LIBARCHIVE is not set
 # BR2_PACKAGE_LZO is not set
-
-#
-# snappy requires a toolchain with C++ support
-#
+# BR2_PACKAGE_SNAPPY is not set
 # BR2_PACKAGE_ZLIB is not set
 
 #
@@ -844,20 +534,14 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # BR2_PACKAGE_BEECRYPT is not set
 # BR2_PACKAGE_CRYPTODEV is not set
-
-#
-# gnutls requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_GNUTLS is not set
 # BR2_PACKAGE_LIBGCRYPT is not set
 # BR2_PACKAGE_LIBGPG_ERROR is not set
 # BR2_PACKAGE_LIBGPGME is not set
 # BR2_PACKAGE_LIBASSUAN is not set
 # BR2_PACKAGE_LIBMCRYPT is not set
 # BR2_PACKAGE_LIBMHASH is not set
-
-#
-# libnss requires a toolchain with LARGEFILE and thread support
-#
+# BR2_PACKAGE_LIBNSS is not set
 # BR2_PACKAGE_LIBSHA1 is not set
 # BR2_PACKAGE_NETTLE is not set
 # BR2_PACKAGE_OPENSSL is not set
@@ -868,30 +552,18 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # BR2_PACKAGE_BERKELEYDB is not set
 # BR2_PACKAGE_GDBM is not set
-
-#
-# Mysql client requires a toolchain with C++ support enabled
-#
-
-#
-# redis needs a toolchain with LARGEFILE and thread support
-#
+# BR2_PACKAGE_MYSQL_CLIENT is not set
+# BR2_PACKAGE_REDIS is not set
 # BR2_PACKAGE_SQLCIPHER is not set
 # BR2_PACKAGE_SQLITE is not set
 
 #
 # Filesystem
 #
-
-#
-# gamin requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_GAMIN is not set
 # BR2_PACKAGE_LIBCONFIG is not set
 # BR2_PACKAGE_LIBCONFUSE is not set
-
-#
-# libfuse requires a toolchain with LARGEFILE, threads and dyanmic library support
-#
+# BR2_PACKAGE_LIBFUSE is not set
 # BR2_PACKAGE_LIBLOCKFILE is not set
 # BR2_PACKAGE_LIBSYSFS is not set
 # BR2_PACKAGE_LOCKDEV is not set
@@ -899,10 +571,7 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # Graphics
 #
-
-#
-# atk requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_ATK is not set
 # BR2_PACKAGE_CAIRO is not set
 # BR2_PACKAGE_FONTCONFIG is not set
 # BR2_PACKAGE_FREETYPE is not set
@@ -914,41 +583,19 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_LIBDMTX is not set
 # BR2_PACKAGE_LIBEXIF is not set
 # BR2_PACKAGE_LIBGEOTIFF is not set
-
-#
-# gdk-pixbuf depends on toolchain with WCHAR and threading support
-#
-
-#
-# libgtk2 requires a toolchain with WCHAR, threading and C++ support
-#
+# BR2_PACKAGE_GDK_PIXBUF is not set
 # BR2_PACKAGE_LIBPNG is not set
 # BR2_PACKAGE_LIBQRENCODE is not set
-
-#
-# libraw requires a toolchain with C++ support enabled
-#
-
-#
-# librsvg requires a toolchain with WCHAR, threading and C++ support
-#
+# BR2_PACKAGE_LIBRAW is not set
+# BR2_PACKAGE_LIBRSVG is not set
 # BR2_PACKAGE_LIBSVG is not set
 # BR2_PACKAGE_LIBSVG_CAIRO is not set
 # BR2_PACKAGE_LIBSVGTINY is not set
 # BR2_PACKAGE_LIBUNGIF is not set
-
-#
-# opencv requires a toolchain with C++ and WCHAR support
-#
-
-#
-# pango requires a toolchain with WCHAR, threading and C++ support
-#
+# BR2_PACKAGE_OPENCV is not set
+# BR2_PACKAGE_PANGO is not set
 # BR2_PACKAGE_PIXMAN is not set
-
-#
-# poppler requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_POPPLER is not set
 # BR2_PACKAGE_TIFF is not set
 # BR2_PACKAGE_WAYLAND is not set
 
@@ -956,29 +603,20 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # webkit requires libgtk2 and a toolchain with C++, WCHAR, threading support
 #
 # BR2_PACKAGE_WEBP is not set
-
-#
-# zxing requires a toolchain with C++ support
-#
+# BR2_PACKAGE_ZXING is not set
 
 #
 # Hardware handling
 #
 # BR2_PACKAGE_CCID is not set
 # BR2_PACKAGE_DTC is not set
-
-#
-# lcdapi requires a toolchain with C++ and thread support enabled
-#
+# BR2_PACKAGE_LCDAPI is not set
 # BR2_PACKAGE_LIBAIO is not set
 
 #
 # libatasmart requires udev to be enabled
 #
-
-#
-# libcec requires C++ and threading support in toolchain
-#
+# BR2_PACKAGE_LIBCEC is not set
 # BR2_PACKAGE_LIBRAW1394 is not set
 # BR2_PACKAGE_TSLIB is not set
 # BR2_PACKAGE_LIBFREEFARE is not set
@@ -987,30 +625,15 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_LIBIQRF is not set
 # BR2_PACKAGE_LIBNFC is not set
 # BR2_PACKAGE_LIBNFC_LLCP is not set
-
-#
-# libqmi requires a toolchain with WCHAR and threading support
-#
-
-#
-# libserial requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_LIBQMI is not set
+# BR2_PACKAGE_LIBSERIAL is not set
 # BR2_PACKAGE_LIBUSB is not set
-
-#
-# libv4l requires a toolchain with LARGEFILE and thread support
-#
+# BR2_PACKAGE_LIBV4L is not set
 # BR2_PACKAGE_LIBXKBCOMMON is not set
 # BR2_PACKAGE_MTDEV is not set
-
-#
-# neardal requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_NEARDAL is not set
 # BR2_PACKAGE_PCSC_LITE is not set
-
-#
-# urg requires a toolchain with C++ support
-#
+# BR2_PACKAGE_URG is not set
 
 #
 # Javascript
@@ -1028,70 +651,28 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # Multimedia
 #
-
-#
-# libdvbsi++ requires a toolchain with C++, WCHAR and threads support
-#
-
-#
-# libdvdread requires a toolchain with LARGEFILE support
-#
-
-#
-# libdvdnav requires a toolchain with LARGEFILE and thread support
-#
-
-#
-# libebml requires a toolchain with C++ support
-#
-
-#
-# libmatroska requires a toolchain with C++ support
-#
-
-#
-# libmms requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_LIBDVBSI is not set
+# BR2_PACKAGE_LIBDVDREAD is not set
+# BR2_PACKAGE_LIBDVDNAV is not set
+# BR2_PACKAGE_LIBEBML is not set
+# BR2_PACKAGE_LIBMATROSKA is not set
+# BR2_PACKAGE_LIBMMS is not set
 # BR2_PACKAGE_LIBMPEG2 is not set
 # BR2_PACKAGE_LIBOGG is not set
-
-#
-# libplayer requires a toolchain with LARGEFILE and threads support
-#
+# BR2_PACKAGE_LIBPLAYER is not set
 # BR2_PACKAGE_LIBTHEORA is not set
-
-#
-# Live555 needs C++ compiler
-#
-
-#
-# mediastreamer requires a toolchain with threads and C++ support
-#
+# BR2_PACKAGE_LIVE555 is not set
+# BR2_PACKAGE_MEDIASTREAMER is not set
 
 #
 # Networking
 #
-
-#
-# czmq requires a toolchain with C++, IPV6, LARGEFILE and WCHAR support
-#
-
-#
-# cppzmq requires a toolchain with C++, IPV6, LARGEFILE and WCHAR support
-#
-
-#
-# filemq requires a toolchain with C++, IPv6, LARGEFILE, WCHAR & thread support
-#
-
-#
-# glib-networking requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_CZMQ is not set
+# BR2_PACKAGE_CPPZMQ is not set
+# BR2_PACKAGE_FILEMQ is not set
+# BR2_PACKAGE_GLIB_NETWORKING is not set
 # BR2_PACKAGE_LIBCGI is not set
-
-#
-# libcgicc requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_LIBCGICC is not set
 # BR2_PACKAGE_LIBCURL is not set
 # BR2_PACKAGE_LIBDNET is not set
 # BR2_PACKAGE_LIBESMTP is not set
@@ -1103,115 +684,51 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_LIBOAUTH is not set
 # BR2_PACKAGE_LIBMICROHTTPD is not set
 # BR2_PACKAGE_NEON is not set
-
-#
-# libmnl requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_LIBMNL is not set
 # BR2_PACKAGE_LIBMODBUS is not set
 # BR2_PACKAGE_LIBMBUS is not set
-
-#
-# libnetfilter_acct requires a toolchain with LARGEFILE support
-#
-
-#
-# libnetfilter_conntrack requires a toolchain with LARGEFILE support
-#
-
-#
-# libnetfilter_cthelper requires a toolchain with LARGEFILE support
-#
-
-#
-# libnetfilter_cttimout requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_LIBNETFILTER_ACCT is not set
+# BR2_PACKAGE_LIBNETFILTER_CONNTRACK is not set
+# BR2_PACKAGE_LIBNETFILTER_CTHELPER is not set
+# BR2_PACKAGE_LIBNETFILTER_CTTIMEOUT is not set
 # BR2_PACKAGE_LIBNETFILTER_LOG is not set
-
-#
-# libnetfilter_queue requires a toolchain with LARGEFILE and IPv6 support
-#
+# BR2_PACKAGE_LIBNETFILTER_QUEUE is not set
 # BR2_PACKAGE_LIBNFNETLINK is not set
 # BR2_PACKAGE_LIBNL is not set
-
-#
-# liboping requires a toolchain with IPv6 support enabled
-#
+# BR2_PACKAGE_LIBOPING is not set
 # BR2_PACKAGE_LIBPCAP is not set
 # BR2_PACKAGE_LIBOSIP2 is not set
 # BR2_PACKAGE_LIBRSYNC is not set
-
-#
-# libsoup requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_LIBSOUP is not set
 # BR2_PACKAGE_LIBTIRPC is not set
-
-#
-# libtorrent requires a toolchain with C++ and threads support enabled
-#
-
-#
-# libupnp requires a toolchain with LARGEFILE and thread support
-#
+# BR2_PACKAGE_LIBTORRENT is not set
+# BR2_PACKAGE_LIBUPNP is not set
 # BR2_PACKAGE_LIBVNCSERVER is not set
 # BR2_PACKAGE_LIBWEBSOCKETS is not set
-
-#
-# openpgm needs a toolchain with WCHAR, threads and IPv6 support
-#
+# BR2_PACKAGE_OPENPGM is not set
 # BR2_PACKAGE_ORTP is not set
 # BR2_PACKAGE_SLIRP is not set
 # BR2_PACKAGE_USBREDIR is not set
-
-#
-# wvstreams requires a toolchain with C++ and largefile support enabled
-#
-
-#
-# zeromq requires a toolchain with C++, IPV6, LARGEFILE, WCHAR & thread support
-#
-
-#
-# zmqpp requires a toolchain with C++, IPV6, LARGEFILE, WCHAR & thread support
-#
-
-#
-# zyre requires a toolchain with C++, IPv6, LARGEFILE, WCHAR & thread support
-#
+# BR2_PACKAGE_WVSTREAMS is not set
+# BR2_PACKAGE_ZEROMQ is not set
+# BR2_PACKAGE_ZMQPP is not set
+# BR2_PACKAGE_ZYRE is not set
 
 #
 # Other
 #
 # BR2_PACKAGE_APR is not set
 # BR2_PACKAGE_APR_UTIL is not set
-
-#
-# classpath requires a toolchain with IPV6 support
-#
-
-#
-# cppcms requires a glibc toolchain with C++ support
-#
-
-#
-# elfutils requires a toolchain with LARGEFILE and WCHAR support
-#
+# BR2_PACKAGE_CPPCMS is not set
+# BR2_PACKAGE_ELFUTILS is not set
 # BR2_PACKAGE_FFTW is not set
 # BR2_PACKAGE_LIBARGTABLE2 is not set
 # BR2_PACKAGE_ARGP_STANDALONE is not set
-
-#
-# boost requires a toolchain with C++, large file and thread support enabled
-#
-
-#
-# glibmm requires a toolchain with C++, WCHAR, and threading support
-#
+# BR2_PACKAGE_BOOST is not set
+# BR2_PACKAGE_GLIBMM is not set
 # BR2_PACKAGE_GMP is not set
 # BR2_PACKAGE_GSL is not set
-
-#
-# gtest requires a toolchain with c++, WCHAR and THREADS support
-#
+# BR2_PACKAGE_GTEST is not set
 # BR2_PACKAGE_LIBATOMIC_OPS is not set
 # BR2_PACKAGE_LIBBSD is not set
 # BR2_PACKAGE_LIBCAP is not set
@@ -1221,82 +738,41 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_LIBEVENT is not set
 # BR2_PACKAGE_LIBEV is not set
 # BR2_PACKAGE_LIBFFI is not set
-
-#
-# libglib2 requires a toolchain with WCHAR support and threading support
-#
-
-#
-# libical requires a toolchain with WCHAR support
-#
-
-#
-# libnspr requires a toolchain with LARGEFILE and threads support
-#
+# BR2_PACKAGE_LIBGLIB2 is not set
+# BR2_PACKAGE_LIBICAL is not set
+# BR2_PACKAGE_LIBNSPR is not set
 # BR2_PACKAGE_LIBPFM4 is not set
 # BR2_PACKAGE_LIBPTHSEM is not set
-
-#
-# libsigc++ requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_LIBSIGC is not set
 # BR2_PACKAGE_LIBSIGSEGV is not set
 # BR2_PACKAGE_LIBTASN1 is not set
 # BR2_PACKAGE_LIBTPL is not set
 # BR2_PACKAGE_LIBSECCOMP is not set
 # BR2_PACKAGE_LIBUNWIND is not set
 # BR2_PACKAGE_LIBURCU is not set
-
-#
-# linux-pam requires a toolchain with WCHAR and locale support
-#
-
-#
-# log4cxx requires C++ support in toolchain
-#
+# BR2_PACKAGE_LINUX_PAM is not set
+# BR2_PACKAGE_LOG4CXX is not set
+# BR2_PACKAGE_LTTNG_LIBUST is not set
 # BR2_PACKAGE_MPC is not set
 # BR2_PACKAGE_MPFR is not set
-
-#
-# msgpack requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_MSGPACK is not set
 # BR2_PACKAGE_MTDEV2TUIO is not set
 # BR2_PACKAGE_ORC is not set
 # BR2_PACKAGE_P11_KIT is not set
-
-#
-# poco requires a toolchain with WCHAR, threads, and C++ support
-#
-
-#
-# protobuf requires a toolchain with C++ support enabled
-#
-
-#
-# protobuf-c requires a toolchain with C++ support enabled
-#
-
-#
-# schifra requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_POCO is not set
+# BR2_PACKAGE_PROTOBUF is not set
+# BR2_PACKAGE_PROTOBUF_C is not set
+# BR2_PACKAGE_SCHIFRA is not set
 # BR2_PACKAGE_LIBLOG4C_LOCALTIME is not set
+# BR2_PACKAGE_TZDATA is not set
 
 #
 # Text and terminal handling
 #
-
-#
-# enchant requires a toolchain with C++, threading and WCHAR support enabled
-#
+# BR2_PACKAGE_ENCHANT is not set
 # BR2_PACKAGE_LIBFRIBIDI is not set
-
-#
-# icu requires a toolchain with C++ support and WCHAR enabled
-#
-
-#
-# libedit requires a toolchain with WCHAR support
-#
-# BR2_PACKAGE_LIBICONV is not set
+# BR2_PACKAGE_ICU is not set
+# BR2_PACKAGE_LIBEDIT is not set
 # BR2_PACKAGE_LINENOISE is not set
 # BR2_PACKAGE_NCURSES is not set
 # BR2_PACKAGE_NEWT is not set
@@ -1313,222 +789,109 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_EZXML is not set
 # BR2_PACKAGE_JANSSON is not set
 # BR2_PACKAGE_JSON_C is not set
-
-#
-# json-glib requires a toolchain with WCHAR and threading support
-#
-
-#
-# libjson requires a toolchain with C++ support
-#
+# BR2_PACKAGE_JSON_GLIB is not set
+# BR2_PACKAGE_LIBJSON is not set
 # BR2_PACKAGE_LIBROXML is not set
 # BR2_PACKAGE_LIBXML2 is not set
-
-#
-# libxml++ requires a toolchain with C++, WCHAR and threading support
-#
+# BR2_PACKAGE_LIBXMLPP is not set
 # BR2_PACKAGE_LIBXSLT is not set
 # BR2_PACKAGE_LIBYAML is not set
 # BR2_PACKAGE_MXML is not set
 # BR2_PACKAGE_RAPIDJSON is not set
-
-#
-# xerces-c++ requires a toolchain with C++ and WCHAR support enabled
-#
+# BR2_PACKAGE_XERCES is not set
 # BR2_PACKAGE_YAJL is not set
 
 #
 # Miscellaneous
 #
 # BR2_PACKAGE_AESPIPE is not set
-
-#
-# collectd needs a toolchain with IPv6 and thread support
-#
+# BR2_PACKAGE_COLLECTD is not set
 # BR2_PACKAGE_EMPTY is not set
 # BR2_PACKAGE_GOOGLEFONTDIRECTORY is not set
 # BR2_PACKAGE_MCRYPT is not set
 # BR2_PACKAGE_MOBILE_BROADBAND_PROVIDER_INFO is not set
-
-#
-# shared-mime-info requires a toolchain with WCHAR and threading support
-#
-
-#
-# snowball-init requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_SHARED_MIME_INFO is not set
+# BR2_PACKAGE_SNOWBALL_INIT is not set
 # BR2_PACKAGE_SOUND_THEME_BOREALIS is not set
 # BR2_PACKAGE_SOUND_THEME_FREEDESKTOP is not set
 
 #
 # Networking applications
 #
-
-#
-# aircrack-ng needs a toolchain with largefile and threads support
-#
+# BR2_PACKAGE_AIRCRACK_NG is not set
 # BR2_PACKAGE_ARGUS is not set
 # BR2_PACKAGE_ARPTABLES is not set
 # BR2_PACKAGE_AVAHI is not set
 # BR2_PACKAGE_AXEL is not set
-
-#
-# bcusdk requires a toolchain with C++ support
-#
-
-#
-# bluez-utils require a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_BCUSDK is not set
+# BR2_PACKAGE_BLUEZ_UTILS is not set
 # BR2_PACKAGE_BOA is not set
-
-#
-# bind requires a toolchain with LARGEFILE and IPV6 support
-#
-
-#
-# bmon requires a toolchain with IPv6 support
-#
+# BR2_PACKAGE_BIND is not set
+# BR2_PACKAGE_BMON is not set
 # BR2_PACKAGE_BRIDGE_UTILS is not set
 # BR2_PACKAGE_BWM_NG is not set
 # BR2_PACKAGE_CAN_UTILS is not set
 # BR2_PACKAGE_CHRONY is not set
-
-#
-# connman needs a toolchain with IPv6, WCHAR, threading and resolver support
-#
+# BR2_PACKAGE_CONNMAN is not set
 # BR2_PACKAGE_CRDA is not set
-
-#
-# ctorrent requires a toolchain with C++ support enabled
-#
-
-#
-# conntrack-tools requires a toolchain with IPV6 and LARGEFILE support
-#
+# BR2_PACKAGE_CTORRENT is not set
+# BR2_PACKAGE_CONNTRACK_TOOLS is not set
 # BR2_PACKAGE_CUPS is not set
-
-#
-# gutenprint requires a toolchain with C++ support enabled
-#
-
-#
-# hplip requires a toolchain with C++ and thread support enabled
-#
-
-#
-# dhcpcd requires a toolchain with IPV6 support
-#
+# BR2_PACKAGE_DHCPCD is not set
 # BR2_PACKAGE_DHCPDUMP is not set
 # BR2_PACKAGE_DNSMASQ is not set
 # BR2_PACKAGE_DROPBEAR is not set
-
-#
-# ebtables requires a toolchain with IPv6 support
-#
+# BR2_PACKAGE_EBTABLES is not set
 # BR2_PACKAGE_ETHTOOL is not set
-
-#
-# gesftpserver requires a toolchain with WCHAR and threads support
-#
+# BR2_PACKAGE_GESFTPSERVER is not set
 # BR2_PACKAGE_HEIRLOOM_MAILX is not set
 # BR2_PACKAGE_HIAWATHA is not set
 # BR2_PACKAGE_HOSTAPD is not set
 # BR2_PACKAGE_HTTPING is not set
-
-#
-# iftop requires IPv6 and threads support in toolchain
-#
+# BR2_PACKAGE_IFTOP is not set
 # BR2_PACKAGE_IGH_ETHERCAT is not set
 # BR2_PACKAGE_INADYN is not set
-
-#
-# iperf requires a toolchain with C++ support enabled
-#
+# BR2_PACKAGE_IPERF is not set
 # BR2_PACKAGE_IPROUTE2 is not set
 # BR2_PACKAGE_IPSEC_TOOLS is not set
-
-#
-# ipset requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_IPSET is not set
 # BR2_PACKAGE_IPTABLES is not set
 # BR2_PACKAGE_IW is not set
-
-#
-# Kismet requires a toolchain with thread and C++ support enabled
-#
+# BR2_PACKAGE_KISMET is not set
 # BR2_PACKAGE_LIGHTTPD is not set
-
-#
-# linknx requires a toolchain with C++ support
-#
+# BR2_PACKAGE_LINKNX is not set
 # BR2_PACKAGE_LINKS is not set
-
-#
-# linphone requires a toolchain with threads and C++ support enabled
-#
+# BR2_PACKAGE_LINPHONE is not set
 # BR2_PACKAGE_LRZSZ is not set
 # BR2_PACKAGE_MACCHANGER is not set
 # BR2_PACKAGE_MII_DIAG is not set
-
-#
-# minidlna requires a toolchain with LARGEFILE and IPV6 support
-#
+# BR2_PACKAGE_MINIDLNA is not set
 # BR2_PACKAGE_MONGOOSE is not set
+# BR2_PACKAGE_MONGREL2 is not set
 # BR2_PACKAGE_MROUTED is not set
 # BR2_PACKAGE_MSMTP is not set
-
-#
-# mutt requires a toolchain with WCHAR support
-#
-
-#
-# nbd requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_MUTT is not set
+# BR2_PACKAGE_NBD is not set
 # BR2_PACKAGE_NCFTP is not set
-
-#
-# ndisc6 requires a toolchain with IPv6 support
-#
+# BR2_PACKAGE_NDISC6 is not set
 # BR2_PACKAGE_NETATALK is not set
 # BR2_PACKAGE_NETPLUG is not set
 # BR2_PACKAGE_NETSNMP is not set
 # BR2_PACKAGE_NETSTAT_NAT is not set
-
-#
-# NetworkManager requires a toolchain with IPV6, LARGEFILE, WCHAR and thread support
-#
-
-#
-# nfacct requires a toolchain with LARGEFILE support
-#
-
-#
-# nmap requires a toolchain with C++, IPV6 and thread support
-#
+# BR2_PACKAGE_NFACCT is not set
+# BR2_PACKAGE_NMAP is not set
 # BR2_PACKAGE_NOIP is not set
 # BR2_PACKAGE_NGIRCD is not set
 # BR2_PACKAGE_NGREP is not set
 # BR2_PACKAGE_NTP is not set
 # BR2_PACKAGE_NUTTCP is not set
-
-#
-# olsr requires a toolchain with IPv6 and threads support
-#
+# BR2_PACKAGE_OLSR is not set
 # BR2_PACKAGE_OPENNTPD is not set
-
-#
-# openobex requires a toolchain with IPV6 support
-#
+# BR2_PACKAGE_OPENOBEX is not set
 # BR2_PACKAGE_OPENSSH is not set
 # BR2_PACKAGE_OPENSWAN is not set
-
-#
-# openvpn requires a toolchain with IPV6 support
-#
-
-#
-# portmap requires a toolchain with RPC support
-#
+# BR2_PACKAGE_OPENVPN is not set
+# BR2_PACKAGE_PORTMAP is not set
 # BR2_PACKAGE_PPPD is not set
 # BR2_PACKAGE_PPTP_LINUX is not set
 # BR2_PACKAGE_PROFTPD is not set
@@ -1536,26 +899,14 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_PTPD is not set
 # BR2_PACKAGE_PTPD2 is not set
 # BR2_PACKAGE_QUAGGA is not set
-
-#
-# radvd requires a toolchain with IPV6 support
-#
+# BR2_PACKAGE_RADVD is not set
 # BR2_PACKAGE_RPCBIND is not set
 # BR2_PACKAGE_RSH_REDONE is not set
 # BR2_PACKAGE_RSYNC is not set
-
-#
-# rtorrent requires a toolchain with C++, threads and WCHAR support
-#
+# BR2_PACKAGE_RTORRENT is not set
 # BR2_PACKAGE_SAMBA is not set
-
-#
-# sconeserver requires a toolchain with C++ and thread support enabled
-#
-
-#
-# ser2net requires a toolchain with IPV6 support
-#
+# BR2_PACKAGE_SCONESERVER is not set
+# BR2_PACKAGE_SER2NET is not set
 # BR2_PACKAGE_SOCAT is not set
 # BR2_PACKAGE_SOCKETCAND is not set
 # BR2_PACKAGE_SPAWN_FCGI is not set
@@ -1564,10 +915,7 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # spice server depends on python (for pyparsing)
 #
-
-#
-# Squid requires a toolchain with C++ and IPv6 support enabled
-#
+# BR2_PACKAGE_SQUID is not set
 # BR2_PACKAGE_STRONGSWAN is not set
 # BR2_PACKAGE_STUNNEL is not set
 # BR2_PACKAGE_TCPDUMP is not set
@@ -1575,45 +923,21 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_THTTPD is not set
 # BR2_PACKAGE_TINYHTTPD is not set
 # BR2_PACKAGE_TN5250 is not set
-
-#
-# Transmission requires a toolchain with IPv6 and threads support
-#
-
-#
-# tvheadend needs a toolchain with LARGEFILE, IPv6 and THREADS support
-#
-
-#
-# udpcast requires a toolchain with LARGEFILE and threads support
-#
-
-#
-# ulogd requires a toolchain with IPV6 and LARGEFILE support
-#
-
-#
-# ushare requires a toolchain with LARGEFILE and thread support
-#
-
-#
-# ussp-push require a toolchain with WCHAR, IPV6 and thread support
-#
+# BR2_PACKAGE_TRANSMISSION is not set
+# BR2_PACKAGE_TVHEADEND is not set
+# BR2_PACKAGE_UDPCAST is not set
+# BR2_PACKAGE_ULOGD is not set
+# BR2_PACKAGE_USHARE is not set
+# BR2_PACKAGE_USSP_PUSH is not set
 # BR2_PACKAGE_VDE2 is not set
 # BR2_PACKAGE_VPNC is not set
 # BR2_PACKAGE_VSFTPD is not set
 # BR2_PACKAGE_VTUN is not set
 # BR2_PACKAGE_WIRELESS_REGDB is not set
 # BR2_PACKAGE_WIRELESS_TOOLS is not set
-
-#
-# wireshark requires a toolchain with WCHAR and threading support
-#
+# BR2_PACKAGE_WIRESHARK is not set
 # BR2_PACKAGE_WPA_SUPPLICANT is not set
-
-#
-# wvdial requires a toolchain with C++ and largefile support enabled
-#
+# BR2_PACKAGE_WVDIAL is not set
 # BR2_PACKAGE_XINETD is not set
 # BR2_PACKAGE_XL2TP is not set
 
@@ -1636,15 +960,9 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 # BR2_PACKAGE_DTACH is not set
 # BR2_PACKAGE_FILE is not set
 # BR2_PACKAGE_GNUPG is not set
-
-#
-# inotify-tools requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_INOTIFY_TOOLS is not set
 # BR2_PACKAGE_LOCKFILE_PROGS is not set
-
-#
-# logrotate requires a toolchain with WCHAR support
-#
+# BR2_PACKAGE_LOGROTATE is not set
 # BR2_PACKAGE_LOGSURFER is not set
 # BR2_PACKAGE_SCREEN is not set
 # BR2_PACKAGE_SUDO is not set
@@ -1653,32 +971,17 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # System tools
 #
-
-#
-# acl requires a toolchain with LARGEFILE support
-#
-
-#
-# attr requires a toolchain with LARGEFILE support
-#
+# BR2_PACKAGE_ACL is not set
+# BR2_PACKAGE_ATTR is not set
 # BR2_PACKAGE_CPULOAD is not set
 # BR2_PACKAGE_HTOP is not set
 # BR2_PACKAGE_KEYUTILS is not set
 # BR2_PACKAGE_KMOD is not set
 # BR2_PACKAGE_MONIT is not set
 # BR2_PACKAGE_NCDU is not set
-
-#
-# numactl requires a toolchain with LARGEFILE support
-#
-
-#
-# polkit requires a toolchain with WCHAR and threading support
-#
-
-#
-# quota requires a toolchain with LARGEFILE + WCHAR support
-#
+# BR2_PACKAGE_NUMACTL is not set
+# BR2_PACKAGE_POLKIT is not set
+# BR2_PACKAGE_QUOTA is not set
 
 #
 # supervisor needs the python interpreter
@@ -1687,10 +990,7 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
 #
 # systemd not available (depends on /dev management with udev and ipv6 support, and thread support in toolchain)
 #
-
-#
-# util-linux requires a toolchain with LARGEFILE + WCHAR support
-#
+# BR2_PACKAGE_UTIL_LINUX is not set
 
 #
 # Text editors and viewers