From 4092c53558567f911b0a8de3849debdfa2ed613b Mon Sep 17 00:00:00 2001 From: floh1111 Date: Wed, 23 Mar 2011 13:59:44 +0000 Subject: [PATCH] Restructuring firmware direkctories, work in progress! --- build_configuration/.config_default | 1384 +++++++ .../Atheros_AR231x_AR5312/.config | 3002 +++++++++++++++ .../Broadcom_BCM947xx_953xx_adhoc/.config | 3331 +++++++++++++++++ .../Broadcom_BCM947xx_953xx_ap/.config | 3255 ++++++++++++++++ build_patches/batman_advanced/Config.in | 13 + build_patches/batman_advanced/Makefile | 106 + .../files/etc/config/batman-adv | 9 + .../files/etc/init.d/batman-adv | 102 + root_file_system/default/etc/banner | 9 + root_file_system/default/etc/bat-hosts | 20 + .../default/etc/config_dir300/batman-adv | 8 + .../default/etc/config_dir300/dhcp | 33 + .../default/etc/config_dir300/dropbear | 4 + .../default/etc/config_dir300/firewall | 96 + .../default/etc/config_dir300/network | 37 + .../default/etc/config_dir300/nodewatcher | 24 + .../default/etc/config_dir300/qos | 86 + .../default/etc/config_dir300/system | 3 + .../default/etc/config_dir300/timeserver | 2 + .../default/etc/config_dir300/wireless | 21 + .../default/etc/config_fonera/batman-adv | 8 + .../default/etc/config_fonera/dhcp | 33 + .../default/etc/config_fonera/dropbear | 4 + .../default/etc/config_fonera/firewall | 96 + .../default/etc/config_fonera/network | 18 + .../default/etc/config_fonera/nodewatcher | 20 + .../default/etc/config_fonera/qos | 86 + .../default/etc/config_fonera/system | 3 + .../default/etc/config_fonera/timeserver | 2 + .../default/etc/config_fonera/wireless | 21 + .../etc/config_wrt54g_adhoc/batman-adv | 9 + .../default/etc/config_wrt54g_adhoc/dhcp | 27 + .../default/etc/config_wrt54g_adhoc/dropbear | 4 + .../default/etc/config_wrt54g_adhoc/firewall_ | 96 + .../default/etc/config_wrt54g_adhoc/network | 45 + .../etc/config_wrt54g_adhoc/nodewatcher | 20 + .../default/etc/config_wrt54g_adhoc/system | 3 + .../etc/config_wrt54g_adhoc/timeserver | 2 + .../default/etc/config_wrt54g_adhoc/wireless | 16 + .../default/etc/config_wrt54g_ap/batman-adv | 8 + .../default/etc/config_wrt54g_ap/dhcp | 30 + .../default/etc/config_wrt54g_ap/dropbear | 4 + .../default/etc/config_wrt54g_ap/firewall | 96 + .../default/etc/config_wrt54g_ap/network | 33 + .../default/etc/config_wrt54g_ap/nodewatcher | 22 + .../default/etc/config_wrt54g_ap/system | 3 + .../default/etc/config_wrt54g_ap/timeserver | 2 + .../default/etc/config_wrt54g_ap/wireless | 10 + root_file_system/default/etc/crontabs/root | 17 + root_file_system/default/etc/firewall.user | 45 + root_file_system/default/etc/firmware_release | 2 + root_file_system/default/etc/hostsupdate.sh | 3 + .../default/etc/hotplug.d/iface/50-tincstart | 3 + .../etc/hotplug.d/iface/51-nodewatcher | 3 + root_file_system/default/etc/init.d/zapp | 622 +++ root_file_system/default/etc/nodewatcher.sh | 576 +++ root_file_system/default/etc/passwd | 3 + root_file_system/default/etc/rc.local | 18 + root_file_system/default/etc/showmacs.sh | 15 + root_file_system/default/etc/sysctl.conf | 24 + root_file_system/default/etc/tincstart.sh | 118 + root_file_system/dir300/etc/config/network | 37 + root_file_system/fonera/etc/config/network | 18 + 63 files changed, 13770 insertions(+) create mode 100644 build_configuration/.config_default create mode 100644 build_configuration/Atheros_AR231x_AR5312/.config create mode 100644 build_configuration/Broadcom_BCM947xx_953xx_adhoc/.config create mode 100644 build_configuration/Broadcom_BCM947xx_953xx_ap/.config create mode 100644 build_patches/batman_advanced/Config.in create mode 100644 build_patches/batman_advanced/Makefile create mode 100644 build_patches/batman_advanced/files/etc/config/batman-adv create mode 100644 build_patches/batman_advanced/files/etc/init.d/batman-adv create mode 100644 root_file_system/default/etc/banner create mode 100644 root_file_system/default/etc/bat-hosts create mode 100644 root_file_system/default/etc/config_dir300/batman-adv create mode 100644 root_file_system/default/etc/config_dir300/dhcp create mode 100644 root_file_system/default/etc/config_dir300/dropbear create mode 100644 root_file_system/default/etc/config_dir300/firewall create mode 100644 root_file_system/default/etc/config_dir300/network create mode 100644 root_file_system/default/etc/config_dir300/nodewatcher create mode 100644 root_file_system/default/etc/config_dir300/qos create mode 100644 root_file_system/default/etc/config_dir300/system create mode 100644 root_file_system/default/etc/config_dir300/timeserver create mode 100644 root_file_system/default/etc/config_dir300/wireless create mode 100644 root_file_system/default/etc/config_fonera/batman-adv create mode 100644 root_file_system/default/etc/config_fonera/dhcp create mode 100644 root_file_system/default/etc/config_fonera/dropbear create mode 100644 root_file_system/default/etc/config_fonera/firewall create mode 100644 root_file_system/default/etc/config_fonera/network create mode 100644 root_file_system/default/etc/config_fonera/nodewatcher create mode 100644 root_file_system/default/etc/config_fonera/qos create mode 100644 root_file_system/default/etc/config_fonera/system create mode 100644 root_file_system/default/etc/config_fonera/timeserver create mode 100644 root_file_system/default/etc/config_fonera/wireless create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/batman-adv create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/dhcp create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/dropbear create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/firewall_ create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/network create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/nodewatcher create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/system create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/timeserver create mode 100644 root_file_system/default/etc/config_wrt54g_adhoc/wireless create mode 100644 root_file_system/default/etc/config_wrt54g_ap/batman-adv create mode 100644 root_file_system/default/etc/config_wrt54g_ap/dhcp create mode 100644 root_file_system/default/etc/config_wrt54g_ap/dropbear create mode 100644 root_file_system/default/etc/config_wrt54g_ap/firewall create mode 100644 root_file_system/default/etc/config_wrt54g_ap/network create mode 100644 root_file_system/default/etc/config_wrt54g_ap/nodewatcher create mode 100644 root_file_system/default/etc/config_wrt54g_ap/system create mode 100644 root_file_system/default/etc/config_wrt54g_ap/timeserver create mode 100644 root_file_system/default/etc/config_wrt54g_ap/wireless create mode 100644 root_file_system/default/etc/crontabs/root create mode 100755 root_file_system/default/etc/firewall.user create mode 100644 root_file_system/default/etc/firmware_release create mode 100644 root_file_system/default/etc/hostsupdate.sh create mode 100755 root_file_system/default/etc/hotplug.d/iface/50-tincstart create mode 100755 root_file_system/default/etc/hotplug.d/iface/51-nodewatcher create mode 100755 root_file_system/default/etc/init.d/zapp create mode 100755 root_file_system/default/etc/nodewatcher.sh create mode 100644 root_file_system/default/etc/passwd create mode 100755 root_file_system/default/etc/rc.local create mode 100755 root_file_system/default/etc/showmacs.sh create mode 100644 root_file_system/default/etc/sysctl.conf create mode 100755 root_file_system/default/etc/tincstart.sh create mode 100644 root_file_system/dir300/etc/config/network create mode 100644 root_file_system/fonera/etc/config/network diff --git a/build_configuration/.config_default b/build_configuration/.config_default new file mode 100644 index 0000000..58ffe5b --- /dev/null +++ b/build_configuration/.config_default @@ -0,0 +1,1384 @@ +# +# Automatically generated make config: don't edit +# OpenWrt version: Backfire (r23841) +# Thu Nov 4 11:09:19 2010 +# +CONFIG_HAVE_DOT_CONFIG=y +# CONFIG_TARGET_ppc40x is not set +# CONFIG_TARGET_ppc44x is not set +# CONFIG_TARGET_atheros is not set +# CONFIG_TARGET_ar71xx is not set +# CONFIG_TARGET_avr32 is not set +# CONFIG_TARGET_brcm63xx is not set +# CONFIG_TARGET_brcm47xx is not set +CONFIG_TARGET_brcm_2_4=y +# CONFIG_TARGET_octeon is not set +# CONFIG_TARGET_cobalt is not set +# CONFIG_TARGET_ifxmips is not set +# CONFIG_TARGET_adm5120 is not set +# CONFIG_TARGET_xburst is not set +# CONFIG_TARGET_ixp4xx is not set +# CONFIG_TARGET_kirkwood is not set +# CONFIG_TARGET_orion is not set +# CONFIG_TARGET_rb532 is not set +# CONFIG_TARGET_rdc is not set +# CONFIG_TARGET_au1000 is not set +# CONFIG_TARGET_ar7 is not set +# CONFIG_TARGET_uml is not set +# CONFIG_TARGET_x86 is not set +# CONFIG_TARGET_ar71xx_Default is not set +# CONFIG_TARGET_ar71xx_DefaultNoWifi is not set +# CONFIG_TARGET_ar71xx_Madwifi is not set +# CONFIG_TARGET_ar71xx_AP81 is not set +# CONFIG_TARGET_ar71xx_AP83 is not set +# CONFIG_TARGET_ar71xx_PB42 is not set +# CONFIG_TARGET_ar71xx_PB44 is not set +# CONFIG_TARGET_ar71xx_A02RBW300N is not set +# CONFIG_TARGET_ar71xx_WZRHPG300NH is not set +# CONFIG_TARGET_ar71xx_WP543 is not set +# CONFIG_TARGET_ar71xx_DIR600A1 is not set +# CONFIG_TARGET_ar71xx_DIR615C1 is not set +# CONFIG_TARGET_ar71xx_DIR825B1 is not set +# CONFIG_TARGET_ar71xx_WRT160NL is not set +# CONFIG_TARGET_ar71xx_WRT400N is not set +# CONFIG_TARGET_ar71xx_WNDR3700 is not set +# CONFIG_TARGET_ar71xx_MZKW04NU is not set +# CONFIG_TARGET_ar71xx_MZKW300NH is not set +# CONFIG_TARGET_ar71xx_TLWR741NDV1 is not set +# CONFIG_TARGET_ar71xx_TLWR841NV15 is not set +# CONFIG_TARGET_ar71xx_TLWR841NDV3 is not set +# CONFIG_TARGET_ar71xx_TLWR841NDV5 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV2 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV3 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV4 is not set +# CONFIG_TARGET_ar71xx_TLWR1043NDV1 is not set +# CONFIG_TARGET_ar71xx_TEW632BRP is not set +# CONFIG_TARGET_ar71xx_TEW652BRP is not set +# CONFIG_TARGET_ar71xx_UBNTRS is not set +# CONFIG_TARGET_ar71xx_UBNTRSPRO is not set +# CONFIG_TARGET_ar71xx_UBNT is not set +# CONFIG_TARGET_brcm63xx_Broadcom is not set +# CONFIG_TARGET_brcm63xx_Atheros is not set +# CONFIG_TARGET_brcm63xx_Ralink is not set +# CONFIG_TARGET_brcm63xx_NoWiFi is not set +# CONFIG_TARGET_brcm63xx_GW6X00 is not set +# CONFIG_TARGET_ppc44x_Default is not set +# CONFIG_TARGET_au1000_au1500_Atheros is not set +# CONFIG_TARGET_au1000_au1500_InternetBox is not set +# CONFIG_TARGET_au1000_au1500_MeshCube is not set +# CONFIG_TARGET_au1000_au1550_DBAu1550 is not set +# CONFIG_TARGET_atheros_Default is not set +CONFIG_TARGET_brcm_2_4_Broadcom=y +# CONFIG_TARGET_brcm_2_4_BroadcomMimo is not set +# CONFIG_TARGET_brcm_2_4_None is not set +# CONFIG_TARGET_brcm_2_4_USBGeneric is not set +# CONFIG_TARGET_brcm_2_4_WL500G is not set +# CONFIG_TARGET_brcm_2_4_WL500GD is not set +# CONFIG_TARGET_brcm_2_4_WL500GP is not set +# CONFIG_TARGET_brcm_2_4_WL700GE is not set +# CONFIG_TARGET_brcm_2_4_WLHDD is not set +# CONFIG_TARGET_brcm_2_4_WRT300Nv11 is not set +# CONFIG_TARGET_brcm_2_4_WRT54G3G is not set +# CONFIG_TARGET_brcm_2_4_WRT610Nv1 is not set +# CONFIG_TARGET_octeon_generic is not set +# CONFIG_TARGET_octeon_mototech is not set +# CONFIG_TARGET_octeon_simulator is not set +# CONFIG_TARGET_rb532_Default is not set +# CONFIG_TARGET_adm5120_router_le_Generic is not set +# CONFIG_TARGET_adm5120_router_le_CAS630 is not set +# CONFIG_TARGET_adm5120_router_le_CAS630W is not set +# CONFIG_TARGET_adm5120_router_le_CAS670 is not set +# CONFIG_TARGET_adm5120_router_le_CAS670W is not set +# CONFIG_TARGET_adm5120_router_le_CAS700 is not set +# CONFIG_TARGET_adm5120_router_le_CAS700W is not set +# CONFIG_TARGET_adm5120_router_le_CAS771 is not set +# CONFIG_TARGET_adm5120_router_le_CAS771W is not set +# CONFIG_TARGET_adm5120_router_le_CAS790 is not set +# CONFIG_TARGET_adm5120_router_le_CAS861 is not set +# CONFIG_TARGET_adm5120_router_le_CAS861W is not set +# CONFIG_TARGET_adm5120_router_le_NFS101U is not set +# CONFIG_TARGET_adm5120_router_le_NFS101WU is not set +# CONFIG_TARGET_adm5120_router_le_NP27G is not set +# CONFIG_TARGET_adm5120_router_le_NP28G is not set +# CONFIG_TARGET_adm5120_router_le_WP54 is not set +# CONFIG_TARGET_adm5120_router_le_BR6104K is not set +# CONFIG_TARGET_adm5120_router_le_BR6104KP is not set +# CONFIG_TARGET_adm5120_router_le_BR6104WG is not set +# CONFIG_TARGET_adm5120_router_le_BR6114WG is not set +# CONFIG_TARGET_adm5120_router_le_EASY5120RT is not set +# CONFIG_TARGET_adm5120_router_le_EASY5120PATA is not set +# CONFIG_TARGET_adm5120_router_le_PMUGW is not set +# CONFIG_TARGET_adm5120_router_le_5GXI is not set +# CONFIG_TARGET_adm5120_router_le_RouterBoard is not set +# CONFIG_TARGET_adm5120_router_be_Generic is not set +# CONFIG_TARGET_adm5120_router_be_P334WT is not set +# CONFIG_TARGET_adm5120_router_be_P335WT is not set +# CONFIG_TARGET_ppc40x_Default is not set +# CONFIG_TARGET_rdc_ar525w is not set +# CONFIG_TARGET_rdc_bifferboard is not set +# CONFIG_TARGET_rdc_r8610 is not set +# CONFIG_TARGET_rdc_sitecom is not set +# CONFIG_TARGET_ixp4xx_generic_Default is not set +# CONFIG_TARGET_ixp4xx_generic_Atheros-ath5k is not set +# CONFIG_TARGET_ixp4xx_generic_NSLU2 is not set +# CONFIG_TARGET_ixp4xx_generic_NAS100d is not set +# CONFIG_TARGET_ixp4xx_generic_DSMG600RevA is not set +# CONFIG_TARGET_ixp4xx_generic_USR8200 is not set +# CONFIG_TARGET_ixp4xx_harddisk_FSG3 is not set +# CONFIG_TARGET_orion_generic_Default is not set +# CONFIG_TARGET_orion_harddisk_Default is not set +# CONFIG_TARGET_ar7_Annex-A is not set +# CONFIG_TARGET_ar7_Annex-B is not set +# CONFIG_TARGET_ar7_Texas is not set +# CONFIG_TARGET_ar7_None is not set +# CONFIG_TARGET_brcm47xx_Broadcom-b43 is not set +# CONFIG_TARGET_brcm47xx_Atheros is not set +# CONFIG_TARGET_brcm47xx_Atheros-ath5k is not set +# CONFIG_TARGET_brcm47xx_None is not set +# CONFIG_TARGET_brcm47xx_WGT634U is not set +# CONFIG_TARGET_brcm47xx_WL500GPv1 is not set +# CONFIG_TARGET_brcm47xx_WRT350Nv1 is not set +# CONFIG_TARGET_brcm47xx_WRTSL54GS is not set +# CONFIG_TARGET_ifxmips_None is not set +# CONFIG_TARGET_ifxmips_Atheros is not set +# CONFIG_TARGET_ifxmips_Ralink is not set +# CONFIG_TARGET_avr32_Default is not set +# CONFIG_TARGET_xburst_qi_lb60_Default is not set +# CONFIG_TARGET_xburst_n516_Default is not set +# CONFIG_TARGET_xburst_n526_Default is not set +# CONFIG_TARGET_kirkwood_Default is not set +# CONFIG_TARGET_uml_Default is not set +# CONFIG_TARGET_x86_generic_Generic is not set +# CONFIG_TARGET_x86_generic_Alix is not set +# CONFIG_TARGET_x86_generic_Soekris45xx is not set +# CONFIG_TARGET_x86_generic_Soekris48xx is not set +# CONFIG_TARGET_x86_generic_Wrap is not set +# CONFIG_TARGET_x86_olpc_Default is not set +# CONFIG_TARGET_x86_xen_domu_Default is not set +# CONFIG_TARGET_x86_ep80579_Default is not set +# CONFIG_TARGET_cobalt_Default is not set +CONFIG_TARGET_BOARD="brcm-2.4" +CONFIG_TARGET_ARCH_PACKAGES="brcm-2.4" +CONFIG_DEFAULT_TARGET_OPTIMIZATION="-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" +CONFIG_LINUX_2_4_37=y +CONFIG_DEFAULT_base-files=y +CONFIG_DEFAULT_busybox=y +CONFIG_DEFAULT_dnsmasq=y +CONFIG_DEFAULT_dropbear=y +CONFIG_DEFAULT_firewall=y +CONFIG_DEFAULT_iptables=y +CONFIG_DEFAULT_kmod-brcm-wl=y +CONFIG_DEFAULT_kmod-diag=y +CONFIG_DEFAULT_kmod-ipt-nathelper=y +CONFIG_DEFAULT_kmod-switch=y +CONFIG_DEFAULT_kmod-wlcompat=y +CONFIG_DEFAULT_libc=y +CONFIG_DEFAULT_libgcc=y +CONFIG_DEFAULT_mtd=y +CONFIG_DEFAULT_nas=y +CONFIG_DEFAULT_nvram=y +CONFIG_DEFAULT_opkg=y +CONFIG_DEFAULT_ppp=y +CONFIG_DEFAULT_ppp-mod-pppoe=y +CONFIG_DEFAULT_uci=y +CONFIG_DEFAULT_wlc=y +CONFIG_LINUX_2_4=y +CONFIG_AUDIO_SUPPORT=y +CONFIG_PCI_SUPPORT=y +CONFIG_PCMCIA_SUPPORT=y +CONFIG_USB_SUPPORT=y +CONFIG_USES_SQUASHFS=y +CONFIG_mipsel=y +CONFIG_ARCH="mipsel" + +# +# Target Images +# + +# +# Root filesystem archives +# +# CONFIG_TARGET_ROOTFS_CPIOGZ is not set +# CONFIG_TARGET_ROOTFS_TARGZ is not set + +# +# Root filesystem images +# +# CONFIG_TARGET_ROOTFS_EXT2FS is not set +# CONFIG_TARGET_ROOTFS_JFFS2 is not set +CONFIG_TARGET_ROOTFS_SQUASHFS=y + +# +# Image Options +# + +# +# Global build settings +# +# CONFIG_ALL is not set + +# +# General build options +# +# CONFIG_DISPLAY_SUPPORT is not set +CONFIG_BUILD_PATENTED=y +CONFIG_LARGEFILE=y +CONFIG_SHADOW_PASSWORDS=y +# CONFIG_CLEAN_IPKG is not set +# CONFIG_COLLECT_KERNEL_DEBUG is not set + +# +# Kernel build options +# +# CONFIG_KERNEL_PROFILING is not set +# CONFIG_KERNEL_KALLSYMS is not set +# CONFIG_KERNEL_DEBUG_KERNEL is not set +# CONFIG_KERNEL_DEBUG_INFO is not set + +# +# Package build options +# +# CONFIG_DEBUG is not set +CONFIG_IPV6=y + +# +# Stripping options +# +# CONFIG_NO_STRIP is not set +# CONFIG_USE_STRIP is not set +CONFIG_USE_SSTRIP=y +# CONFIG_USE_MKLIBS is not set +# CONFIG_DEVEL is not set +# CONFIG_BROKEN is not set +CONFIG_DOWNLOAD_FOLDER="" +CONFIG_LOCALMIRROR="" +CONFIG_AUTOREBUILD=y +CONFIG_BUILD_SUFFIX="" +CONFIG_TARGET_ROOTFS_DIR="" +# CONFIG_CCACHE is not set +CONFIG_EXTERNAL_KERNEL_TREE="" +CONFIG_KERNEL_GIT_CLONE_URI="" +CONFIG_KERNEL_GIT_LOCAL_REPOSITORY="" +CONFIG_TARGET_OPTIMIZATION="-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" +CONFIG_SOFT_FLOAT=y +# CONFIG_EXTRA_TARGET_ARCH is not set +CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="" +CONFIG_BINUTILS_VERSION="2.19.1" +CONFIG_GCC_VERSION_3_4_6=y +CONFIG_EXTRA_GCC_CONFIG_OPTIONS="" +CONFIG_INSTALL_LIBSTDCPP=y +# CONFIG_INSTALL_LIBGCJ is not set +CONFIG_USE_UCLIBC=y +# CONFIG_GDB is not set +# CONFIG_INSIGHT is not set +CONFIG_GCC_VERSION="3.4.6" +CONFIG_GCC_VERSION_3=y +CONFIG_GCC_VERSION_3_4=y +CONFIG_UCLIBC_VERSION="0.9.30.1" +CONFIG_LIBC="uClibc" +CONFIG_LIBC_VERSION="0.9.30.1" +CONFIG_TARGET_SUFFIX="uclibc" +# CONFIG_IB is not set +# CONFIG_SDK is not set +# CONFIG_MAKE_TOOLCHAIN is not set +# CONFIG_IMAGEOPT is not set +CONFIG_UCI_PRECONFIG_network_lan_dns="" +CONFIG_UCI_PRECONFIG_network_lan_proto="static" +CONFIG_UCI_PRECONFIG_network_lan_gateway="" +CONFIG_UCI_PRECONFIG_network_lan_netmask="255.255.255.0" +CONFIG_UCI_PRECONFIG_network_lan_ipaddr="192.168.1.1" +# CONFIG_PREINITOPT is not set +CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y +CONFIG_TARGET_PREINIT_TIMEOUT=2 +# CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set +# CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set +CONFIG_TARGET_PREINIT_IFNAME="" +CONFIG_TARGET_PREINIT_IP="192.168.1.1" +CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0" +CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255" +# CONFIG_INITOPT is not set +CONFIG_TARGET_INIT_PATH="/bin:/sbin:/usr/bin:/usr/sbin" +CONFIG_TARGET_INIT_ENV="" +CONFIG_TARGET_INIT_CMD="/sbin/init" +CONFIG_TARGET_INIT_SUPPRESS_STDERR=y + +# +# Base system +# +CONFIG_PACKAGE_base-files=y +CONFIG_EXTROOT_SETTLETIME=20 +# CONFIG_PACKAGE_block-hotplug is not set +# CONFIG_PACKAGE_block-mount is not set +# CONFIG_PACKAGE_br2684ctl is not set +# CONFIG_PACKAGE_bridge is not set +CONFIG_PACKAGE_busybox=y + +# +# Configuration +# +CONFIG_BUSYBOX_CONFIG_FEATURE_DEVFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_2_4_MODULES=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_2_6_MODULES is not set +# CONFIG_BUSYBOX_CONFIG_NOMMU is not set +# CONFIG_CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_BUSYBOX_CONFIG_HUSH is not set +CONFIG_BUSYBOX_CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_BUSYBOX_CONFIG_DESKTOP is not set +# CONFIG_BUSYBOX_CONFIG_EXTRA_COMPAT is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_USE_MALLOC is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_BUSYBOX_CONFIG_SHOW_USAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_COMPRESS_USAGE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_INSTALLER is not set +# CONFIG_BUSYBOX_CONFIG_LOCALE_SUPPORT is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_ASSUME_UNICODE is not set +CONFIG_BUSYBOX_CONFIG_LONG_OPTS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DEVPTS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PIDFILE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_SUID=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_BUSYBOX_CONFIG_SELINUX is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS=y +CONFIG_BUSYBOX_CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_HAVE_RPC=y + +# +# Build Options +# +# CONFIG_BUSYBOX_CONFIG_STATIC is not set +# CONFIG_BUSYBOX_CONFIG_PIE is not set +CONFIG_BUSYBOX_CONFIG_LFS=y +CONFIG_BUSYBOX_CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_BUSYBOX_CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_BUSYBOX_CONFIG_DEBUG is not set +# CONFIG_BUSYBOX_CONFIG_WERROR is not set +CONFIG_BUSYBOX_CONFIG_NO_DEBUG_LIB=y +# CONFIG_BUSYBOX_CONFIG_DMALLOC is not set +# CONFIG_BUSYBOX_CONFIG_EFENCE is not set +CONFIG_BUSYBOX_CONFIG_INCLUDE_SUSv2=y + +# +# Installation Options +# +# CONFIG_BUSYBOX_CONFIG_INSTALL_NO_USR is not set +CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_DONT is not set +CONFIG_BUSYBOX_CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_BUSYBOX_CONFIG_PASSWORD_MINLEN=6 +CONFIG_BUSYBOX_CONFIG_MD5_SIZE_VS_SPEED=2 +CONFIG_BUSYBOX_CONFIG_FEATURE_FAST_TOP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING=y +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_MAX_LEN=512 +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_VI is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_HISTORY=256 +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_USERNAME_COMPLETION is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_BUSYBOX_CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_BUSYBOX_CONFIG_IOCTL_HEX2STR_ERROR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWIB is not set + +# +# Applets +# + +# +# Archival Utilities +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2 is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z is not set +# CONFIG_BUSYBOX_CONFIG_AR is not set +CONFIG_BUSYBOX_CONFIG_BUNZIP2=y +# CONFIG_BUSYBOX_CONFIG_BZIP2 is not set +# CONFIG_BUSYBOX_CONFIG_CPIO is not set +# CONFIG_BUSYBOX_CONFIG_DPKG is not set +# CONFIG_BUSYBOX_CONFIG_DPKG_DEB is not set +CONFIG_BUSYBOX_CONFIG_GUNZIP=y +CONFIG_BUSYBOX_CONFIG_GZIP=y +# CONFIG_BUSYBOX_CONFIG_LZOP is not set +# CONFIG_BUSYBOX_CONFIG_RPM2CPIO is not set +# CONFIG_BUSYBOX_CONFIG_RPM is not set +CONFIG_BUSYBOX_CONFIG_TAR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_CREATE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_FROM=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME is not set +# CONFIG_BUSYBOX_CONFIG_UNCOMPRESS is not set +# CONFIG_BUSYBOX_CONFIG_UNLZMA is not set +# CONFIG_BUSYBOX_CONFIG_UNZIP is not set + +# +# Coreutils +# +CONFIG_BUSYBOX_CONFIG_BASENAME=y +# CONFIG_BUSYBOX_CONFIG_CAL is not set +CONFIG_BUSYBOX_CONFIG_CAT=y +# CONFIG_BUSYBOX_CONFIG_CATV is not set +CONFIG_BUSYBOX_CONFIG_CHGRP=y +CONFIG_BUSYBOX_CONFIG_CHMOD=y +CONFIG_BUSYBOX_CONFIG_CHOWN=y +CONFIG_BUSYBOX_CONFIG_CHROOT=y +# CONFIG_BUSYBOX_CONFIG_CKSUM is not set +# CONFIG_BUSYBOX_CONFIG_COMM is not set +CONFIG_BUSYBOX_CONFIG_CP=y +CONFIG_BUSYBOX_CONFIG_CUT=y +CONFIG_BUSYBOX_CONFIG_DATE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT=y +CONFIG_BUSYBOX_CONFIG_DD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS is not set +CONFIG_BUSYBOX_CONFIG_DF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DF_FANCY is not set +CONFIG_BUSYBOX_CONFIG_DIRNAME=y +# CONFIG_BUSYBOX_CONFIG_DOS2UNIX is not set +CONFIG_BUSYBOX_CONFIG_DU=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_BUSYBOX_CONFIG_ECHO=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_BUSYBOX_CONFIG_ENV=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_EXPAND is not set +CONFIG_BUSYBOX_CONFIG_EXPR=y +CONFIG_BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_BUSYBOX_CONFIG_FALSE=y +# CONFIG_BUSYBOX_CONFIG_FOLD is not set +# CONFIG_BUSYBOX_CONFIG_FSYNC is not set +CONFIG_BUSYBOX_CONFIG_HEAD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_BUSYBOX_CONFIG_HOSTID=y +CONFIG_BUSYBOX_CONFIG_ID=y +# CONFIG_BUSYBOX_CONFIG_INSTALL is not set +CONFIG_BUSYBOX_CONFIG_LENGTH=y +CONFIG_BUSYBOX_CONFIG_LN=y +# CONFIG_BUSYBOX_CONFIG_LOGNAME is not set +CONFIG_BUSYBOX_CONFIG_LS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_USERNAME=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_BUSYBOX_CONFIG_MD5SUM=y +CONFIG_BUSYBOX_CONFIG_MKDIR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_MKFIFO=y +CONFIG_BUSYBOX_CONFIG_MKNOD=y +CONFIG_BUSYBOX_CONFIG_MV=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_NICE=y +# CONFIG_BUSYBOX_CONFIG_NOHUP is not set +# CONFIG_BUSYBOX_CONFIG_OD is not set +# CONFIG_BUSYBOX_CONFIG_PRINTENV is not set +CONFIG_BUSYBOX_CONFIG_PRINTF=y +CONFIG_BUSYBOX_CONFIG_PWD=y +# CONFIG_BUSYBOX_CONFIG_READLINK is not set +# CONFIG_BUSYBOX_CONFIG_REALPATH is not set +CONFIG_BUSYBOX_CONFIG_RM=y +CONFIG_BUSYBOX_CONFIG_RMDIR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_SEQ=y +# CONFIG_BUSYBOX_CONFIG_SHA1SUM is not set +# CONFIG_BUSYBOX_CONFIG_SHA256SUM is not set +# CONFIG_BUSYBOX_CONFIG_SHA512SUM is not set +CONFIG_BUSYBOX_CONFIG_SLEEP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP is not set +CONFIG_BUSYBOX_CONFIG_SORT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SORT_BIG is not set +# CONFIG_BUSYBOX_CONFIG_SPLIT is not set +# CONFIG_BUSYBOX_CONFIG_STAT is not set +# CONFIG_BUSYBOX_CONFIG_STTY is not set +# CONFIG_BUSYBOX_CONFIG_SUM is not set +CONFIG_BUSYBOX_CONFIG_SYNC=y +# CONFIG_BUSYBOX_CONFIG_TAC is not set +CONFIG_BUSYBOX_CONFIG_TAIL=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_BUSYBOX_CONFIG_TEE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_BUSYBOX_CONFIG_TEST=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TEST_64=y +CONFIG_BUSYBOX_CONFIG_TOUCH=y +CONFIG_BUSYBOX_CONFIG_TR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_CLASSES is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_EQUIV is not set +CONFIG_BUSYBOX_CONFIG_TRUE=y +# CONFIG_BUSYBOX_CONFIG_TTY is not set +CONFIG_BUSYBOX_CONFIG_UNAME=y +# CONFIG_BUSYBOX_CONFIG_UNEXPAND is not set +CONFIG_BUSYBOX_CONFIG_UNIQ=y +# CONFIG_BUSYBOX_CONFIG_USLEEP is not set +# CONFIG_BUSYBOX_CONFIG_UUDECODE is not set +# CONFIG_BUSYBOX_CONFIG_UUENCODE is not set +CONFIG_BUSYBOX_CONFIG_WC=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_WC_LARGE is not set +# CONFIG_BUSYBOX_CONFIG_WHO is not set +# CONFIG_BUSYBOX_CONFIG_WHOAMI is not set +CONFIG_BUSYBOX_CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for ls, more and telnet +# +CONFIG_BUSYBOX_CONFIG_FEATURE_AUTOWIDTH=y + +# +# Common options for df, du, ls +# +CONFIG_BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum +# +CONFIG_BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +# CONFIG_BUSYBOX_CONFIG_CHVT is not set +CONFIG_BUSYBOX_CONFIG_CLEAR=y +# CONFIG_BUSYBOX_CONFIG_DEALLOCVT is not set +# CONFIG_BUSYBOX_CONFIG_DUMPKMAP is not set +# CONFIG_BUSYBOX_CONFIG_KBD_MODE is not set +# CONFIG_BUSYBOX_CONFIG_LOADFONT is not set +# CONFIG_BUSYBOX_CONFIG_LOADKMAP is not set +# CONFIG_BUSYBOX_CONFIG_OPENVT is not set +CONFIG_BUSYBOX_CONFIG_RESET=y +# CONFIG_BUSYBOX_CONFIG_RESIZE is not set +# CONFIG_BUSYBOX_CONFIG_SETCONSOLE is not set +# CONFIG_BUSYBOX_CONFIG_SETFONT is not set +# CONFIG_BUSYBOX_CONFIG_SETKEYCODES is not set +# CONFIG_BUSYBOX_CONFIG_SETLOGCONS is not set +# CONFIG_BUSYBOX_CONFIG_SHOWKEY is not set + +# +# Debian Utilities +# +CONFIG_BUSYBOX_CONFIG_MKTEMP=y +# CONFIG_BUSYBOX_CONFIG_PIPE_PROGRESS is not set +# CONFIG_BUSYBOX_CONFIG_RUN_PARTS is not set +CONFIG_BUSYBOX_CONFIG_START_STOP_DAEMON=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_WHICH=y + +# +# Editors +# +CONFIG_BUSYBOX_CONFIG_AWK=y +CONFIG_BUSYBOX_CONFIG_FEATURE_AWK_LIBM=y +# CONFIG_BUSYBOX_CONFIG_CMP is not set +CONFIG_BUSYBOX_CONFIG_DIFF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_BINARY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_DIR is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_MINIMAL is not set +# CONFIG_BUSYBOX_CONFIG_ED is not set +# CONFIG_BUSYBOX_CONFIG_PATCH is not set +CONFIG_BUSYBOX_CONFIG_SED=y +CONFIG_BUSYBOX_CONFIG_VI=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_MAX_LEN=1024 +# CONFIG_BUSYBOX_CONFIG_FEATURE_VI_8BIT is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_COLON=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SEARCH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_READONLY=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_BUSYBOX_CONFIG_FIND=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRINT0=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MTIME is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MMIN is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PERM=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_TYPE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_XDEV=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NEWER is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_INUM is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_EXEC=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_USER=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_GROUP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NOT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PAREN=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_SIZE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRUNE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DELETE is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PATH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_REGEX=y +CONFIG_BUSYBOX_CONFIG_GREP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_BUSYBOX_CONFIG_XARGS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +CONFIG_BUSYBOX_CONFIG_INIT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_KILL_REMOVED is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SCTTY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SYSLOG=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_EXTRA_QUIET is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_COREDUMPS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INITRD is not set +CONFIG_BUSYBOX_CONFIG_HALT=y +CONFIG_BUSYBOX_CONFIG_MESG=y + +# +# Login/Password Management Utilities +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_BUSYBOX_CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_BUSYBOX_CONFIG_USE_BB_CRYPT is not set +# CONFIG_BUSYBOX_CONFIG_ADDGROUP is not set +# CONFIG_BUSYBOX_CONFIG_DELGROUP is not set +# CONFIG_BUSYBOX_CONFIG_ADDUSER is not set +# CONFIG_BUSYBOX_CONFIG_DELUSER is not set +# CONFIG_BUSYBOX_CONFIG_GETTY is not set +# CONFIG_BUSYBOX_CONFIG_LOGIN is not set +CONFIG_BUSYBOX_CONFIG_PASSWD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +# CONFIG_BUSYBOX_CONFIG_CRYPTPW is not set +# CONFIG_BUSYBOX_CONFIG_CHPASSWD is not set +# CONFIG_BUSYBOX_CONFIG_SU is not set +# CONFIG_BUSYBOX_CONFIG_SULOGIN is not set +# CONFIG_BUSYBOX_CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +# CONFIG_BUSYBOX_CONFIG_CHATTR is not set +# CONFIG_BUSYBOX_CONFIG_FSCK is not set +# CONFIG_BUSYBOX_CONFIG_LSATTR is not set + +# +# Linux Module Utilities +# +# CONFIG_BUSYBOX_CONFIG_MODPROBE_SMALL is not set +CONFIG_BUSYBOX_CONFIG_INSMOD=y +CONFIG_BUSYBOX_CONFIG_RMMOD=y +CONFIG_BUSYBOX_CONFIG_LSMOD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT=y +# CONFIG_BUSYBOX_CONFIG_MODPROBE is not set +# CONFIG_BUSYBOX_CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE=y +CONFIG_BUSYBOX_CONFIG_DEFAULT_MODULES_DIR="/lib/modules" + +# +# Linux System Utilities +# +# CONFIG_BUSYBOX_CONFIG_ACPID is not set +CONFIG_BUSYBOX_CONFIG_BLKID=y +CONFIG_BUSYBOX_CONFIG_DMESG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DMESG_PRETTY=y +# CONFIG_BUSYBOX_CONFIG_FBSET is not set +# CONFIG_BUSYBOX_CONFIG_FDFLUSH is not set +# CONFIG_BUSYBOX_CONFIG_FDFORMAT is not set +# CONFIG_BUSYBOX_CONFIG_FDISK is not set +CONFIG_BUSYBOX_CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +# CONFIG_BUSYBOX_CONFIG_FINDFS is not set +# CONFIG_BUSYBOX_CONFIG_FREERAMDISK is not set +# CONFIG_BUSYBOX_CONFIG_FSCK_MINIX is not set +# CONFIG_BUSYBOX_CONFIG_MKFS_MINIX is not set +# CONFIG_BUSYBOX_CONFIG_MKFS_VFAT is not set +# CONFIG_BUSYBOX_CONFIG_GETOPT is not set +CONFIG_BUSYBOX_CONFIG_HEXDUMP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HEXDUMP_REVERSE is not set +# CONFIG_BUSYBOX_CONFIG_HD is not set +CONFIG_BUSYBOX_CONFIG_HWCLOCK=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_BUSYBOX_CONFIG_IPCRM is not set +# CONFIG_BUSYBOX_CONFIG_IPCS is not set +# CONFIG_BUSYBOX_CONFIG_LOSETUP is not set +# CONFIG_BUSYBOX_CONFIG_MDEV is not set +CONFIG_BUSYBOX_CONFIG_MKSWAP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MKSWAP_UUID=y +# CONFIG_BUSYBOX_CONFIG_MORE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_USE_TERMIOS is not set +CONFIG_BUSYBOX_CONFIG_VOLUMEID=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_HFS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_JFS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_XFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_UDF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LUKS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_SYSV is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_BUSYBOX_CONFIG_MOUNT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LABEL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_NFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_CIFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_BUSYBOX_CONFIG_PIVOT_ROOT=y +CONFIG_BUSYBOX_CONFIG_RDATE=y +# CONFIG_BUSYBOX_CONFIG_RDEV is not set +# CONFIG_BUSYBOX_CONFIG_READPROFILE is not set +# CONFIG_BUSYBOX_CONFIG_RTCWAKE is not set +# CONFIG_BUSYBOX_CONFIG_SCRIPT is not set +# CONFIG_BUSYBOX_CONFIG_SCRIPTREPLAY is not set +# CONFIG_BUSYBOX_CONFIG_SETARCH is not set +CONFIG_BUSYBOX_CONFIG_SWAPONOFF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_BUSYBOX_CONFIG_SWITCH_ROOT=y +CONFIG_BUSYBOX_CONFIG_UMOUNT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_UMOUNT_ALL=y + +# +# Common options for mount/umount +# +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LOOP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MTAB_SUPPORT is not set + +# +# Miscellaneous Utilities +# +# CONFIG_BUSYBOX_CONFIG_ADJTIMEX is not set +# CONFIG_BUSYBOX_CONFIG_BBCONFIG is not set +# CONFIG_BUSYBOX_CONFIG_BEEP is not set +# CONFIG_BUSYBOX_CONFIG_CHAT is not set +# CONFIG_BUSYBOX_CONFIG_CHRT is not set +CONFIG_BUSYBOX_CONFIG_CROND=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_D is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_BUSYBOX_CONFIG_CRONTAB=y +# CONFIG_BUSYBOX_CONFIG_DC is not set +# CONFIG_BUSYBOX_CONFIG_DEVFSD is not set +# CONFIG_BUSYBOX_CONFIG_DEVMEM is not set +# CONFIG_BUSYBOX_CONFIG_EJECT is not set +# CONFIG_BUSYBOX_CONFIG_FBSPLASH is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_LOCK is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_UNLOCK is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_ERASEALL is not set +# CONFIG_BUSYBOX_CONFIG_IONICE is not set +# CONFIG_BUSYBOX_CONFIG_INOTIFYD is not set +# CONFIG_BUSYBOX_CONFIG_LAST is not set +CONFIG_BUSYBOX_CONFIG_LESS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES=9999999 +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_FLAGS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MARKS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_REGEXP is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_BUSYBOX_CONFIG_HDPARM is not set +CONFIG_BUSYBOX_CONFIG_LOCK=y +# CONFIG_BUSYBOX_CONFIG_MAKEDEVS is not set +# CONFIG_BUSYBOX_CONFIG_MAN is not set +# CONFIG_BUSYBOX_CONFIG_MICROCOM is not set +# CONFIG_BUSYBOX_CONFIG_MOUNTPOINT is not set +# CONFIG_BUSYBOX_CONFIG_MT is not set +# CONFIG_BUSYBOX_CONFIG_RAIDAUTORUN is not set +# CONFIG_BUSYBOX_CONFIG_READAHEAD is not set +# CONFIG_BUSYBOX_CONFIG_RUNLEVEL is not set +# CONFIG_BUSYBOX_CONFIG_RX is not set +# CONFIG_BUSYBOX_CONFIG_SETSID is not set +CONFIG_BUSYBOX_CONFIG_STRINGS=y +# CONFIG_BUSYBOX_CONFIG_TASKSET is not set +CONFIG_BUSYBOX_CONFIG_TIME=y +# CONFIG_BUSYBOX_CONFIG_TIMEOUT is not set +# CONFIG_BUSYBOX_CONFIG_TTYSIZE is not set +# CONFIG_BUSYBOX_CONFIG_VOLNAME is not set +CONFIG_BUSYBOX_CONFIG_WATCHDOG=y + +# +# Networking Utilities +# +CONFIG_BUSYBOX_CONFIG_FEATURE_IPV6=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_UNIX_LOCAL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +CONFIG_BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS=y +# CONFIG_BUSYBOX_CONFIG_ARP is not set +CONFIG_BUSYBOX_CONFIG_ARPING=y +CONFIG_BUSYBOX_CONFIG_BRCTL=y +CONFIG_BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY=y +CONFIG_BUSYBOX_CONFIG_FEATURE_BRCTL_SHOW=y +# CONFIG_BUSYBOX_CONFIG_DNSD is not set +# CONFIG_BUSYBOX_CONFIG_ETHER_WAKE is not set +# CONFIG_BUSYBOX_CONFIG_FAKEIDENTD is not set +# CONFIG_BUSYBOX_CONFIG_FTPD is not set +# CONFIG_BUSYBOX_CONFIG_FTPGET is not set +# CONFIG_BUSYBOX_CONFIG_FTPPUT is not set +# CONFIG_BUSYBOX_CONFIG_HOSTNAME is not set +# CONFIG_BUSYBOX_CONFIG_HTTPD is not set +CONFIG_BUSYBOX_CONFIG_IFCONFIG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +# CONFIG_BUSYBOX_CONFIG_IFENSLAVE is not set +# CONFIG_BUSYBOX_CONFIG_IFPLUGD is not set +# CONFIG_BUSYBOX_CONFIG_IFUPDOWN is not set +# CONFIG_BUSYBOX_CONFIG_INETD is not set +# CONFIG_BUSYBOX_CONFIG_IP is not set +# CONFIG_BUSYBOX_CONFIG_IPCALC is not set +# CONFIG_BUSYBOX_CONFIG_NAMEIF is not set +CONFIG_BUSYBOX_CONFIG_NC=y +CONFIG_BUSYBOX_CONFIG_NETMSG=y +# CONFIG_BUSYBOX_CONFIG_NC_SERVER is not set +# CONFIG_BUSYBOX_CONFIG_NC_EXTRA is not set +CONFIG_BUSYBOX_CONFIG_NETSTAT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG=y +CONFIG_BUSYBOX_CONFIG_NSLOOKUP=y +CONFIG_BUSYBOX_CONFIG_PING=y +CONFIG_BUSYBOX_CONFIG_PING6=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_PING=y +# CONFIG_BUSYBOX_CONFIG_PSCAN is not set +CONFIG_BUSYBOX_CONFIG_ROUTE=y +# CONFIG_BUSYBOX_CONFIG_SLATTACH is not set +CONFIG_BUSYBOX_CONFIG_TELNET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN is not set +CONFIG_BUSYBOX_CONFIG_TELNETD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE=y +# CONFIG_BUSYBOX_CONFIG_TFTP is not set +# CONFIG_BUSYBOX_CONFIG_TFTPD is not set +CONFIG_BUSYBOX_CONFIG_TRACEROUTE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_BUSYBOX_CONFIG_APP_UDHCPD is not set +CONFIG_BUSYBOX_CONFIG_APP_UDHCPC=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCPC_ARPING is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_BUSYBOX_CONFIG_UDHCP_DEBUG=0 +CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_BUSYBOX_CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_BUSYBOX_CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_BUSYBOX_CONFIG_VCONFIG=y +CONFIG_BUSYBOX_CONFIG_WGET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS=y +# CONFIG_BUSYBOX_CONFIG_ZCIP is not set +# CONFIG_BUSYBOX_CONFIG_TCPSVD is not set +# CONFIG_BUSYBOX_CONFIG_TUNCTL is not set +# CONFIG_BUSYBOX_CONFIG_UDPSVD is not set + +# +# Print Utilities +# +# CONFIG_BUSYBOX_CONFIG_LPD is not set +# CONFIG_BUSYBOX_CONFIG_LPR is not set +# CONFIG_BUSYBOX_CONFIG_LPQ is not set + +# +# Mail Utilities +# +# CONFIG_BUSYBOX_CONFIG_MAKEMIME is not set +# CONFIG_BUSYBOX_CONFIG_POPMAILDIR is not set +# CONFIG_BUSYBOX_CONFIG_REFORMIME is not set +# CONFIG_BUSYBOX_CONFIG_SENDMAIL is not set + +# +# Process Utilities +# +CONFIG_BUSYBOX_CONFIG_FREE=y +# CONFIG_BUSYBOX_CONFIG_FUSER is not set +CONFIG_BUSYBOX_CONFIG_KILL=y +CONFIG_BUSYBOX_CONFIG_KILLALL=y +CONFIG_BUSYBOX_CONFIG_KILLALL5=y +# CONFIG_BUSYBOX_CONFIG_NMETER is not set +CONFIG_BUSYBOX_CONFIG_PGREP=y +CONFIG_BUSYBOX_CONFIG_PIDOF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT is not set +CONFIG_BUSYBOX_CONFIG_PKILL=y +CONFIG_BUSYBOX_CONFIG_PS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_BUSYBOX_CONFIG_RENICE is not set +CONFIG_BUSYBOX_CONFIG_BB_SYSCTL=y +CONFIG_BUSYBOX_CONFIG_TOP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOPMEM is not set +CONFIG_BUSYBOX_CONFIG_UPTIME=y +# CONFIG_BUSYBOX_CONFIG_WATCH is not set + +# +# Runit Utilities +# +# CONFIG_BUSYBOX_CONFIG_RUNSV is not set +# CONFIG_BUSYBOX_CONFIG_RUNSVDIR is not set +# CONFIG_BUSYBOX_CONFIG_SV is not set +# CONFIG_BUSYBOX_CONFIG_SVLOGD is not set +# CONFIG_BUSYBOX_CONFIG_CHPST is not set +# CONFIG_BUSYBOX_CONFIG_SETUIDGID is not set +# CONFIG_BUSYBOX_CONFIG_ENVUIDGID is not set +# CONFIG_BUSYBOX_CONFIG_ENVDIR is not set +# CONFIG_BUSYBOX_CONFIG_SOFTLIMIT is not set + +# +# Shells +# +CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_ASH=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_NONE is not set +CONFIG_BUSYBOX_CONFIG_ASH=y +CONFIG_BUSYBOX_CONFIG_ASH_BASH_COMPAT=y +CONFIG_BUSYBOX_CONFIG_ASH_JOB_CONTROL=y +# CONFIG_BUSYBOX_CONFIG_ASH_READ_NCHARS is not set +CONFIG_BUSYBOX_CONFIG_ASH_READ_TIMEOUT=y +CONFIG_BUSYBOX_CONFIG_ASH_ALIAS=y +CONFIG_BUSYBOX_CONFIG_ASH_GETOPTS=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_ECHO=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_PRINTF=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_TEST=y +CONFIG_BUSYBOX_CONFIG_ASH_CMDCMD=y +# CONFIG_BUSYBOX_CONFIG_ASH_MAIL is not set +# CONFIG_BUSYBOX_CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_BUSYBOX_CONFIG_ASH_RANDOM_SUPPORT is not set +CONFIG_BUSYBOX_CONFIG_ASH_EXPAND_PRMT=y +# CONFIG_BUSYBOX_CONFIG_LASH is not set +# CONFIG_BUSYBOX_CONFIG_MSH is not set +CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT=y +CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT_64=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_NOFORK is not set +# CONFIG_BUSYBOX_CONFIG_CTTYHACK is not set + +# +# System Logging Utilities +# +CONFIG_BUSYBOX_CONFIG_SYSLOGD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_REMOTE_LOG=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOGD_DUP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_BUSYBOX_CONFIG_LOGREAD=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +CONFIG_BUSYBOX_CONFIG_KLOGD=y +CONFIG_BUSYBOX_CONFIG_LOGGER=y +CONFIG_PACKAGE_dnsmasq=y +CONFIG_PACKAGE_dropbear=y +# CONFIG_PACKAGE_ead is not set +CONFIG_PACKAGE_firewall=y +# CONFIG_PACKAGE_hotplug2 is not set +CONFIG_PACKAGE_libc=y +CONFIG_PACKAGE_libgcc=y +# CONFIG_PACKAGE_libpthread is not set +# CONFIG_PACKAGE_librt is not set +# CONFIG_PACKAGE_libstdcpp is not set +CONFIG_PACKAGE_mtd=y +CONFIG_PACKAGE_nvram=y +CONFIG_PACKAGE_opkg=y +# CONFIG_PACKAGE_qos-scripts is not set +CONFIG_PACKAGE_uci=y +# CONFIG_PACKAGE_ucitrigger is not set +CONFIG_PACKAGE_wireless-tools=y + +# +# Network +# +# CONFIG_PACKAGE_arptables is not set +# CONFIG_PACKAGE_genl is not set +# CONFIG_PACKAGE_hostapd is not set +# CONFIG_PACKAGE_hostapd-mini is not set +# CONFIG_PACKAGE_ip is not set +CONFIG_PACKAGE_iptables=y +CONFIG_PACKAGE_iptables-mod-conntrack=y +# CONFIG_PACKAGE_iptables-mod-conntrack-extra is not set +# CONFIG_PACKAGE_iptables-mod-extra is not set +# CONFIG_PACKAGE_iptables-mod-filter is not set +# CONFIG_PACKAGE_iptables-mod-imq is not set +# CONFIG_PACKAGE_iptables-mod-ipopt is not set +# CONFIG_PACKAGE_iptables-mod-iprange is not set +# CONFIG_PACKAGE_iptables-mod-ipsec is not set +CONFIG_PACKAGE_iptables-mod-nat=y +# CONFIG_PACKAGE_iptables-mod-nat-extra is not set +# CONFIG_PACKAGE_iptables-mod-ulog is not set +# CONFIG_PACKAGE_iptables-utils is not set +# CONFIG_PACKAGE_iw is not set +CONFIG_PACKAGE_ppp=y +# CONFIG_PACKAGE_chat is not set +CONFIG_PACKAGE_ppp-mod-pppoe=y +# CONFIG_PACKAGE_ppp-mod-radius is not set +# CONFIG_PACKAGE_pppdump is not set +# CONFIG_PACKAGE_pppstats is not set +# CONFIG_PACKAGE_pptp is not set +# CONFIG_PACKAGE_tc is not set +# CONFIG_PACKAGE_uhttpd is not set +# CONFIG_PACKAGE_wpa-supplicant is not set +# CONFIG_PACKAGE_wpa-supplicant-mini is not set +# CONFIG_PACKAGE_wpad is not set +# CONFIG_PACKAGE_wpad-mini is not set + +# +# Libraries +# + +# +# Filesystem +# +# CONFIG_PACKAGE_libblkid is not set +# CONFIG_PACKAGE_libext2fs is not set +# CONFIG_PACKAGE_libuuid is not set + +# +# SSL +# +# CONFIG_PACKAGE_libcyassl is not set +# CONFIG_PACKAGE_libopenssl is not set +CONFIG_PACKAGE_libiptc=y +# CONFIG_PACKAGE_libiw is not set +# CONFIG_PACKAGE_libltdl is not set +# CONFIG_PACKAGE_liblua is not set +# CONFIG_PACKAGE_libncurses is not set +# CONFIG_PACKAGE_libnl is not set +# CONFIG_PACKAGE_libnl-tiny is not set +# CONFIG_PACKAGE_libpcap is not set +# CONFIG_PACKAGE_libreadline is not set +CONFIG_PACKAGE_libuci=y +# CONFIG_PACKAGE_libuci-lua is not set +CONFIG_PACKAGE_libxtables=y +# CONFIG_PACKAGE_linux-atm is not set +# CONFIG_PACKAGE_zlib is not set + +# +# IPv6 +# +# CONFIG_PACKAGE_6in4 is not set +# CONFIG_PACKAGE_ip6tables is not set + +# +# Kernel modules +# + +# +# Block Devices +# +# CONFIG_PACKAGE_kmod-aoe is not set +# CONFIG_PACKAGE_kmod-dm is not set +# CONFIG_PACKAGE_kmod-ide-core is not set +# CONFIG_PACKAGE_kmod-loop is not set +# CONFIG_PACKAGE_kmod-nbd is not set +# CONFIG_PACKAGE_kmod-scsi-core is not set +# CONFIG_PACKAGE_kmod-scsi-generic is not set + +# +# Cryptographic API modules +# +# CONFIG_PACKAGE_kmod-crypto-core is not set + +# +# Filesystems +# +# CONFIG_PACKAGE_kmod-fs-autofs4 is not set +# CONFIG_PACKAGE_kmod-fs-btrfs is not set +# CONFIG_PACKAGE_kmod-fs-cifs is not set +# CONFIG_PACKAGE_kmod-fs-exportfs is not set +# CONFIG_PACKAGE_kmod-fs-ext2 is not set +# CONFIG_PACKAGE_kmod-fs-ext3 is not set +# CONFIG_PACKAGE_kmod-fs-hfs is not set +# CONFIG_PACKAGE_kmod-fs-hfsplus is not set +# CONFIG_PACKAGE_kmod-fs-isofs is not set +# CONFIG_PACKAGE_kmod-fs-mbcache is not set +# CONFIG_PACKAGE_kmod-fs-minix is not set +# CONFIG_PACKAGE_kmod-fs-msdos is not set +# CONFIG_PACKAGE_kmod-fs-nfs is not set +# CONFIG_PACKAGE_kmod-fs-nfs-common is not set +# CONFIG_PACKAGE_kmod-fs-nfsd is not set +# CONFIG_PACKAGE_kmod-fs-ntfs is not set +# CONFIG_PACKAGE_kmod-fs-reiserfs is not set +# CONFIG_PACKAGE_kmod-fs-udf is not set +# CONFIG_PACKAGE_kmod-fs-vfat is not set +# CONFIG_PACKAGE_kmod-fs-xfs is not set +# CONFIG_PACKAGE_kmod-fuse is not set +# CONFIG_PACKAGE_kmod-nls-base is not set +# CONFIG_PACKAGE_kmod-nls-cp1250 is not set +# CONFIG_PACKAGE_kmod-nls-cp1251 is not set +# CONFIG_PACKAGE_kmod-nls-cp437 is not set +# CONFIG_PACKAGE_kmod-nls-cp775 is not set +# CONFIG_PACKAGE_kmod-nls-cp850 is not set +# CONFIG_PACKAGE_kmod-nls-cp852 is not set +# CONFIG_PACKAGE_kmod-nls-cp866 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-1 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set +# CONFIG_PACKAGE_kmod-nls-koi8r is not set +# CONFIG_PACKAGE_kmod-nls-utf8 is not set + +# +# FireWire support +# +# CONFIG_PACKAGE_kmod-ieee1394 is not set + +# +# Hardware Monitoring Support +# + +# +# I2C support +# + +# +# Netfilter Extensions +# +# CONFIG_PACKAGE_kmod-arptables is not set +# CONFIG_PACKAGE_kmod-ip6tables is not set +CONFIG_PACKAGE_kmod-ipt-core=y +CONFIG_PACKAGE_kmod-ipt-conntrack=y +# CONFIG_PACKAGE_kmod-ipt-conntrack-extra is not set +# CONFIG_PACKAGE_kmod-ipt-extra is not set +# CONFIG_PACKAGE_kmod-ipt-filter is not set +# CONFIG_PACKAGE_kmod-ipt-imq is not set +# CONFIG_PACKAGE_kmod-ipt-ipopt is not set +# CONFIG_PACKAGE_kmod-ipt-iprange is not set +# CONFIG_PACKAGE_kmod-ipt-ipsec is not set +CONFIG_PACKAGE_kmod-ipt-nat=y +# CONFIG_PACKAGE_kmod-ipt-nat-extra is not set +CONFIG_PACKAGE_kmod-ipt-nathelper=y +# CONFIG_PACKAGE_kmod-ipt-nathelper-extra is not set +# CONFIG_PACKAGE_kmod-ipt-queue is not set +# CONFIG_PACKAGE_kmod-ipt-ulog is not set + +# +# Network Devices +# +# CONFIG_PACKAGE_kmod-brcm-57xx is not set +# CONFIG_PACKAGE_kmod-e1000 is not set +# CONFIG_PACKAGE_kmod-hfcmulti is not set +# CONFIG_PACKAGE_kmod-libphy is not set +# CONFIG_PACKAGE_kmod-siit is not set + +# +# Network Support +# +# CONFIG_PACKAGE_kmod-ax25 is not set +# CONFIG_PACKAGE_kmod-bonding is not set +# CONFIG_PACKAGE_kmod-gre is not set +# CONFIG_PACKAGE_kmod-ipip is not set +# CONFIG_PACKAGE_kmod-ipv6 is not set +# CONFIG_PACKAGE_kmod-isdn4linux is not set +# CONFIG_PACKAGE_kmod-misdn is not set +CONFIG_PACKAGE_kmod-ppp=y +# CONFIG_PACKAGE_kmod-mppe is not set +# CONFIG_PACKAGE_kmod-ppp-synctty is not set +CONFIG_PACKAGE_kmod-pppoe=y +# CONFIG_PACKAGE_kmod-pppol2tp is not set +# CONFIG_PACKAGE_kmod-sched is not set +# CONFIG_PACKAGE_kmod-sit is not set +# CONFIG_PACKAGE_kmod-tun is not set + +# +# OCF Configuration +# + +# +# Other modules +# +# CONFIG_PACKAGE_kmod-block2mtd is not set +# CONFIG_PACKAGE_kmod-bluetooth is not set +# CONFIG_PACKAGE_kmod-crc-ccitt is not set +# CONFIG_PACKAGE_kmod-crc-itu-t is not set +# CONFIG_PACKAGE_kmod-crc7 is not set +CONFIG_PACKAGE_kmod-diag=y +# CONFIG_PACKAGE_kmod-hid is not set +# CONFIG_PACKAGE_kmod-input-core is not set +# CONFIG_PACKAGE_kmod-input-evdev is not set +# CONFIG_PACKAGE_kmod-input-joydev is not set +# CONFIG_PACKAGE_kmod-ledtrig-morse is not set +# CONFIG_PACKAGE_kmod-ledtrig-netdev is not set +# CONFIG_PACKAGE_kmod-lp is not set +# CONFIG_PACKAGE_kmod-nozomi is not set +# CONFIG_PACKAGE_kmod-pcmcia-core is not set +# CONFIG_PACKAGE_kmod-rtc-rv5c386a is not set +# CONFIG_PACKAGE_kmod-softdog is not set +CONFIG_PACKAGE_kmod-switch=y + +# +# Proprietary BCM43xx WiFi driver +# +CONFIG_PACKAGE_kmod-brcm-wl=y +# CONFIG_PACKAGE_kmod-brcm-wl-mimo is not set +CONFIG_PACKAGE_kmod-wlcompat=y +# CONFIG_PACKAGE_kmod-wlcompat-debug is not set +CONFIG_PACKAGE_nas=y +# CONFIG_PACKAGE_wl is not set +CONFIG_PACKAGE_wlc=y + +# +# SPI Support +# + +# +# Sound Support +# +# CONFIG_PACKAGE_kmod-sound-core is not set + +# +# USB Support +# +# CONFIG_PACKAGE_kmod-usb-core is not set + +# +# Video Support +# + +# +# Voice over IP +# + +# +# W1 support +# + +# +# Wireless Drivers +# +# CONFIG_PACKAGE_kmod-hostap is not set +# CONFIG_PACKAGE_kmod-hostap-cs is not set +# CONFIG_PACKAGE_kmod-hostap-pci is not set +# CONFIG_PACKAGE_kmod-hostap-plx is not set +# CONFIG_PACKAGE_kmod-net-airo is not set +# CONFIG_PACKAGE_kmod-net-prism54 is not set +# CONFIG_PACKAGE_kmod-rt2570 is not set + +# +# Xen paravirtualized guest support +# + +# +# Boot Loaders +# + +# +# Utilities +# + +# +# Boot Loaders +# + +# +# Filesystem +# +# CONFIG_PACKAGE_badblocks is not set +# CONFIG_PACKAGE_blkid is not set +# CONFIG_PACKAGE_e2fsprogs is not set +# CONFIG_PACKAGE_resize2fs is not set +# CONFIG_PACKAGE_tune2fs is not set +# CONFIG_PACKAGE_uuidgen is not set + +# +# Terminal +# +# CONFIG_PACKAGE_script is not set +# CONFIG_PACKAGE_setterm is not set + +# +# disc +# +# CONFIG_PACKAGE_cfdisk is not set +# CONFIG_PACKAGE_fdisk is not set +# CONFIG_PACKAGE_sfdisk is not set +# CONFIG_PACKAGE_swap-utils is not set +# CONFIG_PACKAGE_comgt is not set +# CONFIG_PACKAGE_dropbearconvert is not set +# CONFIG_PACKAGE_fconfig is not set +# CONFIG_PACKAGE_flock is not set +# CONFIG_PACKAGE_gdb is not set +# CONFIG_PACKAGE_gdbserver is not set +# CONFIG_PACKAGE_hwclock is not set +# CONFIG_PACKAGE_kexec-tools is not set +# CONFIG_PACKAGE_ldconfig is not set +# CONFIG_PACKAGE_ldd is not set +# CONFIG_PACKAGE_losetup is not set +# CONFIG_PACKAGE_mount-utils is not set +# CONFIG_PACKAGE_ocf-crypto-headers is not set +# CONFIG_PACKAGE_openssl-util is not set +# CONFIG_PACKAGE_pcmcia-cs is not set +# CONFIG_PACKAGE_px5g is not set +# CONFIG_PACKAGE_robocfg is not set + +# +# Languages +# + +# +# Lua +# +# CONFIG_PACKAGE_lua is not set +# CONFIG_PACKAGE_luac is not set diff --git a/build_configuration/Atheros_AR231x_AR5312/.config b/build_configuration/Atheros_AR231x_AR5312/.config new file mode 100644 index 0000000..5b8712f --- /dev/null +++ b/build_configuration/Atheros_AR231x_AR5312/.config @@ -0,0 +1,3002 @@ +# +# Automatically generated make config: don't edit +# OpenWrt version: Backfire (r25628) +# Tue Mar 8 19:38:22 2011 +# +CONFIG_HAVE_DOT_CONFIG=y +# CONFIG_TARGET_ppc40x is not set +# CONFIG_TARGET_ppc44x is not set +CONFIG_TARGET_atheros=y +# CONFIG_TARGET_ar71xx is not set +# CONFIG_TARGET_avr32 is not set +# CONFIG_TARGET_brcm63xx is not set +# CONFIG_TARGET_brcm47xx is not set +# CONFIG_TARGET_brcm_2_4 is not set +# CONFIG_TARGET_octeon is not set +# CONFIG_TARGET_cobalt is not set +# CONFIG_TARGET_ifxmips is not set +# CONFIG_TARGET_adm5120 is not set +# CONFIG_TARGET_xburst is not set +# CONFIG_TARGET_ixp4xx is not set +# CONFIG_TARGET_kirkwood is not set +# CONFIG_TARGET_orion is not set +# CONFIG_TARGET_rb532 is not set +# CONFIG_TARGET_rdc is not set +# CONFIG_TARGET_au1000 is not set +# CONFIG_TARGET_ar7 is not set +# CONFIG_TARGET_uml is not set +# CONFIG_TARGET_x86 is not set +# CONFIG_TARGET_ar71xx_Default is not set +# CONFIG_TARGET_ar71xx_DefaultNoWifi is not set +# CONFIG_TARGET_ar71xx_Madwifi is not set +# CONFIG_TARGET_ar71xx_AP81 is not set +# CONFIG_TARGET_ar71xx_AP83 is not set +# CONFIG_TARGET_ar71xx_PB42 is not set +# CONFIG_TARGET_ar71xx_PB44 is not set +# CONFIG_TARGET_ar71xx_A02RBW300N is not set +# CONFIG_TARGET_ar71xx_WZRHPG300NH is not set +# CONFIG_TARGET_ar71xx_WP543 is not set +# CONFIG_TARGET_ar71xx_DIR600A1 is not set +# CONFIG_TARGET_ar71xx_DIR615C1 is not set +# CONFIG_TARGET_ar71xx_DIR825B1 is not set +# CONFIG_TARGET_ar71xx_WRT160NL is not set +# CONFIG_TARGET_ar71xx_WRT400N is not set +# CONFIG_TARGET_ar71xx_WNDR3700 is not set +# CONFIG_TARGET_ar71xx_MZKW04NU is not set +# CONFIG_TARGET_ar71xx_MZKW300NH is not set +# CONFIG_TARGET_ar71xx_TLWR741NDV1 is not set +# CONFIG_TARGET_ar71xx_TLWR841NV15 is not set +# CONFIG_TARGET_ar71xx_TLWR841NDV3 is not set +# CONFIG_TARGET_ar71xx_TLWR841NDV5 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV2 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV3 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV4 is not set +# CONFIG_TARGET_ar71xx_TLWR1043NDV1 is not set +# CONFIG_TARGET_ar71xx_TEW632BRP is not set +# CONFIG_TARGET_ar71xx_TEW652BRP is not set +# CONFIG_TARGET_ar71xx_UBNTRS is not set +# CONFIG_TARGET_ar71xx_UBNTRSPRO is not set +# CONFIG_TARGET_ar71xx_UBNT is not set +# CONFIG_TARGET_brcm63xx_Broadcom is not set +# CONFIG_TARGET_brcm63xx_Atheros is not set +# CONFIG_TARGET_brcm63xx_Ralink is not set +# CONFIG_TARGET_brcm63xx_NoWiFi is not set +# CONFIG_TARGET_brcm63xx_GW6X00 is not set +# CONFIG_TARGET_ppc44x_Default is not set +# CONFIG_TARGET_au1000_au1500_Atheros is not set +# CONFIG_TARGET_au1000_au1500_InternetBox is not set +# CONFIG_TARGET_au1000_au1500_MeshCube is not set +# CONFIG_TARGET_au1000_au1550_DBAu1550 is not set +CONFIG_TARGET_atheros_Default=y +# CONFIG_TARGET_brcm_2_4_Broadcom is not set +# CONFIG_TARGET_brcm_2_4_BroadcomMimo is not set +# CONFIG_TARGET_brcm_2_4_None is not set +# CONFIG_TARGET_brcm_2_4_USBGeneric is not set +# CONFIG_TARGET_brcm_2_4_WL500G is not set +# CONFIG_TARGET_brcm_2_4_WL500GD is not set +# CONFIG_TARGET_brcm_2_4_WL500GP is not set +# CONFIG_TARGET_brcm_2_4_WL700GE is not set +# CONFIG_TARGET_brcm_2_4_WLHDD is not set +# CONFIG_TARGET_brcm_2_4_WRT300Nv11 is not set +# CONFIG_TARGET_brcm_2_4_WRT54G3G is not set +# CONFIG_TARGET_brcm_2_4_WRT610Nv1 is not set +# CONFIG_TARGET_octeon_generic is not set +# CONFIG_TARGET_octeon_mototech is not set +# CONFIG_TARGET_octeon_simulator is not set +# CONFIG_TARGET_rb532_Default is not set +# CONFIG_TARGET_adm5120_router_le_Generic is not set +# CONFIG_TARGET_adm5120_router_le_CAS630 is not set +# CONFIG_TARGET_adm5120_router_le_CAS630W is not set +# CONFIG_TARGET_adm5120_router_le_CAS670 is not set +# CONFIG_TARGET_adm5120_router_le_CAS670W is not set +# CONFIG_TARGET_adm5120_router_le_CAS700 is not set +# CONFIG_TARGET_adm5120_router_le_CAS700W is not set +# CONFIG_TARGET_adm5120_router_le_CAS771 is not set +# CONFIG_TARGET_adm5120_router_le_CAS771W is not set +# CONFIG_TARGET_adm5120_router_le_CAS790 is not set +# CONFIG_TARGET_adm5120_router_le_CAS861 is not set +# CONFIG_TARGET_adm5120_router_le_CAS861W is not set +# CONFIG_TARGET_adm5120_router_le_NFS101U is not set +# CONFIG_TARGET_adm5120_router_le_NFS101WU is not set +# CONFIG_TARGET_adm5120_router_le_NP27G is not set +# CONFIG_TARGET_adm5120_router_le_NP28G is not set +# CONFIG_TARGET_adm5120_router_le_WP54 is not set +# CONFIG_TARGET_adm5120_router_le_BR6104K is not set +# CONFIG_TARGET_adm5120_router_le_BR6104KP is not set +# CONFIG_TARGET_adm5120_router_le_BR6104WG is not set +# CONFIG_TARGET_adm5120_router_le_BR6114WG is not set +# CONFIG_TARGET_adm5120_router_le_EASY5120RT is not set +# CONFIG_TARGET_adm5120_router_le_EASY5120PATA is not set +# CONFIG_TARGET_adm5120_router_le_PMUGW is not set +# CONFIG_TARGET_adm5120_router_le_5GXI is not set +# CONFIG_TARGET_adm5120_router_le_RouterBoard is not set +# CONFIG_TARGET_adm5120_router_be_Generic is not set +# CONFIG_TARGET_adm5120_router_be_P334WT is not set +# CONFIG_TARGET_adm5120_router_be_P335WT is not set +# CONFIG_TARGET_ppc40x_Default is not set +# CONFIG_TARGET_rdc_ar525w is not set +# CONFIG_TARGET_rdc_bifferboard is not set +# CONFIG_TARGET_rdc_r8610 is not set +# CONFIG_TARGET_rdc_sitecom is not set +# CONFIG_TARGET_ixp4xx_generic_Default is not set +# CONFIG_TARGET_ixp4xx_generic_Atheros-ath5k is not set +# CONFIG_TARGET_ixp4xx_generic_NSLU2 is not set +# CONFIG_TARGET_ixp4xx_generic_NAS100d is not set +# CONFIG_TARGET_ixp4xx_generic_DSMG600RevA is not set +# CONFIG_TARGET_ixp4xx_generic_USR8200 is not set +# CONFIG_TARGET_ixp4xx_harddisk_FSG3 is not set +# CONFIG_TARGET_orion_generic_Default is not set +# CONFIG_TARGET_orion_harddisk_Default is not set +# CONFIG_TARGET_ar7_Annex-A is not set +# CONFIG_TARGET_ar7_Annex-B is not set +# CONFIG_TARGET_ar7_Texas is not set +# CONFIG_TARGET_ar7_None is not set +# CONFIG_TARGET_brcm47xx_Broadcom-b43 is not set +# CONFIG_TARGET_brcm47xx_Atheros is not set +# CONFIG_TARGET_brcm47xx_Atheros-ath5k is not set +# CONFIG_TARGET_brcm47xx_None is not set +# CONFIG_TARGET_brcm47xx_WGT634U is not set +# CONFIG_TARGET_brcm47xx_WL500GPv1 is not set +# CONFIG_TARGET_brcm47xx_WRT350Nv1 is not set +# CONFIG_TARGET_brcm47xx_WRTSL54GS is not set +# CONFIG_TARGET_ifxmips_None is not set +# CONFIG_TARGET_ifxmips_Atheros is not set +# CONFIG_TARGET_ifxmips_Ralink is not set +# CONFIG_TARGET_avr32_Default is not set +# CONFIG_TARGET_xburst_qi_lb60_Default is not set +# CONFIG_TARGET_xburst_n516_Default is not set +# CONFIG_TARGET_xburst_n526_Default is not set +# CONFIG_TARGET_kirkwood_Default is not set +# CONFIG_TARGET_uml_Default is not set +# CONFIG_TARGET_x86_generic_Generic is not set +# CONFIG_TARGET_x86_generic_Alix is not set +# CONFIG_TARGET_x86_generic_Soekris45xx is not set +# CONFIG_TARGET_x86_generic_Soekris48xx is not set +# CONFIG_TARGET_x86_generic_Wrap is not set +# CONFIG_TARGET_x86_olpc_Default is not set +# CONFIG_TARGET_x86_xen_domu_Default is not set +# CONFIG_TARGET_x86_ep80579_Default is not set +# CONFIG_TARGET_cobalt_Default is not set +CONFIG_TARGET_BOARD="atheros" +CONFIG_TARGET_ARCH_PACKAGES="atheros" +CONFIG_DEFAULT_TARGET_OPTIMIZATION="-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" +CONFIG_LINUX_2_6_30=y +CONFIG_DEFAULT_base-files=y +CONFIG_DEFAULT_busybox=y +CONFIG_DEFAULT_dnsmasq=y +CONFIG_DEFAULT_dropbear=y +CONFIG_DEFAULT_firewall=y +CONFIG_DEFAULT_gpioctl=y +CONFIG_DEFAULT_hotplug2=y +CONFIG_DEFAULT_iptables=y +CONFIG_DEFAULT_kmod-ipt-nathelper=y +CONFIG_DEFAULT_kmod-madwifi=y +CONFIG_DEFAULT_libc=y +CONFIG_DEFAULT_libgcc=y +CONFIG_DEFAULT_mtd=y +CONFIG_DEFAULT_opkg=y +CONFIG_DEFAULT_ppp=y +CONFIG_DEFAULT_ppp-mod-pppoe=y +CONFIG_DEFAULT_swconfig=y +CONFIG_DEFAULT_uci=y +CONFIG_DEFAULT_udevtrigger=y +CONFIG_DEFAULT_wpad-mini=y +CONFIG_LINUX_2_6=y +CONFIG_AUDIO_SUPPORT=y +CONFIG_GPIO_SUPPORT=y +CONFIG_PCI_SUPPORT=y +CONFIG_USB_SUPPORT=y +CONFIG_BIG_ENDIAN=y +CONFIG_USES_SQUASHFS=y +CONFIG_USES_JFFS2=y +CONFIG_mips=y +CONFIG_ARCH="mips" + +# +# Target Images +# +# CONFIG_TARGET_ROOTFS_INITRAMFS is not set + +# +# Root filesystem archives +# +# CONFIG_TARGET_ROOTFS_CPIOGZ is not set +# CONFIG_TARGET_ROOTFS_TARGZ is not set + +# +# Root filesystem images +# +# CONFIG_TARGET_ROOTFS_EXT2FS is not set +# CONFIG_TARGET_ROOTFS_JFFS2 is not set +CONFIG_TARGET_ROOTFS_SQUASHFS=y + +# +# Image Options +# + +# +# Global build settings +# +# CONFIG_ALL is not set + +# +# General build options +# +# CONFIG_DISPLAY_SUPPORT is not set +CONFIG_BUILD_PATENTED=y +# CONFIG_BUILD_NLS is not set +CONFIG_LARGEFILE=y +CONFIG_SHADOW_PASSWORDS=y +# CONFIG_CLEAN_IPKG is not set +# CONFIG_COLLECT_KERNEL_DEBUG is not set + +# +# Kernel build options +# +CONFIG_KERNEL_DEBUG_FS=y +# CONFIG_KERNEL_PROFILING is not set +# CONFIG_KERNEL_KALLSYMS is not set +# CONFIG_KERNEL_DEBUG_KERNEL is not set +# CONFIG_KERNEL_DEBUG_INFO is not set + +# +# Package build options +# +# CONFIG_DEBUG is not set +CONFIG_IPV6=y + +# +# Stripping options +# +# CONFIG_NO_STRIP is not set +# CONFIG_USE_STRIP is not set +CONFIG_USE_SSTRIP=y +# CONFIG_STRIP_KERNEL_EXPORTS is not set +# CONFIG_USE_MKLIBS is not set +# CONFIG_DEVEL is not set +# CONFIG_BROKEN is not set +CONFIG_DOWNLOAD_FOLDER="" +CONFIG_LOCALMIRROR="" +CONFIG_AUTOREBUILD=y +CONFIG_BUILD_SUFFIX="" +CONFIG_TARGET_ROOTFS_DIR="" +# CONFIG_CCACHE is not set +CONFIG_EXTERNAL_KERNEL_TREE="" +CONFIG_KERNEL_GIT_CLONE_URI="" +CONFIG_KERNEL_GIT_LOCAL_REPOSITORY="" +CONFIG_TARGET_OPTIMIZATION="-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" +CONFIG_SOFT_FLOAT=y +# CONFIG_EXTRA_TARGET_ARCH is not set +CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="" +CONFIG_BINUTILS_VERSION="2.19.1" +CONFIG_GCC_VERSION_4_3_3_CS=y +CONFIG_EXTRA_GCC_CONFIG_OPTIONS="" +# CONFIG_SSP_SUPPORT is not set +CONFIG_INSTALL_LIBSTDCPP=y +# CONFIG_INSTALL_LIBGCJ is not set +CONFIG_USE_UCLIBC=y +# CONFIG_GDB is not set +# CONFIG_INSIGHT is not set +CONFIG_GCC_VERSION="4.3.3+cs" +CONFIG_GCC_VERSION_4=y +CONFIG_GCC_VERSION_4_3=y +CONFIG_UCLIBC_VERSION="0.9.30.1" +CONFIG_LIBC="uClibc" +CONFIG_LIBC_VERSION="0.9.30.1" +CONFIG_TARGET_SUFFIX="uclibc" +# CONFIG_IB is not set +# CONFIG_SDK is not set +# CONFIG_MAKE_TOOLCHAIN is not set +# CONFIG_IMAGEOPT is not set +CONFIG_UCI_PRECONFIG_network_lan_dns="" +CONFIG_UCI_PRECONFIG_network_lan_proto="static" +CONFIG_UCI_PRECONFIG_network_lan_gateway="" +CONFIG_UCI_PRECONFIG_network_lan_netmask="255.255.255.0" +CONFIG_UCI_PRECONFIG_network_lan_ipaddr="192.168.1.1" +# CONFIG_PREINITOPT is not set +CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y +CONFIG_TARGET_PREINIT_TIMEOUT=2 +# CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set +# CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set +CONFIG_TARGET_PREINIT_IFNAME="" +CONFIG_TARGET_PREINIT_IP="192.168.1.1" +CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0" +CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255" +# CONFIG_INITOPT is not set +CONFIG_TARGET_INIT_PATH="/bin:/sbin:/usr/bin:/usr/sbin" +CONFIG_TARGET_INIT_ENV="" +CONFIG_TARGET_INIT_CMD="/sbin/init" +CONFIG_TARGET_INIT_SUPPRESS_STDERR=y + +# +# Package features +# +CONFIG_FEATURE_drawing-backend_DirectFB=y +# CONFIG_FEATURE_drawing-backend_libX11 is not set + +# +# Base system +# +CONFIG_PACKAGE_base-files=y +CONFIG_EXTROOT_SETTLETIME=20 +# CONFIG_PACKAGE_block-hotplug is not set +# CONFIG_PACKAGE_block-mount is not set +# CONFIG_PACKAGE_br2684ctl is not set +CONFIG_PACKAGE_bridge=y +CONFIG_PACKAGE_busybox=y + +# +# Configuration +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_DEVFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_2_4_MODULES is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_2_6_MODULES=y +# CONFIG_BUSYBOX_CONFIG_NOMMU is not set +# CONFIG_CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_BUSYBOX_CONFIG_HUSH is not set +CONFIG_BUSYBOX_CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_BUSYBOX_CONFIG_DESKTOP is not set +# CONFIG_BUSYBOX_CONFIG_EXTRA_COMPAT is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_USE_MALLOC is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_BUSYBOX_CONFIG_SHOW_USAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_COMPRESS_USAGE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_INSTALLER is not set +# CONFIG_BUSYBOX_CONFIG_LOCALE_SUPPORT is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_ASSUME_UNICODE is not set +CONFIG_BUSYBOX_CONFIG_LONG_OPTS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DEVPTS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PIDFILE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_SUID=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_BUSYBOX_CONFIG_SELINUX is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS=y +CONFIG_BUSYBOX_CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_HAVE_RPC=y + +# +# Build Options +# +# CONFIG_BUSYBOX_CONFIG_STATIC is not set +# CONFIG_BUSYBOX_CONFIG_PIE is not set +CONFIG_BUSYBOX_CONFIG_LFS=y +CONFIG_BUSYBOX_CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_BUSYBOX_CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_BUSYBOX_CONFIG_DEBUG is not set +# CONFIG_BUSYBOX_CONFIG_WERROR is not set +CONFIG_BUSYBOX_CONFIG_NO_DEBUG_LIB=y +# CONFIG_BUSYBOX_CONFIG_DMALLOC is not set +# CONFIG_BUSYBOX_CONFIG_EFENCE is not set +CONFIG_BUSYBOX_CONFIG_INCLUDE_SUSv2=y + +# +# Installation Options +# +# CONFIG_BUSYBOX_CONFIG_INSTALL_NO_USR is not set +CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_DONT is not set +CONFIG_BUSYBOX_CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_BUSYBOX_CONFIG_PASSWORD_MINLEN=6 +CONFIG_BUSYBOX_CONFIG_MD5_SIZE_VS_SPEED=2 +CONFIG_BUSYBOX_CONFIG_FEATURE_FAST_TOP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING=y +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_MAX_LEN=512 +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_VI is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_HISTORY=256 +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_USERNAME_COMPLETION is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_BUSYBOX_CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_BUSYBOX_CONFIG_IOCTL_HEX2STR_ERROR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWIB is not set + +# +# Applets +# + +# +# Archival Utilities +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2 is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z is not set +# CONFIG_BUSYBOX_CONFIG_AR is not set +CONFIG_BUSYBOX_CONFIG_BUNZIP2=y +# CONFIG_BUSYBOX_CONFIG_BZIP2 is not set +# CONFIG_BUSYBOX_CONFIG_CPIO is not set +# CONFIG_BUSYBOX_CONFIG_DPKG is not set +# CONFIG_BUSYBOX_CONFIG_DPKG_DEB is not set +CONFIG_BUSYBOX_CONFIG_GUNZIP=y +CONFIG_BUSYBOX_CONFIG_GZIP=y +# CONFIG_BUSYBOX_CONFIG_LZOP is not set +# CONFIG_BUSYBOX_CONFIG_RPM2CPIO is not set +# CONFIG_BUSYBOX_CONFIG_RPM is not set +CONFIG_BUSYBOX_CONFIG_TAR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_CREATE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_FROM=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME is not set +# CONFIG_BUSYBOX_CONFIG_UNCOMPRESS is not set +# CONFIG_BUSYBOX_CONFIG_UNLZMA is not set +# CONFIG_BUSYBOX_CONFIG_UNZIP is not set + +# +# Coreutils +# +CONFIG_BUSYBOX_CONFIG_BASENAME=y +# CONFIG_BUSYBOX_CONFIG_CAL is not set +CONFIG_BUSYBOX_CONFIG_CAT=y +# CONFIG_BUSYBOX_CONFIG_CATV is not set +CONFIG_BUSYBOX_CONFIG_CHGRP=y +CONFIG_BUSYBOX_CONFIG_CHMOD=y +CONFIG_BUSYBOX_CONFIG_CHOWN=y +CONFIG_BUSYBOX_CONFIG_CHROOT=y +# CONFIG_BUSYBOX_CONFIG_CKSUM is not set +# CONFIG_BUSYBOX_CONFIG_COMM is not set +CONFIG_BUSYBOX_CONFIG_CP=y +CONFIG_BUSYBOX_CONFIG_CUT=y +CONFIG_BUSYBOX_CONFIG_DATE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT=y +CONFIG_BUSYBOX_CONFIG_DD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS is not set +CONFIG_BUSYBOX_CONFIG_DF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DF_FANCY is not set +CONFIG_BUSYBOX_CONFIG_DIRNAME=y +# CONFIG_BUSYBOX_CONFIG_DOS2UNIX is not set +CONFIG_BUSYBOX_CONFIG_DU=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_BUSYBOX_CONFIG_ECHO=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_BUSYBOX_CONFIG_ENV=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_EXPAND is not set +CONFIG_BUSYBOX_CONFIG_EXPR=y +CONFIG_BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_BUSYBOX_CONFIG_FALSE=y +# CONFIG_BUSYBOX_CONFIG_FOLD is not set +# CONFIG_BUSYBOX_CONFIG_FSYNC is not set +CONFIG_BUSYBOX_CONFIG_HEAD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_BUSYBOX_CONFIG_HOSTID=y +CONFIG_BUSYBOX_CONFIG_ID=y +# CONFIG_BUSYBOX_CONFIG_INSTALL is not set +CONFIG_BUSYBOX_CONFIG_LENGTH=y +CONFIG_BUSYBOX_CONFIG_LN=y +# CONFIG_BUSYBOX_CONFIG_LOGNAME is not set +CONFIG_BUSYBOX_CONFIG_LS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_USERNAME=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_BUSYBOX_CONFIG_MD5SUM=y +CONFIG_BUSYBOX_CONFIG_MKDIR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_MKFIFO=y +CONFIG_BUSYBOX_CONFIG_MKNOD=y +CONFIG_BUSYBOX_CONFIG_MV=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_NICE=y +# CONFIG_BUSYBOX_CONFIG_NOHUP is not set +# CONFIG_BUSYBOX_CONFIG_OD is not set +# CONFIG_BUSYBOX_CONFIG_PRINTENV is not set +CONFIG_BUSYBOX_CONFIG_PRINTF=y +CONFIG_BUSYBOX_CONFIG_PWD=y +# CONFIG_BUSYBOX_CONFIG_READLINK is not set +# CONFIG_BUSYBOX_CONFIG_REALPATH is not set +CONFIG_BUSYBOX_CONFIG_RM=y +CONFIG_BUSYBOX_CONFIG_RMDIR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_SEQ=y +# CONFIG_BUSYBOX_CONFIG_SHA1SUM is not set +# CONFIG_BUSYBOX_CONFIG_SHA256SUM is not set +# CONFIG_BUSYBOX_CONFIG_SHA512SUM is not set +CONFIG_BUSYBOX_CONFIG_SLEEP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP is not set +CONFIG_BUSYBOX_CONFIG_SORT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SORT_BIG is not set +# CONFIG_BUSYBOX_CONFIG_SPLIT is not set +# CONFIG_BUSYBOX_CONFIG_STAT is not set +# CONFIG_BUSYBOX_CONFIG_STTY is not set +# CONFIG_BUSYBOX_CONFIG_SUM is not set +CONFIG_BUSYBOX_CONFIG_SYNC=y +# CONFIG_BUSYBOX_CONFIG_TAC is not set +CONFIG_BUSYBOX_CONFIG_TAIL=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_BUSYBOX_CONFIG_TEE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_BUSYBOX_CONFIG_TEST=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TEST_64=y +CONFIG_BUSYBOX_CONFIG_TOUCH=y +CONFIG_BUSYBOX_CONFIG_TR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_CLASSES is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_EQUIV is not set +CONFIG_BUSYBOX_CONFIG_TRUE=y +# CONFIG_BUSYBOX_CONFIG_TTY is not set +CONFIG_BUSYBOX_CONFIG_UNAME=y +# CONFIG_BUSYBOX_CONFIG_UNEXPAND is not set +CONFIG_BUSYBOX_CONFIG_UNIQ=y +# CONFIG_BUSYBOX_CONFIG_USLEEP is not set +# CONFIG_BUSYBOX_CONFIG_UUDECODE is not set +# CONFIG_BUSYBOX_CONFIG_UUENCODE is not set +CONFIG_BUSYBOX_CONFIG_WC=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_WC_LARGE is not set +# CONFIG_BUSYBOX_CONFIG_WHO is not set +# CONFIG_BUSYBOX_CONFIG_WHOAMI is not set +CONFIG_BUSYBOX_CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for ls, more and telnet +# +CONFIG_BUSYBOX_CONFIG_FEATURE_AUTOWIDTH=y + +# +# Common options for df, du, ls +# +CONFIG_BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum +# +CONFIG_BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +# CONFIG_BUSYBOX_CONFIG_CHVT is not set +CONFIG_BUSYBOX_CONFIG_CLEAR=y +# CONFIG_BUSYBOX_CONFIG_DEALLOCVT is not set +# CONFIG_BUSYBOX_CONFIG_DUMPKMAP is not set +# CONFIG_BUSYBOX_CONFIG_KBD_MODE is not set +# CONFIG_BUSYBOX_CONFIG_LOADFONT is not set +# CONFIG_BUSYBOX_CONFIG_LOADKMAP is not set +# CONFIG_BUSYBOX_CONFIG_OPENVT is not set +CONFIG_BUSYBOX_CONFIG_RESET=y +# CONFIG_BUSYBOX_CONFIG_RESIZE is not set +# CONFIG_BUSYBOX_CONFIG_SETCONSOLE is not set +# CONFIG_BUSYBOX_CONFIG_SETFONT is not set +# CONFIG_BUSYBOX_CONFIG_SETKEYCODES is not set +# CONFIG_BUSYBOX_CONFIG_SETLOGCONS is not set +# CONFIG_BUSYBOX_CONFIG_SHOWKEY is not set + +# +# Debian Utilities +# +CONFIG_BUSYBOX_CONFIG_MKTEMP=y +# CONFIG_BUSYBOX_CONFIG_PIPE_PROGRESS is not set +# CONFIG_BUSYBOX_CONFIG_RUN_PARTS is not set +CONFIG_BUSYBOX_CONFIG_START_STOP_DAEMON=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_WHICH=y + +# +# Editors +# +CONFIG_BUSYBOX_CONFIG_AWK=y +CONFIG_BUSYBOX_CONFIG_FEATURE_AWK_LIBM=y +# CONFIG_BUSYBOX_CONFIG_CMP is not set +CONFIG_BUSYBOX_CONFIG_DIFF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_BINARY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_DIR is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_MINIMAL is not set +# CONFIG_BUSYBOX_CONFIG_ED is not set +# CONFIG_BUSYBOX_CONFIG_PATCH is not set +CONFIG_BUSYBOX_CONFIG_SED=y +CONFIG_BUSYBOX_CONFIG_VI=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_MAX_LEN=1024 +# CONFIG_BUSYBOX_CONFIG_FEATURE_VI_8BIT is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_COLON=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SEARCH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_READONLY=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_BUSYBOX_CONFIG_FIND=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRINT0=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MTIME is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MMIN is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PERM=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_TYPE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_XDEV=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NEWER is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_INUM is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_EXEC=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_USER=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_GROUP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NOT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PAREN=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_SIZE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRUNE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DELETE is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PATH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_REGEX=y +CONFIG_BUSYBOX_CONFIG_GREP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_BUSYBOX_CONFIG_XARGS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +CONFIG_BUSYBOX_CONFIG_INIT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_KILL_REMOVED is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SCTTY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SYSLOG=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_EXTRA_QUIET is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_COREDUMPS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INITRD is not set +CONFIG_BUSYBOX_CONFIG_HALT=y +CONFIG_BUSYBOX_CONFIG_MESG=y + +# +# Login/Password Management Utilities +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_BUSYBOX_CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_BUSYBOX_CONFIG_USE_BB_CRYPT is not set +# CONFIG_BUSYBOX_CONFIG_ADDGROUP is not set +# CONFIG_BUSYBOX_CONFIG_DELGROUP is not set +# CONFIG_BUSYBOX_CONFIG_ADDUSER is not set +# CONFIG_BUSYBOX_CONFIG_DELUSER is not set +# CONFIG_BUSYBOX_CONFIG_GETTY is not set +# CONFIG_BUSYBOX_CONFIG_LOGIN is not set +CONFIG_BUSYBOX_CONFIG_PASSWD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +# CONFIG_BUSYBOX_CONFIG_CRYPTPW is not set +# CONFIG_BUSYBOX_CONFIG_CHPASSWD is not set +# CONFIG_BUSYBOX_CONFIG_SU is not set +# CONFIG_BUSYBOX_CONFIG_SULOGIN is not set +# CONFIG_BUSYBOX_CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +# CONFIG_BUSYBOX_CONFIG_CHATTR is not set +# CONFIG_BUSYBOX_CONFIG_FSCK is not set +# CONFIG_BUSYBOX_CONFIG_LSATTR is not set + +# +# Linux Module Utilities +# +# CONFIG_BUSYBOX_CONFIG_MODPROBE_SMALL is not set +CONFIG_BUSYBOX_CONFIG_INSMOD=y +CONFIG_BUSYBOX_CONFIG_RMMOD=y +CONFIG_BUSYBOX_CONFIG_LSMOD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT=y +# CONFIG_BUSYBOX_CONFIG_MODPROBE is not set +# CONFIG_BUSYBOX_CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +CONFIG_BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE=y +CONFIG_BUSYBOX_CONFIG_DEFAULT_MODULES_DIR="/lib/modules" + +# +# Linux System Utilities +# +# CONFIG_BUSYBOX_CONFIG_ACPID is not set +CONFIG_BUSYBOX_CONFIG_BLKID=y +CONFIG_BUSYBOX_CONFIG_DMESG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DMESG_PRETTY=y +# CONFIG_BUSYBOX_CONFIG_FBSET is not set +# CONFIG_BUSYBOX_CONFIG_FDFLUSH is not set +# CONFIG_BUSYBOX_CONFIG_FDFORMAT is not set +# CONFIG_BUSYBOX_CONFIG_FDISK is not set +CONFIG_BUSYBOX_CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +# CONFIG_BUSYBOX_CONFIG_FINDFS is not set +# CONFIG_BUSYBOX_CONFIG_FREERAMDISK is not set +# CONFIG_BUSYBOX_CONFIG_FSCK_MINIX is not set +# CONFIG_BUSYBOX_CONFIG_MKFS_MINIX is not set +# CONFIG_BUSYBOX_CONFIG_MKFS_VFAT is not set +# CONFIG_BUSYBOX_CONFIG_GETOPT is not set +CONFIG_BUSYBOX_CONFIG_HEXDUMP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HEXDUMP_REVERSE is not set +# CONFIG_BUSYBOX_CONFIG_HD is not set +CONFIG_BUSYBOX_CONFIG_HWCLOCK=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_BUSYBOX_CONFIG_IPCRM is not set +# CONFIG_BUSYBOX_CONFIG_IPCS is not set +# CONFIG_BUSYBOX_CONFIG_LOSETUP is not set +# CONFIG_BUSYBOX_CONFIG_MDEV is not set +CONFIG_BUSYBOX_CONFIG_MKSWAP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MKSWAP_UUID=y +# CONFIG_BUSYBOX_CONFIG_MORE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_USE_TERMIOS is not set +CONFIG_BUSYBOX_CONFIG_VOLUMEID=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_HFS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_JFS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_XFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_UDF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LUKS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_SYSV is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_BUSYBOX_CONFIG_MOUNT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LABEL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_NFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_CIFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_BUSYBOX_CONFIG_PIVOT_ROOT=y +CONFIG_BUSYBOX_CONFIG_RDATE=y +# CONFIG_BUSYBOX_CONFIG_RDEV is not set +# CONFIG_BUSYBOX_CONFIG_READPROFILE is not set +# CONFIG_BUSYBOX_CONFIG_RTCWAKE is not set +# CONFIG_BUSYBOX_CONFIG_SCRIPT is not set +# CONFIG_BUSYBOX_CONFIG_SCRIPTREPLAY is not set +# CONFIG_BUSYBOX_CONFIG_SETARCH is not set +CONFIG_BUSYBOX_CONFIG_SWAPONOFF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_BUSYBOX_CONFIG_SWITCH_ROOT=y +CONFIG_BUSYBOX_CONFIG_UMOUNT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_UMOUNT_ALL=y + +# +# Common options for mount/umount +# +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LOOP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MTAB_SUPPORT is not set + +# +# Miscellaneous Utilities +# +# CONFIG_BUSYBOX_CONFIG_ADJTIMEX is not set +# CONFIG_BUSYBOX_CONFIG_BBCONFIG is not set +# CONFIG_BUSYBOX_CONFIG_BEEP is not set +# CONFIG_BUSYBOX_CONFIG_CHAT is not set +# CONFIG_BUSYBOX_CONFIG_CHRT is not set +CONFIG_BUSYBOX_CONFIG_CROND=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_D is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_BUSYBOX_CONFIG_CRONTAB=y +# CONFIG_BUSYBOX_CONFIG_DC is not set +# CONFIG_BUSYBOX_CONFIG_DEVFSD is not set +# CONFIG_BUSYBOX_CONFIG_DEVMEM is not set +# CONFIG_BUSYBOX_CONFIG_EJECT is not set +# CONFIG_BUSYBOX_CONFIG_FBSPLASH is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_LOCK is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_UNLOCK is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_ERASEALL is not set +# CONFIG_BUSYBOX_CONFIG_IONICE is not set +# CONFIG_BUSYBOX_CONFIG_INOTIFYD is not set +# CONFIG_BUSYBOX_CONFIG_LAST is not set +CONFIG_BUSYBOX_CONFIG_LESS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES=9999999 +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_FLAGS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MARKS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_REGEXP is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_BUSYBOX_CONFIG_HDPARM is not set +CONFIG_BUSYBOX_CONFIG_LOCK=y +# CONFIG_BUSYBOX_CONFIG_MAKEDEVS is not set +# CONFIG_BUSYBOX_CONFIG_MAN is not set +# CONFIG_BUSYBOX_CONFIG_MICROCOM is not set +# CONFIG_BUSYBOX_CONFIG_MOUNTPOINT is not set +# CONFIG_BUSYBOX_CONFIG_MT is not set +# CONFIG_BUSYBOX_CONFIG_RAIDAUTORUN is not set +# CONFIG_BUSYBOX_CONFIG_READAHEAD is not set +# CONFIG_BUSYBOX_CONFIG_RUNLEVEL is not set +# CONFIG_BUSYBOX_CONFIG_RX is not set +# CONFIG_BUSYBOX_CONFIG_SETSID is not set +CONFIG_BUSYBOX_CONFIG_STRINGS=y +# CONFIG_BUSYBOX_CONFIG_TASKSET is not set +CONFIG_BUSYBOX_CONFIG_TIME=y +# CONFIG_BUSYBOX_CONFIG_TIMEOUT is not set +# CONFIG_BUSYBOX_CONFIG_TTYSIZE is not set +# CONFIG_BUSYBOX_CONFIG_VOLNAME is not set +CONFIG_BUSYBOX_CONFIG_WATCHDOG=y + +# +# Networking Utilities +# +CONFIG_BUSYBOX_CONFIG_FEATURE_IPV6=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_UNIX_LOCAL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +CONFIG_BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS=y +# CONFIG_BUSYBOX_CONFIG_ARP is not set +CONFIG_BUSYBOX_CONFIG_ARPING=y +# CONFIG_BUSYBOX_CONFIG_BRCTL is not set +# CONFIG_BUSYBOX_CONFIG_DNSD is not set +# CONFIG_BUSYBOX_CONFIG_ETHER_WAKE is not set +# CONFIG_BUSYBOX_CONFIG_FAKEIDENTD is not set +# CONFIG_BUSYBOX_CONFIG_FTPD is not set +# CONFIG_BUSYBOX_CONFIG_FTPGET is not set +# CONFIG_BUSYBOX_CONFIG_FTPPUT is not set +# CONFIG_BUSYBOX_CONFIG_HOSTNAME is not set +# CONFIG_BUSYBOX_CONFIG_HTTPD is not set +CONFIG_BUSYBOX_CONFIG_IFCONFIG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +# CONFIG_BUSYBOX_CONFIG_IFENSLAVE is not set +# CONFIG_BUSYBOX_CONFIG_IFPLUGD is not set +# CONFIG_BUSYBOX_CONFIG_IFUPDOWN is not set +# CONFIG_BUSYBOX_CONFIG_INETD is not set +# CONFIG_BUSYBOX_CONFIG_IP is not set +# CONFIG_BUSYBOX_CONFIG_IPCALC is not set +# CONFIG_BUSYBOX_CONFIG_NAMEIF is not set +CONFIG_BUSYBOX_CONFIG_NC=y +CONFIG_BUSYBOX_CONFIG_NETMSG=y +# CONFIG_BUSYBOX_CONFIG_NC_SERVER is not set +# CONFIG_BUSYBOX_CONFIG_NC_EXTRA is not set +CONFIG_BUSYBOX_CONFIG_NETSTAT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG=y +CONFIG_BUSYBOX_CONFIG_NSLOOKUP=y +CONFIG_BUSYBOX_CONFIG_PING=y +CONFIG_BUSYBOX_CONFIG_PING6=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_PING=y +# CONFIG_BUSYBOX_CONFIG_PSCAN is not set +CONFIG_BUSYBOX_CONFIG_ROUTE=y +# CONFIG_BUSYBOX_CONFIG_SLATTACH is not set +CONFIG_BUSYBOX_CONFIG_TELNET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN is not set +CONFIG_BUSYBOX_CONFIG_TELNETD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE=y +# CONFIG_BUSYBOX_CONFIG_TFTP is not set +# CONFIG_BUSYBOX_CONFIG_TFTPD is not set +CONFIG_BUSYBOX_CONFIG_TRACEROUTE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_BUSYBOX_CONFIG_APP_UDHCPD is not set +CONFIG_BUSYBOX_CONFIG_APP_UDHCPC=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCPC_ARPING is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_BUSYBOX_CONFIG_UDHCP_DEBUG=0 +CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_BUSYBOX_CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_BUSYBOX_CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_BUSYBOX_CONFIG_VCONFIG=y +CONFIG_BUSYBOX_CONFIG_WGET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS=y +# CONFIG_BUSYBOX_CONFIG_ZCIP is not set +# CONFIG_BUSYBOX_CONFIG_TCPSVD is not set +# CONFIG_BUSYBOX_CONFIG_TUNCTL is not set +# CONFIG_BUSYBOX_CONFIG_UDPSVD is not set + +# +# Print Utilities +# +# CONFIG_BUSYBOX_CONFIG_LPD is not set +# CONFIG_BUSYBOX_CONFIG_LPR is not set +# CONFIG_BUSYBOX_CONFIG_LPQ is not set + +# +# Mail Utilities +# +# CONFIG_BUSYBOX_CONFIG_MAKEMIME is not set +# CONFIG_BUSYBOX_CONFIG_POPMAILDIR is not set +# CONFIG_BUSYBOX_CONFIG_REFORMIME is not set +# CONFIG_BUSYBOX_CONFIG_SENDMAIL is not set + +# +# Process Utilities +# +CONFIG_BUSYBOX_CONFIG_FREE=y +# CONFIG_BUSYBOX_CONFIG_FUSER is not set +CONFIG_BUSYBOX_CONFIG_KILL=y +CONFIG_BUSYBOX_CONFIG_KILLALL=y +CONFIG_BUSYBOX_CONFIG_KILLALL5=y +# CONFIG_BUSYBOX_CONFIG_NMETER is not set +CONFIG_BUSYBOX_CONFIG_PGREP=y +CONFIG_BUSYBOX_CONFIG_PIDOF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT is not set +CONFIG_BUSYBOX_CONFIG_PKILL=y +CONFIG_BUSYBOX_CONFIG_PS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_BUSYBOX_CONFIG_RENICE is not set +CONFIG_BUSYBOX_CONFIG_BB_SYSCTL=y +CONFIG_BUSYBOX_CONFIG_TOP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOPMEM is not set +CONFIG_BUSYBOX_CONFIG_UPTIME=y +# CONFIG_BUSYBOX_CONFIG_WATCH is not set + +# +# Runit Utilities +# +# CONFIG_BUSYBOX_CONFIG_RUNSV is not set +# CONFIG_BUSYBOX_CONFIG_RUNSVDIR is not set +# CONFIG_BUSYBOX_CONFIG_SV is not set +# CONFIG_BUSYBOX_CONFIG_SVLOGD is not set +# CONFIG_BUSYBOX_CONFIG_CHPST is not set +# CONFIG_BUSYBOX_CONFIG_SETUIDGID is not set +# CONFIG_BUSYBOX_CONFIG_ENVUIDGID is not set +# CONFIG_BUSYBOX_CONFIG_ENVDIR is not set +# CONFIG_BUSYBOX_CONFIG_SOFTLIMIT is not set + +# +# Shells +# +CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_ASH=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_NONE is not set +CONFIG_BUSYBOX_CONFIG_ASH=y +CONFIG_BUSYBOX_CONFIG_ASH_BASH_COMPAT=y +CONFIG_BUSYBOX_CONFIG_ASH_JOB_CONTROL=y +# CONFIG_BUSYBOX_CONFIG_ASH_READ_NCHARS is not set +CONFIG_BUSYBOX_CONFIG_ASH_READ_TIMEOUT=y +CONFIG_BUSYBOX_CONFIG_ASH_ALIAS=y +CONFIG_BUSYBOX_CONFIG_ASH_GETOPTS=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_ECHO=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_PRINTF=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_TEST=y +CONFIG_BUSYBOX_CONFIG_ASH_CMDCMD=y +# CONFIG_BUSYBOX_CONFIG_ASH_MAIL is not set +# CONFIG_BUSYBOX_CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_BUSYBOX_CONFIG_ASH_RANDOM_SUPPORT is not set +CONFIG_BUSYBOX_CONFIG_ASH_EXPAND_PRMT=y +# CONFIG_BUSYBOX_CONFIG_LASH is not set +# CONFIG_BUSYBOX_CONFIG_MSH is not set +CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT=y +CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT_64=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_NOFORK is not set +# CONFIG_BUSYBOX_CONFIG_CTTYHACK is not set + +# +# System Logging Utilities +# +CONFIG_BUSYBOX_CONFIG_SYSLOGD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_REMOTE_LOG=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOGD_DUP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_BUSYBOX_CONFIG_LOGREAD=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +CONFIG_BUSYBOX_CONFIG_KLOGD=y +CONFIG_BUSYBOX_CONFIG_LOGGER=y +# CONFIG_PACKAGE_dash is not set +CONFIG_PACKAGE_dnsmasq=y +CONFIG_PACKAGE_dropbear=y +# CONFIG_PACKAGE_ead is not set +# CONFIG_PACKAGE_firewall is not set +CONFIG_PACKAGE_hotplug2=y +CONFIG_PACKAGE_libc=y +CONFIG_PACKAGE_libgcc=y +# CONFIG_PACKAGE_libpthread is not set +# CONFIG_PACKAGE_librt is not set +# CONFIG_PACKAGE_libstdcpp is not set +# CONFIG_PACKAGE_mksh is not set +CONFIG_PACKAGE_mtd=y +CONFIG_PACKAGE_opkg=y +CONFIG_PACKAGE_qos-scripts=y +CONFIG_PACKAGE_swconfig=y +CONFIG_PACKAGE_uci=y +# CONFIG_PACKAGE_ucitrigger is not set +# CONFIG_PACKAGE_udev is not set +CONFIG_PACKAGE_udevtrigger=y +CONFIG_PACKAGE_wireless-tools=y + +# +# Network +# + +# +# BitTorrent +# +# CONFIG_PACKAGE_btpd is not set +# CONFIG_PACKAGE_cbtt is not set +# CONFIG_PACKAGE_cbtt-mysql is not set +# CONFIG_PACKAGE_ctorrent is not set +# CONFIG_PACKAGE_ctorrent-nossl is not set +# CONFIG_DELUGE_WITH_WEBUI is not set +# CONFIG_PACKAGE_rtorrent is not set +# CONFIG_PACKAGE_transmission-daemon is not set +# CONFIG_PACKAGE_transmission-remote is not set + +# +# Captive Portals +# +# CONFIG_PACKAGE_chillispot is not set +# CONFIG_PACKAGE_coova-chilli is not set +# CONFIG_PACKAGE_nocatauth is not set +# CONFIG_PACKAGE_nocatsplash is not set +# CONFIG_PACKAGE_nodogsplash is not set +# CONFIG_PACKAGE_pepperspot is not set +# CONFIG_PACKAGE_wifidog is not set + +# +# DNS +# +# CONFIG_PACKAGE_bind-check is not set +# CONFIG_PACKAGE_bind-client is not set +# CONFIG_PACKAGE_bind-dig is not set +# CONFIG_PACKAGE_bind-dnssec is not set +# CONFIG_PACKAGE_bind-host is not set +# CONFIG_PACKAGE_bind-libs is not set +# CONFIG_PACKAGE_bind-rndc is not set +# CONFIG_PACKAGE_bind-server is not set +# CONFIG_PACKAGE_bind-tools is not set +# CONFIG_PACKAGE_djbdns-axfrdns is not set +# CONFIG_PACKAGE_djbdns-base is not set +# CONFIG_PACKAGE_djbdns-dnscache is not set +# CONFIG_PACKAGE_djbdns-rbldns is not set +# CONFIG_PACKAGE_djbdns-tinydns is not set +# CONFIG_PACKAGE_djbdns-tools is not set +# CONFIG_PACKAGE_djbdns-walldns is not set +# CONFIG_PACKAGE_dudders is not set +# CONFIG_PACKAGE_maradns is not set + +# +# FTP +# +# CONFIG_PACKAGE_atftp is not set +# CONFIG_PACKAGE_atftpd is not set +# CONFIG_PACKAGE_cmdftp is not set +# CONFIG_PACKAGE_lftp is not set +# CONFIG_PACKAGE_proftpd is not set +# CONFIG_PACKAGE_pure-ftpd is not set +# CONFIG_PACKAGE_pure-ftpd-tls is not set +# CONFIG_PACKAGE_vsftpd is not set +# CONFIG_PACKAGE_wput is not set +# CONFIG_PACKAGE_yafc is not set + +# +# Filesystem +# +# CONFIG_PACKAGE_nfs-kernel-server is not set +# CONFIG_PACKAGE_nfs-server is not set +# CONFIG_PACKAGE_owftpd is not set +# CONFIG_PACKAGE_owhttpd is not set +# CONFIG_PACKAGE_owserver is not set +# CONFIG_PACKAGE_unfs3 is not set + +# +# HA +# +# CONFIG_PACKAGE_keepalived is not set + +# +# Instant Messaging +# +# CONFIG_PACKAGE_bitchx is not set +# CONFIG_PACKAGE_bitlbee is not set +# CONFIG_PACKAGE_dircproxy is not set +# CONFIG_PACKAGE_irssi is not set +# CONFIG_PACKAGE_irssi-glib1 is not set +# CONFIG_PACKAGE_irssi-nossl is not set +# CONFIG_PACKAGE_miau is not set +# CONFIG_PACKAGE_prosody is not set +# CONFIG_PACKAGE_psybnc is not set +# CONFIG_PACKAGE_reaim is not set +# CONFIG_PACKAGE_tmsnc is not set +# CONFIG_PACKAGE_weechat is not set +# CONFIG_PACKAGE_znc is not set + +# +# Monitoring +# +# CONFIG_PACKAGE_jtg is not set +# CONFIG_PACKAGE_nagios is not set + +# +# NMAP Suite +# +# CONFIG_PACKAGE_ncat is not set +# CONFIG_PACKAGE_ncat-ssl is not set +# CONFIG_PACKAGE_ndiff is not set +# CONFIG_PACKAGE_nmap is not set +# CONFIG_PACKAGE_nmap-ssl is not set +# CONFIG_PACKAGE_nping is not set + +# +# NNTP +# +# CONFIG_PACKAGE_leafnode is not set +# CONFIG_PACKAGE_nzbget is not set +# CONFIG_PACKAGE_nzbgetweb is not set + +# +# P2P +# +# CONFIG_PACKAGE_amule is not set +# CONFIG_PACKAGE_mutella is not set +# CONFIG_PACKAGE_opendchub is not set +# CONFIG_PACKAGE_uhub is not set + +# +# Proxy Servers +# +# CONFIG_PACKAGE_haproxy is not set +# CONFIG_PACKAGE_polipo is not set +# CONFIG_PACKAGE_privoxy is not set +# CONFIG_PACKAGE_rinetd is not set +# CONFIG_PACKAGE_tinyproxy is not set + +# +# SSH +# +# CONFIG_PACKAGE_autossh is not set +# CONFIG_PACKAGE_openssh-client is not set +# CONFIG_PACKAGE_openssh-client-utils is not set +# CONFIG_PACKAGE_openssh-keygen is not set +# CONFIG_PACKAGE_openssh-server is not set +# CONFIG_PACKAGE_openssh-sftp-client is not set +# CONFIG_PACKAGE_openssh-sftp-server is not set +# CONFIG_PACKAGE_sshtunnel is not set + +# +# Time Synchronization +# +# CONFIG_PACKAGE_chrony is not set +# CONFIG_PACKAGE_htpdate is not set +# CONFIG_PACKAGE_ntp-utils is not set +# CONFIG_PACKAGE_ntpclient is not set +# CONFIG_PACKAGE_ntpd is not set +# CONFIG_PACKAGE_ntpd-ssl is not set +# CONFIG_PACKAGE_ntpdate is not set +# CONFIG_PACKAGE_openntpd is not set + +# +# VPN +# +# CONFIG_PACKAGE_frickin is not set +# CONFIG_PACKAGE_l2tpd is not set +# CONFIG_PACKAGE_l2tpns is not set +# CONFIG_PACKAGE_matrixtunnel is not set +# CONFIG_PACKAGE_n2n is not set +# CONFIG_PACKAGE_openconnect is not set +# CONFIG_PACKAGE_openl2tp is not set +# CONFIG_PACKAGE_openswan is not set +# CONFIG_PACKAGE_openvpn is not set +# CONFIG_PACKAGE_openvpn-devel is not set +# CONFIG_PACKAGE_pptpd is not set +# CONFIG_PACKAGE_quicktun is not set +# CONFIG_PACKAGE_ssltunnel is not set +CONFIG_PACKAGE_tinc=y +# CONFIG_PACKAGE_uanytun is not set +# CONFIG_PACKAGE_uanytun-nocrypt is not set +# CONFIG_PACKAGE_uanytun-sslcrypt is not set +# CONFIG_PACKAGE_vpnc is not set +# CONFIG_PACKAGE_vpzone is not set +# CONFIG_PACKAGE_vtun is not set +# CONFIG_PACKAGE_xl2tpd is not set + +# +# Version Control Systems +# +# CONFIG_PACKAGE_git is not set +# CONFIG_PACKAGE_mercurial is not set +# CONFIG_PACKAGE_subversion-libs is not set + +# +# Web +# +# CONFIG_PACKAGE_apache is not set +# CONFIG_PACKAGE_axhttpd is not set +# CONFIG_PACKAGE_axtlswrap is not set +# CONFIG_PACKAGE_elinks is not set +# CONFIG_PACKAGE_hiawatha is not set +# CONFIG_PACKAGE_lighttpd is not set +# CONFIG_PACKAGE_mini-httpd is not set +# CONFIG_PACKAGE_mini-httpd-htpasswd is not set +# CONFIG_PACKAGE_mini-httpd-matrixssl is not set +# CONFIG_PACKAGE_mini-httpd-openssl is not set +# CONFIG_PACKAGE_spawn-fcgi is not set + +# +# asterisk14 (Complete Open Source PBX), v1.4.x +# +# CONFIG_PACKAGE_asterisk14-chan-mobile is not set +# CONFIG_PACKAGE_asterisk14-chan-ooh323 is not set +# CONFIG_PACKAGE_asterisk14-format-mp3 is not set +# CONFIG_PACKAGE_asterisk14-mysql is not set + +# +# asterisk18 (Complete Open Source PBX), v1.8.x +# +# CONFIG_PACKAGE_asterisk18 is not set +# CONFIG_PACKAGE_asterisk18-app-alarmreceiver is not set +# CONFIG_PACKAGE_asterisk18-app-authenticate is not set +# CONFIG_PACKAGE_asterisk18-app-chanisavail is not set +# CONFIG_PACKAGE_asterisk18-app-chanspy is not set +# CONFIG_PACKAGE_asterisk18-app-directed-pickup is not set +# CONFIG_PACKAGE_asterisk18-app-exec is not set +# CONFIG_PACKAGE_asterisk18-app-minivm is not set +# CONFIG_PACKAGE_asterisk18-app-originate is not set +# CONFIG_PACKAGE_asterisk18-app-read is not set +# CONFIG_PACKAGE_asterisk18-app-readexten is not set +# CONFIG_PACKAGE_asterisk18-app-sayunixtime is not set +# CONFIG_PACKAGE_asterisk18-app-setcallerid is not set +# CONFIG_PACKAGE_asterisk18-app-sms is not set +# CONFIG_PACKAGE_asterisk18-app-stack is not set +# CONFIG_PACKAGE_asterisk18-app-system is not set +# CONFIG_PACKAGE_asterisk18-app-talkdetect is not set +# CONFIG_PACKAGE_asterisk18-app-verbose is not set +# CONFIG_PACKAGE_asterisk18-app-waituntil is not set +# CONFIG_PACKAGE_asterisk18-app-while is not set +# CONFIG_PACKAGE_asterisk18-cdr is not set +# CONFIG_PACKAGE_asterisk18-chan-agent is not set +# CONFIG_PACKAGE_asterisk18-chan-gtalk is not set +# CONFIG_PACKAGE_asterisk18-chan-iax2 is not set +# CONFIG_PACKAGE_asterisk18-chan-local is not set +# CONFIG_PACKAGE_asterisk18-chan-mgcp is not set +# CONFIG_PACKAGE_asterisk18-chan-mobile is not set +# CONFIG_PACKAGE_asterisk18-codec-a-mu is not set +# CONFIG_PACKAGE_asterisk18-codec-alaw is not set +# CONFIG_PACKAGE_asterisk18-codec-g722 is not set +# CONFIG_PACKAGE_asterisk18-codec-g726 is not set +# CONFIG_PACKAGE_asterisk18-codec-ulaw is not set +# CONFIG_PACKAGE_asterisk18-curl is not set +# CONFIG_PACKAGE_asterisk18-format-g726 is not set +# CONFIG_PACKAGE_asterisk18-format-g729 is not set +# CONFIG_PACKAGE_asterisk18-format-sln is not set +# CONFIG_PACKAGE_asterisk18-format-sln16 is not set +# CONFIG_PACKAGE_asterisk18-func-blacklist is not set +# CONFIG_PACKAGE_asterisk18-func-channel is not set +# CONFIG_PACKAGE_asterisk18-func-db is not set +# CONFIG_PACKAGE_asterisk18-func-devstate is not set +# CONFIG_PACKAGE_asterisk18-func-extstate is not set +# CONFIG_PACKAGE_asterisk18-func-global is not set +# CONFIG_PACKAGE_asterisk18-func-shell is not set +# CONFIG_PACKAGE_asterisk18-func-vmcount is not set +# CONFIG_PACKAGE_asterisk18-pbx-ael is not set +# CONFIG_PACKAGE_asterisk18-pbx-spool is not set +# CONFIG_PACKAGE_asterisk18-res-ael-share is not set +# CONFIG_PACKAGE_asterisk18-res-agi is not set +# CONFIG_PACKAGE_asterisk18-res-musiconhold is not set +# CONFIG_PACKAGE_asterisk18-sounds is not set +# CONFIG_PACKAGE_asterisk18-voicemail is not set + +# +# dial-in/up +# +# CONFIG_PACKAGE_rp-l2tpd is not set +# CONFIG_PACKAGE_rp-pppoe-client is not set +# CONFIG_PACKAGE_rp-pppoe-relay is not set +# CONFIG_PACKAGE_rp-pppoe-server is not set +# CONFIG_PACKAGE_rp-pppoe-sniff is not set + +# +# firewall +# +# CONFIG_PACKAGE_amwall is not set +# CONFIG_PACKAGE_ipkungfu is not set +# CONFIG_PACKAGE_iptables-snmp is not set +# CONFIG_PACKAGE_shorewall-lite is not set + +# +# firmware +# + +# +# layer7 +# +# CONFIG_PACKAGE_l7-protocols is not set + +# +# multimedia +# +# CONFIG_PACKAGE_gmediaserver is not set +# CONFIG_PACKAGE_icecast is not set + +# +# pmacct (accounting and aggregation tools) +# +# CONFIG_PACKAGE_nfacctd is not set +# CONFIG_PACKAGE_nfacctd-mysql is not set +# CONFIG_PACKAGE_nfacctd-sqlite is not set +# CONFIG_PACKAGE_pmacct-client is not set +# CONFIG_PACKAGE_pmacctd is not set +# CONFIG_PACKAGE_pmacctd-mysql is not set +# CONFIG_PACKAGE_pmacctd-sqlite is not set + +# +# printing +# +# CONFIG_PACKAGE_cups is not set +# CONFIG_PACKAGE_p910nd is not set + +# +# samba - NetBIOS/SMB implementation +# +# CONFIG_PACKAGE_samba-common is not set + +# +# snort (Ligthweight Network Intrusion Detection System) +# +# CONFIG_PACKAGE_snort is not set +# CONFIG_PACKAGE_snort-mysql is not set + +# +# snort-wireless (Ligthweight Network Intrusion Detection System) +# +# CONFIG_PACKAGE_snort-wireless is not set +# CONFIG_PACKAGE_snort-wireless-mysql is not set + +# +# wireless +# +# CONFIG_PACKAGE_aircrack-ng is not set +# CONFIG_PACKAGE_aircrack-ptw is not set +# CONFIG_PACKAGE_kismet-client is not set +# CONFIG_PACKAGE_kismet-drone is not set +# CONFIG_PACKAGE_kismet-server is not set +# CONFIG_PACKAGE_mdk3 is not set +# CONFIG_PACKAGE_wavemon is not set +# CONFIG_PACKAGE_airpwn is not set +# CONFIG_PACKAGE_aoetools is not set +# CONFIG_PACKAGE_appweb is not set +# CONFIG_PACKAGE_aprx is not set +# CONFIG_PACKAGE_arpd is not set +# CONFIG_PACKAGE_arptables is not set +# CONFIG_PACKAGE_arpwatch is not set +# CONFIG_PACKAGE_avahi-autoipd is not set +# CONFIG_PACKAGE_avahi-daemon is not set +# CONFIG_PACKAGE_avahi-dnsconfd is not set +# CONFIG_PACKAGE_axel is not set +# CONFIG_PACKAGE_babeld is not set +# CONFIG_PACKAGE_bahamut is not set +# CONFIG_PACKAGE_baresip is not set +# CONFIG_PACKAGE_batmand is not set +# CONFIG_PACKAGE_bing is not set +# CONFIG_PACKAGE_bird4 is not set +# CONFIG_PACKAGE_bird6 is not set +# CONFIG_PACKAGE_birdc4 is not set +# CONFIG_PACKAGE_birdc6 is not set +# CONFIG_PACKAGE_bmon is not set +# CONFIG_PACKAGE_bmxd is not set +# CONFIG_PACKAGE_bwm is not set +# CONFIG_PACKAGE_cdp-tools is not set +# CONFIG_PACKAGE_chaosvpn is not set +# CONFIG_PACKAGE_chat is not set +# CONFIG_PACKAGE_conntrack-tools is not set +# CONFIG_PACKAGE_corkscrew is not set +# CONFIG_PACKAGE_crda is not set +# CONFIG_PACKAGE_crowdcontrol is not set +# CONFIG_PACKAGE_curl is not set +# CONFIG_PACKAGE_cutter is not set +# CONFIG_PACKAGE_dansguardian is not set +# CONFIG_PACKAGE_darkstat is not set +# CONFIG_PACKAGE_ddns-scripts is not set +# CONFIG_PACKAGE_dhcp-forwarder is not set +# CONFIG_PACKAGE_dhcp-relay is not set +# CONFIG_PACKAGE_dhcp-server is not set +# CONFIG_PACKAGE_dhcpcd is not set +# CONFIG_PACKAGE_ditg is not set +# CONFIG_PACKAGE_dmapd is not set +# CONFIG_PACKAGE_dsl-qos-queue is not set +# CONFIG_PACKAGE_dsniff is not set +# CONFIG_PACKAGE_e169-stats is not set +# CONFIG_PACKAGE_ebtables is not set +# CONFIG_PACKAGE_ebtables-utils is not set +# CONFIG_PACKAGE_ekg is not set +# CONFIG_PACKAGE_etherwake is not set +# CONFIG_PACKAGE_ethtool is not set +# CONFIG_PACKAGE_ettercap is not set +# CONFIG_PACKAGE_ez-ipupdate is not set +# CONFIG_PACKAGE_faifa is not set +# CONFIG_PACKAGE_flow-tools is not set +# CONFIG_PACKAGE_fping is not set +# CONFIG_PACKAGE_fprobe is not set +# CONFIG_PACKAGE_fprobe-ulog is not set +# CONFIG_PACKAGE_freeradius is not set +# CONFIG_PACKAGE_freeradius2 is not set +# CONFIG_PACKAGE_freeswitch is not set +# CONFIG_PACKAGE_genl is not set +# CONFIG_PACKAGE_gesftpserver is not set +# CONFIG_PACKAGE_gpsd is not set +# CONFIG_PACKAGE_horst is not set +# CONFIG_PACKAGE_hostapd is not set +# CONFIG_PACKAGE_hostapd-mini is not set +# CONFIG_PACKAGE_hostapd-utils is not set +# CONFIG_PACKAGE_howl-autoipd is not set +# CONFIG_PACKAGE_howl-mdnsresponder is not set +# CONFIG_PACKAGE_howl-nifd is not set +# CONFIG_PACKAGE_howl-utils is not set +# CONFIG_PACKAGE_hping3 is not set +# CONFIG_PACKAGE_httping is not set +# CONFIG_PACKAGE_httptunnel is not set +# CONFIG_PACKAGE_icmptx is not set +# CONFIG_PACKAGE_ifenslave is not set +# CONFIG_PACKAGE_ifstat is not set +# CONFIG_PACKAGE_iftop is not set +# CONFIG_PACKAGE_igmpproxy is not set +# CONFIG_PACKAGE_imsnif is not set +# CONFIG_PACKAGE_iodine is not set +# CONFIG_PACKAGE_iodined is not set +CONFIG_PACKAGE_ip=y +# CONFIG_PACKAGE_ipcad is not set +# CONFIG_PACKAGE_iperf is not set +# CONFIG_PACKAGE_iperf-mt is not set +# CONFIG_PACKAGE_ipsec-tools is not set +# CONFIG_PACKAGE_ipset is not set +CONFIG_PACKAGE_iptables=y +# CONFIG_PACKAGE_iptables-mod-chaos is not set +# CONFIG_PACKAGE_iptables-mod-condition is not set +CONFIG_PACKAGE_iptables-mod-conntrack=y +CONFIG_PACKAGE_iptables-mod-conntrack-extra=y +# CONFIG_PACKAGE_iptables-mod-delude is not set +# CONFIG_PACKAGE_iptables-mod-extra is not set +CONFIG_PACKAGE_iptables-mod-filter=y +CONFIG_PACKAGE_iptables-mod-imq=y +CONFIG_PACKAGE_iptables-mod-ipopt=y +# CONFIG_PACKAGE_iptables-mod-ipp2p is not set +# CONFIG_PACKAGE_iptables-mod-iprange is not set +# CONFIG_PACKAGE_iptables-mod-ipsec is not set +# CONFIG_PACKAGE_iptables-mod-ipset is not set +CONFIG_PACKAGE_iptables-mod-nat=y +# CONFIG_PACKAGE_iptables-mod-nat-extra is not set +# CONFIG_PACKAGE_iptables-mod-rawnat is not set +# CONFIG_PACKAGE_iptables-mod-tarpit is not set +# CONFIG_PACKAGE_iptables-mod-ulog is not set +# CONFIG_PACKAGE_iptables-utils is not set +# CONFIG_PACKAGE_iptraf is not set +# CONFIG_PACKAGE_ipupdate is not set +# CONFIG_PACKAGE_iputils-arping is not set +# CONFIG_PACKAGE_iputils-clockdiff is not set +# CONFIG_PACKAGE_iputils-ping is not set +# CONFIG_PACKAGE_iputils-tftpd is not set +# CONFIG_PACKAGE_iputils-tracepath is not set +# CONFIG_PACKAGE_isakmpd is not set +# CONFIG_PACKAGE_iw is not set +# CONFIG_PACKAGE_kamailio is not set +# CONFIG_PACKAGE_karma is not set +# CONFIG_PACKAGE_keynote is not set +# CONFIG_PACKAGE_knock is not set +# CONFIG_PACKAGE_knockd is not set +# CONFIG_PACKAGE_krb5-client is not set +# CONFIG_PACKAGE_krb5-libs is not set +# CONFIG_PACKAGE_krb5-server is not set +# CONFIG_PACKAGE_l2tpv3tun is not set +# CONFIG_PACKAGE_lft is not set +# CONFIG_PACKAGE_linuxigd is not set +# CONFIG_PACKAGE_lldpd is not set +# CONFIG_PACKAGE_lsm is not set +# CONFIG_PACKAGE_mac-to-devinfo is not set +# CONFIG_PACKAGE_madwimax is not set +# CONFIG_PACKAGE_mdnsresponder is not set +# CONFIG_PACKAGE_memcached is not set +# CONFIG_PACKAGE_mgen is not set +# CONFIG_PACKAGE_miax is not set +# CONFIG_PACKAGE_mii-tool is not set +# CONFIG_PACKAGE_mini-snmpd is not set +# CONFIG_PACKAGE_miniupnpc is not set +# CONFIG_PACKAGE_miniupnpd is not set +# CONFIG_PACKAGE_mtr is not set +# CONFIG_PACKAGE_multiwan is not set +# CONFIG_PACKAGE_mvprelay is not set +# CONFIG_PACKAGE_natpmp is not set +# CONFIG_PACKAGE_nbd is not set +# CONFIG_PACKAGE_nbtscan is not set +# CONFIG_PACKAGE_ncftp is not set +# CONFIG_PACKAGE_ncftp-utils is not set +# CONFIG_PACKAGE_ndyndns is not set +# CONFIG_PACKAGE_net-tools-arp is not set +# CONFIG_PACKAGE_net-tools-hostname is not set +# CONFIG_PACKAGE_net-tools-ifconfig is not set +# CONFIG_PACKAGE_net-tools-ipmaddr is not set +# CONFIG_PACKAGE_net-tools-iptunnel is not set +# CONFIG_PACKAGE_net-tools-mii-tool is not set +# CONFIG_PACKAGE_net-tools-nameif is not set +# CONFIG_PACKAGE_net-tools-netstat is not set +# CONFIG_PACKAGE_net-tools-plipconfig is not set +# CONFIG_PACKAGE_net-tools-rarp is not set +# CONFIG_PACKAGE_net-tools-route is not set +# CONFIG_PACKAGE_net-tools-slattach is not set +# CONFIG_PACKAGE_netatalk is not set +CONFIG_PACKAGE_netcat=y +# CONFIG_PACKAGE_netdiscover is not set +# CONFIG_PACKAGE_netperf is not set +# CONFIG_PACKAGE_netpipe is not set +# CONFIG_PACKAGE_netstat-nat is not set +# CONFIG_PACKAGE_nginx is not set +# CONFIG_PACKAGE_ngircd is not set +# CONFIG_PACKAGE_ngrep is not set +# CONFIG_PACKAGE_noping is not set +# CONFIG_PACKAGE_nrpe is not set +# CONFIG_PACKAGE_nstx is not set +# CONFIG_PACKAGE_nstxd is not set +# CONFIG_PACKAGE_nufw is not set +# CONFIG_PACKAGE_nufw-modules is not set +# CONFIG_PACKAGE_nufw-python is not set +# CONFIG_PACKAGE_nutcpc is not set +# CONFIG_PACKAGE_oidentd is not set +# CONFIG_PACKAGE_olsrd is not set +# CONFIG_PACKAGE_openldap-server is not set +# CONFIG_PACKAGE_opennhrp is not set +# CONFIG_PACKAGE_openrrcp is not set +# CONFIG_PACKAGE_openser is not set +# CONFIG_PACKAGE_opensips is not set +# CONFIG_PACKAGE_openslp is not set +# CONFIG_PACKAGE_oping is not set +# CONFIG_PACKAGE_parprouted is not set +# CONFIG_PACKAGE_pcapsipdump is not set +# CONFIG_PACKAGE_peerguardian is not set +# CONFIG_PACKAGE_pen is not set +# CONFIG_PACKAGE_pepsal is not set +# CONFIG_PACKAGE_portmap is not set +# CONFIG_PACKAGE_portsentry is not set +CONFIG_PACKAGE_ppp=y +# CONFIG_PACKAGE_ppp-mod-pppoa is not set +CONFIG_PACKAGE_ppp-mod-pppoe=y +# CONFIG_PACKAGE_ppp-mod-radius is not set +# CONFIG_PACKAGE_pppdump is not set +# CONFIG_PACKAGE_pppstats is not set +# CONFIG_PACKAGE_pptp is not set +# CONFIG_PACKAGE_ptpd is not set +# CONFIG_PACKAGE_ptunnel is not set +# CONFIG_PACKAGE_qolyester is not set +# CONFIG_PACKAGE_quagga is not set +# CONFIG_PACKAGE_raddump is not set +# CONFIG_PACKAGE_radiusclient-ng is not set +# CONFIG_PACKAGE_radsecproxy is not set +# CONFIG_PACKAGE_rarpd is not set +# CONFIG_PACKAGE_redir is not set +# CONFIG_PACKAGE_remotefs-server is not set +# CONFIG_PACKAGE_restund is not set +# CONFIG_PACKAGE_rrs is not set +# CONFIG_PACKAGE_rrs-nossl is not set +# CONFIG_PACKAGE_rssh is not set +# CONFIG_PACKAGE_rsync is not set +# CONFIG_PACKAGE_rtpproxy is not set +# CONFIG_PACKAGE_samba3 is not set +# CONFIG_PACKAGE_scanlogd is not set +# CONFIG_PACKAGE_scdp is not set +# CONFIG_PACKAGE_sctp is not set +# CONFIG_PACKAGE_send-nsca is not set +# CONFIG_PACKAGE_ser2net is not set +# CONFIG_PACKAGE_serialoverip is not set +# CONFIG_PACKAGE_shat is not set +# CONFIG_PACKAGE_sipp is not set +# CONFIG_PACKAGE_siproxd is not set +# CONFIG_PACKAGE_sipsak is not set +# CONFIG_PACKAGE_slurm is not set +# CONFIG_PACKAGE_smap is not set +# CONFIG_PACKAGE_smcroute is not set +# CONFIG_PACKAGE_smtptrapd is not set +# CONFIG_PACKAGE_snmp-utils is not set +# CONFIG_PACKAGE_snmpd is not set +# CONFIG_PACKAGE_snmpd-static is not set +# CONFIG_PACKAGE_socat is not set +# CONFIG_PACKAGE_softflowd is not set +# CONFIG_PACKAGE_squid is not set +# CONFIG_PACKAGE_srelay is not set +# CONFIG_PACKAGE_sscep is not set +# CONFIG_PACKAGE_sslcat is not set +# CONFIG_PACKAGE_sslh is not set +# CONFIG_PACKAGE_sslsniff is not set +# CONFIG_PACKAGE_stun-client is not set +# CONFIG_PACKAGE_stund is not set +# CONFIG_PACKAGE_stunnel is not set +# CONFIG_PACKAGE_synce-dccm is not set +CONFIG_PACKAGE_tc=y +# CONFIG_PACKAGE_tcpdump is not set +# CONFIG_PACKAGE_tcpdump-mini is not set +# CONFIG_PACKAGE_tcptraceroute is not set +# CONFIG_PACKAGE_tctool is not set +# CONFIG_PACKAGE_tftp-hpa is not set +# CONFIG_PACKAGE_tftpd-hpa is not set +# CONFIG_PACKAGE_tor is not set +# CONFIG_PACKAGE_tor-alpha is not set +# CONFIG_PACKAGE_tor-geoip is not set +# CONFIG_PACKAGE_tsocks is not set +# CONFIG_PACKAGE_ttcp is not set +# CONFIG_PACKAGE_ucarp is not set +# CONFIG_PACKAGE_ucspi-tcp is not set +# CONFIG_PACKAGE_udp-broadcast-relay is not set +# CONFIG_PACKAGE_udpxy is not set +# CONFIG_PACKAGE_uhttpd is not set +# CONFIG_PACKAGE_ulogd is not set +# CONFIG_PACKAGE_umurmur-openssl is not set +# CONFIG_PACKAGE_umurmur-polarssl is not set +# CONFIG_PACKAGE_unbound is not set +# CONFIG_PACKAGE_uob-nomad is not set +# CONFIG_PACKAGE_updatedd is not set +# CONFIG_PACKAGE_usbip is not set +# CONFIG_PACKAGE_uucp is not set +# CONFIG_PACKAGE_vblade is not set +# CONFIG_PACKAGE_veth is not set +# CONFIG_PACKAGE_vgp is not set +# CONFIG_PACKAGE_vis is not set +# CONFIG_PACKAGE_vnc-reflector is not set +# CONFIG_PACKAGE_vncrepeater is not set +# CONFIG_PACKAGE_vnstat is not set +# CONFIG_PACKAGE_vrrpd is not set +# CONFIG_PACKAGE_wccpd is not set +# CONFIG_PACKAGE_wdiag is not set +# CONFIG_PACKAGE_wget is not set +# CONFIG_PACKAGE_wget-nossl is not set +# CONFIG_PACKAGE_wing is not set +# CONFIG_PACKAGE_wiviz is not set +# CONFIG_PACKAGE_wol is not set +# CONFIG_PACKAGE_wpa-cli is not set +# CONFIG_PACKAGE_wpa-supplicant is not set +# CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK is not set +# CONFIG_WPA_RFKILL_SUPPORT is not set +# CONFIG_PACKAGE_wpa-supplicant-mini is not set +# CONFIG_PACKAGE_wpad is not set +CONFIG_PACKAGE_wpad-mini=y +# CONFIG_PACKAGE_wprobe-export is not set +# CONFIG_PACKAGE_wprobe-util is not set +# CONFIG_PACKAGE_wshaper is not set +# CONFIG_PACKAGE_xinetd is not set +# CONFIG_PACKAGE_xsupplicant is not set +# CONFIG_PACKAGE_yaddns is not set + +# +# Libraries +# + +# +# Filesystem +# +# CONFIG_PACKAGE_libblkid is not set +# CONFIG_PACKAGE_libext2fs is not set +# CONFIG_PACKAGE_libnfsidmap is not set +# CONFIG_PACKAGE_libow is not set +# CONFIG_PACKAGE_libow-capi is not set +# CONFIG_PACKAGE_libsysfs is not set +# CONFIG_PACKAGE_libuuid is not set + +# +# SSL +# +# CONFIG_PACKAGE_libaxtls is not set +# CONFIG_PACKAGE_libcyassl is not set +# CONFIG_PACKAGE_libgnutls is not set +# CONFIG_PACKAGE_libgnutls-extra is not set +# CONFIG_PACKAGE_libgnutls-openssl is not set +# CONFIG_PACKAGE_libmatrixssl is not set +CONFIG_PACKAGE_libopenssl=y + +# +# Configuration +# +# CONFIG_OPENSSL_ENGINE is not set +# CONFIG_PACKAGE_libpolarssl is not set + +# +# Sound +# +# CONFIG_PACKAGE_liblo is not set + +# +# database +# +# CONFIG_PACKAGE_libsqlite2 is not set +# CONFIG_PACKAGE_libsqlite3 is not set + +# +# disc +# +# CONFIG_PACKAGE_libdevmapper is not set +# CONFIG_PACKAGE_alsa-lib is not set +# CONFIG_PACKAGE_argp-standalone is not set +# CONFIG_PACKAGE_argtable is not set +# CONFIG_PACKAGE_bluez-libs is not set +# CONFIG_PACKAGE_boost-date_time is not set +# CONFIG_PACKAGE_boost-filesystem is not set +# CONFIG_PACKAGE_boost-function_types is not set +# CONFIG_PACKAGE_boost-graph is not set +# CONFIG_PACKAGE_boost-iostreams is not set +# CONFIG_PACKAGE_boost-math is not set +# CONFIG_PACKAGE_boost-program_options is not set +# CONFIG_PACKAGE_boost-python is not set +# CONFIG_PACKAGE_boost-regex is not set +# CONFIG_PACKAGE_boost-serialization is not set +# CONFIG_PACKAGE_boost-signals is not set +# CONFIG_PACKAGE_boost-system is not set +# CONFIG_PACKAGE_boost-test is not set +# CONFIG_PACKAGE_boost-thread is not set +# CONFIG_PACKAGE_boost-wave is not set +# CONFIG_PACKAGE_ccid is not set +# CONFIG_PACKAGE_cgilib is not set +# CONFIG_PACKAGE_check is not set +# CONFIG_PACKAGE_clearsilver is not set +# CONFIG_PACKAGE_confuse is not set +# CONFIG_PACKAGE_credis is not set +# CONFIG_PACKAGE_directfb is not set +# CONFIG_PACKAGE_elfutils is not set +# CONFIG_PACKAGE_fcgi is not set +# CONFIG_PACKAGE_fftw3 is not set +# CONFIG_PACKAGE_firewall-mod-save is not set +# CONFIG_PACKAGE_fribidi is not set +# CONFIG_PACKAGE_giflib is not set +# CONFIG_PACKAGE_glib1 is not set +# CONFIG_PACKAGE_glib2 is not set +# CONFIG_PACKAGE_glibmm is not set +# CONFIG_PACKAGE_id3lib is not set +# CONFIG_PACKAGE_libIDL2 is not set +# CONFIG_PACKAGE_libaa is not set +# CONFIG_PACKAGE_libaio is not set +# CONFIG_PACKAGE_libamsel is not set +# CONFIG_PACKAGE_libao is not set +# CONFIG_PACKAGE_libapr is not set +# CONFIG_PACKAGE_libaprutil is not set +# CONFIG_PACKAGE_libart is not set +# CONFIG_PACKAGE_libatomicops is not set +# CONFIG_PACKAGE_libaudiofile is not set +# CONFIG_PACKAGE_libavahi is not set +# CONFIG_PACKAGE_libcares is not set +# CONFIG_PACKAGE_libcelt is not set +# CONFIG_PACKAGE_libcharset is not set +# CONFIG_PACKAGE_libcli is not set +# CONFIG_PACKAGE_libclinkc is not set +# CONFIG_PACKAGE_libconfig is not set +# CONFIG_PACKAGE_libcroco is not set +# CONFIG_PACKAGE_libcryptoxx is not set +# CONFIG_PACKAGE_libcurl is not set +# CONFIG_PACKAGE_libcwiid is not set +# CONFIG_PACKAGE_libdaemon is not set +# CONFIG_PACKAGE_libdb47 is not set +# CONFIG_PACKAGE_libdbi is not set +# CONFIG_PACKAGE_libdbus is not set +# CONFIG_PACKAGE_libdbus-glib is not set +# CONFIG_PACKAGE_libdlna is not set +# CONFIG_PACKAGE_libdnet is not set +# CONFIG_PACKAGE_libdvbpsi is not set +# CONFIG_PACKAGE_libdvdread is not set +# CONFIG_PACKAGE_libelf is not set +# CONFIG_PACKAGE_libevent is not set +# CONFIG_PACKAGE_libevent2 is not set +# CONFIG_PACKAGE_libeventlog is not set +# CONFIG_PACKAGE_libexif is not set +# CONFIG_PACKAGE_libexpat is not set +# CONFIG_PACKAGE_libexslt is not set +# CONFIG_PACKAGE_libezxml is not set +# CONFIG_PACKAGE_libfaad2 is not set +# CONFIG_PACKAGE_libffi is not set +# CONFIG_PACKAGE_libffi-sable is not set +# CONFIG_PACKAGE_libffmpeg is not set +# CONFIG_PACKAGE_libflac is not set +# CONFIG_PACKAGE_libfreetype is not set +# CONFIG_PACKAGE_libgconf2 is not set +# CONFIG_PACKAGE_libgcrypt is not set +# CONFIG_PACKAGE_libgd is not set +# CONFIG_PACKAGE_libgdbm is not set +# CONFIG_PACKAGE_libgmp is not set +# CONFIG_PACKAGE_libgpg-error is not set +# CONFIG_PACKAGE_libgphoto2 is not set +# CONFIG_PACKAGE_libgsl is not set +# CONFIG_PACKAGE_libgsm is not set +# CONFIG_PACKAGE_libgssapi is not set +# CONFIG_PACKAGE_libhowl is not set +# CONFIG_PACKAGE_libiconv is not set +# CONFIG_PACKAGE_libiconv-full is not set +# CONFIG_PACKAGE_libid3tag is not set +# CONFIG_PACKAGE_libidn is not set +# CONFIG_PACKAGE_libiksemel is not set +# CONFIG_PACKAGE_libinklevel is not set +# CONFIG_PACKAGE_libintl is not set +# CONFIG_PACKAGE_libintl-full is not set +CONFIG_PACKAGE_libiptc=y +# CONFIG_PACKAGE_libiw is not set +# CONFIG_PACKAGE_libjpeg is not set +# CONFIG_PACKAGE_libjs is not set +# CONFIG_PACKAGE_libjson is not set +# CONFIG_PACKAGE_libltdl is not set +# CONFIG_PACKAGE_liblua is not set +CONFIG_PACKAGE_liblzo=y +# CONFIG_PACKAGE_libmad is not set +# CONFIG_PACKAGE_libmagic is not set +# CONFIG_PACKAGE_libmcrypt is not set +# CONFIG_PACKAGE_libmicrohttpd is not set +# CONFIG_PACKAGE_libmikmod is not set +# CONFIG_PACKAGE_libmms is not set +# CONFIG_PACKAGE_libmpcdec is not set +# CONFIG_PACKAGE_libmpd is not set +# CONFIG_PACKAGE_libmysqlclient is not set +# CONFIG_PACKAGE_libmysqlclient_r is not set +CONFIG_PACKAGE_libncurses=y +# CONFIG_PACKAGE_libneon is not set +# CONFIG_PACKAGE_libnet0 is not set +# CONFIG_PACKAGE_libnet1 is not set +# CONFIG_PACKAGE_libnetfilter-conntrack is not set +# CONFIG_PACKAGE_libnetfilter-log is not set +# CONFIG_PACKAGE_libnetfilter-queue is not set +# CONFIG_PACKAGE_libnetsnmp is not set +# CONFIG_PACKAGE_libnfc is not set +# CONFIG_PACKAGE_libnfnetlink is not set +# CONFIG_PACKAGE_libnids is not set +# CONFIG_PACKAGE_libnl is not set +CONFIG_PACKAGE_libnl-tiny=y +# CONFIG_PACKAGE_libnmeap is not set +# CONFIG_PACKAGE_libogg is not set +# CONFIG_PACKAGE_liboil is not set +# CONFIG_PACKAGE_libol is not set +# CONFIG_PACKAGE_libopal is not set +# CONFIG_PACKAGE_libopencdk is not set +# CONFIG_PACKAGE_libopenh323 is not set +# CONFIG_PACKAGE_libopenldap is not set +# CONFIG_PACKAGE_liboping is not set +# CONFIG_PACKAGE_libortp is not set +# CONFIG_PACKAGE_libosip2 is not set +# CONFIG_PACKAGE_libowfat is not set +# CONFIG_PACKAGE_libpar2 is not set +# CONFIG_PACKAGE_libpcap is not set +# CONFIG_PACKAGE_libpcre is not set +# CONFIG_PACKAGE_libpcsclite is not set +# CONFIG_PACKAGE_libpng is not set +# CONFIG_PACKAGE_libpopt is not set +# CONFIG_PACKAGE_libpostproc is not set +# CONFIG_PACKAGE_libptmalloc3 is not set +# CONFIG_PACKAGE_libradiusclient-ng is not set +# CONFIG_PACKAGE_libre is not set +# CONFIG_PACKAGE_libreadline is not set +# CONFIG_PACKAGE_librpcsecgss is not set +# CONFIG_PACKAGE_librrd is not set +# CONFIG_PACKAGE_librrd1 is not set +# CONFIG_PACKAGE_librsync is not set +# CONFIG_PACKAGE_libruby is not set +# CONFIG_PACKAGE_libsamplerate is not set +# CONFIG_PACKAGE_libsasl2 is not set +# CONFIG_PACKAGE_libsdl is not set +# CONFIG_PACKAGE_libsdl-mixer is not set +# CONFIG_PACKAGE_libsdl-sound is not set +# CONFIG_PACKAGE_libsensors is not set +# CONFIG_PACKAGE_libshout is not set +# CONFIG_PACKAGE_libsigcxx is not set +# CONFIG_PACKAGE_libsndfile is not set +# CONFIG_PACKAGE_libsoup is not set +# CONFIG_PACKAGE_libspandsp is not set +# CONFIG_PACKAGE_libspeex is not set +# CONFIG_PACKAGE_libspeexdsp is not set +# CONFIG_PACKAGE_libswscale is not set +# CONFIG_PACKAGE_libsynce is not set +# CONFIG_PACKAGE_libtasn1 is not set +# CONFIG_PACKAGE_libtheora is not set +# CONFIG_PACKAGE_libtiff is not set +# CONFIG_PACKAGE_libtiffxx is not set +# CONFIG_PACKAGE_libtorrent is not set +# CONFIG_PACKAGE_libtwin is not set +CONFIG_PACKAGE_libuci=y +# CONFIG_PACKAGE_libuci-lua is not set +# CONFIG_PACKAGE_libucl is not set +# CONFIG_PACKAGE_libupnp is not set +# CONFIG_PACKAGE_libusb is not set +# CONFIG_PACKAGE_libusb-1.0 is not set +# CONFIG_PACKAGE_libv4l is not set +# CONFIG_PACKAGE_libvncserver is not set +# CONFIG_PACKAGE_libvorbis is not set +# CONFIG_PACKAGE_libvorbisidec is not set +# CONFIG_PACKAGE_libwrap is not set +# CONFIG_PACKAGE_libwxbase is not set +# CONFIG_PACKAGE_libxapian is not set +# CONFIG_PACKAGE_libxml2 is not set +# CONFIG_PACKAGE_libxslt is not set +CONFIG_PACKAGE_libxtables=y +# CONFIG_PACKAGE_linux-atm is not set +# CONFIG_PACKAGE_mxml is not set +# CONFIG_PACKAGE_nacl is not set +# CONFIG_PACKAGE_phidget21 is not set +# CONFIG_PACKAGE_poco is not set +# CONFIG_PACKAGE_pthsem is not set +# CONFIG_PACKAGE_ptlib is not set +# CONFIG_PACKAGE_pwlib is not set +# CONFIG_PACKAGE_radlib is not set +# CONFIG_PACKAGE_sane-libs is not set +# CONFIG_PACKAGE_serdisplib is not set +# CONFIG_PACKAGE_st2205tool is not set +# CONFIG_PACKAGE_taglib is not set +# CONFIG_PACKAGE_taglibc is not set +# CONFIG_PACKAGE_uclibcxx is not set +# CONFIG_PACKAGE_ustl is not set +# CONFIG_PACKAGE_xmlrpc-c is not set +# CONFIG_PACKAGE_xmlrpc-c-abyss is not set +# CONFIG_PACKAGE_xmlrpc-c-client is not set +# CONFIG_PACKAGE_xmlrpc-c-common is not set +# CONFIG_PACKAGE_xmlrpc-c-internal is not set +# CONFIG_PACKAGE_xmlrpc-c-server is not set +# CONFIG_PACKAGE_xmlrpc-c-server-abyss is not set +# CONFIG_PACKAGE_xmpp4r is not set +# CONFIG_PACKAGE_zaptel-libtonezone is not set +# CONFIG_PACKAGE_zaptel14-libtonezone is not set +CONFIG_PACKAGE_zlib=y + +# +# IPv6 +# + +# +# IPv6 attack and analyzing toolset (thc-ipv6) +# +# CONFIG_PACKAGE_alive6 is not set +# CONFIG_PACKAGE_detect-new-ip6 is not set +# CONFIG_PACKAGE_dos-new-ip6 is not set +# CONFIG_PACKAGE_fake_advertise6 is not set +# CONFIG_PACKAGE_fake_mipv6 is not set +# CONFIG_PACKAGE_fake_mld6 is not set +# CONFIG_PACKAGE_fake_router6 is not set +# CONFIG_PACKAGE_parasite6 is not set +# CONFIG_PACKAGE_redir6 is not set +# CONFIG_PACKAGE_rsmurf6 is not set +# CONFIG_PACKAGE_smurf6 is not set +# CONFIG_PACKAGE_toobig6 is not set + +# +# IPv6 discovery tools +# +# CONFIG_PACKAGE_ndisc6 is not set +# CONFIG_PACKAGE_rdisc6 is not set +# CONFIG_PACKAGE_rdnssd is not set +CONFIG_PACKAGE_tcptraceroute6=y + +# +# firewall +# +# CONFIG_PACKAGE_shorewall6-lite is not set + +# +# miredo: Teredo (IPv6 tunneling over UDP through NAT) +# +# CONFIG_PACKAGE_miredo-client is not set +# CONFIG_PACKAGE_miredo-common is not set +# CONFIG_PACKAGE_miredo-server is not set + +# +# wide-dhcpv6 +# +# CONFIG_PACKAGE_wide-dhcpv6-client is not set +# CONFIG_PACKAGE_wide-dhcpv6-control is not set +# CONFIG_PACKAGE_wide-dhcpv6-relay is not set +# CONFIG_PACKAGE_wide-dhcpv6-server is not set +# CONFIG_PACKAGE_6in4 is not set +# CONFIG_PACKAGE_6scripts is not set +# CONFIG_PACKAGE_6to4 is not set +# CONFIG_PACKAGE_6tunnel is not set +# CONFIG_PACKAGE_ahcpd is not set +# CONFIG_PACKAGE_aiccu is not set +# CONFIG_PACKAGE_dhcp6-client is not set +# CONFIG_PACKAGE_dhcp6-server is not set +# CONFIG_PACKAGE_dibbler-client is not set +# CONFIG_PACKAGE_dibbler-poslib is not set +# CONFIG_PACKAGE_dibbler-relay is not set +# CONFIG_PACKAGE_dibbler-server is not set +# CONFIG_PACKAGE_gw6c is not set +CONFIG_PACKAGE_ip6tables=y +# CONFIG_PACKAGE_ip6tables-utils is not set +# CONFIG_PACKAGE_ipv6calc is not set +# CONFIG_PACKAGE_mrd6 is not set +# CONFIG_PACKAGE_ptrtd is not set +# CONFIG_PACKAGE_radvd is not set +# CONFIG_PACKAGE_send is not set +# CONFIG_PACKAGE_totd is not set +# CONFIG_PACKAGE_tspc is not set + +# +# Kernel modules +# + +# +# Block Devices +# +# CONFIG_PACKAGE_kmod-aoe is not set +# CONFIG_PACKAGE_kmod-ata-core is not set +# CONFIG_PACKAGE_kmod-dm is not set +# CONFIG_PACKAGE_kmod-ide-core is not set +# CONFIG_PACKAGE_kmod-loop is not set +# CONFIG_PACKAGE_kmod-nbd is not set +# CONFIG_PACKAGE_kmod-scsi-core is not set +# CONFIG_PACKAGE_kmod-scsi-generic is not set + +# +# Cryptographic API modules +# +# CONFIG_PACKAGE_kmod-crypto-core is not set +# CONFIG_PACKAGE_kmod-loop-aes is not set + +# +# Filesystems +# +# CONFIG_PACKAGE_kmod-fs-autofs4 is not set +# CONFIG_PACKAGE_kmod-fs-btrfs is not set +# CONFIG_PACKAGE_kmod-fs-cifs is not set +# CONFIG_PACKAGE_kmod-fs-exportfs is not set +# CONFIG_PACKAGE_kmod-fs-ext2 is not set +# CONFIG_PACKAGE_kmod-fs-ext3 is not set +# CONFIG_PACKAGE_kmod-fs-ext4 is not set +# CONFIG_PACKAGE_kmod-fs-hfs is not set +# CONFIG_PACKAGE_kmod-fs-hfsplus is not set +# CONFIG_PACKAGE_kmod-fs-isofs is not set +# CONFIG_PACKAGE_kmod-fs-mbcache is not set +# CONFIG_PACKAGE_kmod-fs-minix is not set +# CONFIG_PACKAGE_kmod-fs-msdos is not set +# CONFIG_PACKAGE_kmod-fs-nfs is not set +# CONFIG_PACKAGE_kmod-fs-nfs-common is not set +# CONFIG_PACKAGE_kmod-fs-nfsd is not set +# CONFIG_PACKAGE_kmod-fs-ntfs is not set +# CONFIG_PACKAGE_kmod-fs-reiserfs is not set +# CONFIG_PACKAGE_kmod-fs-udf is not set +# CONFIG_PACKAGE_kmod-fs-vfat is not set +# CONFIG_PACKAGE_kmod-fs-xfs is not set +# CONFIG_PACKAGE_kmod-fuse is not set +# CONFIG_PACKAGE_kmod-nls-base is not set +# CONFIG_PACKAGE_kmod-nls-cp1250 is not set +# CONFIG_PACKAGE_kmod-nls-cp1251 is not set +# CONFIG_PACKAGE_kmod-nls-cp437 is not set +# CONFIG_PACKAGE_kmod-nls-cp775 is not set +# CONFIG_PACKAGE_kmod-nls-cp850 is not set +# CONFIG_PACKAGE_kmod-nls-cp852 is not set +# CONFIG_PACKAGE_kmod-nls-cp866 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-1 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set +# CONFIG_PACKAGE_kmod-nls-koi8r is not set +# CONFIG_PACKAGE_kmod-nls-utf8 is not set + +# +# FireWire support +# +# CONFIG_PACKAGE_kmod-ieee1394 is not set + +# +# Hardware Monitoring Support +# +# CONFIG_PACKAGE_kmod-hwmon-core is not set + +# +# I2C support +# +# CONFIG_PACKAGE_kmod-i2c-core is not set +# CONFIG_PACKAGE_kmod-i2c-gpio-custom is not set + +# +# Netfilter Extensions +# +# CONFIG_PACKAGE_kmod-arptables is not set +# CONFIG_PACKAGE_kmod-ebtables is not set +CONFIG_PACKAGE_kmod-ip6tables=y +CONFIG_PACKAGE_kmod-ipt-core=y +# CONFIG_PACKAGE_kmod-ipt-chaos is not set +# CONFIG_PACKAGE_kmod-ipt-compat-xtables is not set +# CONFIG_PACKAGE_kmod-ipt-condition is not set +CONFIG_PACKAGE_kmod-ipt-conntrack=y +CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y +# CONFIG_PACKAGE_kmod-ipt-delude is not set +# CONFIG_PACKAGE_kmod-ipt-extra is not set +CONFIG_PACKAGE_kmod-ipt-filter=y +CONFIG_PACKAGE_kmod-ipt-imq=y +CONFIG_PACKAGE_kmod-ipt-ipopt=y +# CONFIG_PACKAGE_kmod-ipt-ipp2p is not set +# CONFIG_PACKAGE_kmod-ipt-iprange is not set +# CONFIG_PACKAGE_kmod-ipt-ipsec is not set +# CONFIG_PACKAGE_kmod-ipt-ipset is not set +CONFIG_PACKAGE_kmod-ipt-nat=y +# CONFIG_PACKAGE_kmod-ipt-nat-extra is not set +CONFIG_PACKAGE_kmod-ipt-nathelper=y +# CONFIG_PACKAGE_kmod-ipt-nathelper-extra is not set +# CONFIG_PACKAGE_kmod-ipt-queue is not set +# CONFIG_PACKAGE_kmod-ipt-rawnat is not set +# CONFIG_PACKAGE_kmod-ipt-rawpost is not set +# CONFIG_PACKAGE_kmod-ipt-tarpit is not set +# CONFIG_PACKAGE_kmod-ipt-ulog is not set +# CONFIG_PACKAGE_kmod-nf-conntrack-netlink is not set +# CONFIG_PACKAGE_kmod-nfnetlink is not set +# CONFIG_PACKAGE_kmod-nfnetlink-log is not set +# CONFIG_PACKAGE_kmod-nfnetlink-queue is not set + +# +# Network Devices +# +# CONFIG_PACKAGE_kmod-dummy is not set +# CONFIG_PACKAGE_kmod-e1000 is not set +# CONFIG_PACKAGE_kmod-et131x is not set +# CONFIG_PACKAGE_kmod-gigaset is not set +# CONFIG_PACKAGE_kmod-hfcmulti is not set +# CONFIG_PACKAGE_kmod-libphy is not set +# CONFIG_PACKAGE_kmod-macvlan is not set +# CONFIG_PACKAGE_kmod-siit is not set +# CONFIG_PACKAGE_kmod-tg3 is not set + +# +# Network Support +# +# CONFIG_PACKAGE_kmod-appletalk is not set +# CONFIG_PACKAGE_kmod-atm is not set +# CONFIG_PACKAGE_kmod-ax25 is not set +# CONFIG_PACKAGE_kmod-batgat is not set +CONFIG_PACKAGE_kmod-batman-adv=y +# CONFIG_KMOD_BATMAN_ADV_DEBUG_LOG is not set +CONFIG_KMOD_BATMAN_ADV_BATCTL=y +# CONFIG_PACKAGE_kmod-bonding is not set +# CONFIG_PACKAGE_kmod-capi is not set +# CONFIG_PACKAGE_kmod-gre is not set +# CONFIG_PACKAGE_kmod-ip6-tunnel is not set +# CONFIG_PACKAGE_kmod-ipip is not set +# CONFIG_PACKAGE_kmod-ipsec is not set +# CONFIG_PACKAGE_kmod-iptunnel4 is not set +# CONFIG_PACKAGE_kmod-iptunnel6 is not set +CONFIG_PACKAGE_kmod-ipv6=y +# CONFIG_PACKAGE_kmod-isdn4linux is not set +# CONFIG_PACKAGE_kmod-misdn is not set +# CONFIG_PACKAGE_kmod-mp-alg is not set +# CONFIG_PACKAGE_kmod-openswan is not set +# CONFIG_PACKAGE_kmod-pktgen is not set +CONFIG_PACKAGE_kmod-ppp=y +# CONFIG_PACKAGE_kmod-mppe is not set +# CONFIG_PACKAGE_kmod-ppp-synctty is not set +# CONFIG_PACKAGE_kmod-pppoa is not set +CONFIG_PACKAGE_kmod-pppoe=y +# CONFIG_PACKAGE_kmod-pppol2tp is not set +CONFIG_PACKAGE_kmod-sched=y +# CONFIG_PACKAGE_kmod-sit is not set +CONFIG_PACKAGE_kmod-tun=y +# CONFIG_PACKAGE_kmod-wprobe is not set + +# +# OCF Configuration +# + +# +# Other modules +# +# CONFIG_PACKAGE_kmod-block2mtd is not set +# CONFIG_PACKAGE_kmod-bluetooth is not set +# CONFIG_PACKAGE_kmod-button-hotplug is not set +# CONFIG_PACKAGE_kmod-compcache is not set +CONFIG_PACKAGE_kmod-crc-ccitt=y +# CONFIG_PACKAGE_kmod-crc-itu-t is not set +# CONFIG_PACKAGE_kmod-crc16 is not set +# CONFIG_PACKAGE_kmod-crc7 is not set +# CONFIG_PACKAGE_kmod-eeprom-93cx6 is not set +# CONFIG_PACKAGE_kmod-gpio-dev is not set +# CONFIG_PACKAGE_kmod-gpiotoggling is not set +# CONFIG_PACKAGE_kmod-hid is not set +# CONFIG_PACKAGE_kmod-input-core is not set +# CONFIG_PACKAGE_kmod-input-evdev is not set +# CONFIG_PACKAGE_kmod-input-gpio-buttons is not set +# CONFIG_PACKAGE_kmod-input-gpio-keys is not set +# CONFIG_PACKAGE_kmod-input-joydev is not set +# CONFIG_PACKAGE_kmod-input-polldev is not set +# CONFIG_PACKAGE_kmod-leds-gpio is not set +# CONFIG_PACKAGE_kmod-ledtrig-morse is not set +# CONFIG_PACKAGE_kmod-ledtrig-netdev is not set +# CONFIG_PACKAGE_kmod-mmc is not set +# CONFIG_PACKAGE_kmod-mmc-over-gpio is not set +# CONFIG_PACKAGE_kmod-pcspkr is not set +# CONFIG_PACKAGE_kmod-softdog is not set +# CONFIG_PACKAGE_kmod-ssb is not set +CONFIG_PACKAGE_kmod-textsearch=y +# CONFIG_PACKAGE_kmod-ucmb is not set +# CONFIG_PACKAGE_kmod-wrt55agv2-spidevs is not set +# CONFIG_PACKAGE_kmod-zaptel14 is not set +# CONFIG_PACKAGE_kmod-zaptel14-wctdm is not set +# CONFIG_PACKAGE_kmod-zaptel14-wcusb is not set + +# +# SPI Support +# +# CONFIG_PACKAGE_kmod-mmc-spi is not set +# CONFIG_PACKAGE_kmod-spi-bitbang is not set +# CONFIG_PACKAGE_kmod-spi-dev is not set +# CONFIG_PACKAGE_kmod-spi-gpio is not set +# CONFIG_PACKAGE_kmod-spi-gpio-old is not set +# CONFIG_PACKAGE_kmod-spi-ks8995 is not set + +# +# Sound Support +# +# CONFIG_PACKAGE_kmod-sound-core is not set + +# +# USB Support +# +# CONFIG_PACKAGE_kmod-usb-core is not set +# CONFIG_PACKAGE_kmod-usbip is not set + +# +# Video Support +# +# CONFIG_PACKAGE_kmod-video-core is not set + +# +# Voice over IP +# + +# +# W1 support +# +# CONFIG_PACKAGE_kmod-w1 is not set + +# +# Wireless Drivers +# +# CONFIG_PACKAGE_kmod-acx is not set +# CONFIG_PACKAGE_kmod-ath is not set +# CONFIG_PACKAGE_kmod-ath5k is not set +# CONFIG_PACKAGE_kmod-ath9k is not set +# CONFIG_PACKAGE_kmod-b43 is not set +# CONFIG_PACKAGE_kmod-b43legacy is not set +# CONFIG_PACKAGE_kmod-carl9170 is not set +# CONFIG_PACKAGE_kmod-cfg80211 is not set +# CONFIG_PACKAGE_kmod-hostap is not set +# CONFIG_PACKAGE_kmod-hostap-pci is not set +# CONFIG_PACKAGE_kmod-hostap-plx is not set +# CONFIG_PACKAGE_kmod-lib80211 is not set +# CONFIG_PACKAGE_kmod-libertas-sd is not set +# CONFIG_PACKAGE_kmod-libertas-usb is not set +# CONFIG_PACKAGE_kmod-mac80211 is not set +# CONFIG_PACKAGE_kmod-mac80211-hwsim is not set +CONFIG_PACKAGE_kmod-madwifi=y + +# +# Configuration +# +# CONFIG_MADWIFI_COMPRESSION is not set +CONFIG_MADWIFI_SINGLE_MODULE=y +CONFIG_MADWIFI_RCA_MINSTREL=y +# CONFIG_MADWIFI_RCA_SAMPLERATE is not set +# CONFIG_PACKAGE_kmod-mwl8k is not set +# CONFIG_PACKAGE_kmod-net-airo is not set +# CONFIG_PACKAGE_kmod-net-hermes is not set +# CONFIG_PACKAGE_kmod-net-hermes-pci is not set +# CONFIG_PACKAGE_kmod-net-hermes-plx is not set +# CONFIG_PACKAGE_kmod-net-ipw2100 is not set +# CONFIG_PACKAGE_kmod-net-ipw2200 is not set +# CONFIG_PACKAGE_kmod-net-libipw is not set +# CONFIG_PACKAGE_kmod-net-prism54 is not set +# CONFIG_PACKAGE_kmod-p54-common is not set +# CONFIG_PACKAGE_kmod-p54-pci is not set +# CONFIG_PACKAGE_kmod-p54-usb is not set +# CONFIG_PACKAGE_kmod-rt2400-pci is not set +# CONFIG_PACKAGE_kmod-rt2500-pci is not set +# CONFIG_PACKAGE_kmod-rt2500-usb is not set +# CONFIG_PACKAGE_kmod-rt2800-lib is not set +# CONFIG_PACKAGE_kmod-rt2800-pci is not set +# CONFIG_PACKAGE_kmod-rt2800-usb is not set +# CONFIG_PACKAGE_kmod-rt2x00-lib is not set +# CONFIG_PACKAGE_kmod-rt2x00-pci is not set +# CONFIG_PACKAGE_kmod-rt2x00-usb is not set +# CONFIG_PACKAGE_kmod-rt61-pci is not set +# CONFIG_PACKAGE_kmod-rt73-usb is not set +# CONFIG_PACKAGE_kmod-rtl8180 is not set +# CONFIG_PACKAGE_kmod-rtl8187 is not set +# CONFIG_PACKAGE_kmod-zd1211rw is not set + +# +# Xen paravirtualized guest support +# + +# +# Boot Loaders +# + +# +# Multimedia +# +# CONFIG_PACKAGE_GraphicsMagick is not set +# CONFIG_PACKAGE_GraphicsMagick-jpeg is not set +# CONFIG_PACKAGE_ffmpeg is not set +# CONFIG_PACKAGE_ffserver is not set +# CONFIG_PACKAGE_fswebcam is not set +# CONFIG_PACKAGE_ftpd-topfield is not set +# CONFIG_PACKAGE_gphoto2 is not set +# CONFIG_PACKAGE_gst-mod-alsa is not set +# CONFIG_PACKAGE_gst-mod-app is not set +# CONFIG_PACKAGE_gst-mod-audioconvert is not set +# CONFIG_PACKAGE_gst-mod-audiofx is not set +# CONFIG_PACKAGE_gst-mod-audiorate is not set +# CONFIG_PACKAGE_gst-mod-audioresample is not set +# CONFIG_PACKAGE_gst-mod-audiotestsrc is not set +# CONFIG_PACKAGE_gst-mod-autodetect is not set +# CONFIG_PACKAGE_gst-mod-cutter is not set +# CONFIG_PACKAGE_gst-mod-debug is not set +# CONFIG_PACKAGE_gst-mod-decodebin is not set +# CONFIG_PACKAGE_gst-mod-decodebin2 is not set +# CONFIG_PACKAGE_gst-mod-equalizer is not set +# CONFIG_PACKAGE_gst-mod-flac is not set +# CONFIG_PACKAGE_gst-mod-gio is not set +# CONFIG_PACKAGE_gst-mod-id3demux is not set +# CONFIG_PACKAGE_gst-mod-interleave is not set +# CONFIG_PACKAGE_gst-mod-lame is not set +# CONFIG_PACKAGE_gst-mod-level is not set +# CONFIG_PACKAGE_gst-mod-mad is not set +# CONFIG_PACKAGE_gst-mod-multifile is not set +# CONFIG_PACKAGE_gst-mod-multipart is not set +# CONFIG_PACKAGE_gst-mod-ogg is not set +# CONFIG_PACKAGE_gst-mod-ossaudio is not set +# CONFIG_PACKAGE_gst-mod-playbin is not set +# CONFIG_PACKAGE_gst-mod-replaygain is not set +# CONFIG_PACKAGE_gst-mod-rtp is not set +# CONFIG_PACKAGE_gst-mod-rtsp is not set +# CONFIG_PACKAGE_gst-mod-spectrum is not set +# CONFIG_PACKAGE_gst-mod-tcp is not set +# CONFIG_PACKAGE_gst-mod-theora is not set +# CONFIG_PACKAGE_gst-mod-typefindfunctions is not set +# CONFIG_PACKAGE_gst-mod-udp is not set +# CONFIG_PACKAGE_gst-mod-videotestsrc is not set +# CONFIG_PACKAGE_gst-mod-volume is not set +# CONFIG_PACKAGE_gst-mod-vorbis is not set +# CONFIG_PACKAGE_gst-mod-wavenc is not set +# CONFIG_PACKAGE_gst-mod-wavparse is not set +# CONFIG_PACKAGE_gst-plugins-base is not set +# CONFIG_PACKAGE_gst-plugins-good is not set +# CONFIG_PACKAGE_gst-plugins-ugly is not set +# CONFIG_PACKAGE_gstreamer is not set +# CONFIG_PACKAGE_gstreamer-utils is not set +# CONFIG_PACKAGE_hasciicam is not set +# CONFIG_PACKAGE_imagemagick is not set +# CONFIG_PACKAGE_imagemagick-jpeg is not set +# CONFIG_PACKAGE_imagemagick-png is not set +# CONFIG_PACKAGE_kissdx is not set +# CONFIG_PACKAGE_libgstapp is not set +# CONFIG_PACKAGE_libgstaudio is not set +# CONFIG_PACKAGE_libgstcdda is not set +# CONFIG_PACKAGE_libgstcheck is not set +# CONFIG_PACKAGE_libgstcontroller is not set +# CONFIG_PACKAGE_libgstdataprotocol is not set +# CONFIG_PACKAGE_libgstfft is not set +# CONFIG_PACKAGE_libgstinterfaces is not set +# CONFIG_PACKAGE_libgstnet is not set +# CONFIG_PACKAGE_libgstnetbuffer is not set +# CONFIG_PACKAGE_libgstpbutils is not set +# CONFIG_PACKAGE_libgstreamer is not set +# CONFIG_PACKAGE_libgstriff is not set +# CONFIG_PACKAGE_libgstrtp is not set +# CONFIG_PACKAGE_libgstrtsp is not set +# CONFIG_PACKAGE_libgstsdp is not set +# CONFIG_PACKAGE_libgsttag is not set +# CONFIG_PACKAGE_libgstvideo is not set +# CONFIG_PACKAGE_minidlna is not set +# CONFIG_PACKAGE_mjpg-streamer is not set +# CONFIG_PACKAGE_motion is not set +# CONFIG_PACKAGE_palantir is not set +# CONFIG_PACKAGE_peercast is not set +# CONFIG_PACKAGE_puppy is not set +# CONFIG_PACKAGE_spcacat is not set +# CONFIG_PACKAGE_streamripper is not set +# CONFIG_PACKAGE_ushare is not set +# CONFIG_PACKAGE_vips is not set + +# +# Administration +# + +# +# zabbix +# +# CONFIG_PACKAGE_zabbix-agent is not set +# CONFIG_PACKAGE_zabbix-sender is not set +# CONFIG_PACKAGE_zabbix-server is not set +# CONFIG_PACKAGE_gkrellmd is not set +# CONFIG_PACKAGE_htop is not set +# CONFIG_PACKAGE_monit is not set +# CONFIG_PACKAGE_monit-nossl is not set +# CONFIG_PACKAGE_muninlite is not set +# CONFIG_PACKAGE_osirisd is not set +# CONFIG_PACKAGE_sudo is not set +# CONFIG_PACKAGE_syslog-ng is not set +# CONFIG_PACKAGE_syslog-ng3 is not set + +# +# Utilities +# + +# +# Boot Loaders +# + +# +# Editors +# +# CONFIG_PACKAGE_joe is not set +# CONFIG_PACKAGE_mg is not set +CONFIG_PACKAGE_nano=y +# CONFIG_PACKAGE_vim is not set +# CONFIG_PACKAGE_vim-full is not set +# CONFIG_PACKAGE_vim-help is not set +# CONFIG_PACKAGE_vim-runtime is not set +# CONFIG_PACKAGE_zile is not set + +# +# Filesystem +# +# CONFIG_PACKAGE_badblocks is not set +# CONFIG_PACKAGE_blkid is not set +# CONFIG_PACKAGE_btrfs-progs is not set +# CONFIG_PACKAGE_cifsmount is not set +# CONFIG_PACKAGE_disktype is not set +# CONFIG_PACKAGE_dosfsck is not set +# CONFIG_PACKAGE_dosfslabel is not set +# CONFIG_PACKAGE_e2fsprogs is not set +# CONFIG_PACKAGE_mkdosfs is not set +# CONFIG_PACKAGE_nfs-utils is not set +# CONFIG_PACKAGE_ntfs-3g is not set +# CONFIG_PACKAGE_ntfs-3g-low is not set +# CONFIG_PACKAGE_ntfs-3g-utils is not set +# CONFIG_PACKAGE_ntfsprogs is not set +# CONFIG_PACKAGE_owshell is not set +# CONFIG_PACKAGE_reiserfsprogs is not set +# CONFIG_PACKAGE_resize2fs is not set +# CONFIG_PACKAGE_sysfsutils is not set +# CONFIG_PACKAGE_tune2fs is not set +# CONFIG_PACKAGE_uuidgen is not set + +# +# SSL +# +# CONFIG_PACKAGE_certtool is not set +# CONFIG_PACKAGE_gnutls-utils is not set +# CONFIG_PACKAGE_polarssl-progs is not set + +# +# Sound +# +# CONFIG_PACKAGE_liblo-utils is not set + +# +# Terminal +# +# CONFIG_PACKAGE_microcom is not set +# CONFIG_PACKAGE_minicom is not set +# CONFIG_PACKAGE_picocom is not set +# CONFIG_PACKAGE_script is not set +# CONFIG_PACKAGE_setserial is not set +# CONFIG_PACKAGE_setterm is not set + +# +# backup +# +# CONFIG_PACKAGE_rdiff-backup is not set + +# +# compression +# +# CONFIG_PACKAGE_unzip is not set +# CONFIG_PACKAGE_zip is not set + +# +# database +# +# CONFIG_PACKAGE_mysql-server is not set +# CONFIG_PACKAGE_sqlite2-cli is not set +# CONFIG_PACKAGE_sqlite3-cli is not set + +# +# disc +# +# CONFIG_PACKAGE_cfdisk is not set +# CONFIG_PACKAGE_devio is not set +# CONFIG_PACKAGE_fdisk is not set +# CONFIG_PACKAGE_hd-idle is not set +# CONFIG_PACKAGE_hdparm is not set +# CONFIG_PACKAGE_lvm2 is not set +# CONFIG_PACKAGE_sdparm is not set +# CONFIG_PACKAGE_sfdisk is not set +# CONFIG_PACKAGE_swap-utils is not set + +# +# filemanager +# +# CONFIG_PACKAGE_deco is not set +# CONFIG_PACKAGE_mc is not set +# CONFIG_PACKAGE_alsa-utils is not set +# CONFIG_PACKAGE_alsa-utils-tests is not set +# CONFIG_PACKAGE_anyremote is not set +# CONFIG_PACKAGE_ap51-flash is not set +# CONFIG_PACKAGE_apcupsd is not set +# CONFIG_PACKAGE_at is not set +# CONFIG_PACKAGE_avrdude is not set +# CONFIG_PACKAGE_avrusbboot is not set +# CONFIG_PACKAGE_bandwidthd is not set +# CONFIG_PACKAGE_bash is not set +# CONFIG_PACKAGE_bash-completion is not set +# CONFIG_PACKAGE_bc is not set +# CONFIG_PACKAGE_bemusedlinuxserver is not set +# CONFIG_PACKAGE_bluez-hcidump is not set +# CONFIG_PACKAGE_bluez-utils is not set +# CONFIG_PACKAGE_bzip2 is not set +# CONFIG_PACKAGE_calvaria is not set +# CONFIG_PACKAGE_ccrypt is not set +# CONFIG_PACKAGE_cdparanoia is not set +# CONFIG_PACKAGE_cksfv is not set +# CONFIG_PACKAGE_cmdpad is not set +# CONFIG_PACKAGE_collectd is not set +# CONFIG_PACKAGE_comgt is not set +# CONFIG_PACKAGE_coreutils is not set +# CONFIG_PACKAGE_crypto-tools is not set +# CONFIG_PACKAGE_cryptsetup is not set +# CONFIG_PACKAGE_daemontools is not set +# CONFIG_PACKAGE_dbus is not set +# CONFIG_PACKAGE_devmem2 is not set +# CONFIG_PACKAGE_dfu-util is not set +# CONFIG_PACKAGE_dialog is not set +# CONFIG_PACKAGE_digitemp is not set +# CONFIG_PACKAGE_digitemp-usb is not set +# CONFIG_PACKAGE_dir300-flash is not set +# CONFIG_PACKAGE_dropbearconvert is not set +# CONFIG_PACKAGE_dt is not set +# CONFIG_PACKAGE_dtach is not set +# CONFIG_PACKAGE_empty is not set +# CONFIG_PACKAGE_event_test is not set +# CONFIG_PACKAGE_fancontroled is not set +# CONFIG_PACKAGE_fconfig is not set +# CONFIG_PACKAGE_file is not set +# CONFIG_PACKAGE_firmwarehotplug is not set +# CONFIG_PACKAGE_flock is not set +# CONFIG_PACKAGE_fortune-mod is not set +# CONFIG_PACKAGE_fowsr is not set +# CONFIG_PACKAGE_fxload is not set +# CONFIG_PACKAGE_gconf2 is not set +# CONFIG_PACKAGE_gdb is not set +# CONFIG_PACKAGE_gdbserver is not set +# CONFIG_PACKAGE_gnokii is not set +# CONFIG_PACKAGE_gnupg is not set +# CONFIG_PACKAGE_gnuplot is not set +CONFIG_PACKAGE_gpioctl=y +# CONFIG_PACKAGE_gsm-utils is not set +# CONFIG_PACKAGE_gzip is not set +# CONFIG_PACKAGE_haserl is not set +# CONFIG_PACKAGE_heyu is not set +# CONFIG_PACKAGE_hplip is not set +# CONFIG_PACKAGE_huaweiaktbbo is not set +# CONFIG_PACKAGE_hwclock is not set +# CONFIG_PACKAGE_i2c-tools is not set +# CONFIG_PACKAGE_iconv is not set +# CONFIG_PACKAGE_ink is not set +# CONFIG_PACKAGE_input-utils is not set +# CONFIG_PACKAGE_io is not set +# CONFIG_PACKAGE_ipmitool is not set +# CONFIG_PACKAGE_jpeg-tools is not set +# CONFIG_PACKAGE_kexec-tools is not set +# CONFIG_PACKAGE_kmemtrace-user is not set +# CONFIG_PACKAGE_ksymoops is not set +# CONFIG_PACKAGE_lcd4linux is not set +# CONFIG_PACKAGE_lcdproc is not set +# CONFIG_PACKAGE_ldconfig is not set +# CONFIG_PACKAGE_ldd is not set +# CONFIG_PACKAGE_less is not set +# CONFIG_PACKAGE_libnfc-examples is not set +# CONFIG_PACKAGE_lirc is not set +# CONFIG_PACKAGE_lm-sensors is not set +# CONFIG_PACKAGE_logrotate is not set +# CONFIG_PACKAGE_losetup is not set +# CONFIG_PACKAGE_lrzsz is not set +# CONFIG_PACKAGE_lsof is not set +# CONFIG_PACKAGE_macchanger is not set +# CONFIG_PACKAGE_mdadm is not set +# CONFIG_PACKAGE_memtester is not set +# CONFIG_PACKAGE_mgetty is not set +# CONFIG_PACKAGE_mount-utils is not set +# CONFIG_PACKAGE_mtd-utils is not set +# CONFIG_PACKAGE_nprobe is not set +# CONFIG_PACKAGE_ocf-crypto-headers is not set +# CONFIG_PACKAGE_open2300 is not set +# CONFIG_PACKAGE_openldap-utils is not set +# CONFIG_PACKAGE_openssl-util is not set +# CONFIG_PACKAGE_pciutils is not set +# CONFIG_PACKAGE_pcscd is not set +# CONFIG_PACKAGE_pipacs is not set +# CONFIG_PACKAGE_powertop is not set +# CONFIG_PACKAGE_procps is not set +# CONFIG_PACKAGE_psmisc is not set +# CONFIG_PACKAGE_psplash is not set +# CONFIG_PACKAGE_pv is not set +# CONFIG_PACKAGE_pwcrypt is not set +# CONFIG_PACKAGE_pwgen is not set +# CONFIG_PACKAGE_pwrtray-backend is not set +# CONFIG_PACKAGE_px5g is not set +# CONFIG_PACKAGE_qc-usb-utils is not set +# CONFIG_PACKAGE_rcs is not set +# CONFIG_PACKAGE_restorefactory is not set +# CONFIG_PACKAGE_robocfg is not set +# CONFIG_PACKAGE_rrdcgi is not set +# CONFIG_PACKAGE_rrdcgi1 is not set +# CONFIG_PACKAGE_rrdcollect is not set +# CONFIG_PACKAGE_rrdtool is not set +# CONFIG_PACKAGE_rrdtool1 is not set +# CONFIG_PACKAGE_sane-backends is not set +# CONFIG_PACKAGE_sane-frontends is not set +# CONFIG_PACKAGE_schedtool is not set +# CONFIG_PACKAGE_scponly is not set +# CONFIG_PACKAGE_screen is not set +# CONFIG_PACKAGE_sed is not set +# CONFIG_PACKAGE_setpwc is not set +# CONFIG_PACKAGE_shadow is not set +# CONFIG_PACKAGE_shadow-groupadd is not set +# CONFIG_PACKAGE_shadow-groupdel is not set +# CONFIG_PACKAGE_shadow-groupmod is not set +# CONFIG_PACKAGE_shadow-useradd is not set +# CONFIG_PACKAGE_shadow-userdel is not set +# CONFIG_PACKAGE_shadow-usermod is not set +# CONFIG_PACKAGE_sispmctl is not set +# CONFIG_PACKAGE_smartmontools is not set +# CONFIG_PACKAGE_spidev-test is not set +# CONFIG_PACKAGE_ssldump is not set +# CONFIG_PACKAGE_strace is not set +# CONFIG_PACKAGE_stress is not set +# CONFIG_PACKAGE_sysstat is not set +# CONFIG_PACKAGE_tar is not set +# CONFIG_PACKAGE_tcsh is not set +# CONFIG_PACKAGE_tiff-utils is not set +# CONFIG_PACKAGE_tmux is not set +# CONFIG_PACKAGE_triggerhappy is not set +# CONFIG_PACKAGE_uboot-envtools is not set +# CONFIG_PACKAGE_ucmb-tools is not set +# CONFIG_PACKAGE_unrar is not set +# CONFIG_PACKAGE_upx is not set +# CONFIG_PACKAGE_usb-modeswitch is not set +# CONFIG_PACKAGE_usbutils is not set +# CONFIG_PACKAGE_watchcat is not set +# CONFIG_PACKAGE_wifitoggle is not set +# CONFIG_PACKAGE_wminput is not set +# CONFIG_PACKAGE_xsltproc is not set +# CONFIG_PACKAGE_zaptel14-util is not set + +# +# Extra packages +# +# CONFIG_PACKAGE_libdmapsharing is not set + +# +# Development +# +# CONFIG_PACKAGE_binutils is not set +# CONFIG_PACKAGE_cppunit is not set +# CONFIG_PACKAGE_diffutils is not set +# CONFIG_PACKAGE_dmalloc-utils is not set +# CONFIG_PACKAGE_libdmalloc is not set +# CONFIG_PACKAGE_make is not set +# CONFIG_PACKAGE_objdump is not set +# CONFIG_PACKAGE_patch is not set +# CONFIG_PACKAGE_python-sip is not set + +# +# Sound +# +# CONFIG_PACKAGE_empcd is not set +# CONFIG_PACKAGE_faad2 is not set +# CONFIG_PACKAGE_flite is not set +# CONFIG_PACKAGE_ices is not set +# CONFIG_PACKAGE_lame is not set +# CONFIG_PACKAGE_lame-lib is not set +# CONFIG_PACKAGE_madplay is not set +# CONFIG_PACKAGE_mpc is not set +# CONFIG_PACKAGE_mpd is not set +# CONFIG_PACKAGE_mpdas is not set +# CONFIG_PACKAGE_mt-daapd is not set +# CONFIG_PACKAGE_pa-tools is not set +# CONFIG_PACKAGE_pulseaudio is not set +# CONFIG_PACKAGE_scmpc is not set +# CONFIG_PACKAGE_shell-fm is not set +# CONFIG_PACKAGE_sox is not set + +# +# Languages +# + +# +# Erlang +# +# CONFIG_PACKAGE_erlang is not set +# CONFIG_PACKAGE_erlang-asn1 is not set +# CONFIG_PACKAGE_erlang-compiler is not set +# CONFIG_PACKAGE_erlang-crypto is not set +# CONFIG_PACKAGE_erlang-hipe is not set +# CONFIG_PACKAGE_erlang-inets is not set +# CONFIG_PACKAGE_erlang-mnesia is not set +# CONFIG_PACKAGE_erlang-runtime-tools is not set +# CONFIG_PACKAGE_erlang-snmp is not set +# CONFIG_PACKAGE_erlang-ssh is not set +# CONFIG_PACKAGE_erlang-ssl is not set +# CONFIG_PACKAGE_erlang-syntax-tools is not set + +# +# Java +# +# CONFIG_PACKAGE_sablevm is not set +# CONFIG_PACKAGE_sablevm-mini is not set + +# +# JavaScript +# +# CONFIG_PACKAGE_js is not set + +# +# Lua +# +# CONFIG_PACKAGE_lsqlite3 is not set +# CONFIG_PACKAGE_lua is not set +# CONFIG_PACKAGE_luac is not set +# CONFIG_PACKAGE_luaexpat is not set +# CONFIG_PACKAGE_luafilesystem is not set +# CONFIG_PACKAGE_luaprofiler is not set +# CONFIG_PACKAGE_luasec is not set +# CONFIG_PACKAGE_luasocket is not set +# CONFIG_PACKAGE_luasql-mysql is not set +# CONFIG_PACKAGE_luasql-sqlite3 is not set + +# +# PHP +# +# CONFIG_PACKAGE_php-pear is not set +# CONFIG_PACKAGE_php4 is not set +# CONFIG_PACKAGE_php5 is not set + +# +# Perl +# +# CONFIG_PACKAGE_microperl is not set +# CONFIG_PACKAGE_perl is not set + +# +# Python +# +# CONFIG_PACKAGE_cython is not set +# CONFIG_PACKAGE_dbus-python is not set +# CONFIG_PACKAGE_distribute is not set +# CONFIG_PACKAGE_gst-python is not set +# CONFIG_PACKAGE_ipython is not set +# CONFIG_PACKAGE_libyaml is not set +# CONFIG_PACKAGE_logilab-astng is not set +# CONFIG_PACKAGE_logilab-common is not set +# CONFIG_PACKAGE_pycairo is not set +# CONFIG_PACKAGE_pyopenssl is not set +# CONFIG_PACKAGE_pyqt4 is not set +# CONFIG_PACKAGE_pyserial is not set +# CONFIG_PACKAGE_python is not set +# CONFIG_PACKAGE_python-bluez is not set +# CONFIG_PACKAGE_python-cjson is not set +# CONFIG_PACKAGE_python-crypto is not set +# CONFIG_PACKAGE_python-curl is not set +# CONFIG_PACKAGE_python-cwiid is not set +# CONFIG_PACKAGE_python-doc is not set +# CONFIG_PACKAGE_python-egenix-mx is not set +# CONFIG_PACKAGE_python-event is not set +# CONFIG_PACKAGE_python-expat is not set +# CONFIG_PACKAGE_python-gdbm is not set +# CONFIG_PACKAGE_python-gobject is not set +# CONFIG_PACKAGE_python-gzip is not set +# CONFIG_PACKAGE_python-ifconfig is not set +# CONFIG_PACKAGE_python-json is not set +# CONFIG_PACKAGE_python-kid is not set +# CONFIG_PACKAGE_python-mini is not set +# CONFIG_PACKAGE_python-mysql is not set +# CONFIG_PACKAGE_python-openssl is not set +# CONFIG_PACKAGE_python-pcap is not set +# CONFIG_PACKAGE_python-rrd is not set +# CONFIG_PACKAGE_python-shutil is not set +# CONFIG_PACKAGE_python-smbus is not set +# CONFIG_PACKAGE_python-sqlite is not set +# CONFIG_PACKAGE_python-sqlite3 is not set +# CONFIG_PACKAGE_python-xapian is not set +# CONFIG_PACKAGE_python-yapsnmp is not set +# CONFIG_PACKAGE_python2-chardet is not set +# CONFIG_PACKAGE_pyusb is not set +# CONFIG_PACKAGE_pyxdg is not set +# CONFIG_PACKAGE_pyyaml is not set +# CONFIG_PACKAGE_telepathy-python is not set + +# +# Ruby +# +# CONFIG_PACKAGE_ruby is not set +# CONFIG_PACKAGE_eggdrop is not set +# CONFIG_PACKAGE_sigscheme is not set +# CONFIG_PACKAGE_tcl is not set +# CONFIG_PACKAGE_urbi is not set + +# +# Mail +# +# CONFIG_PACKAGE_dovecot is not set +# CONFIG_PACKAGE_fetchmail is not set +# CONFIG_PACKAGE_fetchmail-nossl is not set +# CONFIG_PACKAGE_imapfilter is not set +# CONFIG_PACKAGE_mini-sendmail is not set +# CONFIG_PACKAGE_msmtp is not set +# CONFIG_PACKAGE_msmtp-nossl is not set +# CONFIG_PACKAGE_mutt is not set +# CONFIG_PACKAGE_nullmailer is not set +# CONFIG_PACKAGE_procmail is not set +# CONFIG_PACKAGE_ssmtp is not set +# CONFIG_PACKAGE_xmail is not set + +# +# Xorg +# + +# +# app +# +# CONFIG_PACKAGE_iceauth is not set +# CONFIG_PACKAGE_pwrtray is not set + +# +# data +# +# CONFIG_PACKAGE_xbitmaps is not set + +# +# driver +# + +# +# font +# +# CONFIG_PACKAGE_liberation-fonts-ttf is not set + +# +# font-utils +# +# CONFIG_PACKAGE_fontconfig is not set + +# +# framework +# +# CONFIG_PACKAGE_qt4 is not set + +# +# libraries +# +# CONFIG_PACKAGE_atk is not set +# CONFIG_PACKAGE_cairo is not set +# CONFIG_PACKAGE_cairomm is not set +# CONFIG_PACKAGE_hippo-canvas is not set +# CONFIG_PACKAGE_libICE is not set +# CONFIG_PACKAGE_libSM is not set +# CONFIG_PACKAGE_libXau is not set +# CONFIG_PACKAGE_libXdmcp is not set +# CONFIG_PACKAGE_libXfont is not set +# CONFIG_PACKAGE_libast is not set +# CONFIG_PACKAGE_libdrm is not set +# CONFIG_PACKAGE_libfontenc is not set +# CONFIG_PACKAGE_libpciaccess is not set +# CONFIG_PACKAGE_librsvg is not set +# CONFIG_PACKAGE_libxcb is not set +# CONFIG_PACKAGE_libxcb-composite is not set +# CONFIG_PACKAGE_libxcb-damage is not set +# CONFIG_PACKAGE_libxcb-dpms is not set +# CONFIG_PACKAGE_libxcb-glx is not set +# CONFIG_PACKAGE_libxcb-randr is not set +# CONFIG_PACKAGE_libxcb-record is not set +# CONFIG_PACKAGE_libxcb-render is not set +# CONFIG_PACKAGE_libxcb-res is not set +# CONFIG_PACKAGE_libxcb-screensaver is not set +# CONFIG_PACKAGE_libxcb-shape is not set +# CONFIG_PACKAGE_libxcb-shm is not set +# CONFIG_PACKAGE_libxcb-sync is not set +# CONFIG_PACKAGE_libxcb-xevie is not set +# CONFIG_PACKAGE_libxcb-xf86dri is not set +# CONFIG_PACKAGE_libxcb-xfixes is not set +# CONFIG_PACKAGE_libxcb-xinerama is not set +# CONFIG_PACKAGE_libxcb-xlib is not set +# CONFIG_PACKAGE_libxcb-xprint is not set +# CONFIG_PACKAGE_libxcb-xtest is not set +# CONFIG_PACKAGE_libxcb-xv is not set +# CONFIG_PACKAGE_libxcb-xvmc is not set +# CONFIG_PACKAGE_orbit2 is not set +# CONFIG_PACKAGE_pango is not set +# CONFIG_PACKAGE_pangomm is not set +# CONFIG_PACKAGE_pixman is not set +# CONFIG_PACKAGE_tslib is not set +# CONFIG_PACKAGE_xtrans is not set + +# +# proto +# +# CONFIG_PACKAGE_applewmproto is not set +# CONFIG_PACKAGE_bigreqsproto is not set +# CONFIG_PACKAGE_calibrateproto is not set +# CONFIG_PACKAGE_compositeproto is not set +# CONFIG_PACKAGE_damageproto is not set +# CONFIG_PACKAGE_dmxproto is not set +# CONFIG_PACKAGE_dri2proto is not set +# CONFIG_PACKAGE_fixesproto is not set +# CONFIG_PACKAGE_fontcacheproto is not set +# CONFIG_PACKAGE_fontsproto is not set +# CONFIG_PACKAGE_glproto is not set +# CONFIG_PACKAGE_inputproto is not set +# CONFIG_PACKAGE_kbproto is not set +# CONFIG_PACKAGE_printproto is not set +# CONFIG_PACKAGE_randrproto is not set +# CONFIG_PACKAGE_recordproto is not set +# CONFIG_PACKAGE_renderproto is not set +# CONFIG_PACKAGE_resourceproto is not set +# CONFIG_PACKAGE_scrnsaverproto is not set +# CONFIG_PACKAGE_videoproto is not set +# CONFIG_PACKAGE_windowswmproto is not set +# CONFIG_PACKAGE_xcmiscproto is not set +# CONFIG_PACKAGE_xextproto is not set +# CONFIG_PACKAGE_xf86bigfontproto is not set +# CONFIG_PACKAGE_xf86dgaproto is not set +# CONFIG_PACKAGE_xf86driproto is not set +# CONFIG_PACKAGE_xf86vidmodeproto is not set +# CONFIG_PACKAGE_xineramaproto is not set +# CONFIG_PACKAGE_xproto is not set + +# +# server +# +# CONFIG_PACKAGE_xserver-common is not set + +# +# terminals +# + +# +# window manager +# diff --git a/build_configuration/Broadcom_BCM947xx_953xx_adhoc/.config b/build_configuration/Broadcom_BCM947xx_953xx_adhoc/.config new file mode 100644 index 0000000..4464c54 --- /dev/null +++ b/build_configuration/Broadcom_BCM947xx_953xx_adhoc/.config @@ -0,0 +1,3331 @@ +# +# Automatically generated make config: don't edit +# OpenWrt version: Backfire (r25079) +# Tue Jan 25 16:07:01 2011 +# +CONFIG_HAVE_DOT_CONFIG=y +# CONFIG_TARGET_ppc40x is not set +# CONFIG_TARGET_ppc44x is not set +# CONFIG_TARGET_atheros is not set +# CONFIG_TARGET_ar71xx is not set +# CONFIG_TARGET_avr32 is not set +# CONFIG_TARGET_brcm63xx is not set +CONFIG_TARGET_brcm47xx=y +# CONFIG_TARGET_brcm_2_4 is not set +# CONFIG_TARGET_octeon is not set +# CONFIG_TARGET_cobalt is not set +# CONFIG_TARGET_ifxmips is not set +# CONFIG_TARGET_adm5120 is not set +# CONFIG_TARGET_xburst is not set +# CONFIG_TARGET_ixp4xx is not set +# CONFIG_TARGET_kirkwood is not set +# CONFIG_TARGET_orion is not set +# CONFIG_TARGET_rb532 is not set +# CONFIG_TARGET_rdc is not set +# CONFIG_TARGET_au1000 is not set +# CONFIG_TARGET_ar7 is not set +# CONFIG_TARGET_uml is not set +# CONFIG_TARGET_x86 is not set +# CONFIG_TARGET_ar71xx_Default is not set +# CONFIG_TARGET_ar71xx_DefaultNoWifi is not set +# CONFIG_TARGET_ar71xx_Madwifi is not set +# CONFIG_TARGET_ar71xx_AP81 is not set +# CONFIG_TARGET_ar71xx_AP83 is not set +# CONFIG_TARGET_ar71xx_PB42 is not set +# CONFIG_TARGET_ar71xx_PB44 is not set +# CONFIG_TARGET_ar71xx_A02RBW300N is not set +# CONFIG_TARGET_ar71xx_WZRHPG300NH is not set +# CONFIG_TARGET_ar71xx_WP543 is not set +# CONFIG_TARGET_ar71xx_DIR600A1 is not set +# CONFIG_TARGET_ar71xx_DIR615C1 is not set +# CONFIG_TARGET_ar71xx_DIR825B1 is not set +# CONFIG_TARGET_ar71xx_WRT160NL is not set +# CONFIG_TARGET_ar71xx_WRT400N is not set +# CONFIG_TARGET_ar71xx_WNDR3700 is not set +# CONFIG_TARGET_ar71xx_MZKW04NU is not set +# CONFIG_TARGET_ar71xx_MZKW300NH is not set +# CONFIG_TARGET_ar71xx_TLWR741NDV1 is not set +# CONFIG_TARGET_ar71xx_TLWR841NV15 is not set +# CONFIG_TARGET_ar71xx_TLWR841NDV3 is not set +# CONFIG_TARGET_ar71xx_TLWR841NDV5 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV2 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV3 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV4 is not set +# CONFIG_TARGET_ar71xx_TLWR1043NDV1 is not set +# CONFIG_TARGET_ar71xx_TEW632BRP is not set +# CONFIG_TARGET_ar71xx_TEW652BRP is not set +# CONFIG_TARGET_ar71xx_UBNTRS is not set +# CONFIG_TARGET_ar71xx_UBNTRSPRO is not set +# CONFIG_TARGET_ar71xx_UBNT is not set +# CONFIG_TARGET_brcm63xx_Broadcom is not set +# CONFIG_TARGET_brcm63xx_Atheros is not set +# CONFIG_TARGET_brcm63xx_Ralink is not set +# CONFIG_TARGET_brcm63xx_NoWiFi is not set +# CONFIG_TARGET_brcm63xx_GW6X00 is not set +# CONFIG_TARGET_ppc44x_Default is not set +# CONFIG_TARGET_au1000_au1500_Atheros is not set +# CONFIG_TARGET_au1000_au1500_InternetBox is not set +# CONFIG_TARGET_au1000_au1500_MeshCube is not set +# CONFIG_TARGET_au1000_au1550_DBAu1550 is not set +# CONFIG_TARGET_atheros_Default is not set +# CONFIG_TARGET_brcm_2_4_Broadcom is not set +# CONFIG_TARGET_brcm_2_4_BroadcomMimo is not set +# CONFIG_TARGET_brcm_2_4_None is not set +# CONFIG_TARGET_brcm_2_4_USBGeneric is not set +# CONFIG_TARGET_brcm_2_4_WL500G is not set +# CONFIG_TARGET_brcm_2_4_WL500GD is not set +# CONFIG_TARGET_brcm_2_4_WL500GP is not set +# CONFIG_TARGET_brcm_2_4_WL700GE is not set +# CONFIG_TARGET_brcm_2_4_WLHDD is not set +# CONFIG_TARGET_brcm_2_4_WRT300Nv11 is not set +# CONFIG_TARGET_brcm_2_4_WRT54G3G is not set +# CONFIG_TARGET_brcm_2_4_WRT610Nv1 is not set +# CONFIG_TARGET_octeon_generic is not set +# CONFIG_TARGET_octeon_mototech is not set +# CONFIG_TARGET_octeon_simulator is not set +# CONFIG_TARGET_rb532_Default is not set +# CONFIG_TARGET_adm5120_router_le_Generic is not set +# CONFIG_TARGET_adm5120_router_le_CAS630 is not set +# CONFIG_TARGET_adm5120_router_le_CAS630W is not set +# CONFIG_TARGET_adm5120_router_le_CAS670 is not set +# CONFIG_TARGET_adm5120_router_le_CAS670W is not set +# CONFIG_TARGET_adm5120_router_le_CAS700 is not set +# CONFIG_TARGET_adm5120_router_le_CAS700W is not set +# CONFIG_TARGET_adm5120_router_le_CAS771 is not set +# CONFIG_TARGET_adm5120_router_le_CAS771W is not set +# CONFIG_TARGET_adm5120_router_le_CAS790 is not set +# CONFIG_TARGET_adm5120_router_le_CAS861 is not set +# CONFIG_TARGET_adm5120_router_le_CAS861W is not set +# CONFIG_TARGET_adm5120_router_le_NFS101U is not set +# CONFIG_TARGET_adm5120_router_le_NFS101WU is not set +# CONFIG_TARGET_adm5120_router_le_NP27G is not set +# CONFIG_TARGET_adm5120_router_le_NP28G is not set +# CONFIG_TARGET_adm5120_router_le_WP54 is not set +# CONFIG_TARGET_adm5120_router_le_BR6104K is not set +# CONFIG_TARGET_adm5120_router_le_BR6104KP is not set +# CONFIG_TARGET_adm5120_router_le_BR6104WG is not set +# CONFIG_TARGET_adm5120_router_le_BR6114WG is not set +# CONFIG_TARGET_adm5120_router_le_EASY5120RT is not set +# CONFIG_TARGET_adm5120_router_le_EASY5120PATA is not set +# CONFIG_TARGET_adm5120_router_le_PMUGW is not set +# CONFIG_TARGET_adm5120_router_le_5GXI is not set +# CONFIG_TARGET_adm5120_router_le_RouterBoard is not set +# CONFIG_TARGET_adm5120_router_be_Generic is not set +# CONFIG_TARGET_adm5120_router_be_P334WT is not set +# CONFIG_TARGET_adm5120_router_be_P335WT is not set +# CONFIG_TARGET_ppc40x_Default is not set +# CONFIG_TARGET_rdc_ar525w is not set +# CONFIG_TARGET_rdc_bifferboard is not set +# CONFIG_TARGET_rdc_r8610 is not set +# CONFIG_TARGET_rdc_sitecom is not set +# CONFIG_TARGET_ixp4xx_generic_Default is not set +# CONFIG_TARGET_ixp4xx_generic_Atheros-ath5k is not set +# CONFIG_TARGET_ixp4xx_generic_NSLU2 is not set +# CONFIG_TARGET_ixp4xx_generic_NAS100d is not set +# CONFIG_TARGET_ixp4xx_generic_DSMG600RevA is not set +# CONFIG_TARGET_ixp4xx_generic_USR8200 is not set +# CONFIG_TARGET_ixp4xx_harddisk_FSG3 is not set +# CONFIG_TARGET_orion_generic_Default is not set +# CONFIG_TARGET_orion_harddisk_Default is not set +# CONFIG_TARGET_ar7_Annex-A is not set +# CONFIG_TARGET_ar7_Annex-B is not set +# CONFIG_TARGET_ar7_Texas is not set +# CONFIG_TARGET_ar7_None is not set +CONFIG_TARGET_brcm47xx_Broadcom-b43=y +# CONFIG_TARGET_brcm47xx_Atheros is not set +# CONFIG_TARGET_brcm47xx_Atheros-ath5k is not set +# CONFIG_TARGET_brcm47xx_None is not set +# CONFIG_TARGET_brcm47xx_WGT634U is not set +# CONFIG_TARGET_brcm47xx_WL500GPv1 is not set +# CONFIG_TARGET_brcm47xx_WRT350Nv1 is not set +# CONFIG_TARGET_brcm47xx_WRTSL54GS is not set +# CONFIG_TARGET_ifxmips_None is not set +# CONFIG_TARGET_ifxmips_Atheros is not set +# CONFIG_TARGET_ifxmips_Ralink is not set +# CONFIG_TARGET_avr32_Default is not set +# CONFIG_TARGET_xburst_qi_lb60_Default is not set +# CONFIG_TARGET_xburst_n516_Default is not set +# CONFIG_TARGET_xburst_n526_Default is not set +# CONFIG_TARGET_kirkwood_Default is not set +# CONFIG_TARGET_uml_Default is not set +# CONFIG_TARGET_x86_generic_Generic is not set +# CONFIG_TARGET_x86_generic_Alix is not set +# CONFIG_TARGET_x86_generic_Soekris45xx is not set +# CONFIG_TARGET_x86_generic_Soekris48xx is not set +# CONFIG_TARGET_x86_generic_Wrap is not set +# CONFIG_TARGET_x86_olpc_Default is not set +# CONFIG_TARGET_x86_xen_domu_Default is not set +# CONFIG_TARGET_x86_ep80579_Default is not set +# CONFIG_TARGET_cobalt_Default is not set +CONFIG_TARGET_BOARD="brcm47xx" +CONFIG_TARGET_ARCH_PACKAGES="brcm47xx" +CONFIG_DEFAULT_TARGET_OPTIMIZATION="-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" +CONFIG_LINUX_2_6_32=y +CONFIG_DEFAULT_base-files=y +CONFIG_DEFAULT_busybox=y +CONFIG_DEFAULT_dnsmasq=y +CONFIG_DEFAULT_dropbear=y +CONFIG_DEFAULT_firewall=y +CONFIG_DEFAULT_hotplug2=y +CONFIG_DEFAULT_iptables=y +CONFIG_DEFAULT_kmod-b43=y +CONFIG_DEFAULT_kmod-b43legacy=y +CONFIG_DEFAULT_kmod-diag=y +CONFIG_DEFAULT_kmod-ipt-nathelper=y +CONFIG_DEFAULT_kmod-switch=y +CONFIG_DEFAULT_libc=y +CONFIG_DEFAULT_libgcc=y +CONFIG_DEFAULT_mtd=y +CONFIG_DEFAULT_nvram=y +CONFIG_DEFAULT_opkg=y +CONFIG_DEFAULT_ppp=y +CONFIG_DEFAULT_ppp-mod-pppoe=y +CONFIG_DEFAULT_uci=y +CONFIG_DEFAULT_udevtrigger=y +CONFIG_DEFAULT_wpad-mini=y +CONFIG_LINUX_2_6=y +CONFIG_AUDIO_SUPPORT=y +CONFIG_GPIO_SUPPORT=y +CONFIG_PCI_SUPPORT=y +CONFIG_PCMCIA_SUPPORT=y +CONFIG_USB_SUPPORT=y +CONFIG_USES_SQUASHFS=y +CONFIG_mipsel=y +CONFIG_ARCH="mipsel" + +# +# Target Images +# +# CONFIG_TARGET_ROOTFS_INITRAMFS is not set + +# +# Root filesystem archives +# +# CONFIG_TARGET_ROOTFS_CPIOGZ is not set +# CONFIG_TARGET_ROOTFS_TARGZ is not set + +# +# Root filesystem images +# +# CONFIG_TARGET_ROOTFS_EXT2FS is not set +# CONFIG_TARGET_ROOTFS_JFFS2 is not set +CONFIG_TARGET_ROOTFS_SQUASHFS=y + +# +# Image Options +# + +# +# Global build settings +# +# CONFIG_ALL is not set + +# +# General build options +# +# CONFIG_DISPLAY_SUPPORT is not set +CONFIG_BUILD_PATENTED=y +CONFIG_LARGEFILE=y +CONFIG_SHADOW_PASSWORDS=y +# CONFIG_CLEAN_IPKG is not set +# CONFIG_COLLECT_KERNEL_DEBUG is not set + +# +# Kernel build options +# +CONFIG_KERNEL_DEBUG_FS=y +# CONFIG_KERNEL_PROFILING is not set +# CONFIG_KERNEL_KALLSYMS is not set +# CONFIG_KERNEL_DEBUG_KERNEL is not set +# CONFIG_KERNEL_DEBUG_INFO is not set + +# +# Package build options +# +# CONFIG_DEBUG is not set +CONFIG_IPV6=y + +# +# Stripping options +# +# CONFIG_NO_STRIP is not set +# CONFIG_USE_STRIP is not set +CONFIG_USE_SSTRIP=y +# CONFIG_STRIP_KERNEL_EXPORTS is not set +# CONFIG_USE_MKLIBS is not set +# CONFIG_DEVEL is not set +# CONFIG_BROKEN is not set +CONFIG_DOWNLOAD_FOLDER="" +CONFIG_LOCALMIRROR="" +CONFIG_AUTOREBUILD=y +CONFIG_BUILD_SUFFIX="" +CONFIG_TARGET_ROOTFS_DIR="" +# CONFIG_CCACHE is not set +CONFIG_EXTERNAL_KERNEL_TREE="" +CONFIG_KERNEL_GIT_CLONE_URI="" +CONFIG_KERNEL_GIT_LOCAL_REPOSITORY="" +CONFIG_TARGET_OPTIMIZATION="-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" +CONFIG_SOFT_FLOAT=y +# CONFIG_EXTRA_TARGET_ARCH is not set +CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="" +CONFIG_BINUTILS_VERSION="2.19.1" +CONFIG_GCC_VERSION_4_3_3_CS=y +CONFIG_EXTRA_GCC_CONFIG_OPTIONS="" +# CONFIG_SSP_SUPPORT is not set +CONFIG_INSTALL_LIBSTDCPP=y +# CONFIG_INSTALL_LIBGCJ is not set +CONFIG_USE_UCLIBC=y +# CONFIG_GDB is not set +# CONFIG_INSIGHT is not set +CONFIG_GCC_VERSION="4.3.3+cs" +CONFIG_GCC_VERSION_4=y +CONFIG_GCC_VERSION_4_3=y +CONFIG_UCLIBC_VERSION="0.9.30.1" +CONFIG_LIBC="uClibc" +CONFIG_LIBC_VERSION="0.9.30.1" +CONFIG_TARGET_SUFFIX="uclibc" +# CONFIG_IB is not set +# CONFIG_SDK is not set +# CONFIG_MAKE_TOOLCHAIN is not set +# CONFIG_IMAGEOPT is not set +CONFIG_UCI_PRECONFIG_network_lan_dns="" +CONFIG_UCI_PRECONFIG_network_lan_proto="static" +CONFIG_UCI_PRECONFIG_network_lan_gateway="" +CONFIG_UCI_PRECONFIG_network_lan_netmask="255.255.255.0" +CONFIG_UCI_PRECONFIG_network_lan_ipaddr="192.168.1.1" +# CONFIG_PREINITOPT is not set +CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y +CONFIG_TARGET_PREINIT_TIMEOUT=2 +# CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set +# CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set +CONFIG_TARGET_PREINIT_IFNAME="" +CONFIG_TARGET_PREINIT_IP="192.168.1.1" +CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0" +CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255" +# CONFIG_INITOPT is not set +CONFIG_TARGET_INIT_PATH="/bin:/sbin:/usr/bin:/usr/sbin" +CONFIG_TARGET_INIT_ENV="" +CONFIG_TARGET_INIT_CMD="/sbin/init" +CONFIG_TARGET_INIT_SUPPRESS_STDERR=y + +# +# Package features +# +CONFIG_FEATURE_drawing-backend_DirectFB=y +# CONFIG_FEATURE_drawing-backend_libX11 is not set + +# +# Base system +# +CONFIG_PACKAGE_base-files=y +CONFIG_EXTROOT_SETTLETIME=20 +# CONFIG_PACKAGE_block-hotplug is not set +# CONFIG_PACKAGE_block-mount is not set +# CONFIG_PACKAGE_br2684ctl is not set +CONFIG_PACKAGE_bridge=y +CONFIG_PACKAGE_busybox=y + +# +# Configuration +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_DEVFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_2_4_MODULES is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_2_6_MODULES=y +# CONFIG_BUSYBOX_CONFIG_NOMMU is not set +# CONFIG_CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_BUSYBOX_CONFIG_HUSH is not set +CONFIG_BUSYBOX_CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_BUSYBOX_CONFIG_DESKTOP is not set +# CONFIG_BUSYBOX_CONFIG_EXTRA_COMPAT is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_USE_MALLOC is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_BUSYBOX_CONFIG_SHOW_USAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_COMPRESS_USAGE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_INSTALLER is not set +# CONFIG_BUSYBOX_CONFIG_LOCALE_SUPPORT is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_ASSUME_UNICODE is not set +CONFIG_BUSYBOX_CONFIG_LONG_OPTS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DEVPTS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PIDFILE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_SUID=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_BUSYBOX_CONFIG_SELINUX is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS=y +CONFIG_BUSYBOX_CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_HAVE_RPC=y + +# +# Build Options +# +# CONFIG_BUSYBOX_CONFIG_STATIC is not set +# CONFIG_BUSYBOX_CONFIG_PIE is not set +CONFIG_BUSYBOX_CONFIG_LFS=y +CONFIG_BUSYBOX_CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_BUSYBOX_CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_BUSYBOX_CONFIG_DEBUG is not set +# CONFIG_BUSYBOX_CONFIG_WERROR is not set +CONFIG_BUSYBOX_CONFIG_NO_DEBUG_LIB=y +# CONFIG_BUSYBOX_CONFIG_DMALLOC is not set +# CONFIG_BUSYBOX_CONFIG_EFENCE is not set +CONFIG_BUSYBOX_CONFIG_INCLUDE_SUSv2=y + +# +# Installation Options +# +# CONFIG_BUSYBOX_CONFIG_INSTALL_NO_USR is not set +CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_DONT is not set +CONFIG_BUSYBOX_CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_BUSYBOX_CONFIG_PASSWORD_MINLEN=6 +CONFIG_BUSYBOX_CONFIG_MD5_SIZE_VS_SPEED=2 +CONFIG_BUSYBOX_CONFIG_FEATURE_FAST_TOP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING=y +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_MAX_LEN=512 +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_VI is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_HISTORY=256 +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_USERNAME_COMPLETION is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_BUSYBOX_CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_BUSYBOX_CONFIG_IOCTL_HEX2STR_ERROR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWIB is not set + +# +# Applets +# + +# +# Archival Utilities +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2 is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z is not set +# CONFIG_BUSYBOX_CONFIG_AR is not set +CONFIG_BUSYBOX_CONFIG_BUNZIP2=y +# CONFIG_BUSYBOX_CONFIG_BZIP2 is not set +# CONFIG_BUSYBOX_CONFIG_CPIO is not set +# CONFIG_BUSYBOX_CONFIG_DPKG is not set +# CONFIG_BUSYBOX_CONFIG_DPKG_DEB is not set +CONFIG_BUSYBOX_CONFIG_GUNZIP=y +CONFIG_BUSYBOX_CONFIG_GZIP=y +# CONFIG_BUSYBOX_CONFIG_LZOP is not set +# CONFIG_BUSYBOX_CONFIG_RPM2CPIO is not set +# CONFIG_BUSYBOX_CONFIG_RPM is not set +CONFIG_BUSYBOX_CONFIG_TAR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_CREATE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_FROM=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME is not set +# CONFIG_BUSYBOX_CONFIG_UNCOMPRESS is not set +# CONFIG_BUSYBOX_CONFIG_UNLZMA is not set +# CONFIG_BUSYBOX_CONFIG_UNZIP is not set + +# +# Coreutils +# +CONFIG_BUSYBOX_CONFIG_BASENAME=y +# CONFIG_BUSYBOX_CONFIG_CAL is not set +CONFIG_BUSYBOX_CONFIG_CAT=y +# CONFIG_BUSYBOX_CONFIG_CATV is not set +CONFIG_BUSYBOX_CONFIG_CHGRP=y +CONFIG_BUSYBOX_CONFIG_CHMOD=y +CONFIG_BUSYBOX_CONFIG_CHOWN=y +CONFIG_BUSYBOX_CONFIG_CHROOT=y +# CONFIG_BUSYBOX_CONFIG_CKSUM is not set +# CONFIG_BUSYBOX_CONFIG_COMM is not set +CONFIG_BUSYBOX_CONFIG_CP=y +CONFIG_BUSYBOX_CONFIG_CUT=y +CONFIG_BUSYBOX_CONFIG_DATE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT=y +CONFIG_BUSYBOX_CONFIG_DD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS is not set +CONFIG_BUSYBOX_CONFIG_DF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DF_FANCY is not set +CONFIG_BUSYBOX_CONFIG_DIRNAME=y +# CONFIG_BUSYBOX_CONFIG_DOS2UNIX is not set +CONFIG_BUSYBOX_CONFIG_DU=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_BUSYBOX_CONFIG_ECHO=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_BUSYBOX_CONFIG_ENV=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_EXPAND is not set +CONFIG_BUSYBOX_CONFIG_EXPR=y +CONFIG_BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_BUSYBOX_CONFIG_FALSE=y +# CONFIG_BUSYBOX_CONFIG_FOLD is not set +# CONFIG_BUSYBOX_CONFIG_FSYNC is not set +CONFIG_BUSYBOX_CONFIG_HEAD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_BUSYBOX_CONFIG_HOSTID=y +CONFIG_BUSYBOX_CONFIG_ID=y +# CONFIG_BUSYBOX_CONFIG_INSTALL is not set +CONFIG_BUSYBOX_CONFIG_LENGTH=y +CONFIG_BUSYBOX_CONFIG_LN=y +# CONFIG_BUSYBOX_CONFIG_LOGNAME is not set +CONFIG_BUSYBOX_CONFIG_LS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_USERNAME=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_BUSYBOX_CONFIG_MD5SUM=y +CONFIG_BUSYBOX_CONFIG_MKDIR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_MKFIFO=y +CONFIG_BUSYBOX_CONFIG_MKNOD=y +CONFIG_BUSYBOX_CONFIG_MV=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_NICE=y +# CONFIG_BUSYBOX_CONFIG_NOHUP is not set +# CONFIG_BUSYBOX_CONFIG_OD is not set +# CONFIG_BUSYBOX_CONFIG_PRINTENV is not set +CONFIG_BUSYBOX_CONFIG_PRINTF=y +CONFIG_BUSYBOX_CONFIG_PWD=y +# CONFIG_BUSYBOX_CONFIG_READLINK is not set +# CONFIG_BUSYBOX_CONFIG_REALPATH is not set +CONFIG_BUSYBOX_CONFIG_RM=y +CONFIG_BUSYBOX_CONFIG_RMDIR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_SEQ=y +# CONFIG_BUSYBOX_CONFIG_SHA1SUM is not set +# CONFIG_BUSYBOX_CONFIG_SHA256SUM is not set +# CONFIG_BUSYBOX_CONFIG_SHA512SUM is not set +CONFIG_BUSYBOX_CONFIG_SLEEP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP is not set +CONFIG_BUSYBOX_CONFIG_SORT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SORT_BIG is not set +# CONFIG_BUSYBOX_CONFIG_SPLIT is not set +# CONFIG_BUSYBOX_CONFIG_STAT is not set +# CONFIG_BUSYBOX_CONFIG_STTY is not set +# CONFIG_BUSYBOX_CONFIG_SUM is not set +CONFIG_BUSYBOX_CONFIG_SYNC=y +# CONFIG_BUSYBOX_CONFIG_TAC is not set +CONFIG_BUSYBOX_CONFIG_TAIL=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_BUSYBOX_CONFIG_TEE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_BUSYBOX_CONFIG_TEST=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TEST_64=y +CONFIG_BUSYBOX_CONFIG_TOUCH=y +CONFIG_BUSYBOX_CONFIG_TR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_CLASSES is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_EQUIV is not set +CONFIG_BUSYBOX_CONFIG_TRUE=y +# CONFIG_BUSYBOX_CONFIG_TTY is not set +CONFIG_BUSYBOX_CONFIG_UNAME=y +# CONFIG_BUSYBOX_CONFIG_UNEXPAND is not set +CONFIG_BUSYBOX_CONFIG_UNIQ=y +# CONFIG_BUSYBOX_CONFIG_USLEEP is not set +# CONFIG_BUSYBOX_CONFIG_UUDECODE is not set +# CONFIG_BUSYBOX_CONFIG_UUENCODE is not set +CONFIG_BUSYBOX_CONFIG_WC=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_WC_LARGE is not set +# CONFIG_BUSYBOX_CONFIG_WHO is not set +# CONFIG_BUSYBOX_CONFIG_WHOAMI is not set +CONFIG_BUSYBOX_CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for ls, more and telnet +# +CONFIG_BUSYBOX_CONFIG_FEATURE_AUTOWIDTH=y + +# +# Common options for df, du, ls +# +CONFIG_BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum +# +CONFIG_BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +# CONFIG_BUSYBOX_CONFIG_CHVT is not set +CONFIG_BUSYBOX_CONFIG_CLEAR=y +# CONFIG_BUSYBOX_CONFIG_DEALLOCVT is not set +# CONFIG_BUSYBOX_CONFIG_DUMPKMAP is not set +# CONFIG_BUSYBOX_CONFIG_KBD_MODE is not set +# CONFIG_BUSYBOX_CONFIG_LOADFONT is not set +# CONFIG_BUSYBOX_CONFIG_LOADKMAP is not set +# CONFIG_BUSYBOX_CONFIG_OPENVT is not set +CONFIG_BUSYBOX_CONFIG_RESET=y +# CONFIG_BUSYBOX_CONFIG_RESIZE is not set +# CONFIG_BUSYBOX_CONFIG_SETCONSOLE is not set +# CONFIG_BUSYBOX_CONFIG_SETFONT is not set +# CONFIG_BUSYBOX_CONFIG_SETKEYCODES is not set +# CONFIG_BUSYBOX_CONFIG_SETLOGCONS is not set +# CONFIG_BUSYBOX_CONFIG_SHOWKEY is not set + +# +# Debian Utilities +# +CONFIG_BUSYBOX_CONFIG_MKTEMP=y +# CONFIG_BUSYBOX_CONFIG_PIPE_PROGRESS is not set +# CONFIG_BUSYBOX_CONFIG_RUN_PARTS is not set +CONFIG_BUSYBOX_CONFIG_START_STOP_DAEMON=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_WHICH=y + +# +# Editors +# +CONFIG_BUSYBOX_CONFIG_AWK=y +CONFIG_BUSYBOX_CONFIG_FEATURE_AWK_LIBM=y +# CONFIG_BUSYBOX_CONFIG_CMP is not set +CONFIG_BUSYBOX_CONFIG_DIFF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_BINARY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_DIR is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_MINIMAL is not set +# CONFIG_BUSYBOX_CONFIG_ED is not set +# CONFIG_BUSYBOX_CONFIG_PATCH is not set +CONFIG_BUSYBOX_CONFIG_SED=y +CONFIG_BUSYBOX_CONFIG_VI=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_MAX_LEN=1024 +# CONFIG_BUSYBOX_CONFIG_FEATURE_VI_8BIT is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_COLON=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SEARCH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_READONLY=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_BUSYBOX_CONFIG_FIND=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRINT0=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MTIME is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MMIN is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PERM=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_TYPE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_XDEV=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NEWER is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_INUM is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_EXEC=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_USER=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_GROUP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NOT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PAREN=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_SIZE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRUNE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DELETE is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PATH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_REGEX=y +CONFIG_BUSYBOX_CONFIG_GREP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_BUSYBOX_CONFIG_XARGS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +CONFIG_BUSYBOX_CONFIG_INIT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_KILL_REMOVED is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SCTTY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SYSLOG=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_EXTRA_QUIET is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_COREDUMPS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INITRD is not set +CONFIG_BUSYBOX_CONFIG_HALT=y +CONFIG_BUSYBOX_CONFIG_MESG=y + +# +# Login/Password Management Utilities +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_BUSYBOX_CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_BUSYBOX_CONFIG_USE_BB_CRYPT is not set +# CONFIG_BUSYBOX_CONFIG_ADDGROUP is not set +# CONFIG_BUSYBOX_CONFIG_DELGROUP is not set +# CONFIG_BUSYBOX_CONFIG_ADDUSER is not set +# CONFIG_BUSYBOX_CONFIG_DELUSER is not set +# CONFIG_BUSYBOX_CONFIG_GETTY is not set +# CONFIG_BUSYBOX_CONFIG_LOGIN is not set +CONFIG_BUSYBOX_CONFIG_PASSWD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +# CONFIG_BUSYBOX_CONFIG_CRYPTPW is not set +# CONFIG_BUSYBOX_CONFIG_CHPASSWD is not set +# CONFIG_BUSYBOX_CONFIG_SU is not set +# CONFIG_BUSYBOX_CONFIG_SULOGIN is not set +# CONFIG_BUSYBOX_CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +# CONFIG_BUSYBOX_CONFIG_CHATTR is not set +# CONFIG_BUSYBOX_CONFIG_FSCK is not set +# CONFIG_BUSYBOX_CONFIG_LSATTR is not set + +# +# Linux Module Utilities +# +# CONFIG_BUSYBOX_CONFIG_MODPROBE_SMALL is not set +CONFIG_BUSYBOX_CONFIG_INSMOD=y +CONFIG_BUSYBOX_CONFIG_RMMOD=y +CONFIG_BUSYBOX_CONFIG_LSMOD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT=y +# CONFIG_BUSYBOX_CONFIG_MODPROBE is not set +# CONFIG_BUSYBOX_CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +CONFIG_BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE=y +CONFIG_BUSYBOX_CONFIG_DEFAULT_MODULES_DIR="/lib/modules" + +# +# Linux System Utilities +# +# CONFIG_BUSYBOX_CONFIG_ACPID is not set +CONFIG_BUSYBOX_CONFIG_BLKID=y +CONFIG_BUSYBOX_CONFIG_DMESG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DMESG_PRETTY=y +# CONFIG_BUSYBOX_CONFIG_FBSET is not set +# CONFIG_BUSYBOX_CONFIG_FDFLUSH is not set +# CONFIG_BUSYBOX_CONFIG_FDFORMAT is not set +# CONFIG_BUSYBOX_CONFIG_FDISK is not set +CONFIG_BUSYBOX_CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +# CONFIG_BUSYBOX_CONFIG_FINDFS is not set +# CONFIG_BUSYBOX_CONFIG_FREERAMDISK is not set +# CONFIG_BUSYBOX_CONFIG_FSCK_MINIX is not set +# CONFIG_BUSYBOX_CONFIG_MKFS_MINIX is not set +# CONFIG_BUSYBOX_CONFIG_MKFS_VFAT is not set +# CONFIG_BUSYBOX_CONFIG_GETOPT is not set +CONFIG_BUSYBOX_CONFIG_HEXDUMP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HEXDUMP_REVERSE is not set +# CONFIG_BUSYBOX_CONFIG_HD is not set +CONFIG_BUSYBOX_CONFIG_HWCLOCK=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_BUSYBOX_CONFIG_IPCRM is not set +# CONFIG_BUSYBOX_CONFIG_IPCS is not set +# CONFIG_BUSYBOX_CONFIG_LOSETUP is not set +# CONFIG_BUSYBOX_CONFIG_MDEV is not set +CONFIG_BUSYBOX_CONFIG_MKSWAP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MKSWAP_UUID=y +# CONFIG_BUSYBOX_CONFIG_MORE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_USE_TERMIOS is not set +CONFIG_BUSYBOX_CONFIG_VOLUMEID=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_HFS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_JFS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_XFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_UDF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LUKS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_SYSV is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_BUSYBOX_CONFIG_MOUNT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LABEL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_NFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_CIFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_BUSYBOX_CONFIG_PIVOT_ROOT=y +CONFIG_BUSYBOX_CONFIG_RDATE=y +# CONFIG_BUSYBOX_CONFIG_RDEV is not set +# CONFIG_BUSYBOX_CONFIG_READPROFILE is not set +# CONFIG_BUSYBOX_CONFIG_RTCWAKE is not set +# CONFIG_BUSYBOX_CONFIG_SCRIPT is not set +# CONFIG_BUSYBOX_CONFIG_SCRIPTREPLAY is not set +# CONFIG_BUSYBOX_CONFIG_SETARCH is not set +CONFIG_BUSYBOX_CONFIG_SWAPONOFF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_BUSYBOX_CONFIG_SWITCH_ROOT=y +CONFIG_BUSYBOX_CONFIG_UMOUNT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_UMOUNT_ALL=y + +# +# Common options for mount/umount +# +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LOOP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MTAB_SUPPORT is not set + +# +# Miscellaneous Utilities +# +# CONFIG_BUSYBOX_CONFIG_ADJTIMEX is not set +# CONFIG_BUSYBOX_CONFIG_BBCONFIG is not set +# CONFIG_BUSYBOX_CONFIG_BEEP is not set +# CONFIG_BUSYBOX_CONFIG_CHAT is not set +# CONFIG_BUSYBOX_CONFIG_CHRT is not set +CONFIG_BUSYBOX_CONFIG_CROND=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_D is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_BUSYBOX_CONFIG_CRONTAB=y +# CONFIG_BUSYBOX_CONFIG_DC is not set +# CONFIG_BUSYBOX_CONFIG_DEVFSD is not set +# CONFIG_BUSYBOX_CONFIG_DEVMEM is not set +# CONFIG_BUSYBOX_CONFIG_EJECT is not set +# CONFIG_BUSYBOX_CONFIG_FBSPLASH is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_LOCK is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_UNLOCK is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_ERASEALL is not set +# CONFIG_BUSYBOX_CONFIG_IONICE is not set +# CONFIG_BUSYBOX_CONFIG_INOTIFYD is not set +# CONFIG_BUSYBOX_CONFIG_LAST is not set +CONFIG_BUSYBOX_CONFIG_LESS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES=9999999 +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_FLAGS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MARKS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_REGEXP is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_BUSYBOX_CONFIG_HDPARM is not set +CONFIG_BUSYBOX_CONFIG_LOCK=y +# CONFIG_BUSYBOX_CONFIG_MAKEDEVS is not set +# CONFIG_BUSYBOX_CONFIG_MAN is not set +# CONFIG_BUSYBOX_CONFIG_MICROCOM is not set +# CONFIG_BUSYBOX_CONFIG_MOUNTPOINT is not set +# CONFIG_BUSYBOX_CONFIG_MT is not set +# CONFIG_BUSYBOX_CONFIG_RAIDAUTORUN is not set +# CONFIG_BUSYBOX_CONFIG_READAHEAD is not set +# CONFIG_BUSYBOX_CONFIG_RUNLEVEL is not set +# CONFIG_BUSYBOX_CONFIG_RX is not set +# CONFIG_BUSYBOX_CONFIG_SETSID is not set +CONFIG_BUSYBOX_CONFIG_STRINGS=y +# CONFIG_BUSYBOX_CONFIG_TASKSET is not set +CONFIG_BUSYBOX_CONFIG_TIME=y +# CONFIG_BUSYBOX_CONFIG_TIMEOUT is not set +# CONFIG_BUSYBOX_CONFIG_TTYSIZE is not set +# CONFIG_BUSYBOX_CONFIG_VOLNAME is not set +CONFIG_BUSYBOX_CONFIG_WATCHDOG=y + +# +# Networking Utilities +# +CONFIG_BUSYBOX_CONFIG_FEATURE_IPV6=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_UNIX_LOCAL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +CONFIG_BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS=y +# CONFIG_BUSYBOX_CONFIG_ARP is not set +CONFIG_BUSYBOX_CONFIG_ARPING=y +# CONFIG_BUSYBOX_CONFIG_BRCTL is not set +# CONFIG_BUSYBOX_CONFIG_DNSD is not set +# CONFIG_BUSYBOX_CONFIG_ETHER_WAKE is not set +# CONFIG_BUSYBOX_CONFIG_FAKEIDENTD is not set +# CONFIG_BUSYBOX_CONFIG_FTPD is not set +# CONFIG_BUSYBOX_CONFIG_FTPGET is not set +# CONFIG_BUSYBOX_CONFIG_FTPPUT is not set +# CONFIG_BUSYBOX_CONFIG_HOSTNAME is not set +# CONFIG_BUSYBOX_CONFIG_HTTPD is not set +CONFIG_BUSYBOX_CONFIG_IFCONFIG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +# CONFIG_BUSYBOX_CONFIG_IFENSLAVE is not set +# CONFIG_BUSYBOX_CONFIG_IFPLUGD is not set +# CONFIG_BUSYBOX_CONFIG_IFUPDOWN is not set +# CONFIG_BUSYBOX_CONFIG_INETD is not set +# CONFIG_BUSYBOX_CONFIG_IP is not set +# CONFIG_BUSYBOX_CONFIG_IPCALC is not set +# CONFIG_BUSYBOX_CONFIG_NAMEIF is not set +CONFIG_BUSYBOX_CONFIG_NC=y +CONFIG_BUSYBOX_CONFIG_NETMSG=y +# CONFIG_BUSYBOX_CONFIG_NC_SERVER is not set +# CONFIG_BUSYBOX_CONFIG_NC_EXTRA is not set +CONFIG_BUSYBOX_CONFIG_NETSTAT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG=y +CONFIG_BUSYBOX_CONFIG_NSLOOKUP=y +CONFIG_BUSYBOX_CONFIG_PING=y +CONFIG_BUSYBOX_CONFIG_PING6=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_PING=y +# CONFIG_BUSYBOX_CONFIG_PSCAN is not set +CONFIG_BUSYBOX_CONFIG_ROUTE=y +# CONFIG_BUSYBOX_CONFIG_SLATTACH is not set +CONFIG_BUSYBOX_CONFIG_TELNET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN is not set +CONFIG_BUSYBOX_CONFIG_TELNETD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE=y +# CONFIG_BUSYBOX_CONFIG_TFTP is not set +# CONFIG_BUSYBOX_CONFIG_TFTPD is not set +CONFIG_BUSYBOX_CONFIG_TRACEROUTE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_BUSYBOX_CONFIG_APP_UDHCPD is not set +CONFIG_BUSYBOX_CONFIG_APP_UDHCPC=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCPC_ARPING is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_BUSYBOX_CONFIG_UDHCP_DEBUG=0 +CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_BUSYBOX_CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_BUSYBOX_CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_BUSYBOX_CONFIG_VCONFIG=y +CONFIG_BUSYBOX_CONFIG_WGET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS=y +# CONFIG_BUSYBOX_CONFIG_ZCIP is not set +# CONFIG_BUSYBOX_CONFIG_TCPSVD is not set +# CONFIG_BUSYBOX_CONFIG_TUNCTL is not set +# CONFIG_BUSYBOX_CONFIG_UDPSVD is not set + +# +# Print Utilities +# +# CONFIG_BUSYBOX_CONFIG_LPD is not set +# CONFIG_BUSYBOX_CONFIG_LPR is not set +# CONFIG_BUSYBOX_CONFIG_LPQ is not set + +# +# Mail Utilities +# +# CONFIG_BUSYBOX_CONFIG_MAKEMIME is not set +# CONFIG_BUSYBOX_CONFIG_POPMAILDIR is not set +# CONFIG_BUSYBOX_CONFIG_REFORMIME is not set +# CONFIG_BUSYBOX_CONFIG_SENDMAIL is not set + +# +# Process Utilities +# +CONFIG_BUSYBOX_CONFIG_FREE=y +# CONFIG_BUSYBOX_CONFIG_FUSER is not set +CONFIG_BUSYBOX_CONFIG_KILL=y +CONFIG_BUSYBOX_CONFIG_KILLALL=y +CONFIG_BUSYBOX_CONFIG_KILLALL5=y +# CONFIG_BUSYBOX_CONFIG_NMETER is not set +CONFIG_BUSYBOX_CONFIG_PGREP=y +CONFIG_BUSYBOX_CONFIG_PIDOF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT is not set +CONFIG_BUSYBOX_CONFIG_PKILL=y +CONFIG_BUSYBOX_CONFIG_PS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_BUSYBOX_CONFIG_RENICE is not set +CONFIG_BUSYBOX_CONFIG_BB_SYSCTL=y +CONFIG_BUSYBOX_CONFIG_TOP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOPMEM is not set +CONFIG_BUSYBOX_CONFIG_UPTIME=y +# CONFIG_BUSYBOX_CONFIG_WATCH is not set + +# +# Runit Utilities +# +# CONFIG_BUSYBOX_CONFIG_RUNSV is not set +# CONFIG_BUSYBOX_CONFIG_RUNSVDIR is not set +# CONFIG_BUSYBOX_CONFIG_SV is not set +# CONFIG_BUSYBOX_CONFIG_SVLOGD is not set +# CONFIG_BUSYBOX_CONFIG_CHPST is not set +# CONFIG_BUSYBOX_CONFIG_SETUIDGID is not set +# CONFIG_BUSYBOX_CONFIG_ENVUIDGID is not set +# CONFIG_BUSYBOX_CONFIG_ENVDIR is not set +# CONFIG_BUSYBOX_CONFIG_SOFTLIMIT is not set + +# +# Shells +# +CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_ASH=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_NONE is not set +CONFIG_BUSYBOX_CONFIG_ASH=y +CONFIG_BUSYBOX_CONFIG_ASH_BASH_COMPAT=y +CONFIG_BUSYBOX_CONFIG_ASH_JOB_CONTROL=y +# CONFIG_BUSYBOX_CONFIG_ASH_READ_NCHARS is not set +CONFIG_BUSYBOX_CONFIG_ASH_READ_TIMEOUT=y +CONFIG_BUSYBOX_CONFIG_ASH_ALIAS=y +CONFIG_BUSYBOX_CONFIG_ASH_GETOPTS=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_ECHO=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_PRINTF=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_TEST=y +CONFIG_BUSYBOX_CONFIG_ASH_CMDCMD=y +# CONFIG_BUSYBOX_CONFIG_ASH_MAIL is not set +# CONFIG_BUSYBOX_CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_BUSYBOX_CONFIG_ASH_RANDOM_SUPPORT is not set +CONFIG_BUSYBOX_CONFIG_ASH_EXPAND_PRMT=y +# CONFIG_BUSYBOX_CONFIG_LASH is not set +# CONFIG_BUSYBOX_CONFIG_MSH is not set +CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT=y +CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT_64=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_NOFORK is not set +# CONFIG_BUSYBOX_CONFIG_CTTYHACK is not set + +# +# System Logging Utilities +# +CONFIG_BUSYBOX_CONFIG_SYSLOGD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_REMOTE_LOG=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOGD_DUP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_BUSYBOX_CONFIG_LOGREAD=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +CONFIG_BUSYBOX_CONFIG_KLOGD=y +CONFIG_BUSYBOX_CONFIG_LOGGER=y +# CONFIG_PACKAGE_dash is not set +CONFIG_PACKAGE_dnsmasq=y +CONFIG_PACKAGE_dropbear=y +# CONFIG_PACKAGE_ead is not set +CONFIG_PACKAGE_firewall=y +CONFIG_PACKAGE_hotplug2=y +CONFIG_PACKAGE_libc=y +CONFIG_PACKAGE_libgcc=y +# CONFIG_PACKAGE_libpthread is not set +# CONFIG_PACKAGE_librt is not set +# CONFIG_PACKAGE_libstdcpp is not set +# CONFIG_PACKAGE_mksh is not set +CONFIG_PACKAGE_mtd=y +CONFIG_PACKAGE_nvram=y +CONFIG_PACKAGE_opkg=y +# CONFIG_PACKAGE_qos-scripts is not set +CONFIG_PACKAGE_uci=y +# CONFIG_PACKAGE_ucitrigger is not set +# CONFIG_PACKAGE_udev is not set +CONFIG_PACKAGE_udevtrigger=y +CONFIG_PACKAGE_wireless-tools=y + +# +# IPv6 +# + +# +# IPv6 attack and analyzing toolset (thc-ipv6) +# +# CONFIG_PACKAGE_alive6 is not set +# CONFIG_PACKAGE_detect-new-ip6 is not set +# CONFIG_PACKAGE_dos-new-ip6 is not set +# CONFIG_PACKAGE_fake_advertise6 is not set +# CONFIG_PACKAGE_fake_mipv6 is not set +# CONFIG_PACKAGE_fake_mld6 is not set +# CONFIG_PACKAGE_fake_router6 is not set +# CONFIG_PACKAGE_parasite6 is not set +# CONFIG_PACKAGE_redir6 is not set +# CONFIG_PACKAGE_rsmurf6 is not set +# CONFIG_PACKAGE_smurf6 is not set +# CONFIG_PACKAGE_toobig6 is not set + +# +# IPv6 discovery tools +# +# CONFIG_PACKAGE_ndisc6 is not set +# CONFIG_PACKAGE_rdisc6 is not set +# CONFIG_PACKAGE_rdnssd is not set +CONFIG_PACKAGE_tcptraceroute6=y + +# +# firewall +# +# CONFIG_PACKAGE_shorewall6-lite is not set + +# +# miredo: Teredo (IPv6 tunneling over UDP through NAT) +# +# CONFIG_PACKAGE_miredo-client is not set +# CONFIG_PACKAGE_miredo-common is not set +# CONFIG_PACKAGE_miredo-server is not set + +# +# wide-dhcpv6 +# +# CONFIG_PACKAGE_wide-dhcpv6-client is not set +# CONFIG_PACKAGE_wide-dhcpv6-control is not set +# CONFIG_PACKAGE_wide-dhcpv6-relay is not set +# CONFIG_PACKAGE_wide-dhcpv6-server is not set +# CONFIG_PACKAGE_6in4 is not set +# CONFIG_PACKAGE_6scripts is not set +# CONFIG_PACKAGE_6to4 is not set +# CONFIG_PACKAGE_6tunnel is not set +# CONFIG_PACKAGE_ahcpd is not set +# CONFIG_PACKAGE_aiccu is not set +# CONFIG_PACKAGE_dhcp6-client is not set +# CONFIG_PACKAGE_dhcp6-server is not set +# CONFIG_PACKAGE_dibbler-client is not set +# CONFIG_PACKAGE_dibbler-poslib is not set +# CONFIG_PACKAGE_dibbler-relay is not set +# CONFIG_PACKAGE_dibbler-server is not set +# CONFIG_PACKAGE_gw6c is not set +CONFIG_PACKAGE_ip6tables=y +# CONFIG_PACKAGE_ip6tables-utils is not set +# CONFIG_PACKAGE_ipv6calc is not set +# CONFIG_PACKAGE_mrd6 is not set +# CONFIG_PACKAGE_ptrtd is not set +# CONFIG_PACKAGE_radvd is not set +# CONFIG_PACKAGE_send is not set +# CONFIG_PACKAGE_totd is not set +# CONFIG_PACKAGE_tspc is not set + +# +# LuCI +# + +# +# Applications +# +# CONFIG_PACKAGE_luci-app-ddns is not set +# CONFIG_PACKAGE_luci-app-diag-core is not set +# CONFIG_PACKAGE_luci-app-diag-devinfo is not set +# CONFIG_PACKAGE_luci-app-ffwizard is not set +# CONFIG_PACKAGE_luci-app-ffwizard-leipzig is not set +# CONFIG_PACKAGE_luci-app-firewall is not set +# CONFIG_PACKAGE_luci-app-hd-idle is not set +# CONFIG_PACKAGE_luci-app-initmgr is not set +# CONFIG_PACKAGE_luci-app-lqtapifoss is not set +# CONFIG_PACKAGE_luci-app-mmc-over-gpio is not set +# CONFIG_PACKAGE_luci-app-multiwan is not set +# CONFIG_PACKAGE_luci-app-ntpc is not set +# CONFIG_PACKAGE_luci-app-olsr is not set +# CONFIG_PACKAGE_luci-app-olsr-viz is not set +# CONFIG_PACKAGE_luci-app-openvpn is not set +# CONFIG_PACKAGE_luci-app-p2pblock is not set +# CONFIG_PACKAGE_luci-app-p910nd is not set +# CONFIG_PACKAGE_luci-app-polipo is not set +# CONFIG_PACKAGE_luci-app-qos is not set +# CONFIG_PACKAGE_luci-app-radvd is not set +# CONFIG_PACKAGE_luci-app-samba is not set +# CONFIG_PACKAGE_luci-app-siitwizard is not set +# CONFIG_PACKAGE_luci-app-splash is not set +# CONFIG_PACKAGE_luci-app-statistics is not set +# CONFIG_PACKAGE_luci-app-tinyproxy is not set +# CONFIG_PACKAGE_luci-app-upnp is not set +# CONFIG_PACKAGE_luci-app-ushare is not set +# CONFIG_PACKAGE_luci-app-vnstat is not set +# CONFIG_PACKAGE_luci-app-voice-core is not set +# CONFIG_PACKAGE_luci-app-voice-diag is not set +# CONFIG_PACKAGE_luci-app-wol is not set + +# +# Collections +# +# CONFIG_PACKAGE_luci is not set +# CONFIG_PACKAGE_luci-ssl is not set + +# +# Freifunk +# +# CONFIG_PACKAGE_freifunk-firewall is not set +# CONFIG_PACKAGE_freifunk-p2pblock is not set +# CONFIG_PACKAGE_freifunk-watchdog is not set +# CONFIG_PACKAGE_luci-mod-freifunk-community is not set + +# +# Libraries +# +# CONFIG_PACKAGE_libiwinfo is not set +# CONFIG_PACKAGE_luci-lib-core is not set +# CONFIG_PACKAGE_luci-lib-core_compile is not set +# CONFIG_PACKAGE_luci-lib-core_stripped is not set +# CONFIG_PACKAGE_luci-lib-core_srcdiet is not set +CONFIG_PACKAGE_luci-lib-core_source=y +# CONFIG_PACKAGE_luci-lib-fastindex is not set +# CONFIG_PACKAGE_luci-lib-httpclient is not set +# CONFIG_PACKAGE_luci-lib-ipkg is not set +# CONFIG_PACKAGE_luci-lib-json is not set +# CONFIG_PACKAGE_luci-lib-lmo is not set +# CONFIG_PACKAGE_luci-lib-lucid is not set +# CONFIG_PACKAGE_luci-lib-lucid-http is not set +# CONFIG_PACKAGE_luci-lib-lucid-rpc is not set +# CONFIG_PACKAGE_luci-lib-nixio is not set +CONFIG_PACKAGE_luci-lib-nixio_notls=y +# CONFIG_PACKAGE_luci-lib-nixio_axtls is not set +# CONFIG_PACKAGE_luci-lib-nixio_cyassl is not set +# CONFIG_PACKAGE_luci-lib-nixio_openssl is not set +# CONFIG_PACKAGE_luci-lib-px5g is not set +# CONFIG_PACKAGE_luci-lib-sys is not set +# CONFIG_PACKAGE_luci-lib-web is not set + +# +# Modules +# +# CONFIG_PACKAGE_luci-mod-admin-core is not set +# CONFIG_PACKAGE_luci-mod-admin-full is not set +# CONFIG_PACKAGE_luci-mod-freifunk is not set +# CONFIG_PACKAGE_luci-mod-rpc is not set + +# +# Server Interfaces +# +# CONFIG_PACKAGE_luci-sgi-cgi is not set +# CONFIG_PACKAGE_luci-sgi-uhttpd is not set + +# +# Themes +# +# CONFIG_PACKAGE_luci-theme-base is not set +# CONFIG_PACKAGE_luci-theme-fledermaus is not set +# CONFIG_PACKAGE_luci-theme-freifunk is not set +# CONFIG_PACKAGE_luci-theme-freifunk-bno is not set +# CONFIG_PACKAGE_luci-theme-freifunk-generic is not set +# CONFIG_PACKAGE_luci-theme-freifunk-hannover is not set +# CONFIG_PACKAGE_luci-theme-openwrt is not set + +# +# Translations +# +# CONFIG_PACKAGE_luci-i18n-catalan is not set +# CONFIG_PACKAGE_luci-i18n-english is not set +# CONFIG_PACKAGE_luci-i18n-french is not set +# CONFIG_PACKAGE_luci-i18n-german is not set +# CONFIG_PACKAGE_luci-i18n-greek is not set +# CONFIG_PACKAGE_luci-i18n-italian is not set +# CONFIG_PACKAGE_luci-i18n-japanese is not set +# CONFIG_PACKAGE_luci-i18n-malay is not set +# CONFIG_PACKAGE_luci-i18n-norwegian is not set +# CONFIG_PACKAGE_luci-i18n-portuguese is not set +# CONFIG_PACKAGE_luci-i18n-portuguese_brazilian is not set +# CONFIG_PACKAGE_luci-i18n-russian is not set +# CONFIG_PACKAGE_luci-i18n-spanish is not set +# CONFIG_PACKAGE_luci-i18n-vietnamese is not set + +# +# Kernel modules +# + +# +# Block Devices +# +# CONFIG_PACKAGE_kmod-aoe is not set +# CONFIG_PACKAGE_kmod-ata-core is not set +# CONFIG_PACKAGE_kmod-dm is not set +# CONFIG_PACKAGE_kmod-ide-core is not set +# CONFIG_PACKAGE_kmod-loop is not set +# CONFIG_PACKAGE_kmod-nbd is not set +# CONFIG_PACKAGE_kmod-scsi-core is not set +# CONFIG_PACKAGE_kmod-scsi-generic is not set + +# +# Cryptographic API modules +# +CONFIG_PACKAGE_kmod-crypto-core=y +CONFIG_PACKAGE_kmod-crypto-aes=y +CONFIG_PACKAGE_kmod-crypto-arc4=y +# CONFIG_PACKAGE_kmod-crypto-authenc is not set +# CONFIG_PACKAGE_kmod-crypto-des is not set +# CONFIG_PACKAGE_kmod-crypto-hmac is not set +# CONFIG_PACKAGE_kmod-crypto-hw-geode is not set +# CONFIG_PACKAGE_kmod-crypto-hw-hifn-795x is not set +# CONFIG_PACKAGE_kmod-crypto-hw-padlock is not set +# CONFIG_PACKAGE_kmod-crypto-md5 is not set +# CONFIG_PACKAGE_kmod-crypto-michael-mic is not set +# CONFIG_PACKAGE_kmod-crypto-misc is not set +# CONFIG_PACKAGE_kmod-crypto-null is not set +# CONFIG_PACKAGE_kmod-crypto-ocf is not set +# CONFIG_PACKAGE_kmod-crypto-sha1 is not set +# CONFIG_PACKAGE_kmod-crypto-test is not set +# CONFIG_PACKAGE_kmod-loop-aes is not set + +# +# Filesystems +# +# CONFIG_PACKAGE_kmod-fs-autofs4 is not set +# CONFIG_PACKAGE_kmod-fs-btrfs is not set +# CONFIG_PACKAGE_kmod-fs-cifs is not set +# CONFIG_PACKAGE_kmod-fs-exportfs is not set +# CONFIG_PACKAGE_kmod-fs-ext2 is not set +# CONFIG_PACKAGE_kmod-fs-ext3 is not set +# CONFIG_PACKAGE_kmod-fs-ext4 is not set +# CONFIG_PACKAGE_kmod-fs-hfs is not set +# CONFIG_PACKAGE_kmod-fs-hfsplus is not set +# CONFIG_PACKAGE_kmod-fs-isofs is not set +# CONFIG_PACKAGE_kmod-fs-mbcache is not set +# CONFIG_PACKAGE_kmod-fs-minix is not set +# CONFIG_PACKAGE_kmod-fs-msdos is not set +# CONFIG_PACKAGE_kmod-fs-nfs is not set +# CONFIG_PACKAGE_kmod-fs-nfs-common is not set +# CONFIG_PACKAGE_kmod-fs-nfsd is not set +# CONFIG_PACKAGE_kmod-fs-ntfs is not set +# CONFIG_PACKAGE_kmod-fs-reiserfs is not set +# CONFIG_PACKAGE_kmod-fs-udf is not set +# CONFIG_PACKAGE_kmod-fs-vfat is not set +# CONFIG_PACKAGE_kmod-fs-xfs is not set +# CONFIG_PACKAGE_kmod-fuse is not set +# CONFIG_PACKAGE_kmod-nls-base is not set +# CONFIG_PACKAGE_kmod-nls-cp1250 is not set +# CONFIG_PACKAGE_kmod-nls-cp1251 is not set +# CONFIG_PACKAGE_kmod-nls-cp437 is not set +# CONFIG_PACKAGE_kmod-nls-cp775 is not set +# CONFIG_PACKAGE_kmod-nls-cp850 is not set +# CONFIG_PACKAGE_kmod-nls-cp852 is not set +# CONFIG_PACKAGE_kmod-nls-cp866 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-1 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set +# CONFIG_PACKAGE_kmod-nls-koi8r is not set +# CONFIG_PACKAGE_kmod-nls-utf8 is not set + +# +# FireWire support +# +# CONFIG_PACKAGE_kmod-ieee1394 is not set + +# +# Hardware Monitoring Support +# +# CONFIG_PACKAGE_kmod-hwmon-core is not set + +# +# I2C support +# +# CONFIG_PACKAGE_kmod-i2c-core is not set +# CONFIG_PACKAGE_kmod-i2c-gpio-custom is not set + +# +# Netfilter Extensions +# +# CONFIG_PACKAGE_kmod-arptables is not set +# CONFIG_PACKAGE_kmod-ebtables is not set +CONFIG_PACKAGE_kmod-ip6tables=y +CONFIG_PACKAGE_kmod-ipt-core=y +# CONFIG_PACKAGE_kmod-ipt-chaos is not set +# CONFIG_PACKAGE_kmod-ipt-compat-xtables is not set +# CONFIG_PACKAGE_kmod-ipt-condition is not set +CONFIG_PACKAGE_kmod-ipt-conntrack=y +# CONFIG_PACKAGE_kmod-ipt-conntrack-extra is not set +# CONFIG_PACKAGE_kmod-ipt-delude is not set +# CONFIG_PACKAGE_kmod-ipt-extra is not set +# CONFIG_PACKAGE_kmod-ipt-filter is not set +# CONFIG_PACKAGE_kmod-ipt-imq is not set +# CONFIG_PACKAGE_kmod-ipt-ipopt is not set +# CONFIG_PACKAGE_kmod-ipt-ipp2p is not set +# CONFIG_PACKAGE_kmod-ipt-iprange is not set +# CONFIG_PACKAGE_kmod-ipt-ipsec is not set +# CONFIG_PACKAGE_kmod-ipt-ipset is not set +CONFIG_PACKAGE_kmod-ipt-nat=y +# CONFIG_PACKAGE_kmod-ipt-nat-extra is not set +CONFIG_PACKAGE_kmod-ipt-nathelper=y +# CONFIG_PACKAGE_kmod-ipt-nathelper-extra is not set +# CONFIG_PACKAGE_kmod-ipt-queue is not set +# CONFIG_PACKAGE_kmod-ipt-rawnat is not set +# CONFIG_PACKAGE_kmod-ipt-rawpost is not set +# CONFIG_PACKAGE_kmod-ipt-tarpit is not set +# CONFIG_PACKAGE_kmod-ipt-ulog is not set +# CONFIG_PACKAGE_kmod-nf-conntrack-netlink is not set +# CONFIG_PACKAGE_kmod-nfnetlink is not set +# CONFIG_PACKAGE_kmod-nfnetlink-log is not set +# CONFIG_PACKAGE_kmod-nfnetlink-queue is not set + +# +# Network Devices +# +# CONFIG_PACKAGE_kmod-dummy is not set +# CONFIG_PACKAGE_kmod-e1000 is not set +# CONFIG_PACKAGE_kmod-et131x is not set +# CONFIG_PACKAGE_kmod-gigaset is not set +# CONFIG_PACKAGE_kmod-hfcmulti is not set +# CONFIG_PACKAGE_kmod-libphy is not set +# CONFIG_PACKAGE_kmod-macvlan is not set +# CONFIG_PACKAGE_kmod-siit is not set +# CONFIG_PACKAGE_kmod-ssb-gige is not set +# CONFIG_PACKAGE_kmod-tg3 is not set + +# +# Network Support +# +# CONFIG_PACKAGE_kmod-appletalk is not set +# CONFIG_PACKAGE_kmod-atm is not set +# CONFIG_PACKAGE_kmod-ax25 is not set +# CONFIG_PACKAGE_kmod-batgat is not set +CONFIG_PACKAGE_kmod-batman-adv=y +# CONFIG_KMOD_BATMAN_ADV_DEBUG_LOG is not set +CONFIG_KMOD_BATMAN_ADV_BATCTL=y +# CONFIG_PACKAGE_kmod-bonding is not set +# CONFIG_PACKAGE_kmod-capi is not set +# CONFIG_PACKAGE_kmod-gre is not set +# CONFIG_PACKAGE_kmod-ip6-tunnel is not set +# CONFIG_PACKAGE_kmod-ipip is not set +# CONFIG_PACKAGE_kmod-ipsec is not set +# CONFIG_PACKAGE_kmod-iptunnel4 is not set +# CONFIG_PACKAGE_kmod-iptunnel6 is not set +CONFIG_PACKAGE_kmod-ipv6=y +# CONFIG_PACKAGE_kmod-isdn4linux is not set +# CONFIG_PACKAGE_kmod-misdn is not set +# CONFIG_PACKAGE_kmod-mp-alg is not set +# CONFIG_PACKAGE_kmod-openswan is not set +# CONFIG_PACKAGE_kmod-pktgen is not set +CONFIG_PACKAGE_kmod-ppp=y +# CONFIG_PACKAGE_kmod-mppe is not set +# CONFIG_PACKAGE_kmod-ppp-synctty is not set +# CONFIG_PACKAGE_kmod-pppoa is not set +CONFIG_PACKAGE_kmod-pppoe=y +# CONFIG_PACKAGE_kmod-pppol2tp is not set +# CONFIG_PACKAGE_kmod-sched is not set +# CONFIG_PACKAGE_kmod-sit is not set +CONFIG_PACKAGE_kmod-tun=y +# CONFIG_PACKAGE_kmod-wprobe is not set + +# +# OCF Configuration +# +# CONFIG_PACKAGE_kmod-ocf-ubsec-ssb is not set + +# +# Other modules +# +# CONFIG_PACKAGE_kmod-block2mtd is not set +# CONFIG_PACKAGE_kmod-bluetooth is not set +# CONFIG_PACKAGE_kmod-button-hotplug is not set +# CONFIG_PACKAGE_kmod-compcache is not set +CONFIG_PACKAGE_kmod-crc-ccitt=y +# CONFIG_PACKAGE_kmod-crc-itu-t is not set +# CONFIG_PACKAGE_kmod-crc16 is not set +# CONFIG_PACKAGE_kmod-crc7 is not set +CONFIG_PACKAGE_kmod-diag=y +# CONFIG_PACKAGE_kmod-eeprom-93cx6 is not set +# CONFIG_PACKAGE_kmod-gpio-dev is not set +# CONFIG_PACKAGE_kmod-gpiotoggling is not set +# CONFIG_PACKAGE_kmod-hid is not set +# CONFIG_PACKAGE_kmod-input-core is not set +# CONFIG_PACKAGE_kmod-input-evdev is not set +# CONFIG_PACKAGE_kmod-input-gpio-buttons is not set +# CONFIG_PACKAGE_kmod-input-gpio-keys is not set +# CONFIG_PACKAGE_kmod-input-joydev is not set +# CONFIG_PACKAGE_kmod-input-polldev is not set +# CONFIG_PACKAGE_kmod-leds-gpio is not set +# CONFIG_PACKAGE_kmod-ledtrig-morse is not set +# CONFIG_PACKAGE_kmod-ledtrig-netdev is not set +# CONFIG_PACKAGE_kmod-mmc is not set +# CONFIG_PACKAGE_kmod-mmc-over-gpio is not set +# CONFIG_PACKAGE_kmod-pcmcia-core is not set +# CONFIG_PACKAGE_kmod-pcspkr is not set +# CONFIG_PACKAGE_kmod-rfkill is not set +# CONFIG_PACKAGE_kmod-rtc-rv5c386a is not set +# CONFIG_PACKAGE_kmod-softdog is not set +CONFIG_PACKAGE_kmod-switch=y +# CONFIG_PACKAGE_kmod-textsearch is not set +# CONFIG_PACKAGE_kmod-ucmb is not set +# CONFIG_PACKAGE_kmod-zaptel14 is not set +# CONFIG_PACKAGE_kmod-zaptel14-wctdm is not set +# CONFIG_PACKAGE_kmod-zaptel14-wcusb is not set + +# +# SPI Support +# +# CONFIG_PACKAGE_kmod-mmc-spi is not set +# CONFIG_PACKAGE_kmod-spi-bitbang is not set +# CONFIG_PACKAGE_kmod-spi-dev is not set +# CONFIG_PACKAGE_kmod-spi-gpio is not set +# CONFIG_PACKAGE_kmod-spi-gpio-old is not set +# CONFIG_PACKAGE_kmod-spi-ks8995 is not set + +# +# Sound Support +# +# CONFIG_PACKAGE_kmod-sound-core is not set + +# +# USB Support +# +# CONFIG_PACKAGE_kmod-usb-core is not set +# CONFIG_PACKAGE_kmod-usbip is not set + +# +# Video Support +# +# CONFIG_PACKAGE_kmod-video-core is not set + +# +# Voice over IP +# + +# +# W1 support +# +# CONFIG_PACKAGE_kmod-w1 is not set + +# +# Wireless Drivers +# +# CONFIG_PACKAGE_kmod-acx is not set +# CONFIG_PACKAGE_kmod-ath is not set +# CONFIG_PACKAGE_kmod-ath5k is not set +# CONFIG_PACKAGE_kmod-ath9k is not set +CONFIG_PACKAGE_kmod-b43=y + +# +# Configuration +# +CONFIG_B43_STABLE=y +# CONFIG_B43_EXPERIMENTAL is not set +# CONFIG_B43_OPENFIRMWARE is not set +CONFIG_B43_FW_SQUASH=y +CONFIG_B43_FW_SQUASH_COREREVS="5,6,7,8,9,10,13,14,15" +CONFIG_B43_FW_SQUASH_PHYTYPES="G,LP" +CONFIG_PACKAGE_kmod-b43legacy=y + +# +# Configuration +# +CONFIG_B43LEGACY_FW_SQUASH=y +CONFIG_B43LEGACY_FW_SQUASH_COREREVS="1,2,3,4" +# CONFIG_PACKAGE_kmod-carl9170 is not set +CONFIG_PACKAGE_kmod-cfg80211=y +# CONFIG_PACKAGE_kmod-hostap is not set +# CONFIG_PACKAGE_kmod-hostap-cs is not set +# CONFIG_PACKAGE_kmod-hostap-pci is not set +# CONFIG_PACKAGE_kmod-hostap-plx is not set +# CONFIG_PACKAGE_kmod-lib80211 is not set +# CONFIG_PACKAGE_kmod-libertas-sd is not set +# CONFIG_PACKAGE_kmod-libertas-usb is not set +CONFIG_PACKAGE_kmod-mac80211=y + +# +# Configuration +# +CONFIG_PACKAGE_MAC80211_DEBUGFS=y +# CONFIG_PACKAGE_kmod-mac80211-hwsim is not set +# CONFIG_PACKAGE_kmod-madwifi is not set +# CONFIG_PACKAGE_kmod-mwl8k is not set +# CONFIG_PACKAGE_kmod-net-airo is not set +# CONFIG_PACKAGE_kmod-net-hermes is not set +# CONFIG_PACKAGE_kmod-net-hermes-pci is not set +# CONFIG_PACKAGE_kmod-net-hermes-pcmcia is not set +# CONFIG_PACKAGE_kmod-net-hermes-plx is not set +# CONFIG_PACKAGE_kmod-net-ipw2100 is not set +# CONFIG_PACKAGE_kmod-net-ipw2200 is not set +# CONFIG_PACKAGE_kmod-net-libipw is not set +# CONFIG_PACKAGE_kmod-net-prism54 is not set +# CONFIG_PACKAGE_kmod-p54-common is not set +# CONFIG_PACKAGE_kmod-p54-pci is not set +# CONFIG_PACKAGE_kmod-p54-usb is not set +# CONFIG_PACKAGE_kmod-rt2400-pci is not set +# CONFIG_PACKAGE_kmod-rt2500-pci is not set +# CONFIG_PACKAGE_kmod-rt2500-usb is not set +# CONFIG_PACKAGE_kmod-rt2800-lib is not set +# CONFIG_PACKAGE_kmod-rt2800-pci is not set +# CONFIG_PACKAGE_kmod-rt2800-usb is not set +# CONFIG_PACKAGE_kmod-rt2x00-lib is not set +# CONFIG_PACKAGE_kmod-rt2x00-pci is not set +# CONFIG_PACKAGE_kmod-rt2x00-usb is not set +# CONFIG_PACKAGE_kmod-rt61-pci is not set +# CONFIG_PACKAGE_kmod-rt73-usb is not set +# CONFIG_PACKAGE_kmod-rtl8180 is not set +# CONFIG_PACKAGE_kmod-rtl8187 is not set +# CONFIG_PACKAGE_kmod-zd1211rw is not set + +# +# Xen paravirtualized guest support +# + +# +# Boot Loaders +# + +# +# Administration +# + +# +# webif +# +# CONFIG_PACKAGE_webif is not set +# CONFIG_PACKAGE_webif-applications is not set +# CONFIG_PACKAGE_webif-batman is not set +# CONFIG_PACKAGE_webif-fonheartbeat is not set +# CONFIG_PACKAGE_webif-freeloader is not set +# CONFIG_PACKAGE_webif-freeloader-lang-cs is not set +# CONFIG_PACKAGE_webif-hotspot is not set +# CONFIG_PACKAGE_webif-iw-lua is not set +# CONFIG_PACKAGE_webif-iw-lua-chillispot is not set +# CONFIG_PACKAGE_webif-iw-lua-openssl is not set +# CONFIG_PACKAGE_webif-iw-lua-openvpn is not set +# CONFIG_PACKAGE_webif-lang-ca is not set +# CONFIG_PACKAGE_webif-lang-cs is not set +# CONFIG_PACKAGE_webif-lang-da is not set +# CONFIG_PACKAGE_webif-lang-de is not set +# CONFIG_PACKAGE_webif-lang-ee is not set +# CONFIG_PACKAGE_webif-lang-es is not set +# CONFIG_PACKAGE_webif-lang-fr is not set +# CONFIG_PACKAGE_webif-lang-hr is not set +# CONFIG_PACKAGE_webif-lang-hu is not set +# CONFIG_PACKAGE_webif-lang-it is not set +# CONFIG_PACKAGE_webif-lang-nl is not set +# CONFIG_PACKAGE_webif-lang-no is not set +# CONFIG_PACKAGE_webif-lang-pl is not set +# CONFIG_PACKAGE_webif-lang-pt is not set +# CONFIG_PACKAGE_webif-lang-ru is not set +# CONFIG_PACKAGE_webif-lang-sq is not set +# CONFIG_PACKAGE_webif-lang-sv is not set +# CONFIG_PACKAGE_webif-lang-uk is not set +# CONFIG_PACKAGE_webif-lang-zh is not set +# CONFIG_PACKAGE_webif-mesh is not set +# CONFIG_PACKAGE_webif-netsukuku is not set +# CONFIG_PACKAGE_webif-theme-clubman is not set +# CONFIG_PACKAGE_webif-theme-sedky1 is not set +# CONFIG_PACKAGE_webif-theme-xwrt is not set +# CONFIG_PACKAGE_webif-theme-xwrt-mini is not set +# CONFIG_PACKAGE_webif-theme-zephyr is not set +# CONFIG_PACKAGE_webif-vpn is not set + +# +# zabbix +# +# CONFIG_PACKAGE_zabbix-agent is not set +# CONFIG_PACKAGE_zabbix-sender is not set +# CONFIG_PACKAGE_zabbix-server is not set +# CONFIG_PACKAGE_debootstrap is not set +# CONFIG_PACKAGE_gkrellmd is not set +# CONFIG_PACKAGE_htop is not set +# CONFIG_PACKAGE_monit is not set +# CONFIG_PACKAGE_monit-nossl is not set +# CONFIG_PACKAGE_muninlite is not set +# CONFIG_PACKAGE_osirisd is not set +# CONFIG_PACKAGE_sudo is not set +# CONFIG_PACKAGE_syslog-ng is not set +# CONFIG_PACKAGE_syslog-ng3 is not set + +# +# Mail +# +# CONFIG_PACKAGE_dovecot is not set +# CONFIG_PACKAGE_fetchmail is not set +# CONFIG_PACKAGE_fetchmail-nossl is not set +# CONFIG_PACKAGE_imapfilter is not set +# CONFIG_PACKAGE_mini-sendmail is not set +# CONFIG_PACKAGE_msmtp is not set +# CONFIG_PACKAGE_msmtp-nossl is not set +# CONFIG_PACKAGE_mutt is not set +# CONFIG_PACKAGE_nullmailer is not set +# CONFIG_PACKAGE_procmail is not set +# CONFIG_PACKAGE_ssmtp is not set +# CONFIG_PACKAGE_xmail is not set + +# +# Xorg +# + +# +# app +# +# CONFIG_PACKAGE_iceauth is not set +# CONFIG_PACKAGE_pwrtray is not set + +# +# data +# +# CONFIG_PACKAGE_xbitmaps is not set + +# +# driver +# + +# +# font +# +# CONFIG_PACKAGE_liberation-fonts-ttf is not set + +# +# font-utils +# +# CONFIG_PACKAGE_fontconfig is not set + +# +# framework +# +# CONFIG_PACKAGE_qt4 is not set + +# +# libraries +# +# CONFIG_PACKAGE_atk is not set +# CONFIG_PACKAGE_cairo is not set +# CONFIG_PACKAGE_cairomm is not set +# CONFIG_PACKAGE_hippo-canvas is not set +# CONFIG_PACKAGE_libICE is not set +# CONFIG_PACKAGE_libSM is not set +# CONFIG_PACKAGE_libXau is not set +# CONFIG_PACKAGE_libXdmcp is not set +# CONFIG_PACKAGE_libXfont is not set +# CONFIG_PACKAGE_libast is not set +# CONFIG_PACKAGE_libdrm is not set +# CONFIG_PACKAGE_libfontenc is not set +# CONFIG_PACKAGE_libpciaccess is not set +# CONFIG_PACKAGE_librsvg is not set +# CONFIG_PACKAGE_libxcb is not set +# CONFIG_PACKAGE_libxcb-composite is not set +# CONFIG_PACKAGE_libxcb-damage is not set +# CONFIG_PACKAGE_libxcb-dpms is not set +# CONFIG_PACKAGE_libxcb-glx is not set +# CONFIG_PACKAGE_libxcb-randr is not set +# CONFIG_PACKAGE_libxcb-record is not set +# CONFIG_PACKAGE_libxcb-render is not set +# CONFIG_PACKAGE_libxcb-res is not set +# CONFIG_PACKAGE_libxcb-screensaver is not set +# CONFIG_PACKAGE_libxcb-shape is not set +# CONFIG_PACKAGE_libxcb-shm is not set +# CONFIG_PACKAGE_libxcb-sync is not set +# CONFIG_PACKAGE_libxcb-xevie is not set +# CONFIG_PACKAGE_libxcb-xf86dri is not set +# CONFIG_PACKAGE_libxcb-xfixes is not set +# CONFIG_PACKAGE_libxcb-xinerama is not set +# CONFIG_PACKAGE_libxcb-xlib is not set +# CONFIG_PACKAGE_libxcb-xprint is not set +# CONFIG_PACKAGE_libxcb-xtest is not set +# CONFIG_PACKAGE_libxcb-xv is not set +# CONFIG_PACKAGE_libxcb-xvmc is not set +# CONFIG_PACKAGE_orbit2 is not set +# CONFIG_PACKAGE_pango is not set +# CONFIG_PACKAGE_pangomm is not set +# CONFIG_PACKAGE_pixman is not set +# CONFIG_PACKAGE_tslib is not set +# CONFIG_PACKAGE_xtrans is not set + +# +# proto +# +# CONFIG_PACKAGE_applewmproto is not set +# CONFIG_PACKAGE_bigreqsproto is not set +# CONFIG_PACKAGE_calibrateproto is not set +# CONFIG_PACKAGE_compositeproto is not set +# CONFIG_PACKAGE_damageproto is not set +# CONFIG_PACKAGE_dmxproto is not set +# CONFIG_PACKAGE_dri2proto is not set +# CONFIG_PACKAGE_fixesproto is not set +# CONFIG_PACKAGE_fontcacheproto is not set +# CONFIG_PACKAGE_fontsproto is not set +# CONFIG_PACKAGE_glproto is not set +# CONFIG_PACKAGE_inputproto is not set +# CONFIG_PACKAGE_kbproto is not set +# CONFIG_PACKAGE_printproto is not set +# CONFIG_PACKAGE_randrproto is not set +# CONFIG_PACKAGE_recordproto is not set +# CONFIG_PACKAGE_renderproto is not set +# CONFIG_PACKAGE_resourceproto is not set +# CONFIG_PACKAGE_scrnsaverproto is not set +# CONFIG_PACKAGE_videoproto is not set +# CONFIG_PACKAGE_windowswmproto is not set +# CONFIG_PACKAGE_xcmiscproto is not set +# CONFIG_PACKAGE_xextproto is not set +# CONFIG_PACKAGE_xf86bigfontproto is not set +# CONFIG_PACKAGE_xf86dgaproto is not set +# CONFIG_PACKAGE_xf86driproto is not set +# CONFIG_PACKAGE_xf86vidmodeproto is not set +# CONFIG_PACKAGE_xineramaproto is not set +# CONFIG_PACKAGE_xproto is not set + +# +# server +# +# CONFIG_PACKAGE_xserver-common is not set + +# +# terminals +# + +# +# window manager +# + +# +# Libraries +# + +# +# Filesystem +# +# CONFIG_PACKAGE_libblkid is not set +# CONFIG_PACKAGE_libext2fs is not set +# CONFIG_PACKAGE_libnfsidmap is not set +# CONFIG_PACKAGE_libow is not set +# CONFIG_PACKAGE_libow-capi is not set +# CONFIG_PACKAGE_libsysfs is not set +# CONFIG_PACKAGE_libuuid is not set + +# +# SSL +# +# CONFIG_PACKAGE_libaxtls is not set +# CONFIG_PACKAGE_libcyassl is not set +# CONFIG_PACKAGE_libgnutls is not set +# CONFIG_PACKAGE_libgnutls-extra is not set +# CONFIG_PACKAGE_libgnutls-openssl is not set +# CONFIG_PACKAGE_libmatrixssl is not set +CONFIG_PACKAGE_libopenssl=y + +# +# Configuration +# +# CONFIG_OPENSSL_ENGINE is not set +# CONFIG_PACKAGE_libpolarssl is not set + +# +# Sound +# +# CONFIG_PACKAGE_liblo is not set + +# +# database +# +# CONFIG_PACKAGE_libpq is not set +# CONFIG_PACKAGE_libsqlite2 is not set +# CONFIG_PACKAGE_libsqlite3 is not set + +# +# disc +# +# CONFIG_PACKAGE_libdevmapper is not set +# CONFIG_PACKAGE_alsa-lib is not set +# CONFIG_PACKAGE_argp-standalone is not set +# CONFIG_PACKAGE_argtable is not set +# CONFIG_PACKAGE_bluez-libs is not set +# CONFIG_PACKAGE_boost-date_time is not set +# CONFIG_PACKAGE_boost-filesystem is not set +# CONFIG_PACKAGE_boost-function_types is not set +# CONFIG_PACKAGE_boost-graph is not set +# CONFIG_PACKAGE_boost-iostreams is not set +# CONFIG_PACKAGE_boost-math is not set +# CONFIG_PACKAGE_boost-program_options is not set +# CONFIG_PACKAGE_boost-python is not set +# CONFIG_PACKAGE_boost-regex is not set +# CONFIG_PACKAGE_boost-serialization is not set +# CONFIG_PACKAGE_boost-signals is not set +# CONFIG_PACKAGE_boost-system is not set +# CONFIG_PACKAGE_boost-test is not set +# CONFIG_PACKAGE_boost-thread is not set +# CONFIG_PACKAGE_boost-wave is not set +# CONFIG_PACKAGE_ccid is not set +# CONFIG_PACKAGE_cgilib is not set +# CONFIG_PACKAGE_check is not set +# CONFIG_PACKAGE_clearsilver is not set +# CONFIG_PACKAGE_confuse is not set +# CONFIG_PACKAGE_credis is not set +# CONFIG_PACKAGE_directfb is not set +# CONFIG_PACKAGE_elfutils is not set +# CONFIG_PACKAGE_fcgi is not set +# CONFIG_PACKAGE_fftw3 is not set +# CONFIG_PACKAGE_firewall-mod-save is not set +# CONFIG_PACKAGE_fribidi is not set +# CONFIG_PACKAGE_giflib is not set +# CONFIG_PACKAGE_glib1 is not set +# CONFIG_PACKAGE_glib2 is not set +# CONFIG_PACKAGE_glibmm is not set +# CONFIG_PACKAGE_id3lib is not set +# CONFIG_PACKAGE_libIDL2 is not set +# CONFIG_PACKAGE_libaa is not set +# CONFIG_PACKAGE_libaio is not set +# CONFIG_PACKAGE_libamsel is not set +# CONFIG_PACKAGE_libao is not set +# CONFIG_PACKAGE_libapr is not set +# CONFIG_PACKAGE_libaprutil is not set +# CONFIG_PACKAGE_libart is not set +# CONFIG_PACKAGE_libatomicops is not set +# CONFIG_PACKAGE_libaudiofile is not set +# CONFIG_PACKAGE_libavahi is not set +# CONFIG_PACKAGE_libcares is not set +# CONFIG_PACKAGE_libcelt is not set +# CONFIG_PACKAGE_libcharset is not set +# CONFIG_PACKAGE_libcli is not set +# CONFIG_PACKAGE_libclinkc is not set +# CONFIG_PACKAGE_libconfig is not set +# CONFIG_PACKAGE_libcroco is not set +# CONFIG_PACKAGE_libcryptoxx is not set +# CONFIG_PACKAGE_libcurl is not set +# CONFIG_PACKAGE_libcwiid is not set +# CONFIG_PACKAGE_libdaemon is not set +# CONFIG_PACKAGE_libdb47 is not set +# CONFIG_PACKAGE_libdbi is not set +# CONFIG_PACKAGE_libdbus is not set +# CONFIG_PACKAGE_libdbus-glib is not set +# CONFIG_PACKAGE_libdlna is not set +# CONFIG_PACKAGE_libdnet is not set +# CONFIG_PACKAGE_libdvbpsi is not set +# CONFIG_PACKAGE_libdvdread is not set +# CONFIG_PACKAGE_libelf is not set +# CONFIG_PACKAGE_libevent is not set +# CONFIG_PACKAGE_libeventlog is not set +# CONFIG_PACKAGE_libexif is not set +# CONFIG_PACKAGE_libexpat is not set +# CONFIG_PACKAGE_libexslt is not set +# CONFIG_PACKAGE_libezxml is not set +# CONFIG_PACKAGE_libfaad2 is not set +# CONFIG_PACKAGE_libffi is not set +# CONFIG_PACKAGE_libffi-sable is not set +# CONFIG_PACKAGE_libffmpeg is not set +# CONFIG_PACKAGE_libflac is not set +# CONFIG_PACKAGE_libfreetype is not set +# CONFIG_PACKAGE_libgconf2 is not set +# CONFIG_PACKAGE_libgcrypt is not set +# CONFIG_PACKAGE_libgd is not set +# CONFIG_PACKAGE_libgdbm is not set +# CONFIG_PACKAGE_libgmp is not set +# CONFIG_PACKAGE_libgpg-error is not set +# CONFIG_PACKAGE_libgphoto2 is not set +# CONFIG_PACKAGE_libgsl is not set +# CONFIG_PACKAGE_libgsm is not set +# CONFIG_PACKAGE_libgssapi is not set +# CONFIG_PACKAGE_libhowl is not set +# CONFIG_PACKAGE_libiconv is not set +# CONFIG_PACKAGE_libiconv-full is not set +# CONFIG_PACKAGE_libid3tag is not set +# CONFIG_PACKAGE_libidn is not set +# CONFIG_PACKAGE_libiksemel is not set +# CONFIG_PACKAGE_libinklevel is not set +# CONFIG_PACKAGE_libintl is not set +# CONFIG_PACKAGE_libintl-full is not set +CONFIG_PACKAGE_libiptc=y +# CONFIG_PACKAGE_libiw is not set +# CONFIG_PACKAGE_libjpeg is not set +# CONFIG_PACKAGE_libjs is not set +# CONFIG_PACKAGE_libjson is not set +# CONFIG_PACKAGE_libltdl is not set +# CONFIG_PACKAGE_liblua is not set +CONFIG_PACKAGE_liblzo=y +# CONFIG_PACKAGE_libmad is not set +# CONFIG_PACKAGE_libmagic is not set +# CONFIG_PACKAGE_libmcrypt is not set +# CONFIG_PACKAGE_libmikmod is not set +# CONFIG_PACKAGE_libmms is not set +# CONFIG_PACKAGE_libmpcdec is not set +# CONFIG_PACKAGE_libmpd is not set +# CONFIG_PACKAGE_libmysqlclient is not set +# CONFIG_PACKAGE_libmysqlclient_r is not set +CONFIG_PACKAGE_libncurses=y +# CONFIG_PACKAGE_libneon is not set +# CONFIG_PACKAGE_libnet0 is not set +# CONFIG_PACKAGE_libnet1 is not set +# CONFIG_PACKAGE_libnetfilter-conntrack is not set +# CONFIG_PACKAGE_libnetfilter-log is not set +# CONFIG_PACKAGE_libnetfilter-queue is not set +# CONFIG_PACKAGE_libnetsnmp is not set +# CONFIG_PACKAGE_libnfc is not set +# CONFIG_PACKAGE_libnfnetlink is not set +# CONFIG_PACKAGE_libnids is not set +# CONFIG_PACKAGE_libnl is not set +CONFIG_PACKAGE_libnl-tiny=y +# CONFIG_PACKAGE_libnmeap is not set +# CONFIG_PACKAGE_libogg is not set +# CONFIG_PACKAGE_liboil is not set +# CONFIG_PACKAGE_libol is not set +# CONFIG_PACKAGE_libopal is not set +# CONFIG_PACKAGE_libopencdk is not set +# CONFIG_PACKAGE_libopenh323 is not set +# CONFIG_PACKAGE_libopenldap is not set +# CONFIG_PACKAGE_liboping is not set +# CONFIG_PACKAGE_libortp is not set +# CONFIG_PACKAGE_libosip2 is not set +# CONFIG_PACKAGE_libowfat is not set +# CONFIG_PACKAGE_libpar2 is not set +# CONFIG_PACKAGE_libpcap is not set +# CONFIG_PACKAGE_libpcre is not set +# CONFIG_PACKAGE_libpcsclite is not set +# CONFIG_PACKAGE_libpng is not set +# CONFIG_PACKAGE_libpopt is not set +# CONFIG_PACKAGE_libpostproc is not set +# CONFIG_PACKAGE_libptmalloc3 is not set +# CONFIG_PACKAGE_libradiusclient-ng is not set +# CONFIG_PACKAGE_libre is not set +# CONFIG_PACKAGE_libreadline is not set +# CONFIG_PACKAGE_librpcsecgss is not set +# CONFIG_PACKAGE_librrd is not set +# CONFIG_PACKAGE_librrd1 is not set +# CONFIG_PACKAGE_librsync is not set +# CONFIG_PACKAGE_libruby is not set +# CONFIG_PACKAGE_libsamplerate is not set +# CONFIG_PACKAGE_libsasl2 is not set +# CONFIG_PACKAGE_libsdl is not set +# CONFIG_PACKAGE_libsdl-mixer is not set +# CONFIG_PACKAGE_libsdl-sound is not set +# CONFIG_PACKAGE_libsensors is not set +# CONFIG_PACKAGE_libshout is not set +# CONFIG_PACKAGE_libsigcxx is not set +# CONFIG_PACKAGE_libsndfile is not set +# CONFIG_PACKAGE_libsoup is not set +# CONFIG_PACKAGE_libspandsp is not set +# CONFIG_PACKAGE_libspeex is not set +# CONFIG_PACKAGE_libspeexdsp is not set +# CONFIG_PACKAGE_libsynce is not set +# CONFIG_PACKAGE_libtasn1 is not set +# CONFIG_PACKAGE_libtheora is not set +# CONFIG_PACKAGE_libtiff is not set +# CONFIG_PACKAGE_libtiffxx is not set +# CONFIG_PACKAGE_libtorrent is not set +# CONFIG_PACKAGE_libtwin is not set +CONFIG_PACKAGE_libuci=y +# CONFIG_PACKAGE_libuci-lua is not set +# CONFIG_PACKAGE_libucl is not set +# CONFIG_PACKAGE_libupnp is not set +# CONFIG_PACKAGE_libusb is not set +# CONFIG_PACKAGE_libusb-1.0 is not set +# CONFIG_PACKAGE_libv4l is not set +# CONFIG_PACKAGE_libvncserver is not set +# CONFIG_PACKAGE_libvorbis is not set +# CONFIG_PACKAGE_libvorbisidec is not set +# CONFIG_PACKAGE_libwrap is not set +# CONFIG_PACKAGE_libwxbase is not set +# CONFIG_PACKAGE_libxapian is not set +# CONFIG_PACKAGE_libxml2 is not set +# CONFIG_PACKAGE_libxslt is not set +CONFIG_PACKAGE_libxtables=y +# CONFIG_PACKAGE_linux-atm is not set +# CONFIG_PACKAGE_mxml is not set +# CONFIG_PACKAGE_phidget21 is not set +# CONFIG_PACKAGE_poco is not set +# CONFIG_PACKAGE_pthsem is not set +# CONFIG_PACKAGE_ptlib is not set +# CONFIG_PACKAGE_pwlib is not set +# CONFIG_PACKAGE_radlib is not set +# CONFIG_PACKAGE_sane-libs is not set +# CONFIG_PACKAGE_serdisplib is not set +# CONFIG_PACKAGE_st2205tool is not set +# CONFIG_PACKAGE_taglib is not set +# CONFIG_PACKAGE_taglibc is not set +# CONFIG_PACKAGE_uclibcxx is not set +# CONFIG_PACKAGE_ustl is not set +# CONFIG_PACKAGE_xmlrpc-c is not set +# CONFIG_PACKAGE_xmlrpc-c_abyss is not set +# CONFIG_PACKAGE_xmlrpc-c_client is not set +# CONFIG_PACKAGE_xmlrpc-c_common is not set +# CONFIG_PACKAGE_xmlrpc-c_internal is not set +# CONFIG_PACKAGE_xmlrpc-c_server is not set +# CONFIG_PACKAGE_xmlrpc-c_server-abyss is not set +# CONFIG_PACKAGE_xmpp4r is not set +# CONFIG_PACKAGE_zaptel-libtonezone is not set +# CONFIG_PACKAGE_zaptel14-libtonezone is not set +CONFIG_PACKAGE_zlib=y + +# +# Network +# + +# +# BitTorrent +# +# CONFIG_PACKAGE_btpd is not set +# CONFIG_PACKAGE_cbtt is not set +# CONFIG_PACKAGE_cbtt-mysql is not set +# CONFIG_PACKAGE_ctorrent is not set +# CONFIG_PACKAGE_ctorrent-nossl is not set +# CONFIG_DELUGE_WITH_WEBUI is not set +# CONFIG_PACKAGE_rtorrent is not set +# CONFIG_PACKAGE_transmission-daemon is not set +# CONFIG_PACKAGE_transmission-remote is not set + +# +# Captive Portals +# +# CONFIG_PACKAGE_chillispot is not set +# CONFIG_PACKAGE_coova-chilli is not set +# CONFIG_PACKAGE_nocatauth is not set +# CONFIG_PACKAGE_nocatsplash is not set +# CONFIG_PACKAGE_nodogsplash is not set +# CONFIG_PACKAGE_pepperspot is not set +# CONFIG_PACKAGE_wifidog is not set + +# +# DNS +# +# CONFIG_PACKAGE_bind-check is not set +# CONFIG_PACKAGE_bind-client is not set +# CONFIG_PACKAGE_bind-dig is not set +# CONFIG_PACKAGE_bind-dnssec is not set +# CONFIG_PACKAGE_bind-host is not set +# CONFIG_PACKAGE_bind-libs is not set +# CONFIG_PACKAGE_bind-rndc is not set +# CONFIG_PACKAGE_bind-server is not set +# CONFIG_PACKAGE_bind-tools is not set +# CONFIG_PACKAGE_djbdns-axfrdns is not set +# CONFIG_PACKAGE_djbdns-base is not set +# CONFIG_PACKAGE_djbdns-dnscache is not set +# CONFIG_PACKAGE_djbdns-rbldns is not set +# CONFIG_PACKAGE_djbdns-tinydns is not set +# CONFIG_PACKAGE_djbdns-tools is not set +# CONFIG_PACKAGE_djbdns-walldns is not set +# CONFIG_PACKAGE_dudders is not set +# CONFIG_PACKAGE_maradns is not set + +# +# FTP +# +# CONFIG_PACKAGE_atftp is not set +# CONFIG_PACKAGE_atftpd is not set +# CONFIG_PACKAGE_cmdftp is not set +# CONFIG_PACKAGE_lftp is not set +# CONFIG_PACKAGE_proftpd is not set +# CONFIG_PACKAGE_pure-ftpd is not set +# CONFIG_PACKAGE_pure-ftpd-tls is not set +# CONFIG_PACKAGE_vsftpd is not set +# CONFIG_PACKAGE_wput is not set +# CONFIG_PACKAGE_yafc is not set + +# +# Filesystem +# +# CONFIG_PACKAGE_nfs-kernel-server is not set +# CONFIG_PACKAGE_nfs-server is not set +# CONFIG_PACKAGE_owftpd is not set +# CONFIG_PACKAGE_owhttpd is not set +# CONFIG_PACKAGE_owserver is not set +# CONFIG_PACKAGE_unfs3 is not set + +# +# HA +# +# CONFIG_PACKAGE_keepalived is not set + +# +# Instant Messaging +# +# CONFIG_PACKAGE_bitchx is not set +# CONFIG_PACKAGE_bitlbee is not set +# CONFIG_PACKAGE_dircproxy is not set +# CONFIG_PACKAGE_imspector is not set +# CONFIG_PACKAGE_irssi is not set +# CONFIG_PACKAGE_irssi-glib1 is not set +# CONFIG_PACKAGE_irssi-nossl is not set +# CONFIG_PACKAGE_miau is not set +# CONFIG_PACKAGE_prosody is not set +# CONFIG_PACKAGE_psybnc is not set +# CONFIG_PACKAGE_reaim is not set +# CONFIG_PACKAGE_tmsnc is not set +# CONFIG_PACKAGE_weechat is not set +# CONFIG_PACKAGE_znc is not set + +# +# Monitoring +# +# CONFIG_PACKAGE_jtg is not set +# CONFIG_PACKAGE_nagios is not set +# CONFIG_PACKAGE_nagios-plugins is not set + +# +# NMAP Suite +# +# CONFIG_PACKAGE_ncat is not set +# CONFIG_PACKAGE_ncat-ssl is not set +# CONFIG_PACKAGE_ndiff is not set +# CONFIG_PACKAGE_nmap is not set +# CONFIG_PACKAGE_nmap-ssl is not set +# CONFIG_PACKAGE_nping is not set + +# +# NNTP +# +# CONFIG_PACKAGE_leafnode is not set +# CONFIG_PACKAGE_nzbget is not set +# CONFIG_PACKAGE_nzbgetweb is not set + +# +# P2P +# +# CONFIG_PACKAGE_amule is not set +# CONFIG_PACKAGE_mutella is not set +# CONFIG_PACKAGE_opendchub is not set +# CONFIG_PACKAGE_uhub is not set + +# +# Proxy Servers +# +# CONFIG_PACKAGE_haproxy is not set +# CONFIG_PACKAGE_polipo is not set +# CONFIG_PACKAGE_privoxy is not set +# CONFIG_PACKAGE_rinetd is not set +# CONFIG_PACKAGE_tinyproxy is not set + +# +# SSH +# +# CONFIG_PACKAGE_autossh is not set +# CONFIG_PACKAGE_openssh-client is not set +# CONFIG_PACKAGE_openssh-client-utils is not set +# CONFIG_PACKAGE_openssh-keygen is not set +# CONFIG_PACKAGE_openssh-server is not set +# CONFIG_PACKAGE_openssh-sftp-client is not set +# CONFIG_PACKAGE_openssh-sftp-server is not set +# CONFIG_PACKAGE_sshtunnel is not set + +# +# Time Synchronization +# +# CONFIG_PACKAGE_chrony is not set +# CONFIG_PACKAGE_htpdate is not set +# CONFIG_PACKAGE_ntp-utils is not set +# CONFIG_PACKAGE_ntpclient is not set +# CONFIG_PACKAGE_ntpd is not set +# CONFIG_PACKAGE_ntpd-ssl is not set +# CONFIG_PACKAGE_ntpdate is not set +# CONFIG_PACKAGE_openntpd is not set + +# +# VPN +# +# CONFIG_PACKAGE_frickin is not set +# CONFIG_PACKAGE_l2tpd is not set +# CONFIG_PACKAGE_l2tpns is not set +# CONFIG_PACKAGE_matrixtunnel is not set +# CONFIG_PACKAGE_n2n is not set +# CONFIG_PACKAGE_openconnect is not set +# CONFIG_PACKAGE_openl2tp is not set +# CONFIG_PACKAGE_openswan is not set +# CONFIG_PACKAGE_openvpn is not set +# CONFIG_PACKAGE_openvpn-devel is not set +# CONFIG_PACKAGE_pptpd is not set +# CONFIG_PACKAGE_ssltunnel is not set +# CONFIG_PACKAGE_strongswan4 is not set +CONFIG_PACKAGE_tinc=y +# CONFIG_PACKAGE_uanytun is not set +# CONFIG_PACKAGE_uanytun-nocrypt is not set +# CONFIG_PACKAGE_uanytun-sslcrypt is not set +# CONFIG_PACKAGE_vpnc is not set +# CONFIG_PACKAGE_vpzone is not set +# CONFIG_PACKAGE_vtun is not set +# CONFIG_PACKAGE_xl2tpd is not set + +# +# Version Control Systems +# +# CONFIG_PACKAGE_git is not set +# CONFIG_PACKAGE_mercurial is not set +# CONFIG_PACKAGE_subversion-libs is not set + +# +# Web +# +# CONFIG_PACKAGE_apache is not set +# CONFIG_PACKAGE_axhttpd is not set +# CONFIG_PACKAGE_axtlswrap is not set +# CONFIG_PACKAGE_elinks is not set +# CONFIG_PACKAGE_hiawatha is not set +# CONFIG_PACKAGE_lighttpd is not set +# CONFIG_PACKAGE_mini-httpd is not set +# CONFIG_PACKAGE_mini-httpd-htpasswd is not set +# CONFIG_PACKAGE_mini-httpd-matrixssl is not set +# CONFIG_PACKAGE_mini-httpd-openssl is not set +# CONFIG_PACKAGE_spawn-fcgi is not set + +# +# asterisk14 (Complete Open Source PBX), v1.4.x +# +# CONFIG_PACKAGE_asterisk14 is not set +# CONFIG_PACKAGE_asterisk14-app-meetme is not set +# CONFIG_PACKAGE_asterisk14-chan-alsa is not set +# CONFIG_PACKAGE_asterisk14-chan-gtalk is not set +# CONFIG_PACKAGE_asterisk14-chan-h323 is not set +# CONFIG_PACKAGE_asterisk14-chan-mgcp is not set +# CONFIG_PACKAGE_asterisk14-chan-mobile is not set +# CONFIG_PACKAGE_asterisk14-chan-ooh323 is not set +# CONFIG_PACKAGE_asterisk14-chan-oss is not set +# CONFIG_PACKAGE_asterisk14-chan-skinny is not set +# CONFIG_PACKAGE_asterisk14-codec-lpc10 is not set +# CONFIG_PACKAGE_asterisk14-codec-speex is not set +# CONFIG_PACKAGE_asterisk14-format-mp3 is not set +# CONFIG_PACKAGE_asterisk14-mini is not set +# CONFIG_PACKAGE_asterisk14-mysql is not set +# CONFIG_PACKAGE_asterisk14-pbx-dundi is not set +# CONFIG_PACKAGE_asterisk14-pgsql is not set +# CONFIG_PACKAGE_asterisk14-rawplayer is not set +# CONFIG_PACKAGE_asterisk14-res-agi is not set +# CONFIG_PACKAGE_asterisk14-res-crypto is not set +# CONFIG_PACKAGE_asterisk14-sounds is not set +# CONFIG_PACKAGE_asterisk14-sqlite is not set +# CONFIG_PACKAGE_asterisk14-voicemail is not set + +# +# asterisk16 (Complete Open Source PBX), v1.6.x +# +# CONFIG_PACKAGE_asterisk16 is not set +# CONFIG_PACKAGE_asterisk16-app-alarmreceiver is not set +# CONFIG_PACKAGE_asterisk16-app-authenticate is not set +# CONFIG_PACKAGE_asterisk16-app-chanisavail is not set +# CONFIG_PACKAGE_asterisk16-app-chanspy is not set +# CONFIG_PACKAGE_asterisk16-app-directed-pickup is not set +# CONFIG_PACKAGE_asterisk16-app-exec is not set +# CONFIG_PACKAGE_asterisk16-app-minivm is not set +# CONFIG_PACKAGE_asterisk16-app-originate is not set +# CONFIG_PACKAGE_asterisk16-app-read is not set +# CONFIG_PACKAGE_asterisk16-app-readexten is not set +# CONFIG_PACKAGE_asterisk16-app-sayunixtime is not set +# CONFIG_PACKAGE_asterisk16-app-setcallerid is not set +# CONFIG_PACKAGE_asterisk16-app-sms is not set +# CONFIG_PACKAGE_asterisk16-app-stack is not set +# CONFIG_PACKAGE_asterisk16-app-system is not set +# CONFIG_PACKAGE_asterisk16-app-talkdetect is not set +# CONFIG_PACKAGE_asterisk16-app-verbose is not set +# CONFIG_PACKAGE_asterisk16-app-waituntil is not set +# CONFIG_PACKAGE_asterisk16-app-while is not set +# CONFIG_PACKAGE_asterisk16-cdr is not set +# CONFIG_PACKAGE_asterisk16-chan-agent is not set +# CONFIG_PACKAGE_asterisk16-chan-gtalk is not set +# CONFIG_PACKAGE_asterisk16-chan-iax2 is not set +# CONFIG_PACKAGE_asterisk16-chan-local is not set +# CONFIG_PACKAGE_asterisk16-codec-a-mu is not set +# CONFIG_PACKAGE_asterisk16-codec-g726 is not set +# CONFIG_PACKAGE_asterisk16-codec-ulaw is not set +# CONFIG_PACKAGE_asterisk16-curl is not set +# CONFIG_PACKAGE_asterisk16-format-g726 is not set +# CONFIG_PACKAGE_asterisk16-format-g729 is not set +# CONFIG_PACKAGE_asterisk16-format-sln is not set +# CONFIG_PACKAGE_asterisk16-format-sln16 is not set +# CONFIG_PACKAGE_asterisk16-func-blacklist is not set +# CONFIG_PACKAGE_asterisk16-func-channel is not set +# CONFIG_PACKAGE_asterisk16-func-db is not set +# CONFIG_PACKAGE_asterisk16-func-devstate is not set +# CONFIG_PACKAGE_asterisk16-func-extstate is not set +# CONFIG_PACKAGE_asterisk16-func-global is not set +# CONFIG_PACKAGE_asterisk16-func-shell is not set +# CONFIG_PACKAGE_asterisk16-func-vmcount is not set +# CONFIG_PACKAGE_asterisk16-pbx-ael is not set +# CONFIG_PACKAGE_asterisk16-pbx-spool is not set +# CONFIG_PACKAGE_asterisk16-res-ael-share is not set +# CONFIG_PACKAGE_asterisk16-res-agi is not set +# CONFIG_PACKAGE_asterisk16-res-musiconhold is not set +# CONFIG_PACKAGE_asterisk16-sounds is not set +# CONFIG_PACKAGE_asterisk16-voicemail is not set + +# +# dial-in/up +# +# CONFIG_PACKAGE_rp-l2tpd is not set +# CONFIG_PACKAGE_rp-pppoe-client is not set +# CONFIG_PACKAGE_rp-pppoe-relay is not set +# CONFIG_PACKAGE_rp-pppoe-server is not set +# CONFIG_PACKAGE_rp-pppoe-sniff is not set + +# +# firewall +# +# CONFIG_PACKAGE_amwall is not set +# CONFIG_PACKAGE_ipkungfu is not set +# CONFIG_PACKAGE_iptables-snmp is not set +# CONFIG_PACKAGE_shorewall-lite is not set + +# +# firmware +# + +# +# layer7 +# + +# +# multimedia +# +# CONFIG_PACKAGE_gmediaserver is not set +# CONFIG_PACKAGE_icecast is not set + +# +# pmacct (accounting and aggregation tools) +# +# CONFIG_PACKAGE_nfacctd is not set +# CONFIG_PACKAGE_nfacctd-mysql is not set +# CONFIG_PACKAGE_nfacctd-pgsql is not set +# CONFIG_PACKAGE_nfacctd-sqlite is not set +# CONFIG_PACKAGE_pmacct-client is not set +# CONFIG_PACKAGE_pmacctd is not set +# CONFIG_PACKAGE_pmacctd-mysql is not set +# CONFIG_PACKAGE_pmacctd-pgsql is not set +# CONFIG_PACKAGE_pmacctd-sqlite is not set + +# +# printing +# +# CONFIG_PACKAGE_cups is not set +# CONFIG_PACKAGE_p910nd is not set + +# +# samba - NetBIOS/SMB implementation +# +# CONFIG_PACKAGE_samba-common is not set + +# +# snort (Ligthweight Network Intrusion Detection System) +# +# CONFIG_PACKAGE_snort is not set +# CONFIG_PACKAGE_snort-mysql is not set +# CONFIG_PACKAGE_snort-pgsql is not set + +# +# snort-wireless (Ligthweight Network Intrusion Detection System) +# +# CONFIG_PACKAGE_snort-wireless is not set +# CONFIG_PACKAGE_snort-wireless-mysql is not set +# CONFIG_PACKAGE_snort-wireless-pgsql is not set + +# +# wireless +# +# CONFIG_PACKAGE_aircrack-ng is not set +# CONFIG_PACKAGE_aircrack-ptw is not set +# CONFIG_PACKAGE_kismet-client is not set +# CONFIG_PACKAGE_kismet-drone is not set +# CONFIG_PACKAGE_kismet-server is not set +# CONFIG_PACKAGE_mdk3 is not set +# CONFIG_PACKAGE_wavemon is not set +# CONFIG_PACKAGE_airpwn is not set +# CONFIG_PACKAGE_aoetools is not set +# CONFIG_PACKAGE_appweb is not set +# CONFIG_PACKAGE_aprx is not set +# CONFIG_PACKAGE_arpd is not set +# CONFIG_PACKAGE_arptables is not set +# CONFIG_PACKAGE_arpwatch is not set +# CONFIG_PACKAGE_avahi-autoipd is not set +# CONFIG_PACKAGE_avahi-daemon is not set +# CONFIG_PACKAGE_avahi-dnsconfd is not set +# CONFIG_PACKAGE_axel is not set +# CONFIG_PACKAGE_babeld is not set +# CONFIG_PACKAGE_bahamut is not set +# CONFIG_PACKAGE_baresip is not set +# CONFIG_PACKAGE_batmand is not set +# CONFIG_PACKAGE_bing is not set +# CONFIG_PACKAGE_bird4 is not set +# CONFIG_PACKAGE_bird6 is not set +# CONFIG_PACKAGE_birdc4 is not set +# CONFIG_PACKAGE_birdc6 is not set +# CONFIG_PACKAGE_bmon is not set +# CONFIG_PACKAGE_bmxd is not set +# CONFIG_PACKAGE_bwm is not set +# CONFIG_PACKAGE_cdp-tools is not set +# CONFIG_PACKAGE_chaosvpn is not set +# CONFIG_PACKAGE_chat is not set +# CONFIG_PACKAGE_conntrack-tools is not set +# CONFIG_PACKAGE_corkscrew is not set +CONFIG_PACKAGE_crda=y +# CONFIG_PACKAGE_crowdcontrol is not set +# CONFIG_PACKAGE_curl is not set +# CONFIG_PACKAGE_cutter is not set +# CONFIG_PACKAGE_dansguardian is not set +# CONFIG_PACKAGE_darkstat is not set +# CONFIG_PACKAGE_ddns-scripts is not set +# CONFIG_PACKAGE_dhcp-forwarder is not set +# CONFIG_PACKAGE_dhcp-relay is not set +# CONFIG_PACKAGE_dhcp-server is not set +# CONFIG_PACKAGE_dhcpcd is not set +# CONFIG_PACKAGE_ditg is not set +# CONFIG_PACKAGE_dmapd is not set +# CONFIG_PACKAGE_dsl-qos-queue is not set +# CONFIG_PACKAGE_dsniff is not set +# CONFIG_PACKAGE_e169-stats is not set +# CONFIG_PACKAGE_ebtables is not set +# CONFIG_PACKAGE_ebtables-utils is not set +# CONFIG_PACKAGE_ekg is not set +# CONFIG_PACKAGE_etherwake is not set +# CONFIG_PACKAGE_ethtool is not set +# CONFIG_PACKAGE_ettercap is not set +# CONFIG_PACKAGE_ez-ipupdate is not set +# CONFIG_PACKAGE_faifa is not set +# CONFIG_PACKAGE_flow-tools is not set +# CONFIG_PACKAGE_fping is not set +# CONFIG_PACKAGE_fprobe is not set +# CONFIG_PACKAGE_fprobe-ulog is not set +# CONFIG_PACKAGE_freeradius is not set +# CONFIG_PACKAGE_freeradius2 is not set +# CONFIG_PACKAGE_freeswitch is not set +# CONFIG_PACKAGE_genl is not set +# CONFIG_PACKAGE_gesftpserver is not set +# CONFIG_PACKAGE_gpsd is not set +# CONFIG_PACKAGE_horst is not set +# CONFIG_PACKAGE_hostapd is not set +# CONFIG_PACKAGE_hostapd-mini is not set +# CONFIG_PACKAGE_hostapd-utils is not set +# CONFIG_PACKAGE_howl-autoipd is not set +# CONFIG_PACKAGE_howl-mdnsresponder is not set +# CONFIG_PACKAGE_howl-nifd is not set +# CONFIG_PACKAGE_howl-utils is not set +# CONFIG_PACKAGE_hping3 is not set +# CONFIG_PACKAGE_httping is not set +# CONFIG_PACKAGE_httptunnel is not set +# CONFIG_PACKAGE_icmptx is not set +# CONFIG_PACKAGE_ifenslave is not set +# CONFIG_PACKAGE_ifstat is not set +# CONFIG_PACKAGE_iftop is not set +# CONFIG_PACKAGE_igmpproxy is not set +# CONFIG_PACKAGE_imsnif is not set +# CONFIG_PACKAGE_iodine is not set +# CONFIG_PACKAGE_iodined is not set +# CONFIG_PACKAGE_ip is not set +# CONFIG_PACKAGE_ipcad is not set +# CONFIG_PACKAGE_iperf is not set +# CONFIG_PACKAGE_iperf-mt is not set +# CONFIG_PACKAGE_ipsec-tools is not set +# CONFIG_PACKAGE_ipset is not set +CONFIG_PACKAGE_iptables=y +# CONFIG_PACKAGE_iptables-mod-chaos is not set +# CONFIG_PACKAGE_iptables-mod-condition is not set +CONFIG_PACKAGE_iptables-mod-conntrack=y +# CONFIG_PACKAGE_iptables-mod-conntrack-extra is not set +# CONFIG_PACKAGE_iptables-mod-delude is not set +# CONFIG_PACKAGE_iptables-mod-extra is not set +# CONFIG_PACKAGE_iptables-mod-filter is not set +# CONFIG_PACKAGE_iptables-mod-imq is not set +# CONFIG_PACKAGE_iptables-mod-ipopt is not set +# CONFIG_PACKAGE_iptables-mod-ipp2p is not set +# CONFIG_PACKAGE_iptables-mod-iprange is not set +# CONFIG_PACKAGE_iptables-mod-ipsec is not set +# CONFIG_PACKAGE_iptables-mod-ipset is not set +CONFIG_PACKAGE_iptables-mod-nat=y +# CONFIG_PACKAGE_iptables-mod-nat-extra is not set +# CONFIG_PACKAGE_iptables-mod-rawnat is not set +# CONFIG_PACKAGE_iptables-mod-tarpit is not set +# CONFIG_PACKAGE_iptables-mod-ulog is not set +# CONFIG_PACKAGE_iptables-utils is not set +# CONFIG_PACKAGE_iptraf is not set +# CONFIG_PACKAGE_ipupdate is not set +# CONFIG_PACKAGE_iputils-arping is not set +# CONFIG_PACKAGE_iputils-clockdiff is not set +# CONFIG_PACKAGE_iputils-ping is not set +# CONFIG_PACKAGE_iputils-tftpd is not set +# CONFIG_PACKAGE_iputils-tracepath is not set +# CONFIG_PACKAGE_isakmpd is not set +CONFIG_PACKAGE_iw=y +# CONFIG_PACKAGE_kamailio is not set +# CONFIG_PACKAGE_karma is not set +# CONFIG_PACKAGE_keynote is not set +# CONFIG_PACKAGE_knock is not set +# CONFIG_PACKAGE_knockd is not set +# CONFIG_PACKAGE_krb5-client is not set +# CONFIG_PACKAGE_krb5-libs is not set +# CONFIG_PACKAGE_krb5-server is not set +# CONFIG_PACKAGE_l2tpv3tun is not set +# CONFIG_PACKAGE_lft is not set +# CONFIG_PACKAGE_linuxigd is not set +# CONFIG_PACKAGE_lldpd is not set +# CONFIG_PACKAGE_lsm is not set +# CONFIG_PACKAGE_m-route is not set +# CONFIG_PACKAGE_mac-to-devinfo is not set +# CONFIG_PACKAGE_madwimax is not set +# CONFIG_PACKAGE_mdnsresponder is not set +# CONFIG_PACKAGE_memcached is not set +# CONFIG_PACKAGE_mgen is not set +# CONFIG_PACKAGE_miax is not set +# CONFIG_PACKAGE_mii-tool is not set +# CONFIG_PACKAGE_mini-snmpd is not set +# CONFIG_PACKAGE_miniupnpc is not set +# CONFIG_PACKAGE_miniupnpd is not set +# CONFIG_PACKAGE_mtr is not set +# CONFIG_PACKAGE_multiwan is not set +# CONFIG_PACKAGE_mvprelay is not set +# CONFIG_PACKAGE_natpmp is not set +# CONFIG_PACKAGE_nbd is not set +# CONFIG_PACKAGE_nbtscan is not set +# CONFIG_PACKAGE_ncftp is not set +# CONFIG_PACKAGE_ncftp-utils is not set +# CONFIG_PACKAGE_ndyndns is not set +# CONFIG_PACKAGE_net-tools-arp is not set +# CONFIG_PACKAGE_net-tools-hostname is not set +# CONFIG_PACKAGE_net-tools-ifconfig is not set +# CONFIG_PACKAGE_net-tools-ipmaddr is not set +# CONFIG_PACKAGE_net-tools-iptunnel is not set +# CONFIG_PACKAGE_net-tools-mii-tool is not set +# CONFIG_PACKAGE_net-tools-nameif is not set +# CONFIG_PACKAGE_net-tools-netstat is not set +# CONFIG_PACKAGE_net-tools-plipconfig is not set +# CONFIG_PACKAGE_net-tools-rarp is not set +# CONFIG_PACKAGE_net-tools-route is not set +# CONFIG_PACKAGE_net-tools-slattach is not set +# CONFIG_PACKAGE_netatalk is not set +CONFIG_PACKAGE_netcat=y +# CONFIG_PACKAGE_netdiscover is not set +# CONFIG_PACKAGE_netperf is not set +# CONFIG_PACKAGE_netpipe is not set +# CONFIG_PACKAGE_netstat-nat is not set +# CONFIG_PACKAGE_nginx is not set +# CONFIG_PACKAGE_ngircd is not set +# CONFIG_PACKAGE_ngrep is not set +# CONFIG_PACKAGE_noping is not set +# CONFIG_PACKAGE_nrpe is not set +# CONFIG_PACKAGE_nstx is not set +# CONFIG_PACKAGE_nstxd is not set +# CONFIG_PACKAGE_nufw is not set +# CONFIG_PACKAGE_nufw-modules is not set +# CONFIG_PACKAGE_nufw-python is not set +# CONFIG_PACKAGE_nutcpc is not set +# CONFIG_PACKAGE_oidentd is not set +# CONFIG_PACKAGE_olsrd is not set +# CONFIG_PACKAGE_openldap-server is not set +# CONFIG_PACKAGE_opennhrp is not set +# CONFIG_PACKAGE_openrrcp is not set +# CONFIG_PACKAGE_openser is not set +# CONFIG_PACKAGE_opensips is not set +# CONFIG_PACKAGE_openslp is not set +# CONFIG_PACKAGE_oping is not set +# CONFIG_PACKAGE_parprouted is not set +# CONFIG_PACKAGE_pcapsipdump is not set +# CONFIG_PACKAGE_peerguardian is not set +# CONFIG_PACKAGE_pen is not set +# CONFIG_PACKAGE_pepsal is not set +# CONFIG_PACKAGE_portmap is not set +# CONFIG_PACKAGE_portsentry is not set +CONFIG_PACKAGE_ppp=y +# CONFIG_PACKAGE_ppp-mod-pppoa is not set +CONFIG_PACKAGE_ppp-mod-pppoe=y +# CONFIG_PACKAGE_ppp-mod-radius is not set +# CONFIG_PACKAGE_pppdump is not set +# CONFIG_PACKAGE_pppstats is not set +# CONFIG_PACKAGE_pptp is not set +# CONFIG_PACKAGE_ptpd is not set +# CONFIG_PACKAGE_ptunnel is not set +# CONFIG_PACKAGE_qolyester is not set +# CONFIG_PACKAGE_quagga is not set +# CONFIG_PACKAGE_raddump is not set +# CONFIG_PACKAGE_radiusclient-ng is not set +# CONFIG_PACKAGE_radsecproxy is not set +# CONFIG_PACKAGE_rarpd is not set +# CONFIG_PACKAGE_redir is not set +# CONFIG_PACKAGE_remotefs-server is not set +# CONFIG_PACKAGE_restund is not set +# CONFIG_PACKAGE_rrs is not set +# CONFIG_PACKAGE_rrs-nossl is not set +# CONFIG_PACKAGE_rssh is not set +# CONFIG_PACKAGE_rsync is not set +# CONFIG_PACKAGE_rtpproxy is not set +# CONFIG_PACKAGE_samba3 is not set +# CONFIG_PACKAGE_scanlogd is not set +# CONFIG_PACKAGE_scdp is not set +# CONFIG_PACKAGE_sctp is not set +# CONFIG_PACKAGE_send-nsca is not set +# CONFIG_PACKAGE_ser2net is not set +# CONFIG_PACKAGE_serialoverip is not set +# CONFIG_PACKAGE_shat is not set +# CONFIG_PACKAGE_sipp is not set +# CONFIG_PACKAGE_siproxd is not set +# CONFIG_PACKAGE_sipsak is not set +# CONFIG_PACKAGE_slurm is not set +# CONFIG_PACKAGE_smap is not set +# CONFIG_PACKAGE_smcroute is not set +# CONFIG_PACKAGE_smtptrapd is not set +# CONFIG_PACKAGE_snmp-utils is not set +# CONFIG_PACKAGE_snmpd is not set +# CONFIG_PACKAGE_snmpd-static is not set +# CONFIG_PACKAGE_socat is not set +# CONFIG_PACKAGE_softflowd is not set +# CONFIG_PACKAGE_squid is not set +# CONFIG_PACKAGE_srelay is not set +# CONFIG_PACKAGE_sscep is not set +# CONFIG_PACKAGE_sslcat is not set +# CONFIG_PACKAGE_sslh is not set +# CONFIG_PACKAGE_sslsniff is not set +# CONFIG_PACKAGE_stun-client is not set +# CONFIG_PACKAGE_stund is not set +# CONFIG_PACKAGE_stunnel is not set +# CONFIG_PACKAGE_synce-dccm is not set +# CONFIG_PACKAGE_tc is not set +# CONFIG_PACKAGE_tcpdump is not set +# CONFIG_PACKAGE_tcpdump-mini is not set +# CONFIG_PACKAGE_tcptraceroute is not set +# CONFIG_PACKAGE_tctool is not set +# CONFIG_PACKAGE_tftp-hpa is not set +# CONFIG_PACKAGE_tftpd-hpa is not set +# CONFIG_PACKAGE_tor is not set +# CONFIG_PACKAGE_tor-alpha is not set +# CONFIG_PACKAGE_tsocks is not set +# CONFIG_PACKAGE_ttcp is not set +# CONFIG_PACKAGE_ucarp is not set +# CONFIG_PACKAGE_ucspi-tcp is not set +# CONFIG_PACKAGE_udp-broadcast-relay is not set +# CONFIG_PACKAGE_udpxy is not set +# CONFIG_PACKAGE_uhttpd is not set +# CONFIG_PACKAGE_ulogd is not set +# CONFIG_PACKAGE_umurmur-openssl is not set +# CONFIG_PACKAGE_umurmur-polarssl is not set +# CONFIG_PACKAGE_unbound is not set +# CONFIG_PACKAGE_uob-nomad is not set +# CONFIG_PACKAGE_updatedd is not set +# CONFIG_PACKAGE_usbip is not set +# CONFIG_PACKAGE_uucp is not set +# CONFIG_PACKAGE_vblade is not set +# CONFIG_PACKAGE_veth is not set +# CONFIG_PACKAGE_vgp is not set +# CONFIG_PACKAGE_vis is not set +# CONFIG_PACKAGE_vnc-reflector is not set +# CONFIG_PACKAGE_vncrepeater is not set +# CONFIG_PACKAGE_vnstat is not set +# CONFIG_PACKAGE_vrrpd is not set +# CONFIG_PACKAGE_wccpd is not set +# CONFIG_PACKAGE_wdiag is not set +# CONFIG_PACKAGE_wget is not set +# CONFIG_PACKAGE_wget-nossl is not set +# CONFIG_PACKAGE_wing is not set +# CONFIG_PACKAGE_wiviz is not set +# CONFIG_PACKAGE_wol is not set +# CONFIG_PACKAGE_wpa-cli is not set +# CONFIG_PACKAGE_wpa-supplicant is not set +# CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK is not set +# CONFIG_WPA_RFKILL_SUPPORT is not set +# CONFIG_PACKAGE_wpa-supplicant-mini is not set +# CONFIG_PACKAGE_wpad is not set +CONFIG_PACKAGE_wpad-mini=y +# CONFIG_PACKAGE_wprobe-export is not set +# CONFIG_PACKAGE_wprobe-util is not set +# CONFIG_PACKAGE_wshaper is not set +# CONFIG_PACKAGE_xinetd is not set +# CONFIG_PACKAGE_xsupplicant is not set +# CONFIG_PACKAGE_yaddns is not set + +# +# Multimedia +# +# CONFIG_PACKAGE_GraphicsMagick is not set +# CONFIG_PACKAGE_GraphicsMagick-jpeg is not set +# CONFIG_PACKAGE_ffmpeg is not set +# CONFIG_PACKAGE_ffserver is not set +# CONFIG_PACKAGE_fswebcam is not set +# CONFIG_PACKAGE_ftpd-topfield is not set +# CONFIG_PACKAGE_gphoto2 is not set +# CONFIG_PACKAGE_gst-mod-alsa is not set +# CONFIG_PACKAGE_gst-mod-app is not set +# CONFIG_PACKAGE_gst-mod-audioconvert is not set +# CONFIG_PACKAGE_gst-mod-audiofx is not set +# CONFIG_PACKAGE_gst-mod-audiorate is not set +# CONFIG_PACKAGE_gst-mod-audioresample is not set +# CONFIG_PACKAGE_gst-mod-audiotestsrc is not set +# CONFIG_PACKAGE_gst-mod-autodetect is not set +# CONFIG_PACKAGE_gst-mod-cutter is not set +# CONFIG_PACKAGE_gst-mod-debug is not set +# CONFIG_PACKAGE_gst-mod-decodebin is not set +# CONFIG_PACKAGE_gst-mod-decodebin2 is not set +# CONFIG_PACKAGE_gst-mod-equalizer is not set +# CONFIG_PACKAGE_gst-mod-flac is not set +# CONFIG_PACKAGE_gst-mod-gio is not set +# CONFIG_PACKAGE_gst-mod-id3demux is not set +# CONFIG_PACKAGE_gst-mod-interleave is not set +# CONFIG_PACKAGE_gst-mod-lame is not set +# CONFIG_PACKAGE_gst-mod-level is not set +# CONFIG_PACKAGE_gst-mod-mad is not set +# CONFIG_PACKAGE_gst-mod-multifile is not set +# CONFIG_PACKAGE_gst-mod-multipart is not set +# CONFIG_PACKAGE_gst-mod-ogg is not set +# CONFIG_PACKAGE_gst-mod-ossaudio is not set +# CONFIG_PACKAGE_gst-mod-playbin is not set +# CONFIG_PACKAGE_gst-mod-replaygain is not set +# CONFIG_PACKAGE_gst-mod-rtp is not set +# CONFIG_PACKAGE_gst-mod-rtsp is not set +# CONFIG_PACKAGE_gst-mod-spectrum is not set +# CONFIG_PACKAGE_gst-mod-tcp is not set +# CONFIG_PACKAGE_gst-mod-theora is not set +# CONFIG_PACKAGE_gst-mod-typefindfunctions is not set +# CONFIG_PACKAGE_gst-mod-udp is not set +# CONFIG_PACKAGE_gst-mod-videotestsrc is not set +# CONFIG_PACKAGE_gst-mod-volume is not set +# CONFIG_PACKAGE_gst-mod-vorbis is not set +# CONFIG_PACKAGE_gst-mod-wavenc is not set +# CONFIG_PACKAGE_gst-mod-wavparse is not set +# CONFIG_PACKAGE_gst-plugins-base is not set +# CONFIG_PACKAGE_gst-plugins-good is not set +# CONFIG_PACKAGE_gst-plugins-ugly is not set +# CONFIG_PACKAGE_gstreamer is not set +# CONFIG_PACKAGE_gstreamer-utils is not set +# CONFIG_PACKAGE_hasciicam is not set +# CONFIG_PACKAGE_kissdx is not set +# CONFIG_PACKAGE_libgstapp is not set +# CONFIG_PACKAGE_libgstaudio is not set +# CONFIG_PACKAGE_libgstcdda is not set +# CONFIG_PACKAGE_libgstcheck is not set +# CONFIG_PACKAGE_libgstcontroller is not set +# CONFIG_PACKAGE_libgstdataprotocol is not set +# CONFIG_PACKAGE_libgstfft is not set +# CONFIG_PACKAGE_libgstinterfaces is not set +# CONFIG_PACKAGE_libgstnet is not set +# CONFIG_PACKAGE_libgstnetbuffer is not set +# CONFIG_PACKAGE_libgstpbutils is not set +# CONFIG_PACKAGE_libgstreamer is not set +# CONFIG_PACKAGE_libgstriff is not set +# CONFIG_PACKAGE_libgstrtp is not set +# CONFIG_PACKAGE_libgstrtsp is not set +# CONFIG_PACKAGE_libgstsdp is not set +# CONFIG_PACKAGE_libgsttag is not set +# CONFIG_PACKAGE_libgstvideo is not set +# CONFIG_PACKAGE_minidlna is not set +# CONFIG_PACKAGE_mjpg-streamer is not set +# CONFIG_PACKAGE_motion is not set +# CONFIG_PACKAGE_palantir is not set +# CONFIG_PACKAGE_peercast is not set +# CONFIG_PACKAGE_puppy is not set +# CONFIG_PACKAGE_spcacat is not set +# CONFIG_PACKAGE_streamripper is not set +# CONFIG_PACKAGE_ushare is not set +# CONFIG_PACKAGE_vips is not set + +# +# Utilities +# + +# +# Boot Loaders +# + +# +# Editors +# +# CONFIG_PACKAGE_joe is not set +# CONFIG_PACKAGE_mg is not set +CONFIG_PACKAGE_nano=y +# CONFIG_PACKAGE_vim is not set +# CONFIG_PACKAGE_vim-full is not set +# CONFIG_PACKAGE_vim-help is not set +# CONFIG_PACKAGE_vim-runtime is not set +# CONFIG_PACKAGE_zile is not set + +# +# Filesystem +# +# CONFIG_PACKAGE_badblocks is not set +# CONFIG_PACKAGE_blkid is not set +# CONFIG_PACKAGE_btrfs-progs is not set +# CONFIG_PACKAGE_cifsmount is not set +# CONFIG_PACKAGE_disktype is not set +# CONFIG_PACKAGE_dosfsck is not set +# CONFIG_PACKAGE_dosfslabel is not set +# CONFIG_PACKAGE_e2fsprogs is not set +# CONFIG_PACKAGE_mkdosfs is not set +# CONFIG_PACKAGE_mount.ntfs-3g is not set +# CONFIG_PACKAGE_nfs-utils is not set +# CONFIG_PACKAGE_ntfs-3g is not set +# CONFIG_PACKAGE_ntfs-3g-utils is not set +# CONFIG_PACKAGE_ntfsprogs is not set +# CONFIG_PACKAGE_owshell is not set +# CONFIG_PACKAGE_reiserfsprogs is not set +# CONFIG_PACKAGE_resize2fs is not set +# CONFIG_PACKAGE_sysfsutils is not set +# CONFIG_PACKAGE_tune2fs is not set +# CONFIG_PACKAGE_uuidgen is not set + +# +# SSL +# +# CONFIG_PACKAGE_certtool is not set +# CONFIG_PACKAGE_gnutls-utils is not set +# CONFIG_PACKAGE_polarssl-progs is not set + +# +# Sound +# +# CONFIG_PACKAGE_liblo-utils is not set + +# +# Terminal +# +# CONFIG_PACKAGE_microcom is not set +# CONFIG_PACKAGE_minicom is not set +# CONFIG_PACKAGE_picocom is not set +# CONFIG_PACKAGE_script is not set +# CONFIG_PACKAGE_setserial is not set +# CONFIG_PACKAGE_setterm is not set + +# +# backup +# +# CONFIG_PACKAGE_rdiff-backup is not set + +# +# compression +# +# CONFIG_PACKAGE_unzip is not set +# CONFIG_PACKAGE_zip is not set + +# +# database +# +# CONFIG_PACKAGE_mysql-server is not set +# CONFIG_PACKAGE_pgsql-cli is not set +# CONFIG_PACKAGE_pgsql-server is not set +# CONFIG_PACKAGE_sqlite2-cli is not set +# CONFIG_PACKAGE_sqlite3-cli is not set + +# +# disc +# +# CONFIG_PACKAGE_cfdisk is not set +# CONFIG_PACKAGE_devio is not set +# CONFIG_PACKAGE_fdisk is not set +# CONFIG_PACKAGE_hd-idle is not set +# CONFIG_PACKAGE_hdparm is not set +# CONFIG_PACKAGE_lvm2 is not set +# CONFIG_PACKAGE_sdparm is not set +# CONFIG_PACKAGE_sfdisk is not set +# CONFIG_PACKAGE_swap-utils is not set + +# +# filemanager +# +# CONFIG_PACKAGE_deco is not set +# CONFIG_PACKAGE_mc is not set +# CONFIG_PACKAGE_alsa-utils is not set +# CONFIG_PACKAGE_alsa-utils-tests is not set +# CONFIG_PACKAGE_anyremote is not set +# CONFIG_PACKAGE_ap51-flash is not set +# CONFIG_PACKAGE_apcupsd is not set +# CONFIG_PACKAGE_at is not set +# CONFIG_PACKAGE_avrdude is not set +# CONFIG_PACKAGE_avrusbboot is not set +# CONFIG_PACKAGE_bandwidthd is not set +# CONFIG_PACKAGE_bash is not set +# CONFIG_PACKAGE_bash-completion is not set +# CONFIG_PACKAGE_bc is not set +# CONFIG_PACKAGE_bemusedlinuxserver is not set +# CONFIG_PACKAGE_bluez-hcidump is not set +# CONFIG_PACKAGE_bluez-utils is not set +# CONFIG_PACKAGE_bzip2 is not set +# CONFIG_PACKAGE_ccrypt is not set +# CONFIG_PACKAGE_cdparanoia is not set +# CONFIG_PACKAGE_cksfv is not set +# CONFIG_PACKAGE_cmdpad is not set +# CONFIG_PACKAGE_collectd is not set +# CONFIG_PACKAGE_comgt is not set +# CONFIG_PACKAGE_coreutils is not set +# CONFIG_PACKAGE_coreutils-base64 is not set +# CONFIG_PACKAGE_coreutils-basename is not set +# CONFIG_PACKAGE_coreutils-cat is not set +# CONFIG_PACKAGE_coreutils-chcon is not set +# CONFIG_PACKAGE_coreutils-chgrp is not set +# CONFIG_PACKAGE_coreutils-chmod is not set +# CONFIG_PACKAGE_coreutils-chown is not set +# CONFIG_PACKAGE_coreutils-chroot is not set +# CONFIG_PACKAGE_coreutils-cksum is not set +# CONFIG_PACKAGE_coreutils-comm is not set +# CONFIG_PACKAGE_coreutils-cp is not set +# CONFIG_PACKAGE_coreutils-csplit is not set +# CONFIG_PACKAGE_coreutils-cut is not set +# CONFIG_PACKAGE_coreutils-date is not set +# CONFIG_PACKAGE_coreutils-dd is not set +# CONFIG_PACKAGE_coreutils-dir is not set +# CONFIG_PACKAGE_coreutils-dircolors is not set +# CONFIG_PACKAGE_coreutils-dirname is not set +# CONFIG_PACKAGE_coreutils-du is not set +# CONFIG_PACKAGE_coreutils-echo is not set +# CONFIG_PACKAGE_coreutils-env is not set +# CONFIG_PACKAGE_coreutils-expand is not set +# CONFIG_PACKAGE_coreutils-expr is not set +# CONFIG_PACKAGE_coreutils-factor is not set +# CONFIG_PACKAGE_coreutils-false is not set +# CONFIG_PACKAGE_coreutils-fmt is not set +# CONFIG_PACKAGE_coreutils-fold is not set +# CONFIG_PACKAGE_coreutils-groups is not set +# CONFIG_PACKAGE_coreutils-head is not set +# CONFIG_PACKAGE_coreutils-hostid is not set +# CONFIG_PACKAGE_coreutils-id is not set +# CONFIG_PACKAGE_coreutils-install is not set +# CONFIG_PACKAGE_coreutils-join is not set +# CONFIG_PACKAGE_coreutils-kill is not set +# CONFIG_PACKAGE_coreutils-link is not set +# CONFIG_PACKAGE_coreutils-ln is not set +# CONFIG_PACKAGE_coreutils-logname is not set +# CONFIG_PACKAGE_coreutils-ls is not set +# CONFIG_PACKAGE_coreutils-md5sum is not set +# CONFIG_PACKAGE_coreutils-mkdir is not set +# CONFIG_PACKAGE_coreutils-mkfifo is not set +# CONFIG_PACKAGE_coreutils-mknod is not set +# CONFIG_PACKAGE_coreutils-mktemp is not set +# CONFIG_PACKAGE_coreutils-mv is not set +# CONFIG_PACKAGE_coreutils-nice is not set +# CONFIG_PACKAGE_coreutils-nl is not set +# CONFIG_PACKAGE_coreutils-nohup is not set +# CONFIG_PACKAGE_coreutils-nproc is not set +# CONFIG_PACKAGE_coreutils-od is not set +# CONFIG_PACKAGE_coreutils-paste is not set +# CONFIG_PACKAGE_coreutils-pathchk is not set +# CONFIG_PACKAGE_coreutils-pinky is not set +# CONFIG_PACKAGE_coreutils-pr is not set +# CONFIG_PACKAGE_coreutils-printenv is not set +# CONFIG_PACKAGE_coreutils-printf is not set +# CONFIG_PACKAGE_coreutils-ptx is not set +# CONFIG_PACKAGE_coreutils-pwd is not set +# CONFIG_PACKAGE_coreutils-readlink is not set +# CONFIG_PACKAGE_coreutils-rm is not set +# CONFIG_PACKAGE_coreutils-rmdir is not set +# CONFIG_PACKAGE_coreutils-runcon is not set +# CONFIG_PACKAGE_coreutils-seq is not set +# CONFIG_PACKAGE_coreutils-sha1sum is not set +# CONFIG_PACKAGE_coreutils-sha224sum is not set +# CONFIG_PACKAGE_coreutils-sha256sum is not set +# CONFIG_PACKAGE_coreutils-sha384sum is not set +# CONFIG_PACKAGE_coreutils-sha512sum is not set +# CONFIG_PACKAGE_coreutils-shred is not set +# CONFIG_PACKAGE_coreutils-shuf is not set +# CONFIG_PACKAGE_coreutils-sleep is not set +# CONFIG_PACKAGE_coreutils-sort is not set +# CONFIG_PACKAGE_coreutils-split is not set +# CONFIG_PACKAGE_coreutils-stat is not set +# CONFIG_PACKAGE_coreutils-stdbuf is not set +# CONFIG_PACKAGE_coreutils-stty is not set +# CONFIG_PACKAGE_coreutils-su is not set +# CONFIG_PACKAGE_coreutils-sum is not set +# CONFIG_PACKAGE_coreutils-sync is not set +# CONFIG_PACKAGE_coreutils-tac is not set +# CONFIG_PACKAGE_coreutils-tail is not set +# CONFIG_PACKAGE_coreutils-tee is not set +# CONFIG_PACKAGE_coreutils-test is not set +# CONFIG_PACKAGE_coreutils-timeout is not set +# CONFIG_PACKAGE_coreutils-touch is not set +# CONFIG_PACKAGE_coreutils-tr is not set +# CONFIG_PACKAGE_coreutils-true is not set +# CONFIG_PACKAGE_coreutils-truncate is not set +# CONFIG_PACKAGE_coreutils-tsort is not set +# CONFIG_PACKAGE_coreutils-tty is not set +# CONFIG_PACKAGE_coreutils-uname is not set +# CONFIG_PACKAGE_coreutils-unexpand is not set +# CONFIG_PACKAGE_coreutils-uniq is not set +# CONFIG_PACKAGE_coreutils-unlink is not set +# CONFIG_PACKAGE_coreutils-uptime is not set +# CONFIG_PACKAGE_coreutils-users is not set +# CONFIG_PACKAGE_coreutils-vdir is not set +# CONFIG_PACKAGE_coreutils-wc is not set +# CONFIG_PACKAGE_coreutils-who is not set +# CONFIG_PACKAGE_coreutils-whoami is not set +# CONFIG_PACKAGE_coreutils-yes is not set +# CONFIG_PACKAGE_crypto-tools is not set +# CONFIG_PACKAGE_cryptsetup is not set +# CONFIG_PACKAGE_daemontools is not set +# CONFIG_PACKAGE_dbus is not set +# CONFIG_PACKAGE_devmem2 is not set +# CONFIG_PACKAGE_dfu-util is not set +# CONFIG_PACKAGE_dialog is not set +# CONFIG_PACKAGE_digitemp is not set +# CONFIG_PACKAGE_digitemp-usb is not set +# CONFIG_PACKAGE_dir300-flash is not set +# CONFIG_PACKAGE_dropbearconvert is not set +# CONFIG_PACKAGE_dt is not set +# CONFIG_PACKAGE_dtach is not set +# CONFIG_PACKAGE_empty is not set +# CONFIG_PACKAGE_event_test is not set +# CONFIG_PACKAGE_fancontroled is not set +# CONFIG_PACKAGE_fconfig is not set +# CONFIG_PACKAGE_file is not set +# CONFIG_PACKAGE_firmwarehotplug is not set +# CONFIG_PACKAGE_flock is not set +# CONFIG_PACKAGE_fortune-mod is not set +# CONFIG_PACKAGE_fowsr is not set +# CONFIG_PACKAGE_fxload is not set +# CONFIG_PACKAGE_gconf2 is not set +# CONFIG_PACKAGE_gdb is not set +# CONFIG_PACKAGE_gdbserver is not set +# CONFIG_PACKAGE_gnokii is not set +# CONFIG_PACKAGE_gnupg is not set +# CONFIG_PACKAGE_gnuplot is not set +# CONFIG_PACKAGE_gpioctl is not set +# CONFIG_PACKAGE_gsm-utils is not set +# CONFIG_PACKAGE_gzip is not set +# CONFIG_PACKAGE_haserl is not set +# CONFIG_PACKAGE_heyu is not set +# CONFIG_PACKAGE_hplip is not set +# CONFIG_PACKAGE_huaweiaktbbo is not set +# CONFIG_PACKAGE_hwclock is not set +# CONFIG_PACKAGE_i2c-tools is not set +# CONFIG_PACKAGE_iconv is not set +# CONFIG_PACKAGE_ink is not set +# CONFIG_PACKAGE_input-utils is not set +# CONFIG_PACKAGE_io is not set +# CONFIG_PACKAGE_ipmitool is not set +# CONFIG_PACKAGE_jpeg-tools is not set +# CONFIG_PACKAGE_kexec-tools is not set +# CONFIG_PACKAGE_kmemtrace-user is not set +# CONFIG_PACKAGE_ksymoops is not set +# CONFIG_PACKAGE_lcd4linux is not set +# CONFIG_PACKAGE_lcdproc is not set +# CONFIG_PACKAGE_ldconfig is not set +# CONFIG_PACKAGE_ldd is not set +# CONFIG_PACKAGE_libnfc-examples is not set +# CONFIG_PACKAGE_lirc is not set +# CONFIG_PACKAGE_lm-sensors is not set +# CONFIG_PACKAGE_logrotate is not set +# CONFIG_PACKAGE_losetup is not set +# CONFIG_PACKAGE_lrzsz is not set +# CONFIG_PACKAGE_lsof is not set +# CONFIG_PACKAGE_macchanger is not set +# CONFIG_PACKAGE_mdadm is not set +# CONFIG_PACKAGE_memtester is not set +# CONFIG_PACKAGE_mgetty is not set +# CONFIG_PACKAGE_mount-utils is not set +# CONFIG_PACKAGE_mtd-utils is not set +# CONFIG_PACKAGE_nprobe is not set +# CONFIG_PACKAGE_ocf-crypto-headers is not set +# CONFIG_PACKAGE_open2300 is not set +# CONFIG_PACKAGE_openldap-utils is not set +# CONFIG_PACKAGE_openssl-util is not set +# CONFIG_PACKAGE_pciutils is not set +# CONFIG_PACKAGE_pcmciautils is not set +# CONFIG_PACKAGE_pcscd is not set +# CONFIG_PACKAGE_pipacs is not set +# CONFIG_PACKAGE_powertop is not set +# CONFIG_PACKAGE_procps is not set +# CONFIG_PACKAGE_psmisc is not set +# CONFIG_PACKAGE_psplash is not set +# CONFIG_PACKAGE_pv is not set +# CONFIG_PACKAGE_pwcrypt is not set +# CONFIG_PACKAGE_pwgen is not set +# CONFIG_PACKAGE_pwrtray-backend is not set +# CONFIG_PACKAGE_px5g is not set +# CONFIG_PACKAGE_qc-usb-utils is not set +# CONFIG_PACKAGE_rcs is not set +# CONFIG_PACKAGE_restorefactory is not set +# CONFIG_PACKAGE_robocfg is not set +# CONFIG_PACKAGE_rrdcgi is not set +# CONFIG_PACKAGE_rrdcgi1 is not set +# CONFIG_PACKAGE_rrdcollect is not set +# CONFIG_PACKAGE_rrdtool is not set +# CONFIG_PACKAGE_rrdtool1 is not set +# CONFIG_PACKAGE_sane-backends is not set +# CONFIG_PACKAGE_sane-frontends is not set +# CONFIG_PACKAGE_schedtool is not set +# CONFIG_PACKAGE_scponly is not set +# CONFIG_PACKAGE_screen is not set +# CONFIG_PACKAGE_sed is not set +# CONFIG_PACKAGE_setpwc is not set +# CONFIG_PACKAGE_shadow is not set +# CONFIG_PACKAGE_shadow-groupadd is not set +# CONFIG_PACKAGE_shadow-groupdel is not set +# CONFIG_PACKAGE_shadow-groupmod is not set +# CONFIG_PACKAGE_shadow-useradd is not set +# CONFIG_PACKAGE_shadow-userdel is not set +# CONFIG_PACKAGE_shadow-usermod is not set +# CONFIG_PACKAGE_sispmctl is not set +# CONFIG_PACKAGE_smartmontools is not set +# CONFIG_PACKAGE_spidev-test is not set +# CONFIG_PACKAGE_ssldump is not set +# CONFIG_PACKAGE_strace is not set +# CONFIG_PACKAGE_stress is not set +# CONFIG_PACKAGE_sysstat is not set +# CONFIG_PACKAGE_tar is not set +# CONFIG_PACKAGE_tcsh is not set +# CONFIG_PACKAGE_tiff-utils is not set +# CONFIG_PACKAGE_tmux is not set +# CONFIG_PACKAGE_triggerhappy is not set +# CONFIG_PACKAGE_uboot-envtools is not set +# CONFIG_PACKAGE_ucmb-tools is not set +# CONFIG_PACKAGE_unrar is not set +# CONFIG_PACKAGE_upx is not set +# CONFIG_PACKAGE_usb-modeswitch is not set +# CONFIG_PACKAGE_usbutils is not set +# CONFIG_PACKAGE_watchcat is not set +# CONFIG_PACKAGE_wifitoggle is not set +# CONFIG_PACKAGE_wminput is not set +# CONFIG_PACKAGE_wx200d is not set +# CONFIG_PACKAGE_xsltproc is not set +# CONFIG_PACKAGE_zaptel14-util is not set + +# +# Extra packages +# +# CONFIG_PACKAGE_libdmapsharing is not set +# CONFIG_PACKAGE_zoneinfo-africa is not set +# CONFIG_PACKAGE_zoneinfo-asia is not set +# CONFIG_PACKAGE_zoneinfo-atlantic is not set +# CONFIG_PACKAGE_zoneinfo-australia-nz is not set +# CONFIG_PACKAGE_zoneinfo-core is not set +# CONFIG_PACKAGE_zoneinfo-europe is not set +# CONFIG_PACKAGE_zoneinfo-india is not set +# CONFIG_PACKAGE_zoneinfo-middleeast is not set +# CONFIG_PACKAGE_zoneinfo-northamerica is not set +# CONFIG_PACKAGE_zoneinfo-pacific is not set +# CONFIG_PACKAGE_zoneinfo-poles is not set +# CONFIG_PACKAGE_zoneinfo-simple is not set +# CONFIG_PACKAGE_zoneinfo-southamerica is not set + +# +# Sound +# +# CONFIG_PACKAGE_empcd is not set +# CONFIG_PACKAGE_faad2 is not set +# CONFIG_PACKAGE_flite is not set +# CONFIG_PACKAGE_ices is not set +# CONFIG_PACKAGE_lame is not set +# CONFIG_PACKAGE_lame-lib is not set +# CONFIG_PACKAGE_madplay is not set +# CONFIG_PACKAGE_mpc is not set +# CONFIG_PACKAGE_mpd is not set +# CONFIG_PACKAGE_mpdas is not set +# CONFIG_PACKAGE_mt-daapd is not set +# CONFIG_PACKAGE_scmpc is not set +# CONFIG_PACKAGE_shell-fm is not set +# CONFIG_PACKAGE_sox is not set + +# +# Development +# +# CONFIG_PACKAGE_binutils is not set +# CONFIG_PACKAGE_diffutils is not set +# CONFIG_PACKAGE_dmalloc-utils is not set +# CONFIG_PACKAGE_libdmalloc is not set +# CONFIG_PACKAGE_make is not set +# CONFIG_PACKAGE_objdump is not set +# CONFIG_PACKAGE_patch is not set +# CONFIG_PACKAGE_python-sip is not set + +# +# Languages +# + +# +# Erlang +# +# CONFIG_PACKAGE_erlang is not set +# CONFIG_PACKAGE_erlang-asn1 is not set +# CONFIG_PACKAGE_erlang-compiler is not set +# CONFIG_PACKAGE_erlang-crypto is not set +# CONFIG_PACKAGE_erlang-hipe is not set +# CONFIG_PACKAGE_erlang-inets is not set +# CONFIG_PACKAGE_erlang-mnesia is not set +# CONFIG_PACKAGE_erlang-runtime-tools is not set +# CONFIG_PACKAGE_erlang-snmp is not set +# CONFIG_PACKAGE_erlang-ssh is not set +# CONFIG_PACKAGE_erlang-ssl is not set +# CONFIG_PACKAGE_erlang-syntax-tools is not set + +# +# Java +# +# CONFIG_PACKAGE_jamvm is not set +# CONFIG_PACKAGE_sablevm is not set +# CONFIG_PACKAGE_sablevm-mini is not set + +# +# JavaScript +# +# CONFIG_PACKAGE_js is not set + +# +# Lua +# +# CONFIG_PACKAGE_lsqlite3 is not set +# CONFIG_PACKAGE_lua is not set +# CONFIG_PACKAGE_luac is not set +# CONFIG_PACKAGE_luaexpat is not set +# CONFIG_PACKAGE_luafilesystem is not set +# CONFIG_PACKAGE_luaprofiler is not set +# CONFIG_PACKAGE_luasec is not set +# CONFIG_PACKAGE_luasocket is not set +# CONFIG_PACKAGE_luasql-mysql is not set +# CONFIG_PACKAGE_luasql-pgsql is not set +# CONFIG_PACKAGE_luasql-sqlite3 is not set + +# +# PHP +# +# CONFIG_PACKAGE_php-pear is not set +# CONFIG_PACKAGE_php4 is not set +# CONFIG_PACKAGE_php5 is not set + +# +# Perl +# +# CONFIG_PACKAGE_microperl is not set +# CONFIG_PACKAGE_perl is not set + +# +# Python +# +# CONFIG_PACKAGE_cython is not set +# CONFIG_PACKAGE_dbus-python is not set +# CONFIG_PACKAGE_distribute is not set +# CONFIG_PACKAGE_gst-python is not set +# CONFIG_PACKAGE_ipython is not set +# CONFIG_PACKAGE_libyaml is not set +# CONFIG_PACKAGE_logilab-astng is not set +# CONFIG_PACKAGE_logilab-common is not set +# CONFIG_PACKAGE_pycairo is not set +# CONFIG_PACKAGE_pyopenssl is not set +# CONFIG_PACKAGE_pyqt4 is not set +# CONFIG_PACKAGE_pyserial is not set +# CONFIG_PACKAGE_python is not set +# CONFIG_PACKAGE_python-bluez is not set +# CONFIG_PACKAGE_python-cjson is not set +# CONFIG_PACKAGE_python-crypto is not set +# CONFIG_PACKAGE_python-curl is not set +# CONFIG_PACKAGE_python-cwiid is not set +# CONFIG_PACKAGE_python-doc is not set +# CONFIG_PACKAGE_python-egenix-mx is not set +# CONFIG_PACKAGE_python-event is not set +# CONFIG_PACKAGE_python-expat is not set +# CONFIG_PACKAGE_python-gdbm is not set +# CONFIG_PACKAGE_python-gobject is not set +# CONFIG_PACKAGE_python-gzip is not set +# CONFIG_PACKAGE_python-ifconfig is not set +# CONFIG_PACKAGE_python-json is not set +# CONFIG_PACKAGE_python-kid is not set +# CONFIG_PACKAGE_python-mini is not set +# CONFIG_PACKAGE_python-mysql is not set +# CONFIG_PACKAGE_python-openssl is not set +# CONFIG_PACKAGE_python-pcap is not set +# CONFIG_PACKAGE_python-psycopg is not set +# CONFIG_PACKAGE_python-rrd is not set +# CONFIG_PACKAGE_python-shutil is not set +# CONFIG_PACKAGE_python-smbus is not set +# CONFIG_PACKAGE_python-sqlite is not set +# CONFIG_PACKAGE_python-sqlite3 is not set +# CONFIG_PACKAGE_python-xapian is not set +# CONFIG_PACKAGE_python-yapsnmp is not set +# CONFIG_PACKAGE_python2-chardet is not set +# CONFIG_PACKAGE_pyusb is not set +# CONFIG_PACKAGE_pyxdg is not set +# CONFIG_PACKAGE_pyyaml is not set +# CONFIG_PACKAGE_telepathy-python is not set + +# +# Ruby +# +# CONFIG_PACKAGE_ruby is not set +# CONFIG_PACKAGE_eggdrop is not set +# CONFIG_PACKAGE_sigscheme is not set +# CONFIG_PACKAGE_tcl is not set +# CONFIG_PACKAGE_urbi is not set diff --git a/build_configuration/Broadcom_BCM947xx_953xx_ap/.config b/build_configuration/Broadcom_BCM947xx_953xx_ap/.config new file mode 100644 index 0000000..94e4edd --- /dev/null +++ b/build_configuration/Broadcom_BCM947xx_953xx_ap/.config @@ -0,0 +1,3255 @@ +# +# Automatically generated make config: don't edit +# OpenWrt version: Backfire (r24289) +# Thu Dec 16 18:02:53 2010 +# +CONFIG_HAVE_DOT_CONFIG=y +# CONFIG_TARGET_ppc40x is not set +# CONFIG_TARGET_ppc44x is not set +CONFIG_TARGET_atheros=y +# CONFIG_TARGET_ar71xx is not set +# CONFIG_TARGET_avr32 is not set +# CONFIG_TARGET_brcm63xx is not set +# CONFIG_TARGET_brcm47xx is not set +# CONFIG_TARGET_brcm_2_4 is not set +# CONFIG_TARGET_octeon is not set +# CONFIG_TARGET_cobalt is not set +# CONFIG_TARGET_ifxmips is not set +# CONFIG_TARGET_adm5120 is not set +# CONFIG_TARGET_xburst is not set +# CONFIG_TARGET_ixp4xx is not set +# CONFIG_TARGET_kirkwood is not set +# CONFIG_TARGET_orion is not set +# CONFIG_TARGET_rb532 is not set +# CONFIG_TARGET_rdc is not set +# CONFIG_TARGET_au1000 is not set +# CONFIG_TARGET_ar7 is not set +# CONFIG_TARGET_uml is not set +# CONFIG_TARGET_x86 is not set +# CONFIG_TARGET_ar71xx_Default is not set +# CONFIG_TARGET_ar71xx_DefaultNoWifi is not set +# CONFIG_TARGET_ar71xx_Madwifi is not set +# CONFIG_TARGET_ar71xx_AP81 is not set +# CONFIG_TARGET_ar71xx_AP83 is not set +# CONFIG_TARGET_ar71xx_PB42 is not set +# CONFIG_TARGET_ar71xx_PB44 is not set +# CONFIG_TARGET_ar71xx_A02RBW300N is not set +# CONFIG_TARGET_ar71xx_WZRHPG300NH is not set +# CONFIG_TARGET_ar71xx_WP543 is not set +# CONFIG_TARGET_ar71xx_DIR600A1 is not set +# CONFIG_TARGET_ar71xx_DIR615C1 is not set +# CONFIG_TARGET_ar71xx_DIR825B1 is not set +# CONFIG_TARGET_ar71xx_WRT160NL is not set +# CONFIG_TARGET_ar71xx_WRT400N is not set +# CONFIG_TARGET_ar71xx_WNDR3700 is not set +# CONFIG_TARGET_ar71xx_MZKW04NU is not set +# CONFIG_TARGET_ar71xx_MZKW300NH is not set +# CONFIG_TARGET_ar71xx_TLWR741NDV1 is not set +# CONFIG_TARGET_ar71xx_TLWR841NV15 is not set +# CONFIG_TARGET_ar71xx_TLWR841NDV3 is not set +# CONFIG_TARGET_ar71xx_TLWR841NDV5 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV2 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV3 is not set +# CONFIG_TARGET_ar71xx_TLWR941NDV4 is not set +# CONFIG_TARGET_ar71xx_TLWR1043NDV1 is not set +# CONFIG_TARGET_ar71xx_TEW632BRP is not set +# CONFIG_TARGET_ar71xx_TEW652BRP is not set +# CONFIG_TARGET_ar71xx_UBNTRS is not set +# CONFIG_TARGET_ar71xx_UBNTRSPRO is not set +# CONFIG_TARGET_ar71xx_UBNT is not set +# CONFIG_TARGET_brcm63xx_Broadcom is not set +# CONFIG_TARGET_brcm63xx_Atheros is not set +# CONFIG_TARGET_brcm63xx_Ralink is not set +# CONFIG_TARGET_brcm63xx_NoWiFi is not set +# CONFIG_TARGET_brcm63xx_GW6X00 is not set +# CONFIG_TARGET_ppc44x_Default is not set +# CONFIG_TARGET_au1000_au1500_Atheros is not set +# CONFIG_TARGET_au1000_au1500_InternetBox is not set +# CONFIG_TARGET_au1000_au1500_MeshCube is not set +# CONFIG_TARGET_au1000_au1550_DBAu1550 is not set +CONFIG_TARGET_atheros_Default=y +# CONFIG_TARGET_brcm_2_4_Broadcom is not set +# CONFIG_TARGET_brcm_2_4_BroadcomMimo is not set +# CONFIG_TARGET_brcm_2_4_None is not set +# CONFIG_TARGET_brcm_2_4_USBGeneric is not set +# CONFIG_TARGET_brcm_2_4_WL500G is not set +# CONFIG_TARGET_brcm_2_4_WL500GD is not set +# CONFIG_TARGET_brcm_2_4_WL500GP is not set +# CONFIG_TARGET_brcm_2_4_WL700GE is not set +# CONFIG_TARGET_brcm_2_4_WLHDD is not set +# CONFIG_TARGET_brcm_2_4_WRT300Nv11 is not set +# CONFIG_TARGET_brcm_2_4_WRT54G3G is not set +# CONFIG_TARGET_brcm_2_4_WRT610Nv1 is not set +# CONFIG_TARGET_octeon_generic is not set +# CONFIG_TARGET_octeon_mototech is not set +# CONFIG_TARGET_octeon_simulator is not set +# CONFIG_TARGET_rb532_Default is not set +# CONFIG_TARGET_adm5120_router_le_Generic is not set +# CONFIG_TARGET_adm5120_router_le_CAS630 is not set +# CONFIG_TARGET_adm5120_router_le_CAS630W is not set +# CONFIG_TARGET_adm5120_router_le_CAS670 is not set +# CONFIG_TARGET_adm5120_router_le_CAS670W is not set +# CONFIG_TARGET_adm5120_router_le_CAS700 is not set +# CONFIG_TARGET_adm5120_router_le_CAS700W is not set +# CONFIG_TARGET_adm5120_router_le_CAS771 is not set +# CONFIG_TARGET_adm5120_router_le_CAS771W is not set +# CONFIG_TARGET_adm5120_router_le_CAS790 is not set +# CONFIG_TARGET_adm5120_router_le_CAS861 is not set +# CONFIG_TARGET_adm5120_router_le_CAS861W is not set +# CONFIG_TARGET_adm5120_router_le_NFS101U is not set +# CONFIG_TARGET_adm5120_router_le_NFS101WU is not set +# CONFIG_TARGET_adm5120_router_le_NP27G is not set +# CONFIG_TARGET_adm5120_router_le_NP28G is not set +# CONFIG_TARGET_adm5120_router_le_WP54 is not set +# CONFIG_TARGET_adm5120_router_le_BR6104K is not set +# CONFIG_TARGET_adm5120_router_le_BR6104KP is not set +# CONFIG_TARGET_adm5120_router_le_BR6104WG is not set +# CONFIG_TARGET_adm5120_router_le_BR6114WG is not set +# CONFIG_TARGET_adm5120_router_le_EASY5120RT is not set +# CONFIG_TARGET_adm5120_router_le_EASY5120PATA is not set +# CONFIG_TARGET_adm5120_router_le_PMUGW is not set +# CONFIG_TARGET_adm5120_router_le_5GXI is not set +# CONFIG_TARGET_adm5120_router_le_RouterBoard is not set +# CONFIG_TARGET_adm5120_router_be_Generic is not set +# CONFIG_TARGET_adm5120_router_be_P334WT is not set +# CONFIG_TARGET_adm5120_router_be_P335WT is not set +# CONFIG_TARGET_ppc40x_Default is not set +# CONFIG_TARGET_rdc_ar525w is not set +# CONFIG_TARGET_rdc_bifferboard is not set +# CONFIG_TARGET_rdc_r8610 is not set +# CONFIG_TARGET_rdc_sitecom is not set +# CONFIG_TARGET_ixp4xx_generic_Default is not set +# CONFIG_TARGET_ixp4xx_generic_Atheros-ath5k is not set +# CONFIG_TARGET_ixp4xx_generic_NSLU2 is not set +# CONFIG_TARGET_ixp4xx_generic_NAS100d is not set +# CONFIG_TARGET_ixp4xx_generic_DSMG600RevA is not set +# CONFIG_TARGET_ixp4xx_generic_USR8200 is not set +# CONFIG_TARGET_ixp4xx_harddisk_FSG3 is not set +# CONFIG_TARGET_orion_generic_Default is not set +# CONFIG_TARGET_orion_harddisk_Default is not set +# CONFIG_TARGET_ar7_Annex-A is not set +# CONFIG_TARGET_ar7_Annex-B is not set +# CONFIG_TARGET_ar7_Texas is not set +# CONFIG_TARGET_ar7_None is not set +# CONFIG_TARGET_brcm47xx_Broadcom-b43 is not set +# CONFIG_TARGET_brcm47xx_Atheros is not set +# CONFIG_TARGET_brcm47xx_Atheros-ath5k is not set +# CONFIG_TARGET_brcm47xx_None is not set +# CONFIG_TARGET_brcm47xx_WGT634U is not set +# CONFIG_TARGET_brcm47xx_WL500GPv1 is not set +# CONFIG_TARGET_brcm47xx_WRT350Nv1 is not set +# CONFIG_TARGET_brcm47xx_WRTSL54GS is not set +# CONFIG_TARGET_ifxmips_None is not set +# CONFIG_TARGET_ifxmips_Atheros is not set +# CONFIG_TARGET_ifxmips_Ralink is not set +# CONFIG_TARGET_avr32_Default is not set +# CONFIG_TARGET_xburst_qi_lb60_Default is not set +# CONFIG_TARGET_xburst_n516_Default is not set +# CONFIG_TARGET_xburst_n526_Default is not set +# CONFIG_TARGET_kirkwood_Default is not set +# CONFIG_TARGET_uml_Default is not set +# CONFIG_TARGET_x86_generic_Generic is not set +# CONFIG_TARGET_x86_generic_Alix is not set +# CONFIG_TARGET_x86_generic_Soekris45xx is not set +# CONFIG_TARGET_x86_generic_Soekris48xx is not set +# CONFIG_TARGET_x86_generic_Wrap is not set +# CONFIG_TARGET_x86_olpc_Default is not set +# CONFIG_TARGET_x86_xen_domu_Default is not set +# CONFIG_TARGET_x86_ep80579_Default is not set +# CONFIG_TARGET_cobalt_Default is not set +CONFIG_TARGET_BOARD="atheros" +CONFIG_TARGET_ARCH_PACKAGES="atheros" +CONFIG_DEFAULT_TARGET_OPTIMIZATION="-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" +CONFIG_LINUX_2_6_30=y +CONFIG_DEFAULT_base-files=y +CONFIG_DEFAULT_busybox=y +CONFIG_DEFAULT_dnsmasq=y +CONFIG_DEFAULT_dropbear=y +CONFIG_DEFAULT_firewall=y +CONFIG_DEFAULT_gpioctl=y +CONFIG_DEFAULT_hotplug2=y +CONFIG_DEFAULT_iptables=y +CONFIG_DEFAULT_kmod-ipt-nathelper=y +CONFIG_DEFAULT_kmod-madwifi=y +CONFIG_DEFAULT_libc=y +CONFIG_DEFAULT_libgcc=y +CONFIG_DEFAULT_mtd=y +CONFIG_DEFAULT_opkg=y +CONFIG_DEFAULT_ppp=y +CONFIG_DEFAULT_ppp-mod-pppoe=y +CONFIG_DEFAULT_swconfig=y +CONFIG_DEFAULT_uci=y +CONFIG_DEFAULT_udevtrigger=y +CONFIG_DEFAULT_wpad-mini=y +CONFIG_LINUX_2_6=y +CONFIG_AUDIO_SUPPORT=y +CONFIG_GPIO_SUPPORT=y +CONFIG_PCI_SUPPORT=y +CONFIG_USB_SUPPORT=y +CONFIG_BIG_ENDIAN=y +CONFIG_USES_SQUASHFS=y +CONFIG_USES_JFFS2=y +CONFIG_mips=y +CONFIG_ARCH="mips" + +# +# Target Images +# +# CONFIG_TARGET_ROOTFS_INITRAMFS is not set + +# +# Root filesystem archives +# +# CONFIG_TARGET_ROOTFS_CPIOGZ is not set +# CONFIG_TARGET_ROOTFS_TARGZ is not set + +# +# Root filesystem images +# +# CONFIG_TARGET_ROOTFS_EXT2FS is not set +# CONFIG_TARGET_ROOTFS_JFFS2 is not set +CONFIG_TARGET_ROOTFS_SQUASHFS=y + +# +# Image Options +# + +# +# Global build settings +# +# CONFIG_ALL is not set + +# +# General build options +# +# CONFIG_DISPLAY_SUPPORT is not set +CONFIG_BUILD_PATENTED=y +CONFIG_LARGEFILE=y +CONFIG_SHADOW_PASSWORDS=y +# CONFIG_CLEAN_IPKG is not set +# CONFIG_COLLECT_KERNEL_DEBUG is not set + +# +# Kernel build options +# +CONFIG_KERNEL_DEBUG_FS=y +# CONFIG_KERNEL_PROFILING is not set +# CONFIG_KERNEL_KALLSYMS is not set +# CONFIG_KERNEL_DEBUG_KERNEL is not set +# CONFIG_KERNEL_DEBUG_INFO is not set + +# +# Package build options +# +# CONFIG_DEBUG is not set +CONFIG_IPV6=y + +# +# Stripping options +# +# CONFIG_NO_STRIP is not set +# CONFIG_USE_STRIP is not set +CONFIG_USE_SSTRIP=y +# CONFIG_STRIP_KERNEL_EXPORTS is not set +# CONFIG_USE_MKLIBS is not set +# CONFIG_DEVEL is not set +# CONFIG_BROKEN is not set +CONFIG_DOWNLOAD_FOLDER="" +CONFIG_LOCALMIRROR="" +CONFIG_AUTOREBUILD=y +CONFIG_BUILD_SUFFIX="" +CONFIG_TARGET_ROOTFS_DIR="" +# CONFIG_CCACHE is not set +CONFIG_EXTERNAL_KERNEL_TREE="" +CONFIG_KERNEL_GIT_CLONE_URI="" +CONFIG_KERNEL_GIT_LOCAL_REPOSITORY="" +CONFIG_TARGET_OPTIMIZATION="-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" +CONFIG_SOFT_FLOAT=y +# CONFIG_EXTRA_TARGET_ARCH is not set +CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="" +CONFIG_BINUTILS_VERSION="2.19.1" +CONFIG_GCC_VERSION_4_3_3_CS=y +CONFIG_EXTRA_GCC_CONFIG_OPTIONS="" +# CONFIG_SSP_SUPPORT is not set +CONFIG_INSTALL_LIBSTDCPP=y +# CONFIG_INSTALL_LIBGCJ is not set +CONFIG_USE_UCLIBC=y +# CONFIG_GDB is not set +# CONFIG_INSIGHT is not set +CONFIG_GCC_VERSION="4.3.3+cs" +CONFIG_GCC_VERSION_4=y +CONFIG_GCC_VERSION_4_3=y +CONFIG_UCLIBC_VERSION="0.9.30.1" +CONFIG_LIBC="uClibc" +CONFIG_LIBC_VERSION="0.9.30.1" +CONFIG_TARGET_SUFFIX="uclibc" +# CONFIG_IB is not set +# CONFIG_SDK is not set +# CONFIG_MAKE_TOOLCHAIN is not set +# CONFIG_IMAGEOPT is not set +CONFIG_UCI_PRECONFIG_network_lan_dns="" +CONFIG_UCI_PRECONFIG_network_lan_proto="static" +CONFIG_UCI_PRECONFIG_network_lan_gateway="" +CONFIG_UCI_PRECONFIG_network_lan_netmask="255.255.255.0" +CONFIG_UCI_PRECONFIG_network_lan_ipaddr="192.168.1.1" +# CONFIG_PREINITOPT is not set +CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y +CONFIG_TARGET_PREINIT_TIMEOUT=2 +# CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set +# CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set +CONFIG_TARGET_PREINIT_IFNAME="" +CONFIG_TARGET_PREINIT_IP="192.168.1.1" +CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0" +CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255" +# CONFIG_INITOPT is not set +CONFIG_TARGET_INIT_PATH="/bin:/sbin:/usr/bin:/usr/sbin" +CONFIG_TARGET_INIT_ENV="" +CONFIG_TARGET_INIT_CMD="/sbin/init" +CONFIG_TARGET_INIT_SUPPRESS_STDERR=y + +# +# Package features +# +CONFIG_FEATURE_drawing-backend_DirectFB=y +# CONFIG_FEATURE_drawing-backend_libX11 is not set + +# +# Base system +# +CONFIG_PACKAGE_base-files=y +CONFIG_EXTROOT_SETTLETIME=20 +# CONFIG_PACKAGE_block-hotplug is not set +# CONFIG_PACKAGE_block-mount is not set +# CONFIG_PACKAGE_br2684ctl is not set +CONFIG_PACKAGE_bridge=y +CONFIG_PACKAGE_busybox=y + +# +# Configuration +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_DEVFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_2_4_MODULES is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_2_6_MODULES=y +# CONFIG_BUSYBOX_CONFIG_NOMMU is not set +# CONFIG_CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_BUSYBOX_CONFIG_HUSH is not set +CONFIG_BUSYBOX_CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_BUSYBOX_CONFIG_DESKTOP is not set +# CONFIG_BUSYBOX_CONFIG_EXTRA_COMPAT is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_USE_MALLOC is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_BUSYBOX_CONFIG_SHOW_USAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_COMPRESS_USAGE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_INSTALLER is not set +# CONFIG_BUSYBOX_CONFIG_LOCALE_SUPPORT is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_ASSUME_UNICODE is not set +CONFIG_BUSYBOX_CONFIG_LONG_OPTS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DEVPTS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PIDFILE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_SUID=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_BUSYBOX_CONFIG_SELINUX is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS=y +CONFIG_BUSYBOX_CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_HAVE_RPC=y + +# +# Build Options +# +# CONFIG_BUSYBOX_CONFIG_STATIC is not set +# CONFIG_BUSYBOX_CONFIG_PIE is not set +CONFIG_BUSYBOX_CONFIG_LFS=y +CONFIG_BUSYBOX_CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_BUSYBOX_CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_BUSYBOX_CONFIG_DEBUG is not set +# CONFIG_BUSYBOX_CONFIG_WERROR is not set +CONFIG_BUSYBOX_CONFIG_NO_DEBUG_LIB=y +# CONFIG_BUSYBOX_CONFIG_DMALLOC is not set +# CONFIG_BUSYBOX_CONFIG_EFENCE is not set +CONFIG_BUSYBOX_CONFIG_INCLUDE_SUSv2=y + +# +# Installation Options +# +# CONFIG_BUSYBOX_CONFIG_INSTALL_NO_USR is not set +CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_DONT is not set +CONFIG_BUSYBOX_CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_BUSYBOX_CONFIG_PASSWORD_MINLEN=6 +CONFIG_BUSYBOX_CONFIG_MD5_SIZE_VS_SPEED=2 +CONFIG_BUSYBOX_CONFIG_FEATURE_FAST_TOP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING=y +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_MAX_LEN=512 +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_VI is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_HISTORY=256 +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_USERNAME_COMPLETION is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_BUSYBOX_CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_BUSYBOX_CONFIG_IOCTL_HEX2STR_ERROR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWIB is not set + +# +# Applets +# + +# +# Archival Utilities +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2 is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z is not set +# CONFIG_BUSYBOX_CONFIG_AR is not set +CONFIG_BUSYBOX_CONFIG_BUNZIP2=y +# CONFIG_BUSYBOX_CONFIG_BZIP2 is not set +# CONFIG_BUSYBOX_CONFIG_CPIO is not set +# CONFIG_BUSYBOX_CONFIG_DPKG is not set +# CONFIG_BUSYBOX_CONFIG_DPKG_DEB is not set +CONFIG_BUSYBOX_CONFIG_GUNZIP=y +CONFIG_BUSYBOX_CONFIG_GZIP=y +# CONFIG_BUSYBOX_CONFIG_LZOP is not set +# CONFIG_BUSYBOX_CONFIG_RPM2CPIO is not set +# CONFIG_BUSYBOX_CONFIG_RPM is not set +CONFIG_BUSYBOX_CONFIG_TAR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_CREATE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_FROM=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME is not set +# CONFIG_BUSYBOX_CONFIG_UNCOMPRESS is not set +# CONFIG_BUSYBOX_CONFIG_UNLZMA is not set +# CONFIG_BUSYBOX_CONFIG_UNZIP is not set + +# +# Coreutils +# +CONFIG_BUSYBOX_CONFIG_BASENAME=y +# CONFIG_BUSYBOX_CONFIG_CAL is not set +CONFIG_BUSYBOX_CONFIG_CAT=y +# CONFIG_BUSYBOX_CONFIG_CATV is not set +CONFIG_BUSYBOX_CONFIG_CHGRP=y +CONFIG_BUSYBOX_CONFIG_CHMOD=y +CONFIG_BUSYBOX_CONFIG_CHOWN=y +CONFIG_BUSYBOX_CONFIG_CHROOT=y +# CONFIG_BUSYBOX_CONFIG_CKSUM is not set +# CONFIG_BUSYBOX_CONFIG_COMM is not set +CONFIG_BUSYBOX_CONFIG_CP=y +CONFIG_BUSYBOX_CONFIG_CUT=y +CONFIG_BUSYBOX_CONFIG_DATE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT=y +CONFIG_BUSYBOX_CONFIG_DD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS is not set +CONFIG_BUSYBOX_CONFIG_DF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DF_FANCY is not set +CONFIG_BUSYBOX_CONFIG_DIRNAME=y +# CONFIG_BUSYBOX_CONFIG_DOS2UNIX is not set +CONFIG_BUSYBOX_CONFIG_DU=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_BUSYBOX_CONFIG_ECHO=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_BUSYBOX_CONFIG_ENV=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_EXPAND is not set +CONFIG_BUSYBOX_CONFIG_EXPR=y +CONFIG_BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_BUSYBOX_CONFIG_FALSE=y +# CONFIG_BUSYBOX_CONFIG_FOLD is not set +# CONFIG_BUSYBOX_CONFIG_FSYNC is not set +CONFIG_BUSYBOX_CONFIG_HEAD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_BUSYBOX_CONFIG_HOSTID=y +CONFIG_BUSYBOX_CONFIG_ID=y +# CONFIG_BUSYBOX_CONFIG_INSTALL is not set +CONFIG_BUSYBOX_CONFIG_LENGTH=y +CONFIG_BUSYBOX_CONFIG_LN=y +# CONFIG_BUSYBOX_CONFIG_LOGNAME is not set +CONFIG_BUSYBOX_CONFIG_LS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_USERNAME=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_BUSYBOX_CONFIG_MD5SUM=y +CONFIG_BUSYBOX_CONFIG_MKDIR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_MKFIFO=y +CONFIG_BUSYBOX_CONFIG_MKNOD=y +CONFIG_BUSYBOX_CONFIG_MV=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_NICE=y +# CONFIG_BUSYBOX_CONFIG_NOHUP is not set +# CONFIG_BUSYBOX_CONFIG_OD is not set +# CONFIG_BUSYBOX_CONFIG_PRINTENV is not set +CONFIG_BUSYBOX_CONFIG_PRINTF=y +CONFIG_BUSYBOX_CONFIG_PWD=y +# CONFIG_BUSYBOX_CONFIG_READLINK is not set +# CONFIG_BUSYBOX_CONFIG_REALPATH is not set +CONFIG_BUSYBOX_CONFIG_RM=y +CONFIG_BUSYBOX_CONFIG_RMDIR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_SEQ=y +# CONFIG_BUSYBOX_CONFIG_SHA1SUM is not set +# CONFIG_BUSYBOX_CONFIG_SHA256SUM is not set +# CONFIG_BUSYBOX_CONFIG_SHA512SUM is not set +CONFIG_BUSYBOX_CONFIG_SLEEP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP is not set +CONFIG_BUSYBOX_CONFIG_SORT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SORT_BIG is not set +# CONFIG_BUSYBOX_CONFIG_SPLIT is not set +# CONFIG_BUSYBOX_CONFIG_STAT is not set +# CONFIG_BUSYBOX_CONFIG_STTY is not set +# CONFIG_BUSYBOX_CONFIG_SUM is not set +CONFIG_BUSYBOX_CONFIG_SYNC=y +# CONFIG_BUSYBOX_CONFIG_TAC is not set +CONFIG_BUSYBOX_CONFIG_TAIL=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_BUSYBOX_CONFIG_TEE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_BUSYBOX_CONFIG_TEST=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TEST_64=y +CONFIG_BUSYBOX_CONFIG_TOUCH=y +CONFIG_BUSYBOX_CONFIG_TR=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_CLASSES is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_EQUIV is not set +CONFIG_BUSYBOX_CONFIG_TRUE=y +# CONFIG_BUSYBOX_CONFIG_TTY is not set +CONFIG_BUSYBOX_CONFIG_UNAME=y +# CONFIG_BUSYBOX_CONFIG_UNEXPAND is not set +CONFIG_BUSYBOX_CONFIG_UNIQ=y +# CONFIG_BUSYBOX_CONFIG_USLEEP is not set +# CONFIG_BUSYBOX_CONFIG_UUDECODE is not set +# CONFIG_BUSYBOX_CONFIG_UUENCODE is not set +CONFIG_BUSYBOX_CONFIG_WC=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_WC_LARGE is not set +# CONFIG_BUSYBOX_CONFIG_WHO is not set +# CONFIG_BUSYBOX_CONFIG_WHOAMI is not set +CONFIG_BUSYBOX_CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for ls, more and telnet +# +CONFIG_BUSYBOX_CONFIG_FEATURE_AUTOWIDTH=y + +# +# Common options for df, du, ls +# +CONFIG_BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum +# +CONFIG_BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +# CONFIG_BUSYBOX_CONFIG_CHVT is not set +CONFIG_BUSYBOX_CONFIG_CLEAR=y +# CONFIG_BUSYBOX_CONFIG_DEALLOCVT is not set +# CONFIG_BUSYBOX_CONFIG_DUMPKMAP is not set +# CONFIG_BUSYBOX_CONFIG_KBD_MODE is not set +# CONFIG_BUSYBOX_CONFIG_LOADFONT is not set +# CONFIG_BUSYBOX_CONFIG_LOADKMAP is not set +# CONFIG_BUSYBOX_CONFIG_OPENVT is not set +CONFIG_BUSYBOX_CONFIG_RESET=y +# CONFIG_BUSYBOX_CONFIG_RESIZE is not set +# CONFIG_BUSYBOX_CONFIG_SETCONSOLE is not set +# CONFIG_BUSYBOX_CONFIG_SETFONT is not set +# CONFIG_BUSYBOX_CONFIG_SETKEYCODES is not set +# CONFIG_BUSYBOX_CONFIG_SETLOGCONS is not set +# CONFIG_BUSYBOX_CONFIG_SHOWKEY is not set + +# +# Debian Utilities +# +CONFIG_BUSYBOX_CONFIG_MKTEMP=y +# CONFIG_BUSYBOX_CONFIG_PIPE_PROGRESS is not set +# CONFIG_BUSYBOX_CONFIG_RUN_PARTS is not set +CONFIG_BUSYBOX_CONFIG_START_STOP_DAEMON=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_BUSYBOX_CONFIG_WHICH=y + +# +# Editors +# +CONFIG_BUSYBOX_CONFIG_AWK=y +CONFIG_BUSYBOX_CONFIG_FEATURE_AWK_LIBM=y +# CONFIG_BUSYBOX_CONFIG_CMP is not set +CONFIG_BUSYBOX_CONFIG_DIFF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_BINARY is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_DIR is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_DIFF_MINIMAL is not set +# CONFIG_BUSYBOX_CONFIG_ED is not set +# CONFIG_BUSYBOX_CONFIG_PATCH is not set +CONFIG_BUSYBOX_CONFIG_SED=y +CONFIG_BUSYBOX_CONFIG_VI=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_MAX_LEN=1024 +# CONFIG_BUSYBOX_CONFIG_FEATURE_VI_8BIT is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_COLON=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SEARCH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_READONLY=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_BUSYBOX_CONFIG_FIND=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRINT0=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MTIME is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MMIN is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PERM=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_TYPE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_XDEV=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NEWER is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_INUM is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_EXEC=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_USER=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_GROUP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NOT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PAREN=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_SIZE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRUNE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DELETE is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PATH=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_REGEX=y +CONFIG_BUSYBOX_CONFIG_GREP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_BUSYBOX_CONFIG_XARGS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +CONFIG_BUSYBOX_CONFIG_INIT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_KILL_REMOVED is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SCTTY is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SYSLOG=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_EXTRA_QUIET is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_COREDUMPS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_INITRD is not set +CONFIG_BUSYBOX_CONFIG_HALT=y +CONFIG_BUSYBOX_CONFIG_MESG=y + +# +# Login/Password Management Utilities +# +# CONFIG_BUSYBOX_CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_BUSYBOX_CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_BUSYBOX_CONFIG_USE_BB_CRYPT is not set +# CONFIG_BUSYBOX_CONFIG_ADDGROUP is not set +# CONFIG_BUSYBOX_CONFIG_DELGROUP is not set +# CONFIG_BUSYBOX_CONFIG_ADDUSER is not set +# CONFIG_BUSYBOX_CONFIG_DELUSER is not set +# CONFIG_BUSYBOX_CONFIG_GETTY is not set +# CONFIG_BUSYBOX_CONFIG_LOGIN is not set +CONFIG_BUSYBOX_CONFIG_PASSWD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +# CONFIG_BUSYBOX_CONFIG_CRYPTPW is not set +# CONFIG_BUSYBOX_CONFIG_CHPASSWD is not set +# CONFIG_BUSYBOX_CONFIG_SU is not set +# CONFIG_BUSYBOX_CONFIG_SULOGIN is not set +# CONFIG_BUSYBOX_CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +# CONFIG_BUSYBOX_CONFIG_CHATTR is not set +# CONFIG_BUSYBOX_CONFIG_FSCK is not set +# CONFIG_BUSYBOX_CONFIG_LSATTR is not set + +# +# Linux Module Utilities +# +# CONFIG_BUSYBOX_CONFIG_MODPROBE_SMALL is not set +CONFIG_BUSYBOX_CONFIG_INSMOD=y +CONFIG_BUSYBOX_CONFIG_RMMOD=y +CONFIG_BUSYBOX_CONFIG_LSMOD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT=y +# CONFIG_BUSYBOX_CONFIG_MODPROBE is not set +# CONFIG_BUSYBOX_CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +CONFIG_BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE=y +CONFIG_BUSYBOX_CONFIG_DEFAULT_MODULES_DIR="/lib/modules" + +# +# Linux System Utilities +# +# CONFIG_BUSYBOX_CONFIG_ACPID is not set +CONFIG_BUSYBOX_CONFIG_BLKID=y +CONFIG_BUSYBOX_CONFIG_DMESG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_DMESG_PRETTY=y +# CONFIG_BUSYBOX_CONFIG_FBSET is not set +# CONFIG_BUSYBOX_CONFIG_FDFLUSH is not set +# CONFIG_BUSYBOX_CONFIG_FDFORMAT is not set +# CONFIG_BUSYBOX_CONFIG_FDISK is not set +CONFIG_BUSYBOX_CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +# CONFIG_BUSYBOX_CONFIG_FINDFS is not set +# CONFIG_BUSYBOX_CONFIG_FREERAMDISK is not set +# CONFIG_BUSYBOX_CONFIG_FSCK_MINIX is not set +# CONFIG_BUSYBOX_CONFIG_MKFS_MINIX is not set +# CONFIG_BUSYBOX_CONFIG_MKFS_VFAT is not set +# CONFIG_BUSYBOX_CONFIG_GETOPT is not set +CONFIG_BUSYBOX_CONFIG_HEXDUMP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HEXDUMP_REVERSE is not set +# CONFIG_BUSYBOX_CONFIG_HD is not set +CONFIG_BUSYBOX_CONFIG_HWCLOCK=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_BUSYBOX_CONFIG_IPCRM is not set +# CONFIG_BUSYBOX_CONFIG_IPCS is not set +# CONFIG_BUSYBOX_CONFIG_LOSETUP is not set +# CONFIG_BUSYBOX_CONFIG_MDEV is not set +CONFIG_BUSYBOX_CONFIG_MKSWAP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MKSWAP_UUID=y +# CONFIG_BUSYBOX_CONFIG_MORE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_USE_TERMIOS is not set +CONFIG_BUSYBOX_CONFIG_VOLUMEID=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_HFS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_JFS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_XFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_UDF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LUKS is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_SYSV is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_BUSYBOX_CONFIG_MOUNT=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LABEL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_NFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_CIFS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_BUSYBOX_CONFIG_PIVOT_ROOT=y +CONFIG_BUSYBOX_CONFIG_RDATE=y +# CONFIG_BUSYBOX_CONFIG_RDEV is not set +# CONFIG_BUSYBOX_CONFIG_READPROFILE is not set +# CONFIG_BUSYBOX_CONFIG_RTCWAKE is not set +# CONFIG_BUSYBOX_CONFIG_SCRIPT is not set +# CONFIG_BUSYBOX_CONFIG_SCRIPTREPLAY is not set +# CONFIG_BUSYBOX_CONFIG_SETARCH is not set +CONFIG_BUSYBOX_CONFIG_SWAPONOFF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_BUSYBOX_CONFIG_SWITCH_ROOT=y +CONFIG_BUSYBOX_CONFIG_UMOUNT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_UMOUNT_ALL=y + +# +# Common options for mount/umount +# +CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LOOP=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_MTAB_SUPPORT is not set + +# +# Miscellaneous Utilities +# +# CONFIG_BUSYBOX_CONFIG_ADJTIMEX is not set +# CONFIG_BUSYBOX_CONFIG_BBCONFIG is not set +# CONFIG_BUSYBOX_CONFIG_BEEP is not set +# CONFIG_BUSYBOX_CONFIG_CHAT is not set +# CONFIG_BUSYBOX_CONFIG_CHRT is not set +CONFIG_BUSYBOX_CONFIG_CROND=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_D is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_BUSYBOX_CONFIG_CRONTAB=y +# CONFIG_BUSYBOX_CONFIG_DC is not set +# CONFIG_BUSYBOX_CONFIG_DEVFSD is not set +# CONFIG_BUSYBOX_CONFIG_DEVMEM is not set +# CONFIG_BUSYBOX_CONFIG_EJECT is not set +# CONFIG_BUSYBOX_CONFIG_FBSPLASH is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_LOCK is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_UNLOCK is not set +# CONFIG_BUSYBOX_CONFIG_FLASH_ERASEALL is not set +# CONFIG_BUSYBOX_CONFIG_IONICE is not set +# CONFIG_BUSYBOX_CONFIG_INOTIFYD is not set +# CONFIG_BUSYBOX_CONFIG_LAST is not set +CONFIG_BUSYBOX_CONFIG_LESS=y +CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES=9999999 +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_FLAGS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MARKS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_REGEXP is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_BUSYBOX_CONFIG_HDPARM is not set +CONFIG_BUSYBOX_CONFIG_LOCK=y +# CONFIG_BUSYBOX_CONFIG_MAKEDEVS is not set +# CONFIG_BUSYBOX_CONFIG_MAN is not set +# CONFIG_BUSYBOX_CONFIG_MICROCOM is not set +# CONFIG_BUSYBOX_CONFIG_MOUNTPOINT is not set +# CONFIG_BUSYBOX_CONFIG_MT is not set +# CONFIG_BUSYBOX_CONFIG_RAIDAUTORUN is not set +# CONFIG_BUSYBOX_CONFIG_READAHEAD is not set +# CONFIG_BUSYBOX_CONFIG_RUNLEVEL is not set +# CONFIG_BUSYBOX_CONFIG_RX is not set +# CONFIG_BUSYBOX_CONFIG_SETSID is not set +CONFIG_BUSYBOX_CONFIG_STRINGS=y +# CONFIG_BUSYBOX_CONFIG_TASKSET is not set +CONFIG_BUSYBOX_CONFIG_TIME=y +# CONFIG_BUSYBOX_CONFIG_TIMEOUT is not set +# CONFIG_BUSYBOX_CONFIG_TTYSIZE is not set +# CONFIG_BUSYBOX_CONFIG_VOLNAME is not set +CONFIG_BUSYBOX_CONFIG_WATCHDOG=y + +# +# Networking Utilities +# +CONFIG_BUSYBOX_CONFIG_FEATURE_IPV6=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_UNIX_LOCAL is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +CONFIG_BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS=y +# CONFIG_BUSYBOX_CONFIG_ARP is not set +CONFIG_BUSYBOX_CONFIG_ARPING=y +# CONFIG_BUSYBOX_CONFIG_BRCTL is not set +# CONFIG_BUSYBOX_CONFIG_DNSD is not set +# CONFIG_BUSYBOX_CONFIG_ETHER_WAKE is not set +# CONFIG_BUSYBOX_CONFIG_FAKEIDENTD is not set +# CONFIG_BUSYBOX_CONFIG_FTPD is not set +# CONFIG_BUSYBOX_CONFIG_FTPGET is not set +# CONFIG_BUSYBOX_CONFIG_FTPPUT is not set +# CONFIG_BUSYBOX_CONFIG_HOSTNAME is not set +# CONFIG_BUSYBOX_CONFIG_HTTPD is not set +CONFIG_BUSYBOX_CONFIG_IFCONFIG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +# CONFIG_BUSYBOX_CONFIG_IFENSLAVE is not set +# CONFIG_BUSYBOX_CONFIG_IFPLUGD is not set +# CONFIG_BUSYBOX_CONFIG_IFUPDOWN is not set +# CONFIG_BUSYBOX_CONFIG_INETD is not set +# CONFIG_BUSYBOX_CONFIG_IP is not set +# CONFIG_BUSYBOX_CONFIG_IPCALC is not set +# CONFIG_BUSYBOX_CONFIG_NAMEIF is not set +CONFIG_BUSYBOX_CONFIG_NC=y +CONFIG_BUSYBOX_CONFIG_NETMSG=y +# CONFIG_BUSYBOX_CONFIG_NC_SERVER is not set +# CONFIG_BUSYBOX_CONFIG_NC_EXTRA is not set +CONFIG_BUSYBOX_CONFIG_NETSTAT=y +CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG=y +CONFIG_BUSYBOX_CONFIG_NSLOOKUP=y +CONFIG_BUSYBOX_CONFIG_PING=y +CONFIG_BUSYBOX_CONFIG_PING6=y +CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_PING=y +# CONFIG_BUSYBOX_CONFIG_PSCAN is not set +CONFIG_BUSYBOX_CONFIG_ROUTE=y +# CONFIG_BUSYBOX_CONFIG_SLATTACH is not set +CONFIG_BUSYBOX_CONFIG_TELNET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN is not set +CONFIG_BUSYBOX_CONFIG_TELNETD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE=y +# CONFIG_BUSYBOX_CONFIG_TFTP is not set +# CONFIG_BUSYBOX_CONFIG_TFTPD is not set +CONFIG_BUSYBOX_CONFIG_TRACEROUTE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_BUSYBOX_CONFIG_APP_UDHCPD is not set +CONFIG_BUSYBOX_CONFIG_APP_UDHCPC=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCPC_ARPING is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_BUSYBOX_CONFIG_UDHCP_DEBUG=0 +CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_BUSYBOX_CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_BUSYBOX_CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_BUSYBOX_CONFIG_VCONFIG=y +CONFIG_BUSYBOX_CONFIG_WGET=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS=y +# CONFIG_BUSYBOX_CONFIG_ZCIP is not set +# CONFIG_BUSYBOX_CONFIG_TCPSVD is not set +# CONFIG_BUSYBOX_CONFIG_TUNCTL is not set +# CONFIG_BUSYBOX_CONFIG_UDPSVD is not set + +# +# Print Utilities +# +# CONFIG_BUSYBOX_CONFIG_LPD is not set +# CONFIG_BUSYBOX_CONFIG_LPR is not set +# CONFIG_BUSYBOX_CONFIG_LPQ is not set + +# +# Mail Utilities +# +# CONFIG_BUSYBOX_CONFIG_MAKEMIME is not set +# CONFIG_BUSYBOX_CONFIG_POPMAILDIR is not set +# CONFIG_BUSYBOX_CONFIG_REFORMIME is not set +# CONFIG_BUSYBOX_CONFIG_SENDMAIL is not set + +# +# Process Utilities +# +CONFIG_BUSYBOX_CONFIG_FREE=y +# CONFIG_BUSYBOX_CONFIG_FUSER is not set +CONFIG_BUSYBOX_CONFIG_KILL=y +CONFIG_BUSYBOX_CONFIG_KILLALL=y +CONFIG_BUSYBOX_CONFIG_KILLALL5=y +# CONFIG_BUSYBOX_CONFIG_NMETER is not set +CONFIG_BUSYBOX_CONFIG_PGREP=y +CONFIG_BUSYBOX_CONFIG_PIDOF=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT is not set +CONFIG_BUSYBOX_CONFIG_PKILL=y +CONFIG_BUSYBOX_CONFIG_PS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_BUSYBOX_CONFIG_RENICE is not set +CONFIG_BUSYBOX_CONFIG_BB_SYSCTL=y +CONFIG_BUSYBOX_CONFIG_TOP=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_TOPMEM is not set +CONFIG_BUSYBOX_CONFIG_UPTIME=y +# CONFIG_BUSYBOX_CONFIG_WATCH is not set + +# +# Runit Utilities +# +# CONFIG_BUSYBOX_CONFIG_RUNSV is not set +# CONFIG_BUSYBOX_CONFIG_RUNSVDIR is not set +# CONFIG_BUSYBOX_CONFIG_SV is not set +# CONFIG_BUSYBOX_CONFIG_SVLOGD is not set +# CONFIG_BUSYBOX_CONFIG_CHPST is not set +# CONFIG_BUSYBOX_CONFIG_SETUIDGID is not set +# CONFIG_BUSYBOX_CONFIG_ENVUIDGID is not set +# CONFIG_BUSYBOX_CONFIG_ENVDIR is not set +# CONFIG_BUSYBOX_CONFIG_SOFTLIMIT is not set + +# +# Shells +# +CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_ASH=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_NONE is not set +CONFIG_BUSYBOX_CONFIG_ASH=y +CONFIG_BUSYBOX_CONFIG_ASH_BASH_COMPAT=y +CONFIG_BUSYBOX_CONFIG_ASH_JOB_CONTROL=y +# CONFIG_BUSYBOX_CONFIG_ASH_READ_NCHARS is not set +CONFIG_BUSYBOX_CONFIG_ASH_READ_TIMEOUT=y +CONFIG_BUSYBOX_CONFIG_ASH_ALIAS=y +CONFIG_BUSYBOX_CONFIG_ASH_GETOPTS=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_ECHO=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_PRINTF=y +CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_TEST=y +CONFIG_BUSYBOX_CONFIG_ASH_CMDCMD=y +# CONFIG_BUSYBOX_CONFIG_ASH_MAIL is not set +# CONFIG_BUSYBOX_CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_BUSYBOX_CONFIG_ASH_RANDOM_SUPPORT is not set +CONFIG_BUSYBOX_CONFIG_ASH_EXPAND_PRMT=y +# CONFIG_BUSYBOX_CONFIG_LASH is not set +# CONFIG_BUSYBOX_CONFIG_MSH is not set +CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT=y +CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT_64=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_NOFORK is not set +# CONFIG_BUSYBOX_CONFIG_CTTYHACK is not set + +# +# System Logging Utilities +# +CONFIG_BUSYBOX_CONFIG_SYSLOGD=y +CONFIG_BUSYBOX_CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_BUSYBOX_CONFIG_FEATURE_REMOTE_LOG=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOGD_DUP is not set +CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_BUSYBOX_CONFIG_LOGREAD=y +# CONFIG_BUSYBOX_CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +CONFIG_BUSYBOX_CONFIG_KLOGD=y +CONFIG_BUSYBOX_CONFIG_LOGGER=y +# CONFIG_PACKAGE_dash is not set +# CONFIG_PACKAGE_dnsmasq is not set +CONFIG_PACKAGE_dropbear=y +# CONFIG_PACKAGE_ead is not set +# CONFIG_PACKAGE_firewall is not set +CONFIG_PACKAGE_hotplug2=y +CONFIG_PACKAGE_libc=y +CONFIG_PACKAGE_libgcc=y +# CONFIG_PACKAGE_libpthread is not set +# CONFIG_PACKAGE_librt is not set +# CONFIG_PACKAGE_libstdcpp is not set +# CONFIG_PACKAGE_mksh is not set +CONFIG_PACKAGE_mtd=y +CONFIG_PACKAGE_opkg=y +# CONFIG_PACKAGE_qos-scripts is not set +CONFIG_PACKAGE_swconfig=y +CONFIG_PACKAGE_uci=y +# CONFIG_PACKAGE_ucitrigger is not set +# CONFIG_PACKAGE_udev is not set +CONFIG_PACKAGE_udevtrigger=y +CONFIG_PACKAGE_wireless-tools=y + +# +# IPv6 +# + +# +# IPv6 attack and analyzing toolset (thc-ipv6) +# +# CONFIG_PACKAGE_alive6 is not set +# CONFIG_PACKAGE_detect-new-ip6 is not set +# CONFIG_PACKAGE_dos-new-ip6 is not set +# CONFIG_PACKAGE_fake_advertise6 is not set +# CONFIG_PACKAGE_fake_mipv6 is not set +# CONFIG_PACKAGE_fake_mld6 is not set +# CONFIG_PACKAGE_fake_router6 is not set +# CONFIG_PACKAGE_parasite6 is not set +# CONFIG_PACKAGE_redir6 is not set +# CONFIG_PACKAGE_rsmurf6 is not set +# CONFIG_PACKAGE_smurf6 is not set +# CONFIG_PACKAGE_toobig6 is not set + +# +# IPv6 discovery tools +# +# CONFIG_PACKAGE_ndisc6 is not set +# CONFIG_PACKAGE_rdisc6 is not set +# CONFIG_PACKAGE_rdnssd is not set +CONFIG_PACKAGE_tcptraceroute6=y + +# +# firewall +# +# CONFIG_PACKAGE_shorewall6-lite is not set + +# +# miredo: Teredo (IPv6 tunneling over UDP through NAT) +# +# CONFIG_PACKAGE_miredo-client is not set +# CONFIG_PACKAGE_miredo-common is not set +# CONFIG_PACKAGE_miredo-server is not set + +# +# wide-dhcpv6 +# +# CONFIG_PACKAGE_wide-dhcpv6-client is not set +# CONFIG_PACKAGE_wide-dhcpv6-control is not set +# CONFIG_PACKAGE_wide-dhcpv6-relay is not set +# CONFIG_PACKAGE_wide-dhcpv6-server is not set +# CONFIG_PACKAGE_6in4 is not set +# CONFIG_PACKAGE_6scripts is not set +# CONFIG_PACKAGE_6to4 is not set +# CONFIG_PACKAGE_6tunnel is not set +# CONFIG_PACKAGE_ahcpd is not set +# CONFIG_PACKAGE_aiccu is not set +# CONFIG_PACKAGE_dhcp6-client is not set +# CONFIG_PACKAGE_dhcp6-server is not set +# CONFIG_PACKAGE_dibbler-client is not set +# CONFIG_PACKAGE_dibbler-poslib is not set +# CONFIG_PACKAGE_dibbler-relay is not set +# CONFIG_PACKAGE_dibbler-server is not set +# CONFIG_PACKAGE_gw6c is not set +CONFIG_PACKAGE_ip6tables=y +# CONFIG_PACKAGE_ip6tables-utils is not set +# CONFIG_PACKAGE_ipv6calc is not set +# CONFIG_PACKAGE_mrd6 is not set +# CONFIG_PACKAGE_ptrtd is not set +# CONFIG_PACKAGE_radvd is not set +# CONFIG_PACKAGE_send is not set +# CONFIG_PACKAGE_totd is not set +# CONFIG_PACKAGE_tspc is not set + +# +# LuCI +# + +# +# Collections +# +# CONFIG_PACKAGE_luci is not set +# CONFIG_PACKAGE_luci-light is not set +# CONFIG_PACKAGE_luci-medium is not set +# CONFIG_PACKAGE_luci-ssl is not set + +# +# Components +# +# CONFIG_PACKAGE_luci-admin-core is not set +# CONFIG_PACKAGE_luci-admin-full is not set +# CONFIG_PACKAGE_luci-admin-mini is not set +# CONFIG_PACKAGE_luci-admin-rpc is not set +# CONFIG_PACKAGE_luci-app-ddns is not set +# CONFIG_PACKAGE_luci-app-firewall is not set +# CONFIG_PACKAGE_luci-app-hd-idle is not set +# CONFIG_PACKAGE_luci-app-initmgr is not set +# CONFIG_PACKAGE_luci-app-livestats is not set +# CONFIG_PACKAGE_luci-app-mmc-over-gpio is not set +# CONFIG_PACKAGE_luci-app-ntpc is not set +# CONFIG_PACKAGE_luci-app-olsr is not set +# CONFIG_PACKAGE_luci-app-openvpn is not set +# CONFIG_PACKAGE_luci-app-p2pblock is not set +# CONFIG_PACKAGE_luci-app-p910nd is not set +# CONFIG_PACKAGE_luci-app-polipo is not set +# CONFIG_PACKAGE_luci-app-qos is not set +# CONFIG_PACKAGE_luci-app-samba is not set +# CONFIG_PACKAGE_luci-app-statistics is not set +# CONFIG_PACKAGE_luci-app-tinyproxy is not set +# CONFIG_PACKAGE_luci-app-upnp is not set +# CONFIG_PACKAGE_luci-app-ushare is not set + +# +# Freifunk +# +# CONFIG_PACKAGE_freifunk-firewall is not set +# CONFIG_PACKAGE_freifunk-p2pblock is not set +# CONFIG_PACKAGE_freifunk-watchdog is not set +# CONFIG_PACKAGE_luci-app-ffwizard-leipzig is not set +# CONFIG_PACKAGE_luci-app-siitwizard is not set +# CONFIG_PACKAGE_luci-app-splash is not set +# CONFIG_PACKAGE_luci-freifunk-community is not set +# CONFIG_PACKAGE_luci-mod-freifunk is not set +# CONFIG_PACKAGE_luci-theme-fledermaus is not set +# CONFIG_PACKAGE_luci-theme-freifunk is not set +# CONFIG_PACKAGE_luci-theme-freifunk-bno is not set +# CONFIG_PACKAGE_luci-theme-freifunk-hannover is not set +# CONFIG_PACKAGE_olsrd-luci is not set +# CONFIG_PACKAGE_remote-update is not set + +# +# Libraries +# +# CONFIG_PACKAGE_luci-cbi is not set +# CONFIG_PACKAGE_luci-core is not set +CONFIG_PACKAGE_luci-core_compile=y +# CONFIG_PACKAGE_luci-core_stripped is not set +# CONFIG_PACKAGE_luci-core_source is not set +# CONFIG_PACKAGE_luci-fastindex is not set +# CONFIG_PACKAGE_luci-http is not set +# CONFIG_PACKAGE_luci-httpclient is not set +# CONFIG_PACKAGE_luci-ipkg is not set +# CONFIG_PACKAGE_luci-json is not set +# CONFIG_PACKAGE_luci-lmo is not set +# CONFIG_PACKAGE_luci-lucid is not set +# CONFIG_PACKAGE_luci-nixio is not set +CONFIG_PACKAGE_luci-nixio_notls=y +# CONFIG_PACKAGE_luci-nixio_axtls is not set +# CONFIG_PACKAGE_luci-nixio_cyassl is not set +# CONFIG_PACKAGE_luci-nixio_openssl is not set +# CONFIG_PACKAGE_luci-px5g is not set +# CONFIG_PACKAGE_luci-sgi-cgi is not set +# CONFIG_PACKAGE_luci-sgi-uhttpd is not set +# CONFIG_PACKAGE_luci-sys is not set +# CONFIG_PACKAGE_luci-uci is not set +# CONFIG_PACKAGE_luci-uvl is not set +# CONFIG_PACKAGE_luci-web is not set + +# +# Themes +# +# CONFIG_PACKAGE_luci-theme-base is not set +# CONFIG_PACKAGE_luci-theme-openwrtlight is not set + +# +# Translations +# +# CONFIG_PACKAGE_luci-i18n-catalan is not set +# CONFIG_PACKAGE_luci-i18n-english is not set +# CONFIG_PACKAGE_luci-i18n-french is not set +# CONFIG_PACKAGE_luci-i18n-german is not set +# CONFIG_PACKAGE_luci-i18n-greek is not set +# CONFIG_PACKAGE_luci-i18n-italian is not set +# CONFIG_PACKAGE_luci-i18n-japanese is not set +# CONFIG_PACKAGE_luci-i18n-portuguese is not set +# CONFIG_PACKAGE_luci-i18n-portuguese_brazilian is not set +# CONFIG_PACKAGE_luci-i18n-russian is not set +# CONFIG_PACKAGE_luci-i18n-spanish is not set + +# +# Kernel modules +# + +# +# Block Devices +# +# CONFIG_PACKAGE_kmod-aoe is not set +# CONFIG_PACKAGE_kmod-ata-core is not set +# CONFIG_PACKAGE_kmod-dm is not set +# CONFIG_PACKAGE_kmod-ide-core is not set +# CONFIG_PACKAGE_kmod-loop is not set +# CONFIG_PACKAGE_kmod-nbd is not set +# CONFIG_PACKAGE_kmod-scsi-core is not set +# CONFIG_PACKAGE_kmod-scsi-generic is not set + +# +# Cryptographic API modules +# +# CONFIG_PACKAGE_kmod-crypto-core is not set +# CONFIG_PACKAGE_kmod-loop-aes is not set + +# +# Filesystems +# +# CONFIG_PACKAGE_kmod-fs-autofs4 is not set +# CONFIG_PACKAGE_kmod-fs-btrfs is not set +# CONFIG_PACKAGE_kmod-fs-cifs is not set +# CONFIG_PACKAGE_kmod-fs-exportfs is not set +# CONFIG_PACKAGE_kmod-fs-ext2 is not set +# CONFIG_PACKAGE_kmod-fs-ext3 is not set +# CONFIG_PACKAGE_kmod-fs-ext4 is not set +# CONFIG_PACKAGE_kmod-fs-hfs is not set +# CONFIG_PACKAGE_kmod-fs-hfsplus is not set +# CONFIG_PACKAGE_kmod-fs-isofs is not set +# CONFIG_PACKAGE_kmod-fs-mbcache is not set +# CONFIG_PACKAGE_kmod-fs-minix is not set +# CONFIG_PACKAGE_kmod-fs-msdos is not set +# CONFIG_PACKAGE_kmod-fs-nfs is not set +# CONFIG_PACKAGE_kmod-fs-nfs-common is not set +# CONFIG_PACKAGE_kmod-fs-nfsd is not set +# CONFIG_PACKAGE_kmod-fs-ntfs is not set +# CONFIG_PACKAGE_kmod-fs-reiserfs is not set +# CONFIG_PACKAGE_kmod-fs-udf is not set +# CONFIG_PACKAGE_kmod-fs-vfat is not set +# CONFIG_PACKAGE_kmod-fs-xfs is not set +# CONFIG_PACKAGE_kmod-fuse is not set +# CONFIG_PACKAGE_kmod-nls-base is not set +# CONFIG_PACKAGE_kmod-nls-cp1250 is not set +# CONFIG_PACKAGE_kmod-nls-cp1251 is not set +# CONFIG_PACKAGE_kmod-nls-cp437 is not set +# CONFIG_PACKAGE_kmod-nls-cp775 is not set +# CONFIG_PACKAGE_kmod-nls-cp850 is not set +# CONFIG_PACKAGE_kmod-nls-cp852 is not set +# CONFIG_PACKAGE_kmod-nls-cp866 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-1 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set +# CONFIG_PACKAGE_kmod-nls-koi8r is not set +# CONFIG_PACKAGE_kmod-nls-utf8 is not set + +# +# FireWire support +# +# CONFIG_PACKAGE_kmod-ieee1394 is not set + +# +# Hardware Monitoring Support +# +# CONFIG_PACKAGE_kmod-hwmon-core is not set + +# +# I2C support +# +# CONFIG_PACKAGE_kmod-i2c-core is not set +# CONFIG_PACKAGE_kmod-i2c-gpio-custom is not set + +# +# Netfilter Extensions +# +# CONFIG_PACKAGE_kmod-arptables is not set +# CONFIG_PACKAGE_kmod-ebtables is not set +CONFIG_PACKAGE_kmod-ip6tables=y +CONFIG_PACKAGE_kmod-ipt-core=y +# CONFIG_PACKAGE_kmod-ipt-chaos is not set +# CONFIG_PACKAGE_kmod-ipt-compat-xtables is not set +# CONFIG_PACKAGE_kmod-ipt-condition is not set +CONFIG_PACKAGE_kmod-ipt-conntrack=y +# CONFIG_PACKAGE_kmod-ipt-conntrack-extra is not set +# CONFIG_PACKAGE_kmod-ipt-delude is not set +# CONFIG_PACKAGE_kmod-ipt-extra is not set +# CONFIG_PACKAGE_kmod-ipt-filter is not set +# CONFIG_PACKAGE_kmod-ipt-imq is not set +# CONFIG_PACKAGE_kmod-ipt-ipopt is not set +# CONFIG_PACKAGE_kmod-ipt-ipp2p is not set +# CONFIG_PACKAGE_kmod-ipt-iprange is not set +# CONFIG_PACKAGE_kmod-ipt-ipsec is not set +# CONFIG_PACKAGE_kmod-ipt-ipset is not set +CONFIG_PACKAGE_kmod-ipt-nat=y +# CONFIG_PACKAGE_kmod-ipt-nat-extra is not set +CONFIG_PACKAGE_kmod-ipt-nathelper=y +# CONFIG_PACKAGE_kmod-ipt-nathelper-extra is not set +# CONFIG_PACKAGE_kmod-ipt-queue is not set +# CONFIG_PACKAGE_kmod-ipt-rawnat is not set +# CONFIG_PACKAGE_kmod-ipt-rawpost is not set +# CONFIG_PACKAGE_kmod-ipt-tarpit is not set +# CONFIG_PACKAGE_kmod-ipt-tee is not set +# CONFIG_PACKAGE_kmod-ipt-ulog is not set +# CONFIG_PACKAGE_kmod-nf-conntrack-netlink is not set +# CONFIG_PACKAGE_kmod-nfnetlink is not set +# CONFIG_PACKAGE_kmod-nfnetlink-log is not set +# CONFIG_PACKAGE_kmod-nfnetlink-queue is not set + +# +# Network Devices +# +# CONFIG_PACKAGE_kmod-e1000 is not set +# CONFIG_PACKAGE_kmod-et131x is not set +# CONFIG_PACKAGE_kmod-gigaset is not set +# CONFIG_PACKAGE_kmod-hfcmulti is not set +# CONFIG_PACKAGE_kmod-libphy is not set +# CONFIG_PACKAGE_kmod-macvlan is not set +# CONFIG_PACKAGE_kmod-siit is not set +# CONFIG_PACKAGE_kmod-tg3 is not set + +# +# Network Support +# +# CONFIG_PACKAGE_kmod-appletalk is not set +# CONFIG_PACKAGE_kmod-atm is not set +# CONFIG_PACKAGE_kmod-ax25 is not set +# CONFIG_PACKAGE_kmod-batgat is not set +CONFIG_PACKAGE_kmod-batman-adv=y +# CONFIG_KMOD_BATMAN_ADV_DEBUG_LOG is not set +CONFIG_KMOD_BATMAN_ADV_BATCTL=y +# CONFIG_PACKAGE_kmod-bonding is not set +# CONFIG_PACKAGE_kmod-capi is not set +# CONFIG_PACKAGE_kmod-gre is not set +# CONFIG_PACKAGE_kmod-ip6-tunnel is not set +# CONFIG_PACKAGE_kmod-ipip is not set +# CONFIG_PACKAGE_kmod-ipsec is not set +# CONFIG_PACKAGE_kmod-iptunnel4 is not set +# CONFIG_PACKAGE_kmod-iptunnel6 is not set +CONFIG_PACKAGE_kmod-ipv6=y +# CONFIG_PACKAGE_kmod-isdn4linux is not set +# CONFIG_PACKAGE_kmod-misdn is not set +# CONFIG_PACKAGE_kmod-mp-alg is not set +# CONFIG_PACKAGE_kmod-openswan is not set +# CONFIG_PACKAGE_kmod-pktgen is not set +CONFIG_PACKAGE_kmod-ppp=y +# CONFIG_PACKAGE_kmod-mppe is not set +# CONFIG_PACKAGE_kmod-ppp-synctty is not set +# CONFIG_PACKAGE_kmod-pppoa is not set +CONFIG_PACKAGE_kmod-pppoe=y +# CONFIG_PACKAGE_kmod-pppol2tp is not set +# CONFIG_PACKAGE_kmod-sched is not set +# CONFIG_PACKAGE_kmod-sit is not set +CONFIG_PACKAGE_kmod-tun=y +# CONFIG_PACKAGE_kmod-wprobe is not set + +# +# OCF Configuration +# + +# +# Other modules +# +# CONFIG_PACKAGE_kmod-block2mtd is not set +# CONFIG_PACKAGE_kmod-bluetooth is not set +# CONFIG_PACKAGE_kmod-button-hotplug is not set +# CONFIG_PACKAGE_kmod-compcache is not set +CONFIG_PACKAGE_kmod-crc-ccitt=y +# CONFIG_PACKAGE_kmod-crc-itu-t is not set +# CONFIG_PACKAGE_kmod-crc16 is not set +# CONFIG_PACKAGE_kmod-crc7 is not set +# CONFIG_PACKAGE_kmod-eeprom-93cx6 is not set +# CONFIG_PACKAGE_kmod-gpio-dev is not set +# CONFIG_PACKAGE_kmod-hid is not set +# CONFIG_PACKAGE_kmod-input-core is not set +# CONFIG_PACKAGE_kmod-input-evdev is not set +# CONFIG_PACKAGE_kmod-input-gpio-buttons is not set +# CONFIG_PACKAGE_kmod-input-gpio-keys is not set +# CONFIG_PACKAGE_kmod-input-joydev is not set +# CONFIG_PACKAGE_kmod-input-polldev is not set +# CONFIG_PACKAGE_kmod-leds-gpio is not set +# CONFIG_PACKAGE_kmod-ledtrig-morse is not set +# CONFIG_PACKAGE_kmod-ledtrig-netdev is not set +# CONFIG_PACKAGE_kmod-mmc is not set +# CONFIG_PACKAGE_kmod-mmc-over-gpio is not set +# CONFIG_PACKAGE_kmod-pcspkr is not set +# CONFIG_PACKAGE_kmod-softdog is not set +# CONFIG_PACKAGE_kmod-ssb is not set +# CONFIG_PACKAGE_kmod-textsearch is not set +# CONFIG_PACKAGE_kmod-ucmb is not set +# CONFIG_PACKAGE_kmod-wrt55agv2-spidevs is not set +# CONFIG_PACKAGE_kmod-zaptel14 is not set +# CONFIG_PACKAGE_kmod-zaptel14-wctdm is not set +# CONFIG_PACKAGE_kmod-zaptel14-wcusb is not set + +# +# SPI Support +# +# CONFIG_PACKAGE_kmod-mmc-spi is not set +# CONFIG_PACKAGE_kmod-spi-bitbang is not set +# CONFIG_PACKAGE_kmod-spi-dev is not set +# CONFIG_PACKAGE_kmod-spi-gpio is not set +# CONFIG_PACKAGE_kmod-spi-gpio-old is not set +# CONFIG_PACKAGE_kmod-spi-ks8995 is not set + +# +# Sound Support +# +# CONFIG_PACKAGE_kmod-sound-core is not set + +# +# USB Support +# +# CONFIG_PACKAGE_kmod-usb-core is not set +# CONFIG_PACKAGE_kmod-usbip is not set + +# +# Video Support +# +# CONFIG_PACKAGE_kmod-video-core is not set + +# +# Voice over IP +# + +# +# W1 support +# +# CONFIG_PACKAGE_kmod-w1 is not set + +# +# Wireless Drivers +# +# CONFIG_PACKAGE_kmod-acx is not set +# CONFIG_PACKAGE_kmod-ath is not set +# CONFIG_PACKAGE_kmod-ath5k is not set +# CONFIG_PACKAGE_kmod-ath9k is not set +# CONFIG_PACKAGE_kmod-b43 is not set +# CONFIG_PACKAGE_kmod-b43legacy is not set +# CONFIG_PACKAGE_kmod-carl9170 is not set +# CONFIG_PACKAGE_kmod-cfg80211 is not set +# CONFIG_PACKAGE_kmod-hostap is not set +# CONFIG_PACKAGE_kmod-hostap-pci is not set +# CONFIG_PACKAGE_kmod-hostap-plx is not set +# CONFIG_PACKAGE_kmod-lib80211 is not set +# CONFIG_PACKAGE_kmod-libertas-sd is not set +# CONFIG_PACKAGE_kmod-libertas-usb is not set +# CONFIG_PACKAGE_kmod-mac80211 is not set +# CONFIG_PACKAGE_kmod-mac80211-hwsim is not set +CONFIG_PACKAGE_kmod-madwifi=y + +# +# Configuration +# +# CONFIG_MADWIFI_COMPRESSION is not set +CONFIG_MADWIFI_SINGLE_MODULE=y +CONFIG_MADWIFI_RCA_MINSTREL=y +# CONFIG_MADWIFI_RCA_SAMPLERATE is not set +# CONFIG_PACKAGE_kmod-mwl8k is not set +# CONFIG_PACKAGE_kmod-net-airo is not set +# CONFIG_PACKAGE_kmod-net-hermes is not set +# CONFIG_PACKAGE_kmod-net-hermes-pci is not set +# CONFIG_PACKAGE_kmod-net-hermes-plx is not set +# CONFIG_PACKAGE_kmod-net-ipw2100 is not set +# CONFIG_PACKAGE_kmod-net-ipw2200 is not set +# CONFIG_PACKAGE_kmod-net-libipw is not set +# CONFIG_PACKAGE_kmod-net-prism54 is not set +# CONFIG_PACKAGE_kmod-p54-common is not set +# CONFIG_PACKAGE_kmod-p54-pci is not set +# CONFIG_PACKAGE_kmod-p54-usb is not set +# CONFIG_PACKAGE_kmod-rt2400-pci is not set +# CONFIG_PACKAGE_kmod-rt2500-pci is not set +# CONFIG_PACKAGE_kmod-rt2500-usb is not set +# CONFIG_PACKAGE_kmod-rt2800-lib is not set +# CONFIG_PACKAGE_kmod-rt2800-pci is not set +# CONFIG_PACKAGE_kmod-rt2800-usb is not set +# CONFIG_PACKAGE_kmod-rt2x00-lib is not set +# CONFIG_PACKAGE_kmod-rt2x00-pci is not set +# CONFIG_PACKAGE_kmod-rt2x00-usb is not set +# CONFIG_PACKAGE_kmod-rt61-pci is not set +# CONFIG_PACKAGE_kmod-rt73-usb is not set +# CONFIG_PACKAGE_kmod-rtl8180 is not set +# CONFIG_PACKAGE_kmod-rtl8187 is not set +# CONFIG_PACKAGE_kmod-zd1211rw is not set + +# +# Xen paravirtualized guest support +# + +# +# Boot Loaders +# + +# +# Administration +# + +# +# webif +# +# CONFIG_PACKAGE_webif is not set +# CONFIG_PACKAGE_webif-applications is not set +# CONFIG_PACKAGE_webif-batman is not set +# CONFIG_PACKAGE_webif-fonheartbeat is not set +# CONFIG_PACKAGE_webif-freeloader is not set +# CONFIG_PACKAGE_webif-freeloader-lang-cs is not set +# CONFIG_PACKAGE_webif-hotspot is not set +# CONFIG_PACKAGE_webif-iw-lua is not set +# CONFIG_PACKAGE_webif-iw-lua-chillispot is not set +# CONFIG_PACKAGE_webif-iw-lua-openssl is not set +# CONFIG_PACKAGE_webif-iw-lua-openvpn is not set +# CONFIG_PACKAGE_webif-lang-ca is not set +# CONFIG_PACKAGE_webif-lang-cs is not set +# CONFIG_PACKAGE_webif-lang-da is not set +# CONFIG_PACKAGE_webif-lang-de is not set +# CONFIG_PACKAGE_webif-lang-ee is not set +# CONFIG_PACKAGE_webif-lang-es is not set +# CONFIG_PACKAGE_webif-lang-fr is not set +# CONFIG_PACKAGE_webif-lang-hr is not set +# CONFIG_PACKAGE_webif-lang-hu is not set +# CONFIG_PACKAGE_webif-lang-it is not set +# CONFIG_PACKAGE_webif-lang-nl is not set +# CONFIG_PACKAGE_webif-lang-no is not set +# CONFIG_PACKAGE_webif-lang-pl is not set +# CONFIG_PACKAGE_webif-lang-pt is not set +# CONFIG_PACKAGE_webif-lang-ru is not set +# CONFIG_PACKAGE_webif-lang-sq is not set +# CONFIG_PACKAGE_webif-lang-sv is not set +# CONFIG_PACKAGE_webif-lang-uk is not set +# CONFIG_PACKAGE_webif-lang-zh is not set +# CONFIG_PACKAGE_webif-mesh is not set +# CONFIG_PACKAGE_webif-netsukuku is not set +# CONFIG_PACKAGE_webif-theme-clubman is not set +# CONFIG_PACKAGE_webif-theme-sedky1 is not set +# CONFIG_PACKAGE_webif-theme-xwrt is not set +# CONFIG_PACKAGE_webif-theme-xwrt-mini is not set +# CONFIG_PACKAGE_webif-theme-zephyr is not set +# CONFIG_PACKAGE_webif-vpn is not set + +# +# zabbix +# +# CONFIG_PACKAGE_zabbix-agent is not set +# CONFIG_PACKAGE_zabbix-sender is not set +# CONFIG_PACKAGE_zabbix-server is not set +# CONFIG_PACKAGE_debootstrap is not set +# CONFIG_PACKAGE_gkrellmd is not set +# CONFIG_PACKAGE_htop is not set +# CONFIG_PACKAGE_monit is not set +# CONFIG_PACKAGE_monit-nossl is not set +# CONFIG_PACKAGE_muninlite is not set +# CONFIG_PACKAGE_osirisd is not set +# CONFIG_PACKAGE_sudo is not set +# CONFIG_PACKAGE_syslog-ng is not set +# CONFIG_PACKAGE_syslog-ng3 is not set + +# +# Mail +# +# CONFIG_PACKAGE_dovecot is not set +# CONFIG_PACKAGE_fetchmail is not set +# CONFIG_PACKAGE_imapfilter is not set +# CONFIG_PACKAGE_mini-sendmail is not set +# CONFIG_PACKAGE_msmtp is not set +# CONFIG_PACKAGE_msmtp-nossl is not set +# CONFIG_PACKAGE_mutt is not set +# CONFIG_PACKAGE_nullmailer is not set +# CONFIG_PACKAGE_procmail is not set +# CONFIG_PACKAGE_ssmtp is not set +# CONFIG_PACKAGE_xmail is not set + +# +# Xorg +# + +# +# app +# +# CONFIG_PACKAGE_iceauth is not set +# CONFIG_PACKAGE_pwrtray is not set + +# +# data +# +# CONFIG_PACKAGE_xbitmaps is not set + +# +# driver +# + +# +# font +# +# CONFIG_PACKAGE_liberation-fonts-ttf is not set + +# +# font-utils +# +# CONFIG_PACKAGE_fontconfig is not set + +# +# framework +# +# CONFIG_PACKAGE_qt4 is not set + +# +# libraries +# +# CONFIG_PACKAGE_atk is not set +# CONFIG_PACKAGE_cairo is not set +# CONFIG_PACKAGE_cairomm is not set +# CONFIG_PACKAGE_hippo-canvas is not set +# CONFIG_PACKAGE_libICE is not set +# CONFIG_PACKAGE_libSM is not set +# CONFIG_PACKAGE_libXau is not set +# CONFIG_PACKAGE_libXdmcp is not set +# CONFIG_PACKAGE_libXfont is not set +# CONFIG_PACKAGE_libast is not set +# CONFIG_PACKAGE_libdrm is not set +# CONFIG_PACKAGE_libfontenc is not set +# CONFIG_PACKAGE_libpciaccess is not set +# CONFIG_PACKAGE_librsvg is not set +# CONFIG_PACKAGE_libxcb is not set +# CONFIG_PACKAGE_libxcb-composite is not set +# CONFIG_PACKAGE_libxcb-damage is not set +# CONFIG_PACKAGE_libxcb-dpms is not set +# CONFIG_PACKAGE_libxcb-glx is not set +# CONFIG_PACKAGE_libxcb-randr is not set +# CONFIG_PACKAGE_libxcb-record is not set +# CONFIG_PACKAGE_libxcb-render is not set +# CONFIG_PACKAGE_libxcb-res is not set +# CONFIG_PACKAGE_libxcb-screensaver is not set +# CONFIG_PACKAGE_libxcb-shape is not set +# CONFIG_PACKAGE_libxcb-shm is not set +# CONFIG_PACKAGE_libxcb-sync is not set +# CONFIG_PACKAGE_libxcb-xevie is not set +# CONFIG_PACKAGE_libxcb-xf86dri is not set +# CONFIG_PACKAGE_libxcb-xfixes is not set +# CONFIG_PACKAGE_libxcb-xinerama is not set +# CONFIG_PACKAGE_libxcb-xlib is not set +# CONFIG_PACKAGE_libxcb-xprint is not set +# CONFIG_PACKAGE_libxcb-xtest is not set +# CONFIG_PACKAGE_libxcb-xv is not set +# CONFIG_PACKAGE_libxcb-xvmc is not set +# CONFIG_PACKAGE_orbit2 is not set +# CONFIG_PACKAGE_pango is not set +# CONFIG_PACKAGE_pangomm is not set +# CONFIG_PACKAGE_pixman is not set +# CONFIG_PACKAGE_tslib is not set +# CONFIG_PACKAGE_xtrans is not set + +# +# proto +# +# CONFIG_PACKAGE_applewmproto is not set +# CONFIG_PACKAGE_bigreqsproto is not set +# CONFIG_PACKAGE_calibrateproto is not set +# CONFIG_PACKAGE_compositeproto is not set +# CONFIG_PACKAGE_damageproto is not set +# CONFIG_PACKAGE_dmxproto is not set +# CONFIG_PACKAGE_dri2proto is not set +# CONFIG_PACKAGE_fixesproto is not set +# CONFIG_PACKAGE_fontcacheproto is not set +# CONFIG_PACKAGE_fontsproto is not set +# CONFIG_PACKAGE_glproto is not set +# CONFIG_PACKAGE_inputproto is not set +# CONFIG_PACKAGE_kbproto is not set +# CONFIG_PACKAGE_printproto is not set +# CONFIG_PACKAGE_randrproto is not set +# CONFIG_PACKAGE_recordproto is not set +# CONFIG_PACKAGE_renderproto is not set +# CONFIG_PACKAGE_resourceproto is not set +# CONFIG_PACKAGE_scrnsaverproto is not set +# CONFIG_PACKAGE_videoproto is not set +# CONFIG_PACKAGE_windowswmproto is not set +# CONFIG_PACKAGE_xcmiscproto is not set +# CONFIG_PACKAGE_xextproto is not set +# CONFIG_PACKAGE_xf86bigfontproto is not set +# CONFIG_PACKAGE_xf86dgaproto is not set +# CONFIG_PACKAGE_xf86driproto is not set +# CONFIG_PACKAGE_xf86vidmodeproto is not set +# CONFIG_PACKAGE_xineramaproto is not set +# CONFIG_PACKAGE_xproto is not set + +# +# server +# +# CONFIG_PACKAGE_xserver-common is not set + +# +# terminals +# + +# +# utils +# +# CONFIG_PACKAGE_util-macros is not set + +# +# window manager +# + +# +# Libraries +# + +# +# Filesystem +# +# CONFIG_PACKAGE_libblkid is not set +# CONFIG_PACKAGE_libext2fs is not set +# CONFIG_PACKAGE_libnfsidmap is not set +# CONFIG_PACKAGE_libow is not set +# CONFIG_PACKAGE_libow-capi is not set +# CONFIG_PACKAGE_libsysfs is not set +# CONFIG_PACKAGE_libuuid is not set + +# +# SSL +# +# CONFIG_PACKAGE_libaxtls is not set +# CONFIG_PACKAGE_libcyassl is not set +# CONFIG_PACKAGE_libgnutls is not set +# CONFIG_PACKAGE_libgnutls-extra is not set +# CONFIG_PACKAGE_libgnutls-openssl is not set +# CONFIG_PACKAGE_libmatrixssl is not set +CONFIG_PACKAGE_libopenssl=y + +# +# Configuration +# +# CONFIG_OPENSSL_ENGINE is not set +# CONFIG_PACKAGE_libpolarssl is not set + +# +# Sound +# +# CONFIG_PACKAGE_liblo is not set + +# +# database +# +# CONFIG_PACKAGE_libpq is not set +# CONFIG_PACKAGE_libsqlite2 is not set +# CONFIG_PACKAGE_libsqlite3 is not set + +# +# disc +# +# CONFIG_PACKAGE_libdevmapper is not set +# CONFIG_PACKAGE_alsa-lib is not set +# CONFIG_PACKAGE_argp-standalone is not set +# CONFIG_PACKAGE_argtable is not set +# CONFIG_PACKAGE_bluez-libs is not set +# CONFIG_PACKAGE_boost-date_time is not set +# CONFIG_PACKAGE_boost-filesystem is not set +# CONFIG_PACKAGE_boost-function_types is not set +# CONFIG_PACKAGE_boost-graph is not set +# CONFIG_PACKAGE_boost-iostreams is not set +# CONFIG_PACKAGE_boost-math is not set +# CONFIG_PACKAGE_boost-program_options is not set +# CONFIG_PACKAGE_boost-python is not set +# CONFIG_PACKAGE_boost-regex is not set +# CONFIG_PACKAGE_boost-serialization is not set +# CONFIG_PACKAGE_boost-signals is not set +# CONFIG_PACKAGE_boost-system is not set +# CONFIG_PACKAGE_boost-test is not set +# CONFIG_PACKAGE_boost-thread is not set +# CONFIG_PACKAGE_boost-wave is not set +# CONFIG_PACKAGE_ccid is not set +# CONFIG_PACKAGE_cgilib is not set +# CONFIG_PACKAGE_check is not set +# CONFIG_PACKAGE_clearsilver is not set +# CONFIG_PACKAGE_confuse is not set +# CONFIG_PACKAGE_credis is not set +# CONFIG_PACKAGE_directfb is not set +# CONFIG_PACKAGE_elfutils is not set +# CONFIG_PACKAGE_fcgi is not set +# CONFIG_PACKAGE_fftw3 is not set +# CONFIG_PACKAGE_firewall-mod-save is not set +# CONFIG_PACKAGE_fribidi is not set +# CONFIG_PACKAGE_giflib is not set +# CONFIG_PACKAGE_glib1 is not set +# CONFIG_PACKAGE_glib2 is not set +# CONFIG_PACKAGE_glibmm is not set +# CONFIG_PACKAGE_id3lib is not set +# CONFIG_PACKAGE_libIDL2 is not set +# CONFIG_PACKAGE_libaa is not set +# CONFIG_PACKAGE_libaio is not set +# CONFIG_PACKAGE_libamsel is not set +# CONFIG_PACKAGE_libao is not set +# CONFIG_PACKAGE_libapr is not set +# CONFIG_PACKAGE_libaprutil is not set +# CONFIG_PACKAGE_libart is not set +# CONFIG_PACKAGE_libatomicops is not set +# CONFIG_PACKAGE_libaudiofile is not set +# CONFIG_PACKAGE_libavahi is not set +# CONFIG_PACKAGE_libcares is not set +# CONFIG_PACKAGE_libcelt is not set +# CONFIG_PACKAGE_libcharset is not set +# CONFIG_PACKAGE_libcli is not set +# CONFIG_PACKAGE_libclinkc is not set +# CONFIG_PACKAGE_libconfig is not set +# CONFIG_PACKAGE_libcroco is not set +# CONFIG_PACKAGE_libcryptoxx is not set +# CONFIG_PACKAGE_libcurl is not set +# CONFIG_PACKAGE_libcwiid is not set +# CONFIG_PACKAGE_libdaemon is not set +# CONFIG_PACKAGE_libdb47 is not set +# CONFIG_PACKAGE_libdbi is not set +# CONFIG_PACKAGE_libdbus is not set +# CONFIG_PACKAGE_libdbus-glib is not set +# CONFIG_PACKAGE_libdlna is not set +# CONFIG_PACKAGE_libdnet is not set +# CONFIG_PACKAGE_libdvbpsi is not set +# CONFIG_PACKAGE_libdvdread is not set +# CONFIG_PACKAGE_libelf is not set +# CONFIG_PACKAGE_libevent is not set +# CONFIG_PACKAGE_libeventlog is not set +# CONFIG_PACKAGE_libexif is not set +# CONFIG_PACKAGE_libexpat is not set +# CONFIG_PACKAGE_libexslt is not set +# CONFIG_PACKAGE_libezxml is not set +# CONFIG_PACKAGE_libfaad2 is not set +# CONFIG_PACKAGE_libffi is not set +# CONFIG_PACKAGE_libffi-sable is not set +# CONFIG_PACKAGE_libffmpeg is not set +# CONFIG_PACKAGE_libflac is not set +# CONFIG_PACKAGE_libfreetype is not set +# CONFIG_PACKAGE_libgconf2 is not set +# CONFIG_PACKAGE_libgcrypt is not set +# CONFIG_PACKAGE_libgd is not set +# CONFIG_PACKAGE_libgdbm is not set +# CONFIG_PACKAGE_libgmp is not set +# CONFIG_PACKAGE_libgpg-error is not set +# CONFIG_PACKAGE_libgphoto2 is not set +# CONFIG_PACKAGE_libgsl is not set +# CONFIG_PACKAGE_libgsm is not set +# CONFIG_PACKAGE_libgssapi is not set +# CONFIG_PACKAGE_libhowl is not set +# CONFIG_PACKAGE_libiconv is not set +# CONFIG_PACKAGE_libid3tag is not set +# CONFIG_PACKAGE_libidn is not set +# CONFIG_PACKAGE_libiksemel is not set +# CONFIG_PACKAGE_libinklevel is not set +# CONFIG_PACKAGE_libintl is not set +CONFIG_PACKAGE_libiptc=y +# CONFIG_PACKAGE_libiw is not set +# CONFIG_PACKAGE_libjpeg is not set +# CONFIG_PACKAGE_libjs is not set +# CONFIG_PACKAGE_libjson is not set +# CONFIG_PACKAGE_libltdl is not set +# CONFIG_PACKAGE_liblua is not set +CONFIG_PACKAGE_liblzo=y +# CONFIG_PACKAGE_libmad is not set +# CONFIG_PACKAGE_libmagic is not set +# CONFIG_PACKAGE_libmcrypt is not set +# CONFIG_PACKAGE_libmikmod is not set +# CONFIG_PACKAGE_libmms is not set +# CONFIG_PACKAGE_libmpcdec is not set +# CONFIG_PACKAGE_libmpd is not set +# CONFIG_PACKAGE_libmysqlclient is not set +# CONFIG_PACKAGE_libmysqlclient_r is not set +CONFIG_PACKAGE_libncurses=y +# CONFIG_PACKAGE_libneon is not set +# CONFIG_PACKAGE_libnet0 is not set +# CONFIG_PACKAGE_libnet1 is not set +# CONFIG_PACKAGE_libnetfilter-conntrack is not set +# CONFIG_PACKAGE_libnetfilter-log is not set +# CONFIG_PACKAGE_libnetfilter-queue is not set +# CONFIG_PACKAGE_libnetsnmp is not set +# CONFIG_PACKAGE_libnfc is not set +# CONFIG_PACKAGE_libnfnetlink is not set +# CONFIG_PACKAGE_libnids is not set +# CONFIG_PACKAGE_libnl is not set +CONFIG_PACKAGE_libnl-tiny=y +# CONFIG_PACKAGE_libnmeap is not set +# CONFIG_PACKAGE_libogg is not set +# CONFIG_PACKAGE_liboil is not set +# CONFIG_PACKAGE_libol is not set +# CONFIG_PACKAGE_libopal is not set +# CONFIG_PACKAGE_libopencdk is not set +# CONFIG_PACKAGE_libopenh323 is not set +# CONFIG_PACKAGE_libopenldap is not set +# CONFIG_PACKAGE_liboping is not set +# CONFIG_PACKAGE_libortp is not set +# CONFIG_PACKAGE_libosip2 is not set +# CONFIG_PACKAGE_libowfat is not set +# CONFIG_PACKAGE_libpar2 is not set +# CONFIG_PACKAGE_libpcap is not set +# CONFIG_PACKAGE_libpcre is not set +# CONFIG_PACKAGE_libpcsclite is not set +# CONFIG_PACKAGE_libpng is not set +# CONFIG_PACKAGE_libpopt is not set +# CONFIG_PACKAGE_libpostproc is not set +# CONFIG_PACKAGE_libptmalloc3 is not set +# CONFIG_PACKAGE_libradiusclient-ng is not set +# CONFIG_PACKAGE_libreadline is not set +# CONFIG_PACKAGE_librpcsecgss is not set +# CONFIG_PACKAGE_librrd is not set +# CONFIG_PACKAGE_librrd1 is not set +# CONFIG_PACKAGE_librsync is not set +# CONFIG_PACKAGE_libruby is not set +# CONFIG_PACKAGE_libsamplerate is not set +# CONFIG_PACKAGE_libsasl2 is not set +# CONFIG_PACKAGE_libsdl is not set +# CONFIG_PACKAGE_libsdl-mixer is not set +# CONFIG_PACKAGE_libsdl-sound is not set +# CONFIG_PACKAGE_libsensors is not set +# CONFIG_PACKAGE_libshout is not set +# CONFIG_PACKAGE_libsigcxx is not set +# CONFIG_PACKAGE_libsndfile is not set +# CONFIG_PACKAGE_libsoup is not set +# CONFIG_PACKAGE_libspandsp is not set +# CONFIG_PACKAGE_libspeex is not set +# CONFIG_PACKAGE_libspeexdsp is not set +# CONFIG_PACKAGE_libsynce is not set +# CONFIG_PACKAGE_libtasn1 is not set +# CONFIG_PACKAGE_libtheora is not set +# CONFIG_PACKAGE_libtiff is not set +# CONFIG_PACKAGE_libtiffxx is not set +# CONFIG_PACKAGE_libtorrent is not set +# CONFIG_PACKAGE_libtwin is not set +CONFIG_PACKAGE_libuci=y +# CONFIG_PACKAGE_libuci-lua is not set +# CONFIG_PACKAGE_libucl is not set +# CONFIG_PACKAGE_libupnp is not set +# CONFIG_PACKAGE_libusb is not set +# CONFIG_PACKAGE_libusb-1.0 is not set +# CONFIG_PACKAGE_libv4l is not set +# CONFIG_PACKAGE_libvncserver is not set +# CONFIG_PACKAGE_libvorbis is not set +# CONFIG_PACKAGE_libvorbisidec is not set +# CONFIG_PACKAGE_libwrap is not set +# CONFIG_PACKAGE_libwxbase is not set +# CONFIG_PACKAGE_libxapian is not set +# CONFIG_PACKAGE_libxml2 is not set +# CONFIG_PACKAGE_libxslt is not set +CONFIG_PACKAGE_libxtables=y +# CONFIG_PACKAGE_linux-atm is not set +# CONFIG_PACKAGE_mxml is not set +# CONFIG_PACKAGE_phidget21 is not set +# CONFIG_PACKAGE_poco is not set +# CONFIG_PACKAGE_pthsem is not set +# CONFIG_PACKAGE_ptlib is not set +# CONFIG_PACKAGE_pwlib is not set +# CONFIG_PACKAGE_radlib is not set +# CONFIG_PACKAGE_sane-libs is not set +# CONFIG_PACKAGE_serdisplib is not set +# CONFIG_PACKAGE_st2205tool is not set +# CONFIG_PACKAGE_taglib is not set +# CONFIG_PACKAGE_taglibc is not set +# CONFIG_PACKAGE_uclibcxx is not set +# CONFIG_PACKAGE_ustl is not set +# CONFIG_PACKAGE_xmlrpc-c is not set +# CONFIG_PACKAGE_xmpp4r is not set +# CONFIG_PACKAGE_zaptel-libtonezone is not set +# CONFIG_PACKAGE_zaptel14-libtonezone is not set +CONFIG_PACKAGE_zlib=y + +# +# Network +# + +# +# BitTorrent +# +# CONFIG_PACKAGE_btpd is not set +# CONFIG_PACKAGE_cbtt is not set +# CONFIG_PACKAGE_cbtt-mysql is not set +# CONFIG_PACKAGE_ctorrent is not set +# CONFIG_PACKAGE_ctorrent-nossl is not set +# CONFIG_DELUGE_WITH_WEBUI is not set +# CONFIG_PACKAGE_rtorrent is not set +# CONFIG_PACKAGE_transmission-daemon is not set +# CONFIG_PACKAGE_transmission-remote is not set + +# +# Captive Portals +# +# CONFIG_PACKAGE_chillispot is not set +# CONFIG_PACKAGE_coova-chilli is not set +# CONFIG_PACKAGE_nocatauth is not set +# CONFIG_PACKAGE_nocatsplash is not set +# CONFIG_PACKAGE_nodogsplash is not set +# CONFIG_PACKAGE_pepperspot is not set +# CONFIG_PACKAGE_wifidog is not set + +# +# DNS +# +# CONFIG_PACKAGE_bind-check is not set +# CONFIG_PACKAGE_bind-client is not set +# CONFIG_PACKAGE_bind-dig is not set +# CONFIG_PACKAGE_bind-dnssec is not set +# CONFIG_PACKAGE_bind-host is not set +# CONFIG_PACKAGE_bind-libs is not set +# CONFIG_PACKAGE_bind-rndc is not set +# CONFIG_PACKAGE_bind-server is not set +# CONFIG_PACKAGE_bind-tools is not set +# CONFIG_PACKAGE_djbdns-axfrdns is not set +# CONFIG_PACKAGE_djbdns-base is not set +# CONFIG_PACKAGE_djbdns-dnscache is not set +# CONFIG_PACKAGE_djbdns-rbldns is not set +# CONFIG_PACKAGE_djbdns-tinydns is not set +# CONFIG_PACKAGE_djbdns-tools is not set +# CONFIG_PACKAGE_djbdns-walldns is not set +# CONFIG_PACKAGE_dudders is not set +# CONFIG_PACKAGE_maradns is not set + +# +# FTP +# +# CONFIG_PACKAGE_atftp is not set +# CONFIG_PACKAGE_atftpd is not set +# CONFIG_PACKAGE_cmdftp is not set +# CONFIG_PACKAGE_lftp is not set +# CONFIG_PACKAGE_proftpd is not set +# CONFIG_PACKAGE_pure-ftpd is not set +# CONFIG_PACKAGE_pure-ftpd-tls is not set +# CONFIG_PACKAGE_vsftpd is not set +# CONFIG_PACKAGE_wput is not set +# CONFIG_PACKAGE_yafc is not set + +# +# Filesystem +# +# CONFIG_PACKAGE_nfs-kernel-server is not set +# CONFIG_PACKAGE_nfs-server is not set +# CONFIG_PACKAGE_owftpd is not set +# CONFIG_PACKAGE_owhttpd is not set +# CONFIG_PACKAGE_owserver is not set +# CONFIG_PACKAGE_unfs3 is not set + +# +# HA +# +# CONFIG_PACKAGE_keepalived is not set + +# +# Instant Messaging +# +# CONFIG_PACKAGE_bitchx is not set +# CONFIG_PACKAGE_bitlbee is not set +# CONFIG_PACKAGE_dircproxy is not set +# CONFIG_PACKAGE_imspector is not set +# CONFIG_PACKAGE_irssi is not set +# CONFIG_PACKAGE_irssi-glib1 is not set +# CONFIG_PACKAGE_irssi-nossl is not set +# CONFIG_PACKAGE_miau is not set +# CONFIG_PACKAGE_prosody is not set +# CONFIG_PACKAGE_psybnc is not set +# CONFIG_PACKAGE_reaim is not set +# CONFIG_PACKAGE_tmsnc is not set +# CONFIG_PACKAGE_weechat is not set +# CONFIG_PACKAGE_znc is not set + +# +# Monitoring +# +# CONFIG_PACKAGE_jtg is not set +# CONFIG_PACKAGE_nagios is not set +# CONFIG_PACKAGE_nagios-plugins is not set + +# +# NNTP +# +# CONFIG_PACKAGE_leafnode is not set +# CONFIG_PACKAGE_nzbget is not set +# CONFIG_PACKAGE_nzbgetweb is not set + +# +# P2P +# +# CONFIG_PACKAGE_amule is not set +# CONFIG_PACKAGE_mutella is not set +# CONFIG_PACKAGE_opendchub is not set +# CONFIG_PACKAGE_uhub is not set + +# +# Proxy Servers +# +# CONFIG_PACKAGE_haproxy is not set +# CONFIG_PACKAGE_polipo is not set +# CONFIG_PACKAGE_privoxy is not set +# CONFIG_PACKAGE_rinetd is not set +# CONFIG_PACKAGE_tinyproxy is not set + +# +# SSH +# +# CONFIG_PACKAGE_autossh is not set +# CONFIG_PACKAGE_openssh-client is not set +# CONFIG_PACKAGE_openssh-client-utils is not set +# CONFIG_PACKAGE_openssh-keygen is not set +# CONFIG_PACKAGE_openssh-server is not set +# CONFIG_PACKAGE_openssh-sftp-client is not set +# CONFIG_PACKAGE_openssh-sftp-server is not set +# CONFIG_PACKAGE_sshtunnel is not set + +# +# Time Synchronization +# +# CONFIG_PACKAGE_chrony is not set +# CONFIG_PACKAGE_htpdate is not set +# CONFIG_PACKAGE_ntp-utils is not set +# CONFIG_PACKAGE_ntpclient is not set +# CONFIG_PACKAGE_ntpd is not set +# CONFIG_PACKAGE_ntpd-ssl is not set +# CONFIG_PACKAGE_ntpdate is not set +# CONFIG_PACKAGE_openntpd is not set + +# +# VPN +# +# CONFIG_PACKAGE_frickin is not set +# CONFIG_PACKAGE_l2tpd is not set +# CONFIG_PACKAGE_l2tpns is not set +# CONFIG_PACKAGE_matrixtunnel is not set +# CONFIG_PACKAGE_n2n is not set +# CONFIG_PACKAGE_openconnect is not set +# CONFIG_PACKAGE_openl2tp is not set +# CONFIG_PACKAGE_openswan is not set +# CONFIG_PACKAGE_openvpn is not set +# CONFIG_PACKAGE_openvpn-devel is not set +# CONFIG_PACKAGE_pptpd is not set +# CONFIG_PACKAGE_ssltunnel is not set +CONFIG_PACKAGE_tinc=y +# CONFIG_PACKAGE_uanytun is not set +# CONFIG_PACKAGE_uanytun-nocrypt is not set +# CONFIG_PACKAGE_uanytun-sslcrypt is not set +# CONFIG_PACKAGE_vpnc is not set +# CONFIG_PACKAGE_vpzone is not set +# CONFIG_PACKAGE_vtun is not set +# CONFIG_PACKAGE_xl2tpd is not set + +# +# Version Control Systems +# +# CONFIG_PACKAGE_git is not set +# CONFIG_PACKAGE_mercurial is not set +# CONFIG_PACKAGE_subversion-libs is not set + +# +# Web +# +# CONFIG_PACKAGE_apache is not set +# CONFIG_PACKAGE_axhttpd is not set +# CONFIG_PACKAGE_axtlswrap is not set +# CONFIG_PACKAGE_elinks is not set +# CONFIG_PACKAGE_hiawatha is not set +# CONFIG_PACKAGE_lighttpd is not set +# CONFIG_PACKAGE_mini-httpd is not set +# CONFIG_PACKAGE_mini-httpd-htpasswd is not set +# CONFIG_PACKAGE_mini-httpd-matrixssl is not set +# CONFIG_PACKAGE_mini-httpd-openssl is not set +# CONFIG_PACKAGE_spawn-fcgi is not set + +# +# asterisk14 (Complete Open Source PBX), v1.4.x +# +# CONFIG_PACKAGE_asterisk14 is not set +# CONFIG_PACKAGE_asterisk14-app-meetme is not set +# CONFIG_PACKAGE_asterisk14-chan-alsa is not set +# CONFIG_PACKAGE_asterisk14-chan-gtalk is not set +# CONFIG_PACKAGE_asterisk14-chan-h323 is not set +# CONFIG_PACKAGE_asterisk14-chan-mgcp is not set +# CONFIG_PACKAGE_asterisk14-chan-mobile is not set +# CONFIG_PACKAGE_asterisk14-chan-ooh323 is not set +# CONFIG_PACKAGE_asterisk14-chan-oss is not set +# CONFIG_PACKAGE_asterisk14-chan-skinny is not set +# CONFIG_PACKAGE_asterisk14-codec-lpc10 is not set +# CONFIG_PACKAGE_asterisk14-codec-speex is not set +# CONFIG_PACKAGE_asterisk14-format-mp3 is not set +# CONFIG_PACKAGE_asterisk14-mini is not set +# CONFIG_PACKAGE_asterisk14-mysql is not set +# CONFIG_PACKAGE_asterisk14-pbx-dundi is not set +# CONFIG_PACKAGE_asterisk14-pgsql is not set +# CONFIG_PACKAGE_asterisk14-rawplayer is not set +# CONFIG_PACKAGE_asterisk14-res-agi is not set +# CONFIG_PACKAGE_asterisk14-res-crypto is not set +# CONFIG_PACKAGE_asterisk14-sounds is not set +# CONFIG_PACKAGE_asterisk14-sqlite is not set +# CONFIG_PACKAGE_asterisk14-voicemail is not set + +# +# asterisk16 (Complete Open Source PBX), v1.6.x +# +# CONFIG_PACKAGE_asterisk16 is not set +# CONFIG_PACKAGE_asterisk16-app-alarmreceiver is not set +# CONFIG_PACKAGE_asterisk16-app-authenticate is not set +# CONFIG_PACKAGE_asterisk16-app-chanisavail is not set +# CONFIG_PACKAGE_asterisk16-app-chanspy is not set +# CONFIG_PACKAGE_asterisk16-app-directed-pickup is not set +# CONFIG_PACKAGE_asterisk16-app-exec is not set +# CONFIG_PACKAGE_asterisk16-app-minivm is not set +# CONFIG_PACKAGE_asterisk16-app-originate is not set +# CONFIG_PACKAGE_asterisk16-app-read is not set +# CONFIG_PACKAGE_asterisk16-app-readexten is not set +# CONFIG_PACKAGE_asterisk16-app-sayunixtime is not set +# CONFIG_PACKAGE_asterisk16-app-setcallerid is not set +# CONFIG_PACKAGE_asterisk16-app-sms is not set +# CONFIG_PACKAGE_asterisk16-app-stack is not set +# CONFIG_PACKAGE_asterisk16-app-system is not set +# CONFIG_PACKAGE_asterisk16-app-talkdetect is not set +# CONFIG_PACKAGE_asterisk16-app-verbose is not set +# CONFIG_PACKAGE_asterisk16-app-waituntil is not set +# CONFIG_PACKAGE_asterisk16-app-while is not set +# CONFIG_PACKAGE_asterisk16-cdr is not set +# CONFIG_PACKAGE_asterisk16-chan-agent is not set +# CONFIG_PACKAGE_asterisk16-chan-gtalk is not set +# CONFIG_PACKAGE_asterisk16-chan-iax2 is not set +# CONFIG_PACKAGE_asterisk16-chan-local is not set +# CONFIG_PACKAGE_asterisk16-codec-a-mu is not set +# CONFIG_PACKAGE_asterisk16-codec-g726 is not set +# CONFIG_PACKAGE_asterisk16-codec-ulaw is not set +# CONFIG_PACKAGE_asterisk16-curl is not set +# CONFIG_PACKAGE_asterisk16-format-g726 is not set +# CONFIG_PACKAGE_asterisk16-format-g729 is not set +# CONFIG_PACKAGE_asterisk16-format-sln is not set +# CONFIG_PACKAGE_asterisk16-format-sln16 is not set +# CONFIG_PACKAGE_asterisk16-func-blacklist is not set +# CONFIG_PACKAGE_asterisk16-func-channel is not set +# CONFIG_PACKAGE_asterisk16-func-db is not set +# CONFIG_PACKAGE_asterisk16-func-devstate is not set +# CONFIG_PACKAGE_asterisk16-func-extstate is not set +# CONFIG_PACKAGE_asterisk16-func-global is not set +# CONFIG_PACKAGE_asterisk16-func-shell is not set +# CONFIG_PACKAGE_asterisk16-func-vmcount is not set +# CONFIG_PACKAGE_asterisk16-pbx-ael is not set +# CONFIG_PACKAGE_asterisk16-pbx-spool is not set +# CONFIG_PACKAGE_asterisk16-res-ael-share is not set +# CONFIG_PACKAGE_asterisk16-res-agi is not set +# CONFIG_PACKAGE_asterisk16-res-musiconhold is not set +# CONFIG_PACKAGE_asterisk16-sounds is not set +# CONFIG_PACKAGE_asterisk16-voicemail is not set + +# +# dial-in/up +# +# CONFIG_PACKAGE_rp-l2tpd is not set +# CONFIG_PACKAGE_rp-pppoe-client is not set +# CONFIG_PACKAGE_rp-pppoe-relay is not set +# CONFIG_PACKAGE_rp-pppoe-server is not set +# CONFIG_PACKAGE_rp-pppoe-sniff is not set + +# +# firewall +# +# CONFIG_PACKAGE_amwall is not set +# CONFIG_PACKAGE_ipkungfu is not set +# CONFIG_PACKAGE_iptables-snmp is not set +# CONFIG_PACKAGE_shorewall-lite is not set + +# +# firmware +# + +# +# layer7 +# + +# +# multimedia +# +# CONFIG_PACKAGE_gmediaserver is not set +# CONFIG_PACKAGE_icecast is not set + +# +# pmacct (accounting and aggregation tools) +# +# CONFIG_PACKAGE_nfacctd is not set +# CONFIG_PACKAGE_nfacctd-mysql is not set +# CONFIG_PACKAGE_nfacctd-pgsql is not set +# CONFIG_PACKAGE_nfacctd-sqlite is not set +# CONFIG_PACKAGE_pmacct-client is not set +# CONFIG_PACKAGE_pmacctd is not set +# CONFIG_PACKAGE_pmacctd-mysql is not set +# CONFIG_PACKAGE_pmacctd-pgsql is not set +# CONFIG_PACKAGE_pmacctd-sqlite is not set + +# +# printing +# +# CONFIG_PACKAGE_cups is not set +# CONFIG_PACKAGE_p910nd is not set + +# +# samba - NetBIOS/SMB implementation +# +# CONFIG_PACKAGE_samba-common is not set + +# +# snort (Ligthweight Network Intrusion Detection System) +# +# CONFIG_PACKAGE_snort is not set +# CONFIG_PACKAGE_snort-mysql is not set +# CONFIG_PACKAGE_snort-pgsql is not set + +# +# snort-wireless (Ligthweight Network Intrusion Detection System) +# +# CONFIG_PACKAGE_snort-wireless is not set +# CONFIG_PACKAGE_snort-wireless-mysql is not set +# CONFIG_PACKAGE_snort-wireless-pgsql is not set + +# +# wireless +# +# CONFIG_PACKAGE_aircrack-ng is not set +# CONFIG_PACKAGE_aircrack-ptw is not set +# CONFIG_PACKAGE_kismet-client is not set +# CONFIG_PACKAGE_kismet-drone is not set +# CONFIG_PACKAGE_kismet-server is not set +# CONFIG_PACKAGE_mdk3 is not set +# CONFIG_PACKAGE_wavemon is not set +# CONFIG_PACKAGE_airpwn is not set +# CONFIG_PACKAGE_aoetools is not set +# CONFIG_PACKAGE_appweb is not set +# CONFIG_PACKAGE_aprx is not set +# CONFIG_PACKAGE_arpd is not set +# CONFIG_PACKAGE_arptables is not set +# CONFIG_PACKAGE_arpwatch is not set +# CONFIG_PACKAGE_avahi-autoipd is not set +# CONFIG_PACKAGE_avahi-daemon is not set +# CONFIG_PACKAGE_avahi-dnsconfd is not set +# CONFIG_PACKAGE_axel is not set +# CONFIG_PACKAGE_babeld is not set +# CONFIG_PACKAGE_bahamut is not set +# CONFIG_PACKAGE_batmand is not set +# CONFIG_PACKAGE_bing is not set +# CONFIG_PACKAGE_bird4 is not set +# CONFIG_PACKAGE_bird6 is not set +# CONFIG_PACKAGE_birdc4 is not set +# CONFIG_PACKAGE_birdc6 is not set +# CONFIG_PACKAGE_bmon is not set +# CONFIG_PACKAGE_bmxd is not set +# CONFIG_PACKAGE_bwm is not set +# CONFIG_PACKAGE_cdp-tools is not set +# CONFIG_PACKAGE_chaosvpn is not set +# CONFIG_PACKAGE_chat is not set +# CONFIG_PACKAGE_conntrack-tools is not set +# CONFIG_PACKAGE_corkscrew is not set +# CONFIG_PACKAGE_crda is not set +# CONFIG_PACKAGE_crowdcontrol is not set +# CONFIG_PACKAGE_curl is not set +# CONFIG_PACKAGE_cutter is not set +# CONFIG_PACKAGE_dansguardian is not set +# CONFIG_PACKAGE_darkstat is not set +# CONFIG_PACKAGE_ddns-scripts is not set +# CONFIG_PACKAGE_dhcp-forwarder is not set +# CONFIG_PACKAGE_dhcp-relay is not set +# CONFIG_PACKAGE_dhcp-server is not set +# CONFIG_PACKAGE_dhcpcd is not set +# CONFIG_PACKAGE_ditg is not set +# CONFIG_PACKAGE_dmapd is not set +# CONFIG_PACKAGE_dsl-qos-queue is not set +# CONFIG_PACKAGE_dsniff is not set +# CONFIG_PACKAGE_e169-stats is not set +# CONFIG_PACKAGE_ebtables is not set +# CONFIG_PACKAGE_ebtables-utils is not set +# CONFIG_PACKAGE_ekg is not set +# CONFIG_PACKAGE_etherwake is not set +# CONFIG_PACKAGE_ethtool is not set +# CONFIG_PACKAGE_ettercap is not set +# CONFIG_PACKAGE_ez-ipupdate is not set +# CONFIG_PACKAGE_faifa is not set +# CONFIG_PACKAGE_flow-tools is not set +# CONFIG_PACKAGE_fping is not set +# CONFIG_PACKAGE_fprobe is not set +# CONFIG_PACKAGE_fprobe-ulog is not set +# CONFIG_PACKAGE_freeradius is not set +# CONFIG_PACKAGE_freeradius2 is not set +# CONFIG_PACKAGE_freeswitch is not set +# CONFIG_PACKAGE_genl is not set +# CONFIG_PACKAGE_gesftpserver is not set +# CONFIG_PACKAGE_gpsd is not set +# CONFIG_PACKAGE_horst is not set +# CONFIG_PACKAGE_hostapd is not set +# CONFIG_PACKAGE_hostapd-mini is not set +# CONFIG_PACKAGE_hostapd-utils is not set +# CONFIG_PACKAGE_howl-autoipd is not set +# CONFIG_PACKAGE_howl-mdnsresponder is not set +# CONFIG_PACKAGE_howl-nifd is not set +# CONFIG_PACKAGE_howl-utils is not set +# CONFIG_PACKAGE_hping3 is not set +# CONFIG_PACKAGE_httping is not set +# CONFIG_PACKAGE_httptunnel is not set +# CONFIG_PACKAGE_icmptx is not set +# CONFIG_PACKAGE_ifenslave is not set +# CONFIG_PACKAGE_ifstat is not set +# CONFIG_PACKAGE_iftop is not set +# CONFIG_PACKAGE_igmpproxy is not set +# CONFIG_PACKAGE_imsnif is not set +# CONFIG_PACKAGE_iodine is not set +# CONFIG_PACKAGE_iodined is not set +# CONFIG_PACKAGE_ip is not set +# CONFIG_PACKAGE_ipcad is not set +# CONFIG_PACKAGE_iperf is not set +# CONFIG_PACKAGE_iperf-mt is not set +# CONFIG_PACKAGE_ipsec-tools is not set +# CONFIG_PACKAGE_ipset is not set +CONFIG_PACKAGE_iptables=y +# CONFIG_PACKAGE_iptables-mod-chaos is not set +# CONFIG_PACKAGE_iptables-mod-condition is not set +CONFIG_PACKAGE_iptables-mod-conntrack=y +# CONFIG_PACKAGE_iptables-mod-conntrack-extra is not set +# CONFIG_PACKAGE_iptables-mod-delude is not set +# CONFIG_PACKAGE_iptables-mod-extra is not set +# CONFIG_PACKAGE_iptables-mod-filter is not set +# CONFIG_PACKAGE_iptables-mod-imq is not set +# CONFIG_PACKAGE_iptables-mod-ipopt is not set +# CONFIG_PACKAGE_iptables-mod-ipp2p is not set +# CONFIG_PACKAGE_iptables-mod-iprange is not set +# CONFIG_PACKAGE_iptables-mod-ipsec is not set +# CONFIG_PACKAGE_iptables-mod-ipset is not set +CONFIG_PACKAGE_iptables-mod-nat=y +# CONFIG_PACKAGE_iptables-mod-nat-extra is not set +# CONFIG_PACKAGE_iptables-mod-rawnat is not set +# CONFIG_PACKAGE_iptables-mod-tarpit is not set +# CONFIG_PACKAGE_iptables-mod-tee is not set +# CONFIG_PACKAGE_iptables-mod-ulog is not set +# CONFIG_PACKAGE_iptables-utils is not set +# CONFIG_PACKAGE_iptraf is not set +# CONFIG_PACKAGE_ipupdate is not set +# CONFIG_PACKAGE_iputils-arping is not set +# CONFIG_PACKAGE_iputils-clockdiff is not set +# CONFIG_PACKAGE_iputils-ping is not set +# CONFIG_PACKAGE_iputils-tftpd is not set +# CONFIG_PACKAGE_iputils-tracepath is not set +# CONFIG_PACKAGE_isakmpd is not set +# CONFIG_PACKAGE_iw is not set +# CONFIG_PACKAGE_kamailio is not set +# CONFIG_PACKAGE_karma is not set +# CONFIG_PACKAGE_keynote is not set +# CONFIG_PACKAGE_knock is not set +# CONFIG_PACKAGE_knockd is not set +# CONFIG_PACKAGE_krb5-client is not set +# CONFIG_PACKAGE_krb5-libs is not set +# CONFIG_PACKAGE_krb5-server is not set +# CONFIG_PACKAGE_lft is not set +# CONFIG_PACKAGE_linuxigd is not set +# CONFIG_PACKAGE_lldpd is not set +# CONFIG_PACKAGE_lsm is not set +# CONFIG_PACKAGE_m-route is not set +# CONFIG_PACKAGE_mac-to-devinfo is not set +# CONFIG_PACKAGE_madwimax is not set +# CONFIG_PACKAGE_mdnsresponder is not set +# CONFIG_PACKAGE_memcached is not set +# CONFIG_PACKAGE_mgen is not set +# CONFIG_PACKAGE_miax is not set +# CONFIG_PACKAGE_mii-tool is not set +# CONFIG_PACKAGE_mini-snmpd is not set +# CONFIG_PACKAGE_miniupnpc is not set +# CONFIG_PACKAGE_miniupnpd is not set +# CONFIG_PACKAGE_mtr is not set +# CONFIG_PACKAGE_multiwan is not set +# CONFIG_PACKAGE_mvprelay is not set +# CONFIG_PACKAGE_natpmp is not set +# CONFIG_PACKAGE_nbd is not set +# CONFIG_PACKAGE_nbtscan is not set +# CONFIG_PACKAGE_ncftp is not set +# CONFIG_PACKAGE_ncftp-utils is not set +# CONFIG_PACKAGE_ndyndns is not set +# CONFIG_PACKAGE_net-tools-arp is not set +# CONFIG_PACKAGE_net-tools-hostname is not set +# CONFIG_PACKAGE_net-tools-ifconfig is not set +# CONFIG_PACKAGE_net-tools-ipmaddr is not set +# CONFIG_PACKAGE_net-tools-iptunnel is not set +# CONFIG_PACKAGE_net-tools-mii-tool is not set +# CONFIG_PACKAGE_net-tools-nameif is not set +# CONFIG_PACKAGE_net-tools-netstat is not set +# CONFIG_PACKAGE_net-tools-plipconfig is not set +# CONFIG_PACKAGE_net-tools-rarp is not set +# CONFIG_PACKAGE_net-tools-route is not set +# CONFIG_PACKAGE_net-tools-slattach is not set +# CONFIG_PACKAGE_netatalk is not set +CONFIG_PACKAGE_netcat=y +# CONFIG_PACKAGE_netdiscover is not set +# CONFIG_PACKAGE_netperf is not set +# CONFIG_PACKAGE_netpipe is not set +# CONFIG_PACKAGE_netstat-nat is not set +# CONFIG_PACKAGE_nginx is not set +# CONFIG_PACKAGE_ngircd is not set +# CONFIG_PACKAGE_ngrep is not set +# CONFIG_PACKAGE_nmap is not set +# CONFIG_PACKAGE_noping is not set +# CONFIG_PACKAGE_nrpe is not set +# CONFIG_PACKAGE_nstx is not set +# CONFIG_PACKAGE_nstxd is not set +# CONFIG_PACKAGE_nufw is not set +# CONFIG_PACKAGE_nufw-modules is not set +# CONFIG_PACKAGE_nufw-python is not set +# CONFIG_PACKAGE_nutcpc is not set +# CONFIG_PACKAGE_oidentd is not set +# CONFIG_PACKAGE_olsrd is not set +# CONFIG_PACKAGE_openldap-server is not set +# CONFIG_PACKAGE_opennhrp is not set +# CONFIG_PACKAGE_openrrcp is not set +# CONFIG_PACKAGE_openser is not set +# CONFIG_PACKAGE_opensips is not set +# CONFIG_PACKAGE_openslp is not set +# CONFIG_PACKAGE_oping is not set +# CONFIG_PACKAGE_parprouted is not set +# CONFIG_PACKAGE_pcapsipdump is not set +# CONFIG_PACKAGE_peerguardian is not set +# CONFIG_PACKAGE_pen is not set +# CONFIG_PACKAGE_pepsal is not set +# CONFIG_PACKAGE_portmap is not set +# CONFIG_PACKAGE_portsentry is not set +CONFIG_PACKAGE_ppp=y +# CONFIG_PACKAGE_ppp-mod-pppoa is not set +CONFIG_PACKAGE_ppp-mod-pppoe=y +# CONFIG_PACKAGE_ppp-mod-radius is not set +# CONFIG_PACKAGE_pppdump is not set +# CONFIG_PACKAGE_pppstats is not set +# CONFIG_PACKAGE_pptp is not set +# CONFIG_PACKAGE_ptpd is not set +# CONFIG_PACKAGE_ptunnel is not set +# CONFIG_PACKAGE_qolyester is not set +# CONFIG_PACKAGE_quagga is not set +# CONFIG_PACKAGE_raddump is not set +# CONFIG_PACKAGE_radiusclient-ng is not set +# CONFIG_PACKAGE_radsecproxy is not set +# CONFIG_PACKAGE_rarpd is not set +# CONFIG_PACKAGE_redir is not set +# CONFIG_PACKAGE_remotefs-server is not set +# CONFIG_PACKAGE_rrs is not set +# CONFIG_PACKAGE_rrs-nossl is not set +# CONFIG_PACKAGE_rssh is not set +# CONFIG_PACKAGE_rsync is not set +# CONFIG_PACKAGE_rtpproxy is not set +# CONFIG_PACKAGE_samba3 is not set +# CONFIG_PACKAGE_scanlogd is not set +# CONFIG_PACKAGE_scdp is not set +# CONFIG_PACKAGE_sctp is not set +# CONFIG_PACKAGE_send-nsca is not set +# CONFIG_PACKAGE_ser2net is not set +# CONFIG_PACKAGE_serialoverip is not set +# CONFIG_PACKAGE_shat is not set +# CONFIG_PACKAGE_sipp is not set +# CONFIG_PACKAGE_siproxd is not set +# CONFIG_PACKAGE_sipsak is not set +# CONFIG_PACKAGE_slurm is not set +# CONFIG_PACKAGE_smap is not set +# CONFIG_PACKAGE_smcroute is not set +# CONFIG_PACKAGE_smtptrapd is not set +# CONFIG_PACKAGE_snmp-utils is not set +# CONFIG_PACKAGE_snmpd is not set +# CONFIG_PACKAGE_snmpd-static is not set +# CONFIG_PACKAGE_socat is not set +# CONFIG_PACKAGE_softflowd is not set +# CONFIG_PACKAGE_squid is not set +# CONFIG_PACKAGE_srelay is not set +# CONFIG_PACKAGE_sscep is not set +# CONFIG_PACKAGE_sslcat is not set +# CONFIG_PACKAGE_sslh is not set +# CONFIG_PACKAGE_sslsniff is not set +# CONFIG_PACKAGE_stun-client is not set +# CONFIG_PACKAGE_stund is not set +# CONFIG_PACKAGE_stunnel is not set +# CONFIG_PACKAGE_synce-dccm is not set +# CONFIG_PACKAGE_tc is not set +# CONFIG_PACKAGE_tcpdump is not set +# CONFIG_PACKAGE_tcpdump-mini is not set +# CONFIG_PACKAGE_tcptraceroute is not set +# CONFIG_PACKAGE_tctool is not set +# CONFIG_PACKAGE_tftp-hpa is not set +# CONFIG_PACKAGE_tftpd-hpa is not set +# CONFIG_PACKAGE_tor is not set +# CONFIG_PACKAGE_tsocks is not set +# CONFIG_PACKAGE_ttcp is not set +# CONFIG_PACKAGE_ucarp is not set +# CONFIG_PACKAGE_ucspi-tcp is not set +# CONFIG_PACKAGE_udp-broadcast-relay is not set +# CONFIG_PACKAGE_udpxy is not set +# CONFIG_PACKAGE_uhttpd is not set +# CONFIG_PACKAGE_ulogd is not set +# CONFIG_PACKAGE_umurmur-openssl is not set +# CONFIG_PACKAGE_umurmur-polarssl is not set +# CONFIG_PACKAGE_unbound is not set +# CONFIG_PACKAGE_uob-nomad is not set +# CONFIG_PACKAGE_updatedd is not set +# CONFIG_PACKAGE_usbip is not set +# CONFIG_PACKAGE_uucp is not set +# CONFIG_PACKAGE_vblade is not set +# CONFIG_PACKAGE_veth is not set +# CONFIG_PACKAGE_vgp is not set +# CONFIG_PACKAGE_vis is not set +# CONFIG_PACKAGE_vnc-reflector is not set +# CONFIG_PACKAGE_vncrepeater is not set +# CONFIG_PACKAGE_vnstat is not set +# CONFIG_PACKAGE_vrrpd is not set +# CONFIG_PACKAGE_wccpd is not set +# CONFIG_PACKAGE_wdiag is not set +# CONFIG_PACKAGE_wget is not set +# CONFIG_PACKAGE_wget-nossl is not set +# CONFIG_PACKAGE_wing is not set +# CONFIG_PACKAGE_wiviz is not set +# CONFIG_PACKAGE_wol is not set +# CONFIG_PACKAGE_wpa-cli is not set +# CONFIG_PACKAGE_wpa-supplicant is not set +# CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK is not set +# CONFIG_WPA_RFKILL_SUPPORT is not set +# CONFIG_PACKAGE_wpa-supplicant-mini is not set +# CONFIG_PACKAGE_wpad is not set +CONFIG_PACKAGE_wpad-mini=y +# CONFIG_PACKAGE_wprobe-export is not set +# CONFIG_PACKAGE_wprobe-util is not set +# CONFIG_PACKAGE_wshaper is not set +# CONFIG_PACKAGE_xinetd is not set +# CONFIG_PACKAGE_xsupplicant is not set +# CONFIG_PACKAGE_yaddns is not set + +# +# Multimedia +# +# CONFIG_PACKAGE_GraphicsMagick is not set +# CONFIG_PACKAGE_GraphicsMagick-jpeg is not set +# CONFIG_PACKAGE_ffmpeg is not set +# CONFIG_PACKAGE_ffserver is not set +# CONFIG_PACKAGE_fswebcam is not set +# CONFIG_PACKAGE_ftpd-topfield is not set +# CONFIG_PACKAGE_gphoto2 is not set +# CONFIG_PACKAGE_gst-mod-alsa is not set +# CONFIG_PACKAGE_gst-mod-app is not set +# CONFIG_PACKAGE_gst-mod-audioconvert is not set +# CONFIG_PACKAGE_gst-mod-audiofx is not set +# CONFIG_PACKAGE_gst-mod-audiorate is not set +# CONFIG_PACKAGE_gst-mod-audioresample is not set +# CONFIG_PACKAGE_gst-mod-audiotestsrc is not set +# CONFIG_PACKAGE_gst-mod-autodetect is not set +# CONFIG_PACKAGE_gst-mod-cutter is not set +# CONFIG_PACKAGE_gst-mod-debug is not set +# CONFIG_PACKAGE_gst-mod-decodebin is not set +# CONFIG_PACKAGE_gst-mod-decodebin2 is not set +# CONFIG_PACKAGE_gst-mod-equalizer is not set +# CONFIG_PACKAGE_gst-mod-flac is not set +# CONFIG_PACKAGE_gst-mod-gio is not set +# CONFIG_PACKAGE_gst-mod-id3demux is not set +# CONFIG_PACKAGE_gst-mod-interleave is not set +# CONFIG_PACKAGE_gst-mod-lame is not set +# CONFIG_PACKAGE_gst-mod-level is not set +# CONFIG_PACKAGE_gst-mod-mad is not set +# CONFIG_PACKAGE_gst-mod-multifile is not set +# CONFIG_PACKAGE_gst-mod-multipart is not set +# CONFIG_PACKAGE_gst-mod-ogg is not set +# CONFIG_PACKAGE_gst-mod-ossaudio is not set +# CONFIG_PACKAGE_gst-mod-playbin is not set +# CONFIG_PACKAGE_gst-mod-replaygain is not set +# CONFIG_PACKAGE_gst-mod-rtp is not set +# CONFIG_PACKAGE_gst-mod-rtsp is not set +# CONFIG_PACKAGE_gst-mod-spectrum is not set +# CONFIG_PACKAGE_gst-mod-tcp is not set +# CONFIG_PACKAGE_gst-mod-theora is not set +# CONFIG_PACKAGE_gst-mod-typefindfunctions is not set +# CONFIG_PACKAGE_gst-mod-udp is not set +# CONFIG_PACKAGE_gst-mod-videotestsrc is not set +# CONFIG_PACKAGE_gst-mod-volume is not set +# CONFIG_PACKAGE_gst-mod-vorbis is not set +# CONFIG_PACKAGE_gst-mod-wavenc is not set +# CONFIG_PACKAGE_gst-mod-wavparse is not set +# CONFIG_PACKAGE_gst-plugins-base is not set +# CONFIG_PACKAGE_gst-plugins-good is not set +# CONFIG_PACKAGE_gst-plugins-ugly is not set +# CONFIG_PACKAGE_gstreamer is not set +# CONFIG_PACKAGE_gstreamer-utils is not set +# CONFIG_PACKAGE_hasciicam is not set +# CONFIG_PACKAGE_kissdx is not set +# CONFIG_PACKAGE_libgstapp is not set +# CONFIG_PACKAGE_libgstaudio is not set +# CONFIG_PACKAGE_libgstcdda is not set +# CONFIG_PACKAGE_libgstcheck is not set +# CONFIG_PACKAGE_libgstcontroller is not set +# CONFIG_PACKAGE_libgstdataprotocol is not set +# CONFIG_PACKAGE_libgstfft is not set +# CONFIG_PACKAGE_libgstinterfaces is not set +# CONFIG_PACKAGE_libgstnet is not set +# CONFIG_PACKAGE_libgstnetbuffer is not set +# CONFIG_PACKAGE_libgstpbutils is not set +# CONFIG_PACKAGE_libgstreamer is not set +# CONFIG_PACKAGE_libgstriff is not set +# CONFIG_PACKAGE_libgstrtp is not set +# CONFIG_PACKAGE_libgstrtsp is not set +# CONFIG_PACKAGE_libgstsdp is not set +# CONFIG_PACKAGE_libgsttag is not set +# CONFIG_PACKAGE_libgstvideo is not set +# CONFIG_PACKAGE_minidlna is not set +# CONFIG_PACKAGE_mjpg-streamer is not set +# CONFIG_PACKAGE_motion is not set +# CONFIG_PACKAGE_palantir is not set +# CONFIG_PACKAGE_peercast is not set +# CONFIG_PACKAGE_puppy is not set +# CONFIG_PACKAGE_spcacat is not set +# CONFIG_PACKAGE_streamripper is not set +# CONFIG_PACKAGE_ushare is not set +# CONFIG_PACKAGE_vips is not set + +# +# Utilities +# + +# +# Boot Loaders +# + +# +# Editors +# +# CONFIG_PACKAGE_joe is not set +# CONFIG_PACKAGE_mg is not set +CONFIG_PACKAGE_nano=y +# CONFIG_PACKAGE_vim is not set +# CONFIG_PACKAGE_vim-full is not set +# CONFIG_PACKAGE_vim-help is not set +# CONFIG_PACKAGE_vim-runtime is not set +# CONFIG_PACKAGE_zile is not set + +# +# Filesystem +# +# CONFIG_PACKAGE_badblocks is not set +# CONFIG_PACKAGE_blkid is not set +# CONFIG_PACKAGE_btrfs-progs is not set +# CONFIG_PACKAGE_cifsmount is not set +# CONFIG_PACKAGE_disktype is not set +# CONFIG_PACKAGE_dosfsck is not set +# CONFIG_PACKAGE_dosfslabel is not set +# CONFIG_PACKAGE_e2fsprogs is not set +# CONFIG_PACKAGE_mkdosfs is not set +# CONFIG_PACKAGE_mount.ntfs-3g is not set +# CONFIG_PACKAGE_nfs-utils is not set +# CONFIG_PACKAGE_ntfs-3g is not set +# CONFIG_PACKAGE_ntfs-3g-utils is not set +# CONFIG_PACKAGE_ntfsprogs is not set +# CONFIG_PACKAGE_owshell is not set +# CONFIG_PACKAGE_reiserfsprogs is not set +# CONFIG_PACKAGE_resize2fs is not set +# CONFIG_PACKAGE_sysfsutils is not set +# CONFIG_PACKAGE_tune2fs is not set +# CONFIG_PACKAGE_uuidgen is not set + +# +# SSL +# +# CONFIG_PACKAGE_certtool is not set +# CONFIG_PACKAGE_gnutls-utils is not set +# CONFIG_PACKAGE_polarssl-progs is not set + +# +# Sound +# +# CONFIG_PACKAGE_liblo-utils is not set + +# +# Terminal +# +# CONFIG_PACKAGE_microcom is not set +# CONFIG_PACKAGE_minicom is not set +# CONFIG_PACKAGE_picocom is not set +# CONFIG_PACKAGE_script is not set +# CONFIG_PACKAGE_setserial is not set +# CONFIG_PACKAGE_setterm is not set + +# +# backup +# +# CONFIG_PACKAGE_rdiff-backup is not set + +# +# compression +# +# CONFIG_PACKAGE_unzip is not set +# CONFIG_PACKAGE_zip is not set + +# +# database +# +# CONFIG_PACKAGE_mysql-server is not set +# CONFIG_PACKAGE_pgsql-cli is not set +# CONFIG_PACKAGE_pgsql-server is not set +# CONFIG_PACKAGE_sqlite2-cli is not set +# CONFIG_PACKAGE_sqlite3-cli is not set + +# +# disc +# +# CONFIG_PACKAGE_cfdisk is not set +# CONFIG_PACKAGE_devio is not set +# CONFIG_PACKAGE_fdisk is not set +# CONFIG_PACKAGE_hd-idle is not set +# CONFIG_PACKAGE_hdparm is not set +# CONFIG_PACKAGE_lvm2 is not set +# CONFIG_PACKAGE_sdparm is not set +# CONFIG_PACKAGE_sfdisk is not set +# CONFIG_PACKAGE_swap-utils is not set + +# +# filemanager +# +# CONFIG_PACKAGE_deco is not set +# CONFIG_PACKAGE_mc is not set +# CONFIG_PACKAGE_alsa-utils is not set +# CONFIG_PACKAGE_alsa-utils-tests is not set +# CONFIG_PACKAGE_anyremote is not set +# CONFIG_PACKAGE_ap51-flash is not set +# CONFIG_PACKAGE_apcupsd is not set +# CONFIG_PACKAGE_at is not set +# CONFIG_PACKAGE_avrdude is not set +# CONFIG_PACKAGE_avrusbboot is not set +# CONFIG_PACKAGE_bandwidthd is not set +# CONFIG_PACKAGE_bash is not set +# CONFIG_PACKAGE_bash-completion is not set +# CONFIG_PACKAGE_bc is not set +# CONFIG_PACKAGE_bemusedlinuxserver is not set +# CONFIG_PACKAGE_bluez-hcidump is not set +# CONFIG_PACKAGE_bluez-utils is not set +# CONFIG_PACKAGE_bzip2 is not set +# CONFIG_PACKAGE_ccrypt is not set +# CONFIG_PACKAGE_cdparanoia is not set +# CONFIG_PACKAGE_cksfv is not set +# CONFIG_PACKAGE_cmdpad is not set +# CONFIG_PACKAGE_collectd is not set +# CONFIG_PACKAGE_comgt is not set +# CONFIG_PACKAGE_coreutils is not set +# CONFIG_PACKAGE_coreutils-base64 is not set +# CONFIG_PACKAGE_coreutils-basename is not set +# CONFIG_PACKAGE_coreutils-cat is not set +# CONFIG_PACKAGE_coreutils-chcon is not set +# CONFIG_PACKAGE_coreutils-chgrp is not set +# CONFIG_PACKAGE_coreutils-chmod is not set +# CONFIG_PACKAGE_coreutils-chown is not set +# CONFIG_PACKAGE_coreutils-chroot is not set +# CONFIG_PACKAGE_coreutils-cksum is not set +# CONFIG_PACKAGE_coreutils-comm is not set +# CONFIG_PACKAGE_coreutils-cp is not set +# CONFIG_PACKAGE_coreutils-csplit is not set +# CONFIG_PACKAGE_coreutils-cut is not set +# CONFIG_PACKAGE_coreutils-date is not set +# CONFIG_PACKAGE_coreutils-dd is not set +# CONFIG_PACKAGE_coreutils-dir is not set +# CONFIG_PACKAGE_coreutils-dircolors is not set +# CONFIG_PACKAGE_coreutils-dirname is not set +# CONFIG_PACKAGE_coreutils-du is not set +# CONFIG_PACKAGE_coreutils-echo is not set +# CONFIG_PACKAGE_coreutils-env is not set +# CONFIG_PACKAGE_coreutils-expand is not set +# CONFIG_PACKAGE_coreutils-expr is not set +# CONFIG_PACKAGE_coreutils-factor is not set +# CONFIG_PACKAGE_coreutils-false is not set +# CONFIG_PACKAGE_coreutils-fmt is not set +# CONFIG_PACKAGE_coreutils-fold is not set +# CONFIG_PACKAGE_coreutils-groups is not set +# CONFIG_PACKAGE_coreutils-head is not set +# CONFIG_PACKAGE_coreutils-hostid is not set +# CONFIG_PACKAGE_coreutils-id is not set +# CONFIG_PACKAGE_coreutils-install is not set +# CONFIG_PACKAGE_coreutils-join is not set +# CONFIG_PACKAGE_coreutils-kill is not set +# CONFIG_PACKAGE_coreutils-link is not set +# CONFIG_PACKAGE_coreutils-ln is not set +# CONFIG_PACKAGE_coreutils-logname is not set +# CONFIG_PACKAGE_coreutils-ls is not set +# CONFIG_PACKAGE_coreutils-md5sum is not set +# CONFIG_PACKAGE_coreutils-mkdir is not set +# CONFIG_PACKAGE_coreutils-mkfifo is not set +# CONFIG_PACKAGE_coreutils-mknod is not set +# CONFIG_PACKAGE_coreutils-mktemp is not set +# CONFIG_PACKAGE_coreutils-mv is not set +# CONFIG_PACKAGE_coreutils-nice is not set +# CONFIG_PACKAGE_coreutils-nl is not set +# CONFIG_PACKAGE_coreutils-nohup is not set +# CONFIG_PACKAGE_coreutils-nproc is not set +# CONFIG_PACKAGE_coreutils-od is not set +# CONFIG_PACKAGE_coreutils-paste is not set +# CONFIG_PACKAGE_coreutils-pathchk is not set +# CONFIG_PACKAGE_coreutils-pinky is not set +# CONFIG_PACKAGE_coreutils-pr is not set +# CONFIG_PACKAGE_coreutils-printenv is not set +# CONFIG_PACKAGE_coreutils-printf is not set +# CONFIG_PACKAGE_coreutils-ptx is not set +# CONFIG_PACKAGE_coreutils-pwd is not set +# CONFIG_PACKAGE_coreutils-readlink is not set +# CONFIG_PACKAGE_coreutils-rm is not set +# CONFIG_PACKAGE_coreutils-rmdir is not set +# CONFIG_PACKAGE_coreutils-runcon is not set +# CONFIG_PACKAGE_coreutils-seq is not set +# CONFIG_PACKAGE_coreutils-sha1sum is not set +# CONFIG_PACKAGE_coreutils-sha224sum is not set +# CONFIG_PACKAGE_coreutils-sha256sum is not set +# CONFIG_PACKAGE_coreutils-sha384sum is not set +# CONFIG_PACKAGE_coreutils-sha512sum is not set +# CONFIG_PACKAGE_coreutils-shred is not set +# CONFIG_PACKAGE_coreutils-shuf is not set +# CONFIG_PACKAGE_coreutils-sleep is not set +# CONFIG_PACKAGE_coreutils-sort is not set +# CONFIG_PACKAGE_coreutils-split is not set +# CONFIG_PACKAGE_coreutils-stat is not set +# CONFIG_PACKAGE_coreutils-stdbuf is not set +# CONFIG_PACKAGE_coreutils-stty is not set +# CONFIG_PACKAGE_coreutils-su is not set +# CONFIG_PACKAGE_coreutils-sum is not set +# CONFIG_PACKAGE_coreutils-sync is not set +# CONFIG_PACKAGE_coreutils-tac is not set +# CONFIG_PACKAGE_coreutils-tail is not set +# CONFIG_PACKAGE_coreutils-tee is not set +# CONFIG_PACKAGE_coreutils-test is not set +# CONFIG_PACKAGE_coreutils-timeout is not set +# CONFIG_PACKAGE_coreutils-touch is not set +# CONFIG_PACKAGE_coreutils-tr is not set +# CONFIG_PACKAGE_coreutils-true is not set +# CONFIG_PACKAGE_coreutils-truncate is not set +# CONFIG_PACKAGE_coreutils-tsort is not set +# CONFIG_PACKAGE_coreutils-tty is not set +# CONFIG_PACKAGE_coreutils-uname is not set +# CONFIG_PACKAGE_coreutils-unexpand is not set +# CONFIG_PACKAGE_coreutils-uniq is not set +# CONFIG_PACKAGE_coreutils-unlink is not set +# CONFIG_PACKAGE_coreutils-uptime is not set +# CONFIG_PACKAGE_coreutils-users is not set +# CONFIG_PACKAGE_coreutils-vdir is not set +# CONFIG_PACKAGE_coreutils-wc is not set +# CONFIG_PACKAGE_coreutils-who is not set +# CONFIG_PACKAGE_coreutils-whoami is not set +# CONFIG_PACKAGE_coreutils-yes is not set +# CONFIG_PACKAGE_crypto-tools is not set +# CONFIG_PACKAGE_cryptsetup is not set +# CONFIG_PACKAGE_daemontools is not set +# CONFIG_PACKAGE_dbus is not set +# CONFIG_PACKAGE_devmem2 is not set +# CONFIG_PACKAGE_dfu-util is not set +# CONFIG_PACKAGE_dialog is not set +# CONFIG_PACKAGE_digitemp is not set +# CONFIG_PACKAGE_digitemp-usb is not set +# CONFIG_PACKAGE_dir300-flash is not set +# CONFIG_PACKAGE_dropbearconvert is not set +# CONFIG_PACKAGE_dt is not set +# CONFIG_PACKAGE_dtach is not set +# CONFIG_PACKAGE_empty is not set +# CONFIG_PACKAGE_event_test is not set +# CONFIG_PACKAGE_fancontroled is not set +# CONFIG_PACKAGE_fconfig is not set +# CONFIG_PACKAGE_file is not set +# CONFIG_PACKAGE_firmwarehotplug is not set +# CONFIG_PACKAGE_flock is not set +# CONFIG_PACKAGE_fortune-mod is not set +# CONFIG_PACKAGE_fowsr is not set +# CONFIG_PACKAGE_fxload is not set +# CONFIG_PACKAGE_gconf2 is not set +# CONFIG_PACKAGE_gdb is not set +# CONFIG_PACKAGE_gdbserver is not set +# CONFIG_PACKAGE_gnokii is not set +# CONFIG_PACKAGE_gnupg is not set +# CONFIG_PACKAGE_gnuplot is not set +CONFIG_PACKAGE_gpioctl=y +# CONFIG_PACKAGE_gsm-utils is not set +# CONFIG_PACKAGE_gzip is not set +# CONFIG_PACKAGE_haserl is not set +# CONFIG_PACKAGE_heyu is not set +# CONFIG_PACKAGE_hplip is not set +# CONFIG_PACKAGE_huaweiaktbbo is not set +# CONFIG_PACKAGE_hwclock is not set +# CONFIG_PACKAGE_i2c-tools is not set +# CONFIG_PACKAGE_iconv is not set +# CONFIG_PACKAGE_ink is not set +# CONFIG_PACKAGE_input-utils is not set +# CONFIG_PACKAGE_io is not set +# CONFIG_PACKAGE_ipmitool is not set +# CONFIG_PACKAGE_jpeg-tools is not set +# CONFIG_PACKAGE_kexec-tools is not set +# CONFIG_PACKAGE_kmemtrace-user is not set +# CONFIG_PACKAGE_ksymoops is not set +# CONFIG_PACKAGE_lcd4linux is not set +# CONFIG_PACKAGE_lcdproc is not set +# CONFIG_PACKAGE_ldconfig is not set +# CONFIG_PACKAGE_ldd is not set +# CONFIG_PACKAGE_libnfc-examples is not set +# CONFIG_PACKAGE_lirc is not set +# CONFIG_PACKAGE_lm-sensors is not set +# CONFIG_PACKAGE_logrotate is not set +# CONFIG_PACKAGE_losetup is not set +# CONFIG_PACKAGE_lrzsz is not set +# CONFIG_PACKAGE_lsof is not set +# CONFIG_PACKAGE_macchanger is not set +# CONFIG_PACKAGE_mdadm is not set +# CONFIG_PACKAGE_memtester is not set +# CONFIG_PACKAGE_mgetty is not set +# CONFIG_PACKAGE_mount-utils is not set +# CONFIG_PACKAGE_mtd-utils is not set +# CONFIG_PACKAGE_nprobe is not set +# CONFIG_PACKAGE_ocf-crypto-headers is not set +# CONFIG_PACKAGE_open2300 is not set +# CONFIG_PACKAGE_openldap-utils is not set +# CONFIG_PACKAGE_openssl-util is not set +# CONFIG_PACKAGE_pciutils is not set +# CONFIG_PACKAGE_pcscd is not set +# CONFIG_PACKAGE_pipacs is not set +# CONFIG_PACKAGE_powertop is not set +# CONFIG_PACKAGE_procps is not set +# CONFIG_PACKAGE_psmisc is not set +# CONFIG_PACKAGE_psplash is not set +# CONFIG_PACKAGE_pv is not set +# CONFIG_PACKAGE_pwcrypt is not set +# CONFIG_PACKAGE_pwgen is not set +# CONFIG_PACKAGE_pwrtray-backend is not set +# CONFIG_PACKAGE_px5g is not set +# CONFIG_PACKAGE_qc-usb-utils is not set +# CONFIG_PACKAGE_rcs is not set +# CONFIG_PACKAGE_restorefactory is not set +# CONFIG_PACKAGE_robocfg is not set +# CONFIG_PACKAGE_rrdcgi is not set +# CONFIG_PACKAGE_rrdcgi1 is not set +# CONFIG_PACKAGE_rrdcollect is not set +# CONFIG_PACKAGE_rrdtool is not set +# CONFIG_PACKAGE_rrdtool1 is not set +# CONFIG_PACKAGE_sane-backends is not set +# CONFIG_PACKAGE_sane-frontends is not set +# CONFIG_PACKAGE_schedtool is not set +# CONFIG_PACKAGE_scponly is not set +# CONFIG_PACKAGE_screen is not set +# CONFIG_PACKAGE_sed is not set +# CONFIG_PACKAGE_setpwc is not set +# CONFIG_PACKAGE_shadow is not set +# CONFIG_PACKAGE_shadow-groupadd is not set +# CONFIG_PACKAGE_shadow-groupdel is not set +# CONFIG_PACKAGE_shadow-groupmod is not set +# CONFIG_PACKAGE_shadow-useradd is not set +# CONFIG_PACKAGE_shadow-userdel is not set +# CONFIG_PACKAGE_shadow-usermod is not set +# CONFIG_PACKAGE_sispmctl is not set +# CONFIG_PACKAGE_smartmontools is not set +# CONFIG_PACKAGE_spidev-test is not set +# CONFIG_PACKAGE_ssldump is not set +# CONFIG_PACKAGE_strace is not set +# CONFIG_PACKAGE_stress is not set +# CONFIG_PACKAGE_sysstat is not set +# CONFIG_PACKAGE_tar is not set +# CONFIG_PACKAGE_tiff-utils is not set +# CONFIG_PACKAGE_tmux is not set +# CONFIG_PACKAGE_triggerhappy is not set +# CONFIG_PACKAGE_uboot-envtools is not set +# CONFIG_PACKAGE_ucmb-tools is not set +# CONFIG_PACKAGE_unrar is not set +# CONFIG_PACKAGE_upx is not set +# CONFIG_PACKAGE_usb-modeswitch is not set +# CONFIG_PACKAGE_usbutils is not set +# CONFIG_PACKAGE_wifitoggle is not set +# CONFIG_PACKAGE_wminput is not set +# CONFIG_PACKAGE_wx200d is not set +# CONFIG_PACKAGE_xsltproc is not set +# CONFIG_PACKAGE_zaptel14-util is not set + +# +# Extra packages +# +# CONFIG_PACKAGE_libdmapsharing is not set +# CONFIG_PACKAGE_zoneinfo-africa is not set +# CONFIG_PACKAGE_zoneinfo-asia is not set +# CONFIG_PACKAGE_zoneinfo-atlantic is not set +# CONFIG_PACKAGE_zoneinfo-australia-nz is not set +# CONFIG_PACKAGE_zoneinfo-core is not set +# CONFIG_PACKAGE_zoneinfo-europe is not set +# CONFIG_PACKAGE_zoneinfo-india is not set +# CONFIG_PACKAGE_zoneinfo-middleeast is not set +# CONFIG_PACKAGE_zoneinfo-northamerica is not set +# CONFIG_PACKAGE_zoneinfo-pacific is not set +# CONFIG_PACKAGE_zoneinfo-poles is not set +# CONFIG_PACKAGE_zoneinfo-simple is not set +# CONFIG_PACKAGE_zoneinfo-southamerica is not set + +# +# Sound +# +# CONFIG_PACKAGE_empcd is not set +# CONFIG_PACKAGE_faad2 is not set +# CONFIG_PACKAGE_flite is not set +# CONFIG_PACKAGE_ices is not set +# CONFIG_PACKAGE_lame is not set +# CONFIG_PACKAGE_lame-lib is not set +# CONFIG_PACKAGE_madplay is not set +# CONFIG_PACKAGE_mpc is not set +# CONFIG_PACKAGE_mpd is not set +# CONFIG_PACKAGE_mpdas is not set +# CONFIG_PACKAGE_mt-daapd is not set +# CONFIG_PACKAGE_scmpc is not set +# CONFIG_PACKAGE_shell-fm is not set +# CONFIG_PACKAGE_sox is not set + +# +# Development +# +# CONFIG_PACKAGE_binutils is not set +# CONFIG_PACKAGE_diffutils is not set +# CONFIG_PACKAGE_dmalloc-utils is not set +# CONFIG_PACKAGE_libbfd is not set +# CONFIG_PACKAGE_libdmalloc is not set +# CONFIG_PACKAGE_make is not set +# CONFIG_PACKAGE_objdump is not set +# CONFIG_PACKAGE_patch is not set +# CONFIG_PACKAGE_python-sip is not set + +# +# Languages +# + +# +# Erlang +# +# CONFIG_PACKAGE_erlang is not set +# CONFIG_PACKAGE_erlang-asn1 is not set +# CONFIG_PACKAGE_erlang-compiler is not set +# CONFIG_PACKAGE_erlang-crypto is not set +# CONFIG_PACKAGE_erlang-hipe is not set +# CONFIG_PACKAGE_erlang-inets is not set +# CONFIG_PACKAGE_erlang-mnesia is not set +# CONFIG_PACKAGE_erlang-runtime-tools is not set +# CONFIG_PACKAGE_erlang-snmp is not set +# CONFIG_PACKAGE_erlang-ssh is not set +# CONFIG_PACKAGE_erlang-ssl is not set +# CONFIG_PACKAGE_erlang-syntax-tools is not set + +# +# Java +# +# CONFIG_PACKAGE_sablevm is not set +# CONFIG_PACKAGE_sablevm-mini is not set + +# +# JavaScript +# +# CONFIG_PACKAGE_js is not set + +# +# Lua +# +# CONFIG_PACKAGE_lsqlite3 is not set +# CONFIG_PACKAGE_lua is not set +# CONFIG_PACKAGE_luac is not set +# CONFIG_PACKAGE_luaexpat is not set +# CONFIG_PACKAGE_luafilesystem is not set +# CONFIG_PACKAGE_luaprofiler is not set +# CONFIG_PACKAGE_luasec is not set +# CONFIG_PACKAGE_luasocket is not set +# CONFIG_PACKAGE_luasql-mysql is not set +# CONFIG_PACKAGE_luasql-pgsql is not set +# CONFIG_PACKAGE_luasql-sqlite3 is not set + +# +# PHP +# +# CONFIG_PACKAGE_php-pear is not set +# CONFIG_PACKAGE_php4 is not set +# CONFIG_PACKAGE_php5 is not set + +# +# Perl +# +# CONFIG_PACKAGE_microperl is not set +# CONFIG_PACKAGE_perl is not set + +# +# Python +# +# CONFIG_PACKAGE_cython is not set +# CONFIG_PACKAGE_dbus-python is not set +# CONFIG_PACKAGE_distribute is not set +# CONFIG_PACKAGE_gst-python is not set +# CONFIG_PACKAGE_ipython is not set +# CONFIG_PACKAGE_libyaml is not set +# CONFIG_PACKAGE_logilab-astng is not set +# CONFIG_PACKAGE_logilab-common is not set +# CONFIG_PACKAGE_pycairo is not set +# CONFIG_PACKAGE_pyopenssl is not set +# CONFIG_PACKAGE_pyqt4 is not set +# CONFIG_PACKAGE_pyserial is not set +# CONFIG_PACKAGE_python is not set +# CONFIG_PACKAGE_python-bluez is not set +# CONFIG_PACKAGE_python-cjson is not set +# CONFIG_PACKAGE_python-crypto is not set +# CONFIG_PACKAGE_python-curl is not set +# CONFIG_PACKAGE_python-cwiid is not set +# CONFIG_PACKAGE_python-doc is not set +# CONFIG_PACKAGE_python-egenix-mx is not set +# CONFIG_PACKAGE_python-event is not set +# CONFIG_PACKAGE_python-expat is not set +# CONFIG_PACKAGE_python-gdbm is not set +# CONFIG_PACKAGE_python-gobject is not set +# CONFIG_PACKAGE_python-gzip is not set +# CONFIG_PACKAGE_python-json is not set +# CONFIG_PACKAGE_python-kid is not set +# CONFIG_PACKAGE_python-mini is not set +# CONFIG_PACKAGE_python-mysql is not set +# CONFIG_PACKAGE_python-openssl is not set +# CONFIG_PACKAGE_python-pcap is not set +# CONFIG_PACKAGE_python-psycopg is not set +# CONFIG_PACKAGE_python-rrd is not set +# CONFIG_PACKAGE_python-shutil is not set +# CONFIG_PACKAGE_python-smbus is not set +# CONFIG_PACKAGE_python-sqlite is not set +# CONFIG_PACKAGE_python-sqlite3 is not set +# CONFIG_PACKAGE_python-xapian is not set +# CONFIG_PACKAGE_python-yapsnmp is not set +# CONFIG_PACKAGE_python2-chardet is not set +# CONFIG_PACKAGE_pyusb is not set +# CONFIG_PACKAGE_pyxdg is not set +# CONFIG_PACKAGE_pyyaml is not set +# CONFIG_PACKAGE_telepathy-python is not set + +# +# Ruby +# +# CONFIG_PACKAGE_ruby is not set +# CONFIG_PACKAGE_eggdrop is not set +# CONFIG_PACKAGE_sigscheme is not set +# CONFIG_PACKAGE_tcl is not set +# CONFIG_PACKAGE_urbi is not set diff --git a/build_patches/batman_advanced/Config.in b/build_patches/batman_advanced/Config.in new file mode 100644 index 0000000..ad11d3a --- /dev/null +++ b/build_patches/batman_advanced/Config.in @@ -0,0 +1,13 @@ + +config KMOD_BATMAN_ADV_DEBUG_LOG + bool "enable verbose debug logging" + depends PACKAGE_kmod-batman-adv + default n +config KMOD_BATMAN_ADV_BATCTL + bool "enable batctl" + depends PACKAGE_kmod-batman-adv + default y + help + batctl is a more intuitive managment utility for B.A.T.M.A.N.-Advanced. + It is an easier method for configuring batman-adv and + provides some additional tools for debugging as well. diff --git a/build_patches/batman_advanced/Makefile b/build_patches/batman_advanced/Makefile new file mode 100644 index 0000000..7a6cd7b --- /dev/null +++ b/build_patches/batman_advanced/Makefile @@ -0,0 +1,106 @@ +# +# Copyright (C) 2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id: Makefile 5624 2006-11-23 00:29:07Z nbd $ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=batman-adv + +PKG_VERSION:=2010.2.0 +PKG_MD5SUM:=c233f06bd94432d7697ad78241e8bdd6 +BATCTL_MD5SUM:=f16d7332576c7b4fc9f8a37add235225 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://downloads.open-mesh.org/batman/releases/batman-adv-$(PKG_VERSION) + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(PKG_NAME)-$(PKG_VERSION) +PKG_TOOL_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/batctl-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/kernel.mk + +define KernelPackage/batman-adv + URL:=http://www.open-mesh.org/ + MAINTAINER:=Marek Lindner + SUBMENU:=Network Support + DEPENDS:=@!LINUX_2_4 + TITLE:=B.A.T.M.A.N. Adv + FILES:=$(PKG_BUILD_DIR)/batman-adv.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,50,batman-adv) +endef + +define KernelPackage/batman-adv/description +B.A.T.M.A.N. advanced is a kernel module which allows to +build layer 2 mesh networks. This package contains the +version $(PKG_VERSION) of the kernel module plus its user space +configuration & managerment tool batctl. +endef + +define KernelPackage/batman-adv/config + source "$(SOURCE)/Config.in" +endef + +MAKE_BATMAN_ADV_ARGS += \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + ARCH="$(LINUX_KARCH)" \ + PATH="$(TARGET_PATH)" \ + $(if $(CONFIG_KMOD_BATMAN_ADV_DEBUG_LOG),EXTRA_CFLAGS="-DCONFIG_BATMAN_ADV_DEBUG") \ + SUBDIRS="$(PKG_BUILD_DIR)" \ + LINUX_VERSION="$(LINUX_VERSION)" \ + REVISION="" modules + +MAKE_BATCTL_ARGS += \ + CFLAGS="$(TARGET_CFLAGS)" \ + CCFLAGS="$(TARGET_CFLAGS)" \ + OFLAGS="$(TARGET_CFLAGS)" \ + REVISION="" \ + CC="$(TARGET_CC)" \ + NODEBUG=1 \ + UNAME="Linux" \ + INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \ + STRIP="/bin/true" \ + batctl install + +ifneq ($(DEVELOPER)$(CONFIG_KMOD_BATMAN_ADV_BATCTL),) +define Download/batctl + FILE:=batctl-$(PKG_VERSION).tar.gz + URL:=$(PKG_SOURCE_URL) + MD5SUM:=$(BATCTL_MD5SUM) +endef +$(eval $(call Download,batctl)) + +BUILD_BATCTL = $(MAKE) -C $(PKG_TOOL_BUILD_DIR) $(MAKE_BATCTL_ARGS) +endif + +define Build/Compile + tar xzf "$(DL_DIR)/batctl-$(PKG_VERSION).tar.gz" -C "$(BUILD_DIR)/$(PKG_NAME)" + cp $(PKG_BUILD_DIR)/Makefile.kbuild $(PKG_BUILD_DIR)/Makefile + $(MAKE) -C "$(LINUX_DIR)" $(MAKE_BATMAN_ADV_ARGS) + $(BUILD_BATCTL) +endef + +define Build/Clean + rm -rf $(BUILD_DIR)/$(PKG_NAME)/ +endef + +ifneq ($(DEVELOPER)$(CONFIG_KMOD_BATMAN_ADV_BATCTL),) +define KernelPackage/batman-adv/install + $(INSTALL_DIR) $(1)/etc/config $(1)/etc/init.d + $(INSTALL_BIN) ./files/etc/init.d/batman-adv $(1)/etc/init.d + $(INSTALL_DATA) ./files/etc/config/batman-adv $(1)/etc/config + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/batctl $(1)/usr/sbin/ +endef +else +define KernelPackage/batman-adv/install + $(INSTALL_DIR) $(1)/etc/config $(1)/etc/init.d + $(INSTALL_BIN) ./files/etc/init.d/batman-adv $(1)/etc/init.d + $(INSTALL_DATA) ./files/etc/config/batman-adv $(1)/etc/config +endef +endif + +$(eval $(call KernelPackage,batman-adv)) diff --git a/build_patches/batman_advanced/files/etc/config/batman-adv b/build_patches/batman_advanced/files/etc/config/batman-adv new file mode 100644 index 0000000..dbce507 --- /dev/null +++ b/build_patches/batman_advanced/files/etc/config/batman-adv @@ -0,0 +1,9 @@ + +config 'mesh' 'bat0' + option 'interfaces' 'wlan0' + option 'orig_interval' + option 'log_level' + option 'aggregated_ogms' + option 'bonding' + option 'fragmentation' + option 'vis_mode' diff --git a/build_patches/batman_advanced/files/etc/init.d/batman-adv b/build_patches/batman_advanced/files/etc/init.d/batman-adv new file mode 100644 index 0000000..120413d --- /dev/null +++ b/build_patches/batman_advanced/files/etc/init.d/batman-adv @@ -0,0 +1,102 @@ +#!/bin/sh /etc/rc.common +START=90 + +is_module_loaded() { + + if [ ! -d "/sys/module/batman_adv" ]; then + echo "batman-adv module directory not found - was the kernel module loaded ?" >&2 + return 0 + fi + + return 1 +} + +start_mesh () { + local meshif="$1" + local interfaces orig_interval log_level aggregated_ogms bonding fragmentation vis_mode + + is_module_loaded + [ $? -ne 1 ] && return + + config_get interfaces "$meshif" interfaces + config_get orig_interval "$meshif" orig_interval + config_get log_level "$meshif" log_level + config_get aggregated_ogms "$meshif" aggregated_ogms + config_get bonding "$meshif" bonding + config_get fragmentation "$meshif" fragmentation + config_get vis_mode "$meshif" vis_mode + + if [ "$interfaces" = "" ]; then + echo Error, you must specify at least a network interface + return + fi + + for interface in $interfaces + do + [ ! -f "/sys/class/net/$interface/batman_adv/mesh_iface" ] && echo "Can't add interface $interface - ignoring" && continue + echo $meshif > /sys/class/net/$interface/batman_adv/mesh_iface + done + + if [ $orig_interval ]; then + echo $orig_interval > /sys/class/net/$meshif/mesh/orig_interval + fi + + if [ $log_level ]; then + echo $log_level > /sys/class/net/$meshif/mesh/log_level 2>&- + fi + + if [ $aggregated_ogms ]; then + echo $aggregated_ogms > /sys/class/net/$meshif/mesh/aggregated_ogms + fi + + if [ $bonding ]; then + echo $bonding > /sys/class/net/$meshif/mesh/bonding + fi + + if [ $fragmentation ]; then + echo $fragmentation > /sys/class/net/$meshif/mesh/fragmentation + fi + + if [ $vis_mode ]; then + echo $vis_mode > /sys/class/net/$meshif/mesh/vis_mode + fi +} + +stop_mesh() { + local meshif="$1" + + is_module_loaded + [ $? -ne 1 ] && return + + for iface in $(ls /sys/class/net/*) + do + [ ! -f "$iface/batman_adv/mesh_iface" ] && continue + [ "$(head -1 $iface/batman_adv/mesh_iface)" != "status: $meshif" ] && continue + + echo "none" > $iface/batman_adv/mesh_iface + done +} + +# can also be used with "batman-adv start bat0" +start() { + config_load batman-adv + + if [ -n "$1" ]; then + start_mesh $1 + else + config_foreach start_mesh mesh + fi +} + +# can also be used with "batman-adv stop bat0" +stop () { + config_load batman-adv + + if [ -n "$1" ]; then + stop_mesh $1 + else + config_foreach stop_mesh mesh + fi +} + + diff --git a/root_file_system/default/etc/banner b/root_file_system/default/etc/banner new file mode 100644 index 0000000..f0114d4 --- /dev/null +++ b/root_file_system/default/etc/banner @@ -0,0 +1,9 @@ + ____ ____ _______ + | | | | | Freifunk + |____ |____ | _ | | Oldenburg + | | | | | Firmware + | | |_______| |_____________ + + Welcome to the free wireless experience + For more information take a look at http://freifunk-ol.de + --------------------------------------------------------- diff --git a/root_file_system/default/etc/bat-hosts b/root_file_system/default/etc/bat-hosts new file mode 100644 index 0000000..cdd3e37 --- /dev/null +++ b/root_file_system/default/etc/bat-hosts @@ -0,0 +1,20 @@ +06:21:91:2c:f3:09 Batman_TimWZ +00:21:91:2c:f3:09 Node_TimWZ +06:1e:58:c7:07:e5 Batman_TimKU +00:1e:58:c7:07:e5 Node_TimKU +06:22:b0:98:70:df Batman_FreWZ +00:22:b0:98:70:df Node_FreWZ +06:1e:58:b9:d4:39 Batman_FreKU +00:1e:58:b9:d4:39 Node_FreKU +06:18:84:80:83:8d Batman_BjoFON +00:18:84:80:83:8d Node_BjoFON +06:22:B0:96:7C:D7 Batman_BjoDIR +00:22:B0:96:7C:D7 Node_BjoDIR +06:18:84:81:73:21 Batman_BjoBalk +00:18:84:81:73:21 Node_BjoBalk +0A:24:01:17:B7:55 Batman_floh1111_dir300 +00:24:01:17:B7:55 Node_floh1111_dir300 +00:13:e8:ab:47:49 Client_RedLap +1c:4b:d6:b8:17:dc Client_Freddy +00:16:6F:47:51:AA Client_floh1111 +00:80:48:3b:ab:0e Client_Bjo diff --git a/root_file_system/default/etc/config_dir300/batman-adv b/root_file_system/default/etc/config_dir300/batman-adv new file mode 100644 index 0000000..7e1c13a --- /dev/null +++ b/root_file_system/default/etc/config_dir300/batman-adv @@ -0,0 +1,8 @@ +config 'mesh' 'bat0' + option 'interfaces' 'ath1' + option 'orig_interval' + option 'log_level' + option 'aggregated_ogms' + option 'bonding' + option 'fragmentation' + option 'vis_mode' diff --git a/root_file_system/default/etc/config_dir300/dhcp b/root_file_system/default/etc/config_dir300/dhcp new file mode 100644 index 0000000..0905e2d --- /dev/null +++ b/root_file_system/default/etc/config_dir300/dhcp @@ -0,0 +1,33 @@ +config dnsmasq + option domainneeded 1 + option boguspriv 1 + option filterwin2k '0' #enable for dial on demand + option localise_queries 1 + option local '/lan/' + option domain 'lan' + option expandhosts 1 + option nonegcache 0 + option authoritative 0 + option readethers 1 + option leasefile '/tmp/dhcp.leases' + option resolvfile '/tmp/resolv.conf.auto' + #list server '/mycompany.local/1.2.3.4' + #option nonwildcard 1 + #list interface br-lan + #list notinterface lo + +#config dhcp mesh +# option interface mesh +# option start X.10 +# option limit 100 +# option leasetime 6h + +config dhcp lan + option interface lan + option start 100 + option limit 150 + option leasetime 12h + +config dhcp wan + option interface wan + option ignore 1 diff --git a/root_file_system/default/etc/config_dir300/dropbear b/root_file_system/default/etc/config_dir300/dropbear new file mode 100644 index 0000000..279a45a --- /dev/null +++ b/root_file_system/default/etc/config_dir300/dropbear @@ -0,0 +1,4 @@ +config dropbear + option PasswordAuth 'on' + option Port '22' +# option BannerFile '/etc/banner' diff --git a/root_file_system/default/etc/config_dir300/firewall b/root_file_system/default/etc/config_dir300/firewall new file mode 100644 index 0000000..b4aa459 --- /dev/null +++ b/root_file_system/default/etc/config_dir300/firewall @@ -0,0 +1,96 @@ +config defaults + option syn_flood 1 + option input ACCEPT + option output ACCEPT + option forward REJECT + +config zone + option name lan + option input ACCEPT + option output ACCEPT + option forward REJECT + +config zone + option name wan + option input REJECT + option output ACCEPT + option forward REJECT + option masq 1 + option mtu_fix 1 + +config forwarding + option src lan + option dest wan + +# We need to accept udp packets on port 68, +# see https://dev.openwrt.org/ticket/4108 +config rule + option src wan + option proto udp + option dest_port 68 + option target ACCEPT + +#Allow ping +config rule + option src wan + option proto icmp + option icmp_type echo-request + option target ACCEPT + +# include a file with users custom iptables rules +config include + option path /etc/firewall.user + + +### EXAMPLE CONFIG SECTIONS +# do not allow a specific ip to access wan +#config rule +# option src lan +# option src_ip 192.168.45.2 +# option dest wan +# option proto tcp +# option target REJECT + +# block a specific mac on wan +#config rule +# option dest wan +# option src_mac 00:11:22:33:44:66 +# option target REJECT + +# block incoming ICMP traffic on a zone +#config rule +# option src lan +# option proto ICMP +# option target DROP + +# port redirect port coming in on wan to lan +#config redirect +# option src wan +# option src_dport 80 +# option dest lan +# option dest_ip 192.168.16.235 +# option dest_port 80 +# option proto tcp + + +### FULL CONFIG SECTIONS +#config rule +# option src lan +# option src_ip 192.168.45.2 +# option src_mac 00:11:22:33:44:55 +# option src_port 80 +# option dest wan +# option dest_ip 194.25.2.129 +# option dest_port 120 +# option proto tcp +# option target REJECT + +#config redirect +# option src lan +# option src_ip 192.168.45.2 +# option src_mac 00:11:22:33:44:55 +# option src_port 1024 +# option src_dport 80 +# option dest_ip 194.25.2.129 +# option dest_port 120 +# option proto tcp diff --git a/root_file_system/default/etc/config_dir300/network b/root_file_system/default/etc/config_dir300/network new file mode 100644 index 0000000..ed80b4f --- /dev/null +++ b/root_file_system/default/etc/config_dir300/network @@ -0,0 +1,37 @@ +config 'interface' 'loopback' + option 'ifname' 'lo' + option 'proto' 'static' + option 'ipaddr' '127.0.0.1' + option 'netmask' '255.0.0.0' + +#config 'interface' 'lan' +# option 'proto' 'dhcp' +# option 'ifname' 'eth0.1' + +config 'interface' 'wlanmesch' + option 'ifname' 'ath1' + option 'mtu' '1527' + +config 'interface' 'mesh' + option 'type' 'bridge' + option 'ifname' 'eth0.1 ath0 bat0 tap0' + option 'stp' '1' + +config 'switch' 'eth0' + option 'name' 'eth0' + option 'reset' '1' + option 'enable_vlan' '1' + +config 'switch_vlan' 'eth0_1' + option 'device' 'eth0' + option 'vlan' '1' + option 'ports' '0 1 2 3 5t' + +config 'switch_vlan' 'eth0_2' + option 'device' 'eth0' + option 'vlan' '2' + option 'ports' '4 5t' + +config 'interface' 'wan' + option 'ifname' 'eth0.2' + option 'proto' 'dhcp' \ No newline at end of file diff --git a/root_file_system/default/etc/config_dir300/nodewatcher b/root_file_system/default/etc/config_dir300/nodewatcher new file mode 100644 index 0000000..62285f3 --- /dev/null +++ b/root_file_system/default/etc/config_dir300/nodewatcher @@ -0,0 +1,24 @@ +config 'script' + option 'version' '15' + option 'error_level' '0' + option 'logfile' '/var/log/nodewatcher.log' + +config 'api' + option 'ipv4_address' '1' + option 'ipv6_interface' 'br-mesh' + option 'ipv6_address' 'fe80::201:2ff:fe03:405' + +config 'update' + option 'autoupdate' '1' + +config 'crawl' + option 'method' 'hash' + option 'nickname' '1' + option 'password' '1' + option 'router_id' '1' + option 'update_hash' '1' + option 'login_string' '1' + +config 'network' + option 'mesh-interface' 'br-mesh' + option 'client-interfaces' 'ath0' \ No newline at end of file diff --git a/root_file_system/default/etc/config_dir300/qos b/root_file_system/default/etc/config_dir300/qos new file mode 100644 index 0000000..875e7e2 --- /dev/null +++ b/root_file_system/default/etc/config_dir300/qos @@ -0,0 +1,86 @@ +# QoS configuration for OpenWrt + +# INTERFACES: +config interface wan + option classgroup "Default" + option enabled 1 + option overhead 1 + option upload 128 + option download 1024 + +# RULES: +config classify + option target "Bulk" + option layer7 "edonkey" +config classify + option target "Bulk" + option layer7 "bittorrent" +config classify + option target "Priority" + option ports "22,53" +config classify + option target "Normal" + option proto "tcp" + option ports "20,21,25,80,110,443,993,995" +config classify + option target "Express" + option ports "5190" +config default + option target "Express" + option proto "udp" + option pktsize "-500" +config reclassify + option target "Priority" + option proto "icmp" +config default + option target "Bulk" + option portrange "1024-65535" +config reclassify + option target "Priority" + option proto "tcp" + option pktsize "-128" + option mark "!Bulk" + option tcpflags "SYN" +config reclassify + option target "Priority" + option proto "tcp" + option pktsize "-128" + option mark "!Bulk" + option tcpflags "ACK" + + +# Don't change the stuff below unless you +# really know what it means :) + +config classgroup "Default" + option classes "Priority Express Normal Bulk" + option default "Normal" + + +config class "Priority" + option packetsize 400 + option maxsize 400 + option avgrate 10 + option priority 20 +config class "Priority_down" + option packetsize 1000 + option avgrate 10 + + +config class "Express" + option packetsize 1000 + option maxsize 800 + option avgrate 50 + option priority 10 + +config class "Normal" + option packetsize 1500 + option packetdelay 100 + option avgrate 10 + option priority 5 +config class "Normal_down" + option avgrate 20 + +config class "Bulk" + option avgrate 1 + option packetdelay 200 diff --git a/root_file_system/default/etc/config_dir300/system b/root_file_system/default/etc/config_dir300/system new file mode 100644 index 0000000..43ee7a5 --- /dev/null +++ b/root_file_system/default/etc/config_dir300/system @@ -0,0 +1,3 @@ +config system + option hostname OpenWrt + option timezone "CET-1CEST,M3.5.0,M10.5.0/3" diff --git a/root_file_system/default/etc/config_dir300/timeserver b/root_file_system/default/etc/config_dir300/timeserver new file mode 100644 index 0000000..8a5d476 --- /dev/null +++ b/root_file_system/default/etc/config_dir300/timeserver @@ -0,0 +1,2 @@ +config timeserver + option hostname time.fu-berlin.de diff --git a/root_file_system/default/etc/config_dir300/wireless b/root_file_system/default/etc/config_dir300/wireless new file mode 100644 index 0000000..23169fd --- /dev/null +++ b/root_file_system/default/etc/config_dir300/wireless @@ -0,0 +1,21 @@ +config 'wifi-device' 'wifi0' + option 'type' 'atheros' + option 'disabled' '0' + option 'channel' '6' + option 'txpower' '15' + option 'bgscan' '0' + option 'diversity' '1' + +config 'wifi-iface' + option 'device' 'wifi0' + option 'mode' 'adhoc' + option 'ssid' 'batman.oldenburg.freifunk.net' + option 'bssid' '02:CA:FF:EE:BA:BE' + option 'encryption' 'none' + option 'hidden' '1' + +config 'wifi-iface' + option 'device' 'wifi0' + option 'mode' 'ap' + option 'ssid' 'oldenburg.freifunk.net' + option 'encryption' 'none' \ No newline at end of file diff --git a/root_file_system/default/etc/config_fonera/batman-adv b/root_file_system/default/etc/config_fonera/batman-adv new file mode 100644 index 0000000..7e1c13a --- /dev/null +++ b/root_file_system/default/etc/config_fonera/batman-adv @@ -0,0 +1,8 @@ +config 'mesh' 'bat0' + option 'interfaces' 'ath1' + option 'orig_interval' + option 'log_level' + option 'aggregated_ogms' + option 'bonding' + option 'fragmentation' + option 'vis_mode' diff --git a/root_file_system/default/etc/config_fonera/dhcp b/root_file_system/default/etc/config_fonera/dhcp new file mode 100644 index 0000000..0905e2d --- /dev/null +++ b/root_file_system/default/etc/config_fonera/dhcp @@ -0,0 +1,33 @@ +config dnsmasq + option domainneeded 1 + option boguspriv 1 + option filterwin2k '0' #enable for dial on demand + option localise_queries 1 + option local '/lan/' + option domain 'lan' + option expandhosts 1 + option nonegcache 0 + option authoritative 0 + option readethers 1 + option leasefile '/tmp/dhcp.leases' + option resolvfile '/tmp/resolv.conf.auto' + #list server '/mycompany.local/1.2.3.4' + #option nonwildcard 1 + #list interface br-lan + #list notinterface lo + +#config dhcp mesh +# option interface mesh +# option start X.10 +# option limit 100 +# option leasetime 6h + +config dhcp lan + option interface lan + option start 100 + option limit 150 + option leasetime 12h + +config dhcp wan + option interface wan + option ignore 1 diff --git a/root_file_system/default/etc/config_fonera/dropbear b/root_file_system/default/etc/config_fonera/dropbear new file mode 100644 index 0000000..279a45a --- /dev/null +++ b/root_file_system/default/etc/config_fonera/dropbear @@ -0,0 +1,4 @@ +config dropbear + option PasswordAuth 'on' + option Port '22' +# option BannerFile '/etc/banner' diff --git a/root_file_system/default/etc/config_fonera/firewall b/root_file_system/default/etc/config_fonera/firewall new file mode 100644 index 0000000..b4aa459 --- /dev/null +++ b/root_file_system/default/etc/config_fonera/firewall @@ -0,0 +1,96 @@ +config defaults + option syn_flood 1 + option input ACCEPT + option output ACCEPT + option forward REJECT + +config zone + option name lan + option input ACCEPT + option output ACCEPT + option forward REJECT + +config zone + option name wan + option input REJECT + option output ACCEPT + option forward REJECT + option masq 1 + option mtu_fix 1 + +config forwarding + option src lan + option dest wan + +# We need to accept udp packets on port 68, +# see https://dev.openwrt.org/ticket/4108 +config rule + option src wan + option proto udp + option dest_port 68 + option target ACCEPT + +#Allow ping +config rule + option src wan + option proto icmp + option icmp_type echo-request + option target ACCEPT + +# include a file with users custom iptables rules +config include + option path /etc/firewall.user + + +### EXAMPLE CONFIG SECTIONS +# do not allow a specific ip to access wan +#config rule +# option src lan +# option src_ip 192.168.45.2 +# option dest wan +# option proto tcp +# option target REJECT + +# block a specific mac on wan +#config rule +# option dest wan +# option src_mac 00:11:22:33:44:66 +# option target REJECT + +# block incoming ICMP traffic on a zone +#config rule +# option src lan +# option proto ICMP +# option target DROP + +# port redirect port coming in on wan to lan +#config redirect +# option src wan +# option src_dport 80 +# option dest lan +# option dest_ip 192.168.16.235 +# option dest_port 80 +# option proto tcp + + +### FULL CONFIG SECTIONS +#config rule +# option src lan +# option src_ip 192.168.45.2 +# option src_mac 00:11:22:33:44:55 +# option src_port 80 +# option dest wan +# option dest_ip 194.25.2.129 +# option dest_port 120 +# option proto tcp +# option target REJECT + +#config redirect +# option src lan +# option src_ip 192.168.45.2 +# option src_mac 00:11:22:33:44:55 +# option src_port 1024 +# option src_dport 80 +# option dest_ip 194.25.2.129 +# option dest_port 120 +# option proto tcp diff --git a/root_file_system/default/etc/config_fonera/network b/root_file_system/default/etc/config_fonera/network new file mode 100644 index 0000000..b0989f9 --- /dev/null +++ b/root_file_system/default/etc/config_fonera/network @@ -0,0 +1,18 @@ +config 'interface' 'loopback' + option 'ifname' 'lo' + option 'proto' 'static' + option 'ipaddr' '127.0.0.1' + option 'netmask' '255.0.0.0' + +config 'interface' 'lan' + option 'proto' 'dhcp' + option 'ifname' 'eth0' + +config 'interface' 'wlanmesch' + option 'ifname' 'ath1' + option 'mtu' '1527' + +config 'interface' 'mesh' + option 'type' 'bridge' + option 'ifname' 'ath0 bat0 tap0' + option 'stp' '1' diff --git a/root_file_system/default/etc/config_fonera/nodewatcher b/root_file_system/default/etc/config_fonera/nodewatcher new file mode 100644 index 0000000..34c78b4 --- /dev/null +++ b/root_file_system/default/etc/config_fonera/nodewatcher @@ -0,0 +1,20 @@ +config 'script' + option 'version' '15' + option 'error_level' '0' + option 'logfile' '/var/log/nodewatcher.log' + +config 'api' + option 'ipv4_address' '1' + option 'ipv6_interface' 'br-mesh' + option 'ipv6_address' 'fe80::201:2ff:fe03:405' + +config 'update' + option 'autoupdate' '1' + +config 'crawl' + option 'method' 'hash' + option 'nickname' '1' + option 'password' '1' + option 'router_id' '1' + option 'update_hash' '1' + option 'login_string' '1' \ No newline at end of file diff --git a/root_file_system/default/etc/config_fonera/qos b/root_file_system/default/etc/config_fonera/qos new file mode 100644 index 0000000..875e7e2 --- /dev/null +++ b/root_file_system/default/etc/config_fonera/qos @@ -0,0 +1,86 @@ +# QoS configuration for OpenWrt + +# INTERFACES: +config interface wan + option classgroup "Default" + option enabled 1 + option overhead 1 + option upload 128 + option download 1024 + +# RULES: +config classify + option target "Bulk" + option layer7 "edonkey" +config classify + option target "Bulk" + option layer7 "bittorrent" +config classify + option target "Priority" + option ports "22,53" +config classify + option target "Normal" + option proto "tcp" + option ports "20,21,25,80,110,443,993,995" +config classify + option target "Express" + option ports "5190" +config default + option target "Express" + option proto "udp" + option pktsize "-500" +config reclassify + option target "Priority" + option proto "icmp" +config default + option target "Bulk" + option portrange "1024-65535" +config reclassify + option target "Priority" + option proto "tcp" + option pktsize "-128" + option mark "!Bulk" + option tcpflags "SYN" +config reclassify + option target "Priority" + option proto "tcp" + option pktsize "-128" + option mark "!Bulk" + option tcpflags "ACK" + + +# Don't change the stuff below unless you +# really know what it means :) + +config classgroup "Default" + option classes "Priority Express Normal Bulk" + option default "Normal" + + +config class "Priority" + option packetsize 400 + option maxsize 400 + option avgrate 10 + option priority 20 +config class "Priority_down" + option packetsize 1000 + option avgrate 10 + + +config class "Express" + option packetsize 1000 + option maxsize 800 + option avgrate 50 + option priority 10 + +config class "Normal" + option packetsize 1500 + option packetdelay 100 + option avgrate 10 + option priority 5 +config class "Normal_down" + option avgrate 20 + +config class "Bulk" + option avgrate 1 + option packetdelay 200 diff --git a/root_file_system/default/etc/config_fonera/system b/root_file_system/default/etc/config_fonera/system new file mode 100644 index 0000000..43ee7a5 --- /dev/null +++ b/root_file_system/default/etc/config_fonera/system @@ -0,0 +1,3 @@ +config system + option hostname OpenWrt + option timezone "CET-1CEST,M3.5.0,M10.5.0/3" diff --git a/root_file_system/default/etc/config_fonera/timeserver b/root_file_system/default/etc/config_fonera/timeserver new file mode 100644 index 0000000..8a5d476 --- /dev/null +++ b/root_file_system/default/etc/config_fonera/timeserver @@ -0,0 +1,2 @@ +config timeserver + option hostname time.fu-berlin.de diff --git a/root_file_system/default/etc/config_fonera/wireless b/root_file_system/default/etc/config_fonera/wireless new file mode 100644 index 0000000..23169fd --- /dev/null +++ b/root_file_system/default/etc/config_fonera/wireless @@ -0,0 +1,21 @@ +config 'wifi-device' 'wifi0' + option 'type' 'atheros' + option 'disabled' '0' + option 'channel' '6' + option 'txpower' '15' + option 'bgscan' '0' + option 'diversity' '1' + +config 'wifi-iface' + option 'device' 'wifi0' + option 'mode' 'adhoc' + option 'ssid' 'batman.oldenburg.freifunk.net' + option 'bssid' '02:CA:FF:EE:BA:BE' + option 'encryption' 'none' + option 'hidden' '1' + +config 'wifi-iface' + option 'device' 'wifi0' + option 'mode' 'ap' + option 'ssid' 'oldenburg.freifunk.net' + option 'encryption' 'none' \ No newline at end of file diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/batman-adv b/root_file_system/default/etc/config_wrt54g_adhoc/batman-adv new file mode 100644 index 0000000..dbce507 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/batman-adv @@ -0,0 +1,9 @@ + +config 'mesh' 'bat0' + option 'interfaces' 'wlan0' + option 'orig_interval' + option 'log_level' + option 'aggregated_ogms' + option 'bonding' + option 'fragmentation' + option 'vis_mode' diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/dhcp b/root_file_system/default/etc/config_wrt54g_adhoc/dhcp new file mode 100644 index 0000000..7fef569 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/dhcp @@ -0,0 +1,27 @@ +config dnsmasq + option domainneeded 1 + option boguspriv 1 + option filterwin2k '0' #enable for dial on demand + option localise_queries 1 + option local '/lan/' + option domain 'lan' + option expandhosts 1 + option nonegcache 0 + option authoritative 1 + option readethers 1 + option leasefile '/tmp/dhcp.leases' + option resolvfile '/tmp/resolv.conf.auto' + #list server '/mycompany.local/1.2.3.4' + #option nonwildcard 1 + #list interface br-lan + #list notinterface lo + +config dhcp wlan0 + option interface wlan0 + option start 100 + option limit 150 + option leasetime 12h + +config dhcp wan + option interface wan + option ignore 1 diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/dropbear b/root_file_system/default/etc/config_wrt54g_adhoc/dropbear new file mode 100644 index 0000000..492d2a1 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/dropbear @@ -0,0 +1,4 @@ +config dropbear + option PasswordAuth 'on' + option Port '22' +# option BannerFile '/etc/banner' diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/firewall_ b/root_file_system/default/etc/config_wrt54g_adhoc/firewall_ new file mode 100644 index 0000000..b4aa459 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/firewall_ @@ -0,0 +1,96 @@ +config defaults + option syn_flood 1 + option input ACCEPT + option output ACCEPT + option forward REJECT + +config zone + option name lan + option input ACCEPT + option output ACCEPT + option forward REJECT + +config zone + option name wan + option input REJECT + option output ACCEPT + option forward REJECT + option masq 1 + option mtu_fix 1 + +config forwarding + option src lan + option dest wan + +# We need to accept udp packets on port 68, +# see https://dev.openwrt.org/ticket/4108 +config rule + option src wan + option proto udp + option dest_port 68 + option target ACCEPT + +#Allow ping +config rule + option src wan + option proto icmp + option icmp_type echo-request + option target ACCEPT + +# include a file with users custom iptables rules +config include + option path /etc/firewall.user + + +### EXAMPLE CONFIG SECTIONS +# do not allow a specific ip to access wan +#config rule +# option src lan +# option src_ip 192.168.45.2 +# option dest wan +# option proto tcp +# option target REJECT + +# block a specific mac on wan +#config rule +# option dest wan +# option src_mac 00:11:22:33:44:66 +# option target REJECT + +# block incoming ICMP traffic on a zone +#config rule +# option src lan +# option proto ICMP +# option target DROP + +# port redirect port coming in on wan to lan +#config redirect +# option src wan +# option src_dport 80 +# option dest lan +# option dest_ip 192.168.16.235 +# option dest_port 80 +# option proto tcp + + +### FULL CONFIG SECTIONS +#config rule +# option src lan +# option src_ip 192.168.45.2 +# option src_mac 00:11:22:33:44:55 +# option src_port 80 +# option dest wan +# option dest_ip 194.25.2.129 +# option dest_port 120 +# option proto tcp +# option target REJECT + +#config redirect +# option src lan +# option src_ip 192.168.45.2 +# option src_mac 00:11:22:33:44:55 +# option src_port 1024 +# option src_dport 80 +# option dest_ip 194.25.2.129 +# option dest_port 120 +# option proto tcp diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/network b/root_file_system/default/etc/config_wrt54g_adhoc/network new file mode 100644 index 0000000..15f867d --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/network @@ -0,0 +1,45 @@ +#### VLAN configuration +config switch eth0 + option enable 1 + +config switch_vlan eth0_0 + option device "eth0" + option vlan 0 + option ports "1 2 3 4 5" + +config switch_vlan eth0_1 + option device "eth0" + option vlan 1 + option ports "0 5" + +#### Loopback configuration +config interface loopback + option ifname "lo" + option proto static + option ipaddr 127.0.0.1 + option netmask 255.0.0.0 + + +#### LAN configuration +config interface lan + option type bridge + option ifname "eth0.0" + option proto static + option ipaddr 192.168.1.1 + option netmask 255.255.255.0 + + +#### WAN configuration +config interface wan + option ifname "eth0.1" + option proto dhcp + +config interface wlan0 + option proto static + option ipaddr 192.168.2.1 + option netmask 255.255.255.0 + +config interface mesh + option type bridge + option ifname "bat0 tap0" + option stp 1 diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/nodewatcher b/root_file_system/default/etc/config_wrt54g_adhoc/nodewatcher new file mode 100644 index 0000000..34c78b4 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/nodewatcher @@ -0,0 +1,20 @@ +config 'script' + option 'version' '15' + option 'error_level' '0' + option 'logfile' '/var/log/nodewatcher.log' + +config 'api' + option 'ipv4_address' '1' + option 'ipv6_interface' 'br-mesh' + option 'ipv6_address' 'fe80::201:2ff:fe03:405' + +config 'update' + option 'autoupdate' '1' + +config 'crawl' + option 'method' 'hash' + option 'nickname' '1' + option 'password' '1' + option 'router_id' '1' + option 'update_hash' '1' + option 'login_string' '1' \ No newline at end of file diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/system b/root_file_system/default/etc/config_wrt54g_adhoc/system new file mode 100644 index 0000000..43ee7a5 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/system @@ -0,0 +1,3 @@ +config system + option hostname OpenWrt + option timezone "CET-1CEST,M3.5.0,M10.5.0/3" diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/timeserver b/root_file_system/default/etc/config_wrt54g_adhoc/timeserver new file mode 100644 index 0000000..8a5d476 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/timeserver @@ -0,0 +1,2 @@ +config timeserver + option hostname time.fu-berlin.de diff --git a/root_file_system/default/etc/config_wrt54g_adhoc/wireless b/root_file_system/default/etc/config_wrt54g_adhoc/wireless new file mode 100644 index 0000000..4520796 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_adhoc/wireless @@ -0,0 +1,16 @@ +config wifi-device radio0 + option type mac80211 + option channel 5 + option macaddr 00:12:17:cc:ef:0d + option hwmode 11g + + # REMOVE THIS LINE TO ENABLE WIFI: + option disabled 0 + +config wifi-iface + option device radio0 + option network wlan0 + option mode adhoc + option ssid batman.oldenburg.freifunk.net + option encryption none + option bssid 02:CA:FF:EE:BA:BE diff --git a/root_file_system/default/etc/config_wrt54g_ap/batman-adv b/root_file_system/default/etc/config_wrt54g_ap/batman-adv new file mode 100644 index 0000000..a6a65bd --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/batman-adv @@ -0,0 +1,8 @@ +config 'mesh' 'bat0' + option 'interfaces' + option 'orig_interval' + option 'log_level' + option 'aggregated_ogms' + option 'bonding' + option 'fragmentation' + option 'vis_mode' diff --git a/root_file_system/default/etc/config_wrt54g_ap/dhcp b/root_file_system/default/etc/config_wrt54g_ap/dhcp new file mode 100644 index 0000000..c79458f --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/dhcp @@ -0,0 +1,30 @@ +config dnsmasq + option domainneeded 1 + option boguspriv 1 + option filterwin2k 0 # enable for dial on demand + option localise_queries 1 + option rebind_protection 1 # disable if upstream must serve RFC1918 addresses + option rebind_localhost 0 # enable for RBL checking and similar services + #list rebind_domain example.lan # whitelist RFC1918 responses for domains + option local '/lan/' + option domain 'lan' + option expandhosts 1 + option nonegcache 0 + option authoritative 1 + option readethers 1 + option leasefile '/tmp/dhcp.leases' + option resolvfile '/tmp/resolv.conf.auto' + #list server '/mycompany.local/1.2.3.4' + #option nonwildcard 1 + #list interface br-lan + #list notinterface lo + +config dhcp lan + option interface lan + option start 100 + option limit 150 + option leasetime 12h + +config dhcp wan + option interface wan + option ignore 1 diff --git a/root_file_system/default/etc/config_wrt54g_ap/dropbear b/root_file_system/default/etc/config_wrt54g_ap/dropbear new file mode 100644 index 0000000..279a45a --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/dropbear @@ -0,0 +1,4 @@ +config dropbear + option PasswordAuth 'on' + option Port '22' +# option BannerFile '/etc/banner' diff --git a/root_file_system/default/etc/config_wrt54g_ap/firewall b/root_file_system/default/etc/config_wrt54g_ap/firewall new file mode 100644 index 0000000..b4aa459 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/firewall @@ -0,0 +1,96 @@ +config defaults + option syn_flood 1 + option input ACCEPT + option output ACCEPT + option forward REJECT + +config zone + option name lan + option input ACCEPT + option output ACCEPT + option forward REJECT + +config zone + option name wan + option input REJECT + option output ACCEPT + option forward REJECT + option masq 1 + option mtu_fix 1 + +config forwarding + option src lan + option dest wan + +# We need to accept udp packets on port 68, +# see https://dev.openwrt.org/ticket/4108 +config rule + option src wan + option proto udp + option dest_port 68 + option target ACCEPT + +#Allow ping +config rule + option src wan + option proto icmp + option icmp_type echo-request + option target ACCEPT + +# include a file with users custom iptables rules +config include + option path /etc/firewall.user + + +### EXAMPLE CONFIG SECTIONS +# do not allow a specific ip to access wan +#config rule +# option src lan +# option src_ip 192.168.45.2 +# option dest wan +# option proto tcp +# option target REJECT + +# block a specific mac on wan +#config rule +# option dest wan +# option src_mac 00:11:22:33:44:66 +# option target REJECT + +# block incoming ICMP traffic on a zone +#config rule +# option src lan +# option proto ICMP +# option target DROP + +# port redirect port coming in on wan to lan +#config redirect +# option src wan +# option src_dport 80 +# option dest lan +# option dest_ip 192.168.16.235 +# option dest_port 80 +# option proto tcp + + +### FULL CONFIG SECTIONS +#config rule +# option src lan +# option src_ip 192.168.45.2 +# option src_mac 00:11:22:33:44:55 +# option src_port 80 +# option dest wan +# option dest_ip 194.25.2.129 +# option dest_port 120 +# option proto tcp +# option target REJECT + +#config redirect +# option src lan +# option src_ip 192.168.45.2 +# option src_mac 00:11:22:33:44:55 +# option src_port 1024 +# option src_dport 80 +# option dest_ip 194.25.2.129 +# option dest_port 120 +# option proto tcp diff --git a/root_file_system/default/etc/config_wrt54g_ap/network b/root_file_system/default/etc/config_wrt54g_ap/network new file mode 100644 index 0000000..8399757 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/network @@ -0,0 +1,33 @@ +config 'interface' 'loopback' + option 'ifname' 'lo' + option 'proto' 'static' + option 'ipaddr' '127.0.0.1' + option 'netmask' '255.0.0.0' + +config 'interface' 'lan' + option 'proto' 'dhcp' + option 'ifname' 'eth0.1' + +config 'interface' 'mesh' + option 'type' 'bridge' + option 'ifname' 'wl0 tap0' + option 'stp' '1' + +config 'switch' 'eth0' + option 'name' 'eth0' + option 'reset' '1' + option 'enable_vlan' '1' + +config 'switch_vlan' 'eth0_1' + option 'device' 'eth0' + option 'vlan' '1' + option 'ports' '0 1 2 3 5t' + +config 'switch_vlan' 'eth0_2' + option 'device' 'eth0' + option 'vlan' '2' + option 'ports' '4 5t' + +config 'interface' 'wan' + option 'ifname' 'eth0.2' + option 'proto' 'dhcp' diff --git a/root_file_system/default/etc/config_wrt54g_ap/nodewatcher b/root_file_system/default/etc/config_wrt54g_ap/nodewatcher new file mode 100644 index 0000000..15a5777 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/nodewatcher @@ -0,0 +1,22 @@ + +config 'script' + option 'version' '15' + option 'error_level' '0' + option 'logfile' '/var/log/nodewatcher.log' + +config 'api' + option 'ipv4_address' '1' + option 'ipv6_interface' 'br-mesh' + option 'ipv6_address' 'fe80::201:2ff:fe03:405' + +config 'update' + option 'autoupdate' '1' + +config 'crawl' + option 'method' 'hash' + option 'nickname' '1' + option 'password' '1' + option 'login_string' '1' + option 'router_id' '1' + option 'update_hash' '1' + diff --git a/root_file_system/default/etc/config_wrt54g_ap/system b/root_file_system/default/etc/config_wrt54g_ap/system new file mode 100644 index 0000000..43ee7a5 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/system @@ -0,0 +1,3 @@ +config system + option hostname OpenWrt + option timezone "CET-1CEST,M3.5.0,M10.5.0/3" diff --git a/root_file_system/default/etc/config_wrt54g_ap/timeserver b/root_file_system/default/etc/config_wrt54g_ap/timeserver new file mode 100644 index 0000000..8a5d476 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/timeserver @@ -0,0 +1,2 @@ +config timeserver + option hostname time.fu-berlin.de diff --git a/root_file_system/default/etc/config_wrt54g_ap/wireless b/root_file_system/default/etc/config_wrt54g_ap/wireless new file mode 100644 index 0000000..a593ab5 --- /dev/null +++ b/root_file_system/default/etc/config_wrt54g_ap/wireless @@ -0,0 +1,10 @@ +config wifi-device wl0 + option type broadcom + option channel 6 + option disabled 0 + +config wifi-iface + option device wl0 + option mode ap + option ssid oldenburg.freifunk.net + option encryption none diff --git a/root_file_system/default/etc/crontabs/root b/root_file_system/default/etc/crontabs/root new file mode 100644 index 0000000..b83f5fa --- /dev/null +++ b/root_file_system/default/etc/crontabs/root @@ -0,0 +1,17 @@ +*/5 * * * * killall klogd +*/5 * * * * killall syslogd +*/5 * * * * killall logger + +*/5 * * * * sh /etc/nodewatcher.sh +*/5 * * * * sh /etc/tincstart.sh + +15 01 * * * rdate -s time.fu-berlin.de > /dev/null + +#Enable zapp script if you are running a gateway +#*/1 * * * * /etc/init.d/zapp + +*/5 * * * * killall -HUP dnsmasq +#* * * * * /usr/sbin/ff_olsr_test_gw +#*/5 * * * * /usr/sbin/ff_olsr_watchdog +#0 */4 * * * /usr/sbin/ff_rdate +#17 * * * * /usr/sbin/ff_mapupdate diff --git a/root_file_system/default/etc/firewall.user b/root_file_system/default/etc/firewall.user new file mode 100755 index 0000000..3f9fbab --- /dev/null +++ b/root_file_system/default/etc/firewall.user @@ -0,0 +1,45 @@ +#!/bin/sh +#iptables -F +# +#iptables -P INPUT DROP +#iptables -P OUTPUT DROP +#iptables -P FORWARD DROP +# +#for proto in tcp udp +#do +# for port in 53 666 655 +# do +# iptables -A OUTPUT -p $proto --dport $port -j ACCEPT +# iptables -A OUTPUT -p $proto --sport $port -j ACCEPT +# iptables -A INPUT -p $proto --dport $port -j ACCEPT +# iptables -A INPUT -p $proto --sport $port -j ACCEPT +# done +#done +# +#iptables -A OUTPUT -p icmp -j ACCEPT +#iptables -A INPUT -p icmp -j ACCEPT +# +#iptables -A INPUT -p tcp --dport 22 -j ACCEPT +#iptables -A OUTPUT -p tcp --sport 22 -j ACCEPT +# +# +#iptables -A OUTPUT -p tcp --sport 1024: -j ACCEPT +#iptables -A OUTPUT -p udp --sport 1024: -j ACCEPT + +# mastersword.de +#iptables -A OUTPUT -p tcp -d 78.46.215.78 -j ACCEPT +#iptables -A INPUT -p tcp -s 78.46.215.78 -j ACCEPT + +# gw1.freifunk-ol.de +#iptables -A OUTPUT -p tcp -d 178.33.33.102 -j ACCEPT +#iptables -A INPUT -p tcp -s 178.33.33.102 -j ACCEPT + +# freifunk-ol.de +#iptables -A OUTPUT -p tcp -d 178.33.33.208 -j ACCEPT +#iptables -A INPUT -p tcp -s 178.33.33.208 -j ACCEPT + +#Masquerade interface for gateway +#iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE + +#solves MTU problem with bad ISP´s +iptables -A FORWARD -p tcp -m tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu diff --git a/root_file_system/default/etc/firmware_release b/root_file_system/default/etc/firmware_release new file mode 100644 index 0000000..d172bd3 --- /dev/null +++ b/root_file_system/default/etc/firmware_release @@ -0,0 +1,2 @@ +FIRMWARE_VERSION="0.1" +RELEASE_DATE="15.02.2010" \ No newline at end of file diff --git a/root_file_system/default/etc/hostsupdate.sh b/root_file_system/default/etc/hostsupdate.sh new file mode 100644 index 0000000..b146a1b --- /dev/null +++ b/root_file_system/default/etc/hostsupdate.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +wget -T15 http://$(cat /etc/config/nodewatcher | grep url | awk '{ print $3 }' | sed -e "s/\]'//g" -e "s/'\[//g")/api_nodewatcher.php?section=get_hostnames_and_mac -O - | grep -v -e "^..-..-" | sort -u > /etc/bat-hosts diff --git a/root_file_system/default/etc/hotplug.d/iface/50-tincstart b/root_file_system/default/etc/hotplug.d/iface/50-tincstart new file mode 100755 index 0000000..330473f --- /dev/null +++ b/root_file_system/default/etc/hotplug.d/iface/50-tincstart @@ -0,0 +1,3 @@ +[ ifup = "$ACTION" -a "$DEVICE" = eth0 ] && { + sh /etc/tincstart.sh +} diff --git a/root_file_system/default/etc/hotplug.d/iface/51-nodewatcher b/root_file_system/default/etc/hotplug.d/iface/51-nodewatcher new file mode 100755 index 0000000..32e323c --- /dev/null +++ b/root_file_system/default/etc/hotplug.d/iface/51-nodewatcher @@ -0,0 +1,3 @@ +[ ifup = "$ACTION" -a "$DEVICE" = eth0 ] && { + sh /etc/nodewatcher.sh +} diff --git a/root_file_system/default/etc/init.d/zapp b/root_file_system/default/etc/init.d/zapp new file mode 100755 index 0000000..08e7b33 --- /dev/null +++ b/root_file_system/default/etc/init.d/zapp @@ -0,0 +1,622 @@ +#!/bin/sh + +# If you got false positives, try a higher value +BOGOTHRESH=200 + +# Note: for mail alarm, you need "ssmtp" installed and configured. +# Example /etc/ssmtp/ssmtp.conf (debian/ubuntu) for GMX needs: +# mailhub=mail.gmx.net:25 FromLineOverride=YES +# AuthUser=$MAILFROM AuthPass=x UseSTARTTLS=YES +MAILFROM=sender-address@domain.de +MAILADDR=receiver-address@domain.de + +# Insert IPs you trust +#TRUSTEDIP="$TRUSTEDIP 1.2.3.4" +#TRUSTEDIP="$TRUSTEDIP 2.3.4.5" + +# 0: Do not save, 1: save conntrack if zapp +DEBUGSAVE=0 +# Empty: No log in /var/log/zapp/, otherwise string to prepend to saved bogothresh files +DEBUGLOGS= #$(date "+%b%d %H:%M") + +# 0: Manual clear, or minutes until auto-clear blockade (5-1439) +CLEARTIME=360 + +WEBSERVER=/www + +# --- END OF CONFIGURATION SETTINGS --- + +# This script uses case-esac for speed with busybox-ash. Current version under: +# http://ff-firmware.cvs.sourceforge.net/viewvc/*checkout*/ff-firmware/ff-devel/freifunk-zapp/etc/init.d/S92zapp + +# When running via cron, the PATH is unset +export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + +# We start a netcat-based webserver on this port if someone is blocked +BLOCKPORT=8090 + +CRONUSR=root +CRONDIR=/var/spool/cron/crontabs + +# First argument may be an input file +CONN=${1:-/proc/net/ip_conntrack} + +# This script calls itself with the IP to analyze why its blocking +DEBIP=$2 +case $1 in '')DEBUG=false;;*)DEBUG=true;;esac + +case $DEBUGLOGS in "");;*)test -d /var/log/zapp || mkdir -p /var/log/zapp;;esac + +# Find out our IP that is used to connect to the Internet +DEV=$(ip route get 1.1.1.1/1|sed -n '1{s/.* dev \([^ ]\+\).*/\1/;p}') +ADR=$(ip -f inet addr list dev $DEV scope global|sed -n '2s/^.*inet \([0-9\.]\+\).*/\1/p') +PAT=$(sed 's/\./_/g'<&1 | egrep -q '\-l\b' || NC_CMD= + +# 1=-I/-D 2=proto 3=srcip, 4=dport, 5=to +portfw () { + local to + case $1 in "-D") + to=$(iptables -t nat -nL PREROUTING|sed -n "s/^DNAT[[:space:]]\\+$2[[:space:]]\\+[^[:space:]]\\+[[:space:]]\\+$3[[:space:]]\\+![[:digit:]]\\+\\.[[:digit:]]\\+\\.[[:digit:]]\\+\\.[[:digit:]]\\+[[:space:]]\\+$2[[:space:]]\\+dpt:$4[[:space:]]\\+to://;tp;b;:p p;q") + ;;esac + to=${to:-$5} + iptables -t nat $1 PREROUTING --proto $2 -s $3 ! -d ${to%:*} --dport $4 -j DNAT --to $to +} + +netcatruns () { + for pid in $(pidof $NC_CMD);do + ppid=$(sed -n 's/^PPid: //p' /proc/$pid/status) + case $(sed -n 's/^Name: //p' /proc/$ppid/status) in ${0##*/}) + # Check netstat: release the IP currently grabbing our blocking page + case "$1" in "GET /let-me-browse-again"*) + le=$(printf "%02X%02X%02X%02X" $(echo ${ifip:-$ADR}|sed 's/\([0-9]\+\)\.\([0-9]\+\)\.\([0-9]\+\)\.\([0-9]\+\)/\4 \3 \2 \1/')) + be=$(printf "%02X%02X%02X%02X" $(echo ${ifip:-$ADR}|sed 's/\([0-9]\+\)\.\([0-9]\+\)\.\([0-9]\+\)\.\([0-9]\+\)/\1 \2 \3 \4/')) + eval $(sed -n '/^ *[0-9]\+: \+'$le':'$(printf '%04X' $BLOCKPORT)' \+[^ ]\+ \+01 \+/{s/^[^:]\+: \+[^ ]\+ \+\([^:][^:]\)\([^:][^:]\)\([^:][^:]\)\([^:][^:]\).*/ip=$(( 0x\4 )).$(( 0x\3 )).$(( 0x\2 )).$(( 0x\1 ))/;p;q};/^ *[0-9]\+: \+'$be':'$(printf '%04X' $BLOCKPORT)' \+[^ ]\+ \+01 \+/{s/^[^:]\+: \+[^ ]\+ \+\([^:][^:]\)\([^:][^:]\)\([^:][^:]\)\([^:][^:]\).*/ip=$(( 0x\1 )).$(( 0x\2 )).$(( 0x\3 )).$(( 0x\4 ))/;p;q}' /proc/net/tcp) + portfw -D tcp $ip 80 ${ifip:-$ADR}:$BLOCKPORT 2>&- + ;;esac + return 0 + ;;esac + done + return 1 +} + +# Add (-I) or remove (-D) iptables rules +block () { + # Freifunk Firmware Configs + which nvram && { + ff_adm_mail=$(nvram get ff_adm_mail) + ff_zapp_time=$(nvram get ff_zapp_time) + ff_zapp_debug=$(nvram get ff_zapp_debug) + ff_zapp_server=$(nvram get ff_zapp_server) + ff_zapp_strict=$(nvram get ff_zapp_strict) + MAILFROM=${ff_adm_mail:-$MAILFROM} + MAILADDR=${ff_adm_mail:-$MAILADDR} + CLEARTIME=${ff_zapp_time:-$CLEARTIME} + DEBUGSAVE=${ff_zapp_debug:-$DEBUGSAVE} + WEBSERVER=${ff_zapp_server:-$WEBSERVER} + IFS=\; + for i in $(nvram get ff_zapp_trusted); do + TRUSTEDIP="$TRUSTEDIP $i" + done + unset IFS + } + + for i in $TRUSTEDIP;do + case $2 in $i) + # Prevents re-blocking next run + iptables $1 FORWARD -s $2 + iptables $1 FORWARD -d $2 + return + ;;esac + done + + # Note: FreifunkFW does not have REJECT out-of-the-box + jump=DROP + iptables -I OUTPUT -d 127.0.0.1 -j REJECT 2>&- && iptables -D OUTPUT -d 127.0.0.1 -j REJECT 2>&- && jump=REJECT + + iptables $1 FORWARD -s $2 -j $jump + iptables $1 FORWARD -d $2 -j $jump + + # Allowing ping is always a good idea + iptables $1 FORWARD -s $2 --proto icmp -j ACCEPT + iptables $1 FORWARD -d $2 --proto icmp -j ACCEPT + + # Allow TCP up to port 1023 + iptables $1 FORWARD -s $2 --proto tcp --dport :1023 -j ACCEPT + iptables $1 FORWARD -d $2 --proto tcp --sport :1023 -j ACCEPT + + # Note: Freifunk FW does not have REDIRECT, use DNAT instead, + # which needs the correct outgoing interface IP for redirection. + ifip=$(ip route get $2|sed -n 's/^.* src \([^ ]\+\).*/\1/p') + + # Allow DNS, redirect to our local dnsmasq if applicable + if pidof dnsmasq >&-; then + portfw $1 udp $2 53 ${ifip:-$ADR}:53 + portfw $1 tcp $2 53 ${ifip:-$ADR}:53 + else + iptables $1 FORWARD -s $2 --proto udp --dport 53 -j ACCEPT + iptables $1 FORWARD -d $2 --proto udp --sport 53 -j ACCEPT + fi + + # It's polite to tell a blocked user what's going on + case $NC_CMD in "");;*) + portfw $1 tcp $2 80 ${ifip:-$ADR}:$BLOCKPORT 2>&- + case $1 in "-D") + case $CLEARTIME in ""|0);;*)test -f $CRONDIR/$CRONUSR && { + sed -i -e "/\/${0##*/} unblock $2\$/d" $CRONDIR/$CRONUSR + echo $CRONUSR > $CRONDIR/cron.update + };;esac + if ! iptables -t nat -nL PREROUTING|egrep -q "\\bto:[^:]+:$BLOCKPORT\\b"; then + netcatruns && (echo "Stopping netcat server" >&2;kill $ppid $pid) + fi + ;;*) + case $CLEARTIME in ""|0);;*)test -f $CRONDIR/$CRONUSR && { + min=$(date +%M) + min=$(( $(date +%k ) * 60 + ${min#0} + $CLEARTIME )) + me=$(echo $0|sed "s,^\\.\\.,$PWD/&,;s,^\\.,$PWD,") + sed -i -e "\$a$(( $min % 60 )) $(( $min / 60 % 24 )) * * * $me unblock $2" $CRONDIR/$CRONUSR + echo $CRONUSR > $CRONDIR/cron.update + };;esac + if ! netcatruns; then + echo "Starting netcat server for $2" >&2 + while true;do ($NC_CMD -l -p $BLOCKPORT < + Sorry... + + + + + + + + +

Zapped on $(uname -n) (${ifip:-$ADR})

+ +
+

Deutsch: siehe untenfrançais : voir ci-dessous

+
+

Hello! You are a victim of a filesharing blockade. Your PC opens too + much connections to different Internet hosts. This may be caused by the + VoIP program Skype, by a filesharing program or by another program with + this unusual communication pattern. $(test -f $WEBSERVER/cgi-bin-skype.html && + echo "For operating the Skype VoIP program please read this + Information Page.") +

+

TCP based services still work (ports up to 1023), but UDP based services are blocked now.

+
+

The blockade $(case $CLEARTIME in ""|0) echo "needs to be removed manually.";;*)echo "will be + removed after $CLEARTIME minutes. Alternatively, the blockade can be removed manually.";;esac) + For this, send an email to $MAILADDR. +

+
+ +
+
+

Hallo! Du bist das Opfer einer Filesharing-Sperre geworden. Dein Rechner + öffnet zuviele Verbindungen zu verschiedenen Internet-Rechnern. Dies + kann ausgelöst werden durch das VoIP-Programm Skype, durch ein + Filesharing-Programm oder durch ein anderes Programm welches dieses ungewöhnliche + Kommunikationsmuster aufweist. $(test -f $WEBSERVER/cgi-bin-skype.html && + echo "Zum Betrieb des VoIP-Programms Skype lies bitte diese + Informationsseite.") +

+

Hinweis: TCP-basierte Dienste (Ports bis 1023) funktionieren, aber UDP-basierte Dienste sind nun gesperrt.

+
+

Die Sperre $(case $CLEARTIME in ""|0)echo "muss manuell entfernt werden.";;*) + echo "wird nach $CLEARTIME Minuten entfernt. Wahlweise kann die Sperre + auch manuell entfernt werden.";;esac) Sende dazu eine Mail an + $MAILADDR. +

+
+ +
+
+

Bonjour! Vous êtes victime du mécanisme de blocage de partage de fichiers. Votre + ordinateur ouvre trop de connexions simultanées vers trop d'hôtes Internet différents. + Ceci peut venir du logiciel de communications Skype, d'un logiciel de partage de fichiers, + ou d'un autre programme qui aurait ce même comportement inhabituel, comme certains virus. + $(test -f $WEBSERVER/cgi-bin-skype.html && + echo "Pour l'utilisation de Skype en voix sur IP (VoIP) merci de lire cette + page d'informations.") +

+

Précisions: Les services TCP restent fonctionnels (Ports jusqu'au n° 1023) mais les + services UDP sont bloqués. +

+

Le blocage $(case $CLEARTIME in ""|0)echo "doit être désactivé manuellement.";;*) + echo "sera levé automatiquement dans $CLEARTIME minutes. Il est aussi possible de + le faire manuellement.";;esac) en envoyant un mail à + $MAILADDR. +

+
+ + + + + + +EOF + )|(read -r GET && netcatruns "$GET" && kill $pid) + done >&- 2>&- & + fi + ;;esac + ;;esac +} + +zapp () { + # Block an IP and send a mail to the admin + ip=$(echo $1|sed -e 's/^[A-Z]\+_//;s/=.*//;s/_/./g') + if $DEBUG; then + # Prevent script recursion + case $DEBIP in "") + echo "Zapping $(ip route get $ip|sed -n 's/ dev .*//p') with $2 bogopoints at $(date)" + echo + $0 "$CONN" ${1%=*} + ;;esac + elif ! iptables -nL FORWARD | egrep -q "\\b$(echo $ip|sed 's/\./\\&/g')\\b";then + echo "Zapping $(ip route get $ip|sed -n 's/ dev .*//p') with $2 bogopoints at $(date)" >> /var/log/zappfile.txt + mac=$(sed -n 's/^'$(echo $ip|sed 's/\./\\./g')' \+\([^ ]\+ \+\)\{2\}\([^ ]\+\).*/\2/p' /proc/net/arp) + + # Disabled, because we cannot unblock this currently + case 0 in 1)case $mac in '');;*) + echo "Also zapping $mac at $(date)" >> /var/log/zappfile.txt + iptables -I FORWARD -m mac --mac-source $mac -j $jump + ;;esac;;esac + + block -I $ip + + case $DEBUGSAVE in 1) + # Save current conntrack for later analysis + cat "$CONN"|gzip -c>/var/log/zappfile-$ip-$(date).txt.gz + ;;esac + + which ssmtp && cat|ssmtp $MAILADDR< $3:$4 (UNK=$UNK)";;esac + ;; + *) + case $4 in + 688*) + eval "case \$UNK_$1 in \"\")UNK=\$(( \$UNK + 5 ));;esac" + case $DEBIP in '');;*)echo "nak p2p $1:$2 -> $3:$4 (UNK=$UNK)";;esac + ;; + *) + eval "case \$UNK_$1 in \"\")UNK=\$(( \$UNK + 1 ));;esac" + case $DEBIP in '');;*)echo "nak udp $1:$2 -> $3:$4 (UNK=$UNK)";;esac + ;; + esac + ;; + esac + eval "UNK_$1=\$(( \$UNK_$1 + 1 ))" + ;;esac;;esac + # We only count traffic generated by others + case $3 in $PAT);;*) + case $4 in + # DNS: resolvers tend to open multiple connections + 53) + case ${10} in + "[UNREPLIED]") + eval "case \$UDP_$1_$3 in \"\")IP_$1=\$(( \$IP_$1 + 1 ));;esac";; + *) + eval "case \$UDP_$1_$3 in \"\")IP_$1=\$(( \$IP_$1 + 2 ));;esac";; + esac + case ${DEBIP#IP_} in $1)echo "udp ham $1:$2 $3:$4";;esac + ;; + # Punish traffic on ports 6880-6889 + 688*) + case ${10} in + "[UNREPLIED]") + eval "case \$UDP_$1_$3 in \"\")IP_$1=\$(( \$IP_$1 + 10 ));;esac";; + *) + eval "case \$UDP_$1_$3 in \"\")IP_$1=\$(( \$IP_$1 + 20 ));;esac";; + esac + case ${DEBIP#IP_} in $1)echo "udp p2p $1:$2 $3:$4";;esac + ;; + # Everything else is normal udp + *) + case ${10} in + "[UNREPLIED]") + eval "case \$UDP_$1_$3 in \"\")IP_$1=\$(( \$IP_$1 + 3 ));;esac";; + *) + eval "case \$UDP_$1_$3 in \"\")IP_$1=\$(( \$IP_$1 + 4 ));;esac";; + esac + case ${DEBIP#IP_} in $1)echo "udp std $1:$2 $3:$4";;esac + ;; + esac + eval "UDP_$1_$3=\$(( \$UDP_$1_$3 + 1 ))" + ;;esac + return 0 +} + +case $1 in + block) + case $2 in "")echo "Add IP as second arg" 2>&-;exit 1;;esac + block "-I" $2 + exit 0 + ;; + unblock|clear) + case $2 in "")echo "Add IP as second arg" 2>&-;exit 1;;esac + block "-D" $2 + exit 0 + ;; + start|stop) + test ! -f $CRONDIR/$CRONUSR && (echo "No $CRONDIR/$CRONUSR" 2>&-;exit 1) + if egrep -q "/${0##*/}" $CRONDIR/$CRONUSR; then + case $1 in stop) + echo "Removing ${0##*/} from cron" + sed -i -e "/\/${0##*/}/d" $CRONDIR/$CRONUSR + ;;esac + else + case $1 in start) + case $BOGOTHRESH in 0);;*) + echo "Adding ${0##*/} to cron" + me=$(echo $0|sed "s,^\\.\\.,$PWD/&,;s,^\\.,$PWD,") + sed -i -e "\$a*/1 * * * * $me" $CRONDIR/$CRONUSR + ;;esac + ;;esac + fi + echo $CRONUSR > $CRONDIR/cron.update + exit 0 + ;; + status) + echo "Firewall status:" + iptables -nL FORWARD|egrep '^(DROP|REJECT)? +all +-- +[1-9][0-9\.]+ +0.0.0.0/0\b' || echo " No IPs blocked" + egrep -q "/${0##*/}" $CRONDIR/$CRONUSR && echo "Running via cron" || echo "Not running via cron" + exit 0 + ;; + -h|--help|help) + cat<&2 + echo "Use 'sysctl -w net.netfilter.nf_conntrack_acct=1'" >&2 + exit 1 + fi +fi + +# Different kernels have differnt formats, script lines doubled to prevent too much compare operations +REL=$(uname -r) +case ${REL#2.4} in $REL) + # Kernel 2.6 output has [STATUS] in different positions, shift to end + sed 's/\./_/g;s/\( \[[^]]\+\]\)\(.*\)/\2\1/;$aeof' "$CONN"|while read l;do + set $l + case $1 in + tcp) + tcp ${5#src=} ${7#sport=} ${6#dst=} ${8#dport=} ${11#src=} ${13#sport=} ${12#dst=} ${14#dport=} $(( ${10#bytes=} + ${16#bytes=} )) $4 + ;; + udp) + udp ${4#src=} ${6#sport=} ${5#dst=} ${7#dport=} ${10#src=} ${12#sport=} ${11#dst=} ${13#dport=} $(( ${9#bytes=}+${15#bytes=} )) ${19} + ;; + eof) + # If probably no P2P client active double threshold + test $UNK -lt 10 && BOGOTHRESH=$(( $BOGOTHRESH + $BOGOTHRESH )) + set|sed -n "s/^\\(IP_[^=]\\+=\\)'*\\([^']\\+\\).*/\\1\\2/p"|while read i;do + case $DEBIP in ${i%=*})echo "$i -gt $BOGOTHRESH";;esac + case $DEBUGLOGS in "");;*)echo $DEBUGLOGS ${i#*=} >> /var/log/zapp/${i%=*};;esac + test ${i#*=} -gt $BOGOTHRESH && zapp $i ${i#*=} + done + ;; + esac + done +;;*) + # Kernel 2.4 output has [STATUS] in different positions, shift to end + sed 's/\./_/g;s/\( \[[^]]\+\]\)\(.*\)/\2\1/;$aeof' "$CONN"|while read l;do + set $l + case $1 in + tcp) + tcp ${5#src=} ${7#sport=} ${6#dst=} ${8#dport=} ${9#src=} ${11#sport=} ${10#dst=} ${12#dport=} ${15#bytes=} $4 + ;; + udp) + udp ${4#src=} ${6#sport=} ${5#dst=} ${7#dport=} ${8#src=} ${10#sport=} ${9#dst=} ${11#dport=} ${14#bytes=} ${15} + ;; + eof) + # If probably no P2P client active double threshold + test $UNK -lt 10 && BOGOTHRESH=$(( $BOGOTHRESH + $BOGOTHRESH )) + set|sed -n "s/^\\(IP_[^=]\\+=\\)'*\\([^']\\+\\).*/\\1\\2/p"|while read i;do + case $DEBIP in ${i%=*})echo "$i -gt $BOGOTHRESH";;esac + case $DEBUGLOGS in "");;*)echo $DEBUGLOGS ${i#*=} >> /var/log/zapp/${i%=*};;esac + test ${i#*=} -gt $BOGOTHRESH && zapp $i ${i#*=} + done + ;; + esac + done +;;esac + +exit 0 diff --git a/root_file_system/default/etc/nodewatcher.sh b/root_file_system/default/etc/nodewatcher.sh new file mode 100755 index 0000000..cc2badb --- /dev/null +++ b/root_file_system/default/etc/nodewatcher.sh @@ -0,0 +1,576 @@ +#!/bin/sh +# Netmon Nodewatcher (C) 2010-2011 Freifunk Oldenburg +# Lizenz: GPL + +if [ -f /etc/config/nodewatcher ];then + API_IPV4_ADRESS=`uci get nodewatcher.@api[0].ipv4_address` + API_IPV6_ADRESS=`uci get nodewatcher.@api[0].ipv6_address` + API_IPV6_INTERFACE=`uci get nodewatcher.@api[0].ipv6_interface` + SCRIPT_VERSION=`uci get nodewatcher.@script[0].version` + SCRIPT_ERROR_LEVEL=`uci get nodewatcher.@script[0].error_level` + SCRIPT_LOGFILE=`uci get nodewatcher.@script[0].logfile` + CRAWL_METHOD=`uci get nodewatcher.@crawl[0].method` + CRAWL_ROUTER_ID=`uci get nodewatcher.@crawl[0].router_id` + CRAWL_UPDATE_HASH=`uci get nodewatcher.@crawl[0].update_hash` + CRAWL_NICKNAME=`uci get nodewatcher.@crawl[0].nickname` + CRAWL_PASSWORD=`uci get nodewatcher.@crawl[0].password` + UPDATE_AUTOUPDATE=`uci get nodewatcher.@update[0].autoupdate` +else + . /etc/nodewatcher_config +fi + +delete_log() { + if [ -f $logfile ]; then + if [ `ls -la $logfile | awk '{ print $5 }'` -gt "6000" ]; then + sed -i '1,60d' $logfile + if [ $error_level -gt "1" ]; then + echo "`date`: Logfile wurde verkleinert" >> $logfile + fi + fi + fi +} + +urlencode() { + arg="$1" + i=0 + while [ $i -lt ${#arg} ]; do + c=${arg:$i:1} + + if echo "$c" | grep -q '[a-zA-Z/:_\.\-]'; then + echo -n "$c" + else + echo -n "%" + printf "%X" "'$c'" + fi + i=$((i+1)) + done +} + +convert_space() { + arg="$1" + echo $1 | sed "s/ /%20/g" +} + +get_url() { + if [[ $API_IPV4_ADRESS != "1" ]]; then + url=$API_IPV4_ADRESS + else + url="[$API_IPV6_ADRESS"%"$API_IPV6_INTERFACE]" + fi + echo $url +} + +do_ping() { + if [[ $API_IPV4_ADRESS != "1" ]]; then + command="ping -c 2 "$API_IPV4_ADRESS + else + command="ping -c 2 -I "$API_IPV6_INTERFACE" "$API_IPV6_ADRESS + fi + + if [ $error_level -gt "1" ]; then + echo "`date`: Pinging..." >> $logfile + fi + + ping_return=`$command` + + if [ $error_level -gt "2" ]; then + echo $ping_return + fi +} + +update() { + if [ $error_level -gt "1" ]; then + echo "`date`: Suche neue Version" >> $logfile + fi + netmon_api=`get_url` + command="wget -q -O - http://$netmon_api/api_nodewatcher.php?section=version" + ergebnis=`$command` + return=`echo $ergebnis| cut '-d;' -f1` + version=`echo $ergebnis| cut '-d;' -f2` + + if [[ $return = "success" ]]; then + if [[ $version -gt $SCRIPT_VERSION ]]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Eine neue Version ist Verfügbar, script wird geupdated" >> $logfile + fi + wget -q -O $SCRIPT_DIR/nodewatcher.sh http://$netmon_api/api_nodewatcher.php?section=update + uci set nodewatcher.@script[0].version=$version + uci commit + else + if [ $error_level -gt "1" ]; then + echo "`date`: Das Script ist aktuell" >> $logfile + fi + fi + else + if [ $error_level -gt "0" ]; then + echo "`date`: Beim Update ist ein Fehler aufgetreten: $ergebnis" >> $logfile + fi + fi +} + +assign() { + netmon_api=`get_url` + hostname=`cat /proc/sys/kernel/hostname` + + #Choose right login String + login_strings="$(ifconfig br-mesh | grep HWaddr | awk '{ print $5 }'|sed -e 's/://g');$(ifconfig eth0 | grep HWaddr | awk '{ print $5 }'|sed -e 's/://g');$(ifconfig ath0 | grep HWaddr | awk '{ print $5 }'|sed -e 's/://g')" + command="wget -q -O - http://$netmon_api/api_nodewatcher.php?section=test_login_strings&login_strings=$login_strings" + ergebnis=`$command` + if [ `echo $ergebnis| cut '-d;' -f1` = "success" ]; then + router_auto_assign_login_string=`echo $ergebnis| cut '-d;' -f2` + if [ $error_level -gt "1" ]; then + echo "`date`: Es existiert ein Router mit dem Login String $router_auto_assign_login_string" >> $logfile + fi + elif [ `echo $ergebnis| cut '-d;' -f1` = "error" ]; then + router_auto_assign_login_string=`echo $login_strings| cut '-d;' -f1` + if [ $error_level -gt "1" ]; then + echo "`date`: Es existiert kein Router mit einem der Login Strings: $login_strings" >> $logfile + echo "`date`: Nutze $router_auto_assign_login_string als login string" >> $logfile + fi + fi + + #Try to assign Router with choosen login string + command="wget -q -O - http://$netmon_api/api_nodewatcher.php?section=router_auto_assign&router_auto_assign_login_string=$router_auto_assign_login_string&hostname=$hostname" + ergebnis=`$command` + if [ `echo $ergebnis| cut '-d;' -f1` != "success" ]; then + if [ `echo $ergebnis| cut '-d;' -f2` = "already_assigned" ]; then + if [ $error_level -gt "0" ]; then + echo "`date`: Der Login String `echo $ergebnis| cut '-d;' -f3` ist bereits mit einem Router verknüpft" >> $logfile + fi + elif [ `echo $ergebnis| cut '-d;' -f2` = "autoassign_not_allowed" ]; then + if [ $error_level -gt "0" ]; then + echo "`date`: Der dem Login String `echo $ergebnis| cut '-d;' -f3` zugewiesene Router erlaubt autoassign nicht" >> $logfile + fi + elif [ `echo $ergebnis| cut '-d;' -f2` = "new_not_assigned" ]; then + if [ $error_level -gt "0" ]; then + echo "`date`: Router wurde der Liste der nicht zugewiesenen Router hinzugefügt" >> $logfile + fi + elif [ `echo $ergebnis| cut '-d;' -f2` = "updated_not_assigned" ]; then + if [ $error_level -gt "0" ]; then + echo "`date`: Router auf der Liste der nicht zugewiesenen Router wurde geupdated" >> $logfile + fi + fi + if [ $error_level -gt "0" ]; then + echo "`date`: Der Router wurde nicht mit Netmon verknüpft" >> $logfile + fi + elif [ `echo $ergebnis| cut '-d;' -f1` = "success" ]; then + #write new config + uci set nodewatcher.@crawl[0].router_id=`echo $ergebnis| cut '-d;' -f2` + uci set nodewatcher.@crawl[0].update_hash=`echo $ergebnis| cut '-d;' -f3` + if [ $error_level -gt "1" ]; then + echo "`date`: Der Router wurde mit Netmon verknüpft" >> $logfile + fi + uci commit + + configure + + can_crawl=1 + fi +} + +configure() { + netmon_api=`get_url` + authentificationmethod=$CRAWL_METHOD + router_id=$CRAWL_ROUTER_ID + router_auto_update_hash=$CRAWL_UPDATE_HASH + + command="wget -q -O - http://$netmon_api/api_nodewatcher.php?section=get_standart_data&authentificationmethod=$authentificationmethod&router_auto_update_hash=$router_auto_update_hash&router_id=$router_id" + ergebnis=`$command` + + if [ `echo $ergebnis| cut '-d;' -f1` = "success" ]; then + #uci set freifunk.contact.location=`echo $ergebnis| cut '-d;' -f3` + + uci set system.@system[0].hostname=`echo $ergebnis| cut '-d;' -f4` + echo `echo $ergebnis| cut '-d;' -f4` > /proc/sys/kernel/hostname + +# uci get system.@system[0].latitude= +# uci get system.@system[0].longitude= +# uci get freifunk.community.ssid= +# uci get freifunk.contact.nickname= +# uci get freifunk.contact.mail= +# uci get freifunk.community.prefix= +# uci get freifunk.contact.note= + + uci commit + if [ $error_level -gt "1" ]; then + echo "`date`: Der Router wurde konfiguriert" >> $logfile + fi + else + if [ $error_level -gt "0" ]; then + echo "`date`: Fehler bei der Konfiguration: $ergebnis" >> $logfile + fi + fi +} + +crawl() { + #Get API and authentication configuration + netmon_api=`get_url` + authentificationmethod=$CRAWL_METHOD + nickname=$CRAWL_NICKNAME + password=$CRAWL_PASSWORD + router_id=$CRAWL_ROUTER_ID + router_auto_update_hash=$CRAWL_UPDATE_HASH + + #Get system data from UCI + if which uci >/dev/null; then + if [ $error_level -gt "1" ]; then + echo "`date`: UCI is installed, trying to collect extra data UCI" >> $logfile + fi + location="`uci get freifunk.contact.location`" + location=`urlencode "$location"` + latitude="`uci get system.@system[0].latitude`" + longitude="`uci get system.@system[0].longitude`" + + community_essid="`uci get freifunk.community.ssid`" + community_nickname="`uci get freifunk.contact.nickname`" + community_email="`uci get freifunk.contact.mail`" + community_prefix="`uci get freifunk.community.prefix`" + description="`uci get freifunk.contact.note`" + description=`urlencode "$description"` + fi + + #Get system data from LUA + if which lua >/dev/null; then + if [ $error_level -gt "1" ]; then + echo "`date`: LUA is installed, trying to collect extra data LUA" >> $logfile + fi + luciname=`lua -l luci.version -e 'print(luci.version.luciname)'` + luciname=`urlencode "$luciname"` + lucversion=`lua -l luci.version -e 'print(luci.version.luciversion)'` + lucversion=`urlencode "$lucversion"` + fi + + #Get system data from other locations + hostname="`cat /proc/sys/kernel/hostname`" + uptime=`cat /proc/uptime | awk '{ print $1 }'` + idletime=`cat /proc/uptime | awk '{ print $2 }'` + + memory_total=`cat /proc/meminfo | grep 'MemTotal' | awk '{ print $2 }'` + memory_caching=`cat /proc/meminfo | grep -m 1 'Cached:' | awk '{ print $2 }'` + memory_buffering=`cat /proc/meminfo | grep 'Buffers' | awk '{ print $2 }'` + memory_free=`cat /proc/meminfo | grep 'MemFree' | awk '{ print $2 }'` + cpu=`grep -m 1 "cpu model" /proc/cpuinfo | cut -d ":" -f 2` + if [ -n $cpu ]; then + cpu=`grep -m 1 "model name" /proc/cpuinfo | cut -d ":" -f 2` + fi + cpu=`urlencode "$cpu"` + + chipset=`grep -m 1 "system type" /proc/cpuinfo | cut -d ":" -f 2` + chipset=`urlencode "$chipset"` + local_time="`date +%s`" + processes=`cat /proc/loadavg | awk '{ print $4 }'` + loadavg=`cat /proc/loadavg | awk '{ print $1 }'` + + if which batctl >/dev/null; then + batman_adv_version=`batctl -v | awk '{ print $2 }'` + fi + kernel_version=`uname -r` + nodewatcher_version=$SCRIPT_VERSION + + openwrt_version_file="/etc/openwrt_release" + if [ -f $openwrt_version_file ]; then + . $openwrt_version_file + + distname=$DISTRIB_ID + distversion=$DISTRIB_RELEASE + fi + + firmware_version_file="/etc/firmware_release" + if [ -f $firmware_version_file ]; then + . $firmware_version_file + + firmware_version=$FIRMWARE_VERSION + fi + + #Send system data + command="http://$netmon_api/api_nodewatcher.php?section=insert_crawl_system_data&authentificationmethod=$authentificationmethod&nickname=$nickname&password=$password&router_auto_update_hash=$router_auto_update_hash&router_id=$router_id&status=online&hostname=$hostname&description=$description&location=$location&latitude=$latitude&longitude=$longitude&luciname=$luciname&luciversion=$luciversion&distname=$distname&distversion=$distversion&chipset=$chipset&cpu=$cpu&memory_total=$memory_total&memory_caching=$memory_caching&memory_buffering=$memory_buffering&memory_free=$memory_free&loadavg=$loadavg&processes=$processes&uptime=$uptime&idletime=$idletime&local_time=$local_time&community_essid=$community_essid&community_nickname=$community_nickname&community_email=$community_email&community_prefix=$community_prefix&batman_advanced_version=$batman_adv_version&kernel_version=$kernel_version&nodewatcher_version=$nodewatcher_version&firmware_version=$firmware_version" + command="wget -q -O - "$command + if [ "$1" = "debug" ]; then + echo $command + else + i=0 + while [ $i -le 5 ] + do + return_interface=`$command` + + if [ `echo $return_interface | cut '-d;' -f1` = "success" ]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Das Senden der System und Batman Statusdaten war nach dem `expr $i + 1`. Mal erfolgreich" >> $logfile + fi + break; + else + if [ $error_level -gt "0" ]; then + echo "`date`: Error! Das Senden der System und Batman Statusdaten war nach dem `expr $i + 1`. Mal nicht erfolgreich: $return_interface" >> $logfile + fi + fi + + i=`expr $i + 1` #Zähler um eins erhöhen + done + fi + + #Get interfaces + IFACES=`cat /proc/net/dev | awk -F: '!/\|/ { gsub(/[[:space:]]*/, "", $1); split($2, a, " "); printf("%s=%s=%s ", $1, a[1], a[9]) }'` + + #Loop interfaces + for entry in $IFACES; do + int="" + iface=`echo $entry | cut -d '=' -f 1` + rcv=`echo $entry | cut -d '=' -f 2` + xmt=`echo $entry | cut -d '=' -f 3` + + wlan_mode="" + wlan_bssid="" + wlan_essid="" + wlan_frequency="" + wlan_tx_power="" + + if [ "$iface" != "lo" ]; then + if [ "`ifconfig ${iface} | grep UP`" != "" ]; then + #Get interface data + name="${iface}" + mac_addr="`ifconfig ${iface} | grep 'HWaddr' | awk '{ print $5}'`" + ipv4_addr="`ifconfig ${iface} | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'`" + ipv6_addr="`ifconfig ${iface} | grep 'inet6 addr:' | grep 'Scope:Global' | awk '{ print $3}'`" + ipv6_link_local_addr="`ifconfig ${iface} | grep 'inet6 addr:' | grep 'Scope:Link' | awk '{ print $3}'`" + mtu="`ifconfig ${iface} | grep 'MTU' | cut -d: -f2 | awk '{ print $1}'`" + traffic_rx="$rcv" + traffic_tx="$xmt" + + int=$int"int[$name][name]=$name&int[$name][mac_addr]=$mac_addr&int[$name][ipv4_addr]=$ipv4_addr&int[$name][ipv6_addr]=$ipv6_addr&int[$name][ipv6_link_local_addr]=$ipv6_link_local_addr&int[$name][traffic_rx]=$traffic_rx&int[$name][traffic_tx]=$traffic_tx&int[$name][mtu]=$mtu&" + + if [ "`iwconfig ${iface} 2>/dev/null | grep Frequency | awk '{ print $2 }' | cut -d ':' -f 2`" != "" ]; then + wlan_mode="`iwconfig ${iface} 2>/dev/null | grep 'Mode' | awk '{ print $1 }' | cut -d ':' -f 2`" + + if [ $wlan_mode = "Master" ]; then + wlan_bssid="`iwconfig ${iface} 2>/dev/null | grep 'Access Point' | awk '{ print $6 }'`" + elif [ $wlan_mode = "Ad-Hoc" ]; then + wlan_bssid="`iwconfig ${iface} 2>/dev/null | grep Cell | awk '{ print $5 }'`" + fi + + wlan_essid="`iwconfig ${iface} 2>/dev/null | grep ESSID | awk '{ split($4, a, \"\\"\"); printf(\"%s\", a[2]); }'`" + wlan_frequency="`iwconfig ${iface} 2>/dev/null | grep Frequency | awk '{ print $2 }' | cut -d ':' -f 2`" + wlan_tx_power="`iwconfig ${iface} 2>/dev/null | grep 'Tx-Power' | awk '{ print $4 }' | cut -d '=' -f 2`" + int=$int"int[$name][wlan_mode]=$wlan_mode&int[$name][wlan_frequency]=$wlan_frequency&int[$name][wlan_essid]=$wlan_essid&int[$name][wlan_bssid]=$wlan_bssid&int[$name][wlan_tx_power]=$wlan_tx_power&" + fi + + #Send interface status data + command="http://$netmon_api/api_nodewatcher.php?section=insert_crawl_interfaces_data&authentificationmethod=$authentificationmethod&nickname=$nickname&password=$password&router_auto_update_hash=$router_auto_update_hash&router_id=$router_id&$int" + command="wget -q -O - "$command + if [ "$1" = "debug" ]; then + echo $command + else + i=0 + while [ $i -le 5 ] + do + return_interface=`$command` + if [ `echo $return_interface | cut '-d;' -f1`="success" ]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Das Senden der Interface Statusdaten ($name) war nach dem `expr $i + 1`. Mal erfolgreich" >> $logfile + fi + break; + else + if [ $error_level -gt "0" ]; then + echo "`date`: Error! Das Senden der Interface Statusdaten ($name) war nach dem `expr $i + 1`. Mal nicht erfolgreich: $return_interface" >> $logfile + echo "`date`: $command" >> $logfile + fi + fi + i=`expr $i + 1` #Zähler um eins erhöhen + done + fi + fi + fi + done + + #B.A.T.M.A.N. advanced + mv /etc/bat-hosts /etc/bat-hosts.tmp + if which batctl >/dev/null; then + batman_check_running=`batctl if | grep 'Error'` + if [ "$batman_check_running" == "" ]; then + has_active_interface="0" + BAT_ADV_IFACES=`batctl if | awk '{ print $1 }' | cut -d ':' -f 1` + for device_name in $BAT_ADV_IFACES; do + if [ "`batctl if | grep $device_name | grep active`" != "" ]; then + status='active' + has_active_interface="1" + else + status='inactive' + fi + + command="http://$netmon_api/api_nodewatcher.php?section=insert_batman_adv_interfaces&authentificationmethod=$authentificationmethod&nickname=$nickname&password=$password&router_auto_update_hash=$router_auto_update_hash&router_id=$router_id&bat_adv_int[$device_name][name]=$device_name&bat_adv_int[$device_name][status]=$status" + command="wget -q -O - "$command + if [ "$1" = "debug" ]; then + echo $command + else + i=0 + while [ $i -le 5 ] + do + return_interface="`$command`" + + if [ `echo $return_interface | cut '-d;' -f1` = "success" ]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Das Senden des Batman Advanced Interfaces ($device_name) war nach dem `expr $i + 1`. Mal erfolgreich" >> $logfile + fi + break; + else + if [ $error_level -gt "0" ]; then + echo "`date`: Error! Das Senden des Batman Advanced Interfaces ($device_name) war nach dem `expr $i + 1`. Mal nicht erfolgreich: $return_interface" >> $logfile + fi + fi + + i=`expr $i + 1` #Zähler um eins erhöhen + done + fi + done + + if [ $has_active_interface = "1" ]; then + BAT_ADV_ORIGINATORS=`batctl o | grep 'No batman nodes in range'` + if [ "$BAT_ADV_ORIGINATORS" == "" ]; then + OLDIFS=$IFS + IFS=" +" + BAT_ADV_ORIGINATORS=`batctl o | awk '/O/ {next} /B/ {next} {print}'` + for row in $BAT_ADV_ORIGINATORS; do + originator=`echo $row | awk '{print $1}'` + last_seen=`echo $row | awk '{print $2}'` + last_seen="${last_seen//s/}" + link_quality=`echo $row | awk '{print $3}'` + link_quality="${link_quality//(/}" + link_quality="${link_quality//)/}" + + batman_adv_originators=$batman_adv_originators"bat_adv_orig[$originator][originator]=$originator&bat_adv_orig[$originator][link_quality]=$link_quality&bat_adv_orig[$originator][last_seen]=$last_seen&" + done + IFS=$OLDIFS + + command="wget -q -O - http://$netmon_api/api_nodewatcher.php?section=insert_batman_adv_originators&authentificationmethod=$authentificationmethod&nickname=$nickname&password=$password&router_auto_update_hash=$router_auto_update_hash&router_id=$router_id&$batman_adv_originators" + if [ "$1" = "debug" ]; then + echo $command + else + i=0 + while [ $i -le 5 ] + do + return_interface="`$command`" + + if [ `echo $return_interface | cut '-d;' -f1` = "success" ]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Das Senden der Batman Advaned Originator Daten war nach dem `expr $i + 1`. Mal erfolgreich" >> $logfile + fi + break; + else + if [ $error_level -gt "0" ]; then + echo "`date`: Error! Das Senden der Batman Advaned Originator Daten war nach dem `expr $i + 1`. Mal nicht erfolgreich: $return_interface" >> $logfile + fi + fi + + i=`expr $i + 1` #Zähler um eins erhöhen + done + fi + fi + fi + fi + fi + mv /etc/bat-hosts.tmp /etc/bat-hosts + + #CLIENTS + MESHDEVICE='br-mesh' + CLIENTDEVICE='ath0' + SEDDEV=`brctl showstp $MESHDEVICE | egrep '\([0-9]\)' | sed -e "s/(//;s/)//" | awk '{ print "s/^ "$2"/"$1"/;" }'` + CLIENT_MACS=`brctl showmacs $MESHDEVICE | sed -e "$SEDDEV" | awk '{if ($3 != "yes" && $1 == "ath0") print $2}'` + i=0 + for client in $CLIENT_MACS; do +# clients=$clients"clients[$i][mac_addr]=$client&" + i=`expr $i + 1` #Zähler um eins erhöhen + done + client_count=$i + + command="wget -q -O - http://$netmon_api/api_nodewatcher.php?section=insert_clients&authentificationmethod=$authentificationmethod&nickname=$nickname&password=$password&router_auto_update_hash=$router_auto_update_hash&router_id=$router_id&client_count=$client_count" + if [ "$1" = "debug" ]; then + echo $command + else + i=0 + while [ $i -le 5 ] + do + return_interface="`$command`" + if [ `echo $return_interface | cut '-d;' -f1`="success" ]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Das Senden der Client Daten war nach dem `expr $i + 1`. Mal erfolgreich" >> $logfile + fi + break; + else + if [ $error_level -gt "0" ]; then + echo "`date`: Error! Das Senden der Client Daten war nach dem `expr $i + 1`. Mal nicht erfolgreich: $return_interface" >> $logfile + fi + fi + i=`expr $i + 1` #Zähler um eins erhöhen + done + fi +} + + + +LANG=C + +SCRIPT_DIR=`dirname $0` +error_level=$SCRIPT_ERROR_LEVEL +logfile=$SCRIPT_LOGFILE + +if [[ $UPDATE_AUTOUPDATE == '1' ]]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Autoupdate ist an" >> $logfile + fi + update +else + if [ $error_level -gt "1" ]; then + echo "`date`: Autoupdate ist aus" >> $logfile + fi +fi + +if [[ "$1" == "update" ]]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Führe manuelles update aus" >> $logfile + fi + update + exit 1 +fi + + +if [ $error_level -gt "1" ]; then + echo "`date`: Prüfe Authentifizierungsmethode" >> $logfile +fi + +can_crawl=1 +if [ $CRAWL_METHOD == "login" ]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Authentifizierungsmethode ist: Username und Passwort" >> $logfile + fi +elif [ $CRAWL_METHOD == "hash" ]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Authentifizierungsmethode ist: Autoassign und Hash" >> $logfile + echo "`date`: Prüfe ob Roter schon mit Netmon verknüpft ist" >> $logfile + fi + if [ $CRAWL_UPDATE_HASH == "1" ]; then + can_crawl=0 + if [ $error_level -gt "1" ]; then + echo "`date`: Der Router ist noch NICHT mit Netmon verknüpft" >> $logfile + echo "`date`: Versuche verknüpfung herzustellen" >> $logfile + fi + assign + else + if [ $error_level -gt "1" ]; then + echo "`date`: Der Router ist bereits mit Netmon verknüpft" >> $logfile + fi + fi +fi + +if [ $can_crawl == 1 ]; then + if [ $error_level -gt "1" ]; then + echo "`date`: Prüfe Logfile" >> $logfile + fi + delete_log + + if [ $error_level -gt "1" ]; then + echo "`date`: Sende aktuelle Statusdaten" >> $logfile + fi + crawl +fi + +exit 0 \ No newline at end of file diff --git a/root_file_system/default/etc/passwd b/root_file_system/default/etc/passwd new file mode 100644 index 0000000..6b3e1fd --- /dev/null +++ b/root_file_system/default/etc/passwd @@ -0,0 +1,3 @@ +root:$1$OmvoKpjK$e.lPVnBxsrAbNV4EoH3xb1:0:0:root:/root:/bin/ash +nobody:*:65534:65534:nobody:/var:/bin/false +daemon:*:65534:65534:daemon:/var:/bin/false diff --git a/root_file_system/default/etc/rc.local b/root_file_system/default/etc/rc.local new file mode 100755 index 0000000..6edd017 --- /dev/null +++ b/root_file_system/default/etc/rc.local @@ -0,0 +1,18 @@ +# Put your custom commands here that should be executed once +# the system init finished. By default this file does nothing. + +ifconfig br-mesh down +ifconfig br-mesh up + +ifdown lan +ifup lan + +rdate -s time.fu-berlin.de + +chown root.root /etc/crontabs/root +/etc/init.d/cron stop +/etc/init.d/cron start + +sh /etc/firewall.user + +exit 0 diff --git a/root_file_system/default/etc/showmacs.sh b/root_file_system/default/etc/showmacs.sh new file mode 100755 index 0000000..36dc230 --- /dev/null +++ b/root_file_system/default/etc/showmacs.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# +# SHOWMACS need br-ctl! NO BUSYBOX! +# +# Version 0.2 +# +# by Tim Niemeyer (reddog@mastersword.de) +# + +DEV=$1 + +SEDDEV=`brctl showstp $DEV | egrep '\([0-9]\)' | sed -e "s/(//;s/)//" | awk '{ print "s/^ "$2"/"$1"/;" }'` +SEDMAC=`cat /etc/bat-hosts | sed -e "s/^/s\//;s/$/\/;/;s/ /\//"` + +brctl showmacs $DEV | sed -e "$SEDMAC" | sed -e "$SEDDEV" diff --git a/root_file_system/default/etc/sysctl.conf b/root_file_system/default/etc/sysctl.conf new file mode 100644 index 0000000..3d82b9f --- /dev/null +++ b/root_file_system/default/etc/sysctl.conf @@ -0,0 +1,24 @@ +kernel.panic=3 +net.ipv4.conf.default.arp_ignore=1 +net.ipv4.conf.all.arp_ignore=1 +net.ipv4.ip_forward=1 +net.ipv4.icmp_echo_ignore_broadcasts=1 +net.ipv4.icmp_ignore_bogus_error_responses=1 +net.ipv4.tcp_ecn=0 +net.ipv4.tcp_fin_timeout=30 +net.ipv4.tcp_keepalive_time=120 +net.ipv4.tcp_syncookies=1 +net.ipv4.tcp_timestamps=0 +net.core.netdev_max_backlog=30 +net.netfilter.nf_conntrack_checksum=0 +net.ipv4.netfilter.ip_conntrack_checksum=0 +net.ipv4.netfilter.ip_conntrack_max=16384 +net.ipv4.netfilter.ip_conntrack_tcp_timeout_established=3600 +net.ipv4.netfilter.ip_conntrack_udp_timeout=60 +net.ipv4.netfilter.ip_conntrack_udp_timeout_stream=180 +# net.ipv6.conf.all.forwarding=1 + +# disable bridge firewalling by default +net.bridge.bridge-nf-call-arptables=0 +net.bridge.bridge-nf-call-ip6tables=0 +net.bridge.bridge-nf-call-iptables=0 \ No newline at end of file diff --git a/root_file_system/default/etc/tincstart.sh b/root_file_system/default/etc/tincstart.sh new file mode 100755 index 0000000..be6c2e4 --- /dev/null +++ b/root_file_system/default/etc/tincstart.sh @@ -0,0 +1,118 @@ +#!/bin/sh + +#DEBUG="--debug=2" +DEBUG="" +SERVER="no" +SERVERNAME="batgw" + +project="batvpn" + +test_internet_host1="mastersword.de" +test_internet_host2="78.46.215.78" + +#Only do something with tinc when the router has internet connection +if ping -w5 -c3 "$test_internet_host1" &>/dev/null || ping -w5 -c3 "$test_internet_host2" &>/dev/null +then + +if [ "$SERVER" == "no" ] +then + hostname=$(ifconfig br-mesh | grep HWaddr | awk '{ print $5 }'|sed -e 's/://g') + + if [ "$hostname" == "" ] + then + hostname=$(ifconfig eth0 | grep HWaddr | awk '{ print $5 }'|sed -e 's/://g') + fi + + if [ "$hostname" == "" ] + then + hostname=$(ifconfig ath0 | grep HWaddr | awk '{ print $5 }'|sed -e 's/://g') + fi +else + hostname=$SERVERNAME +fi + +if [ ! -d /etc/tinc ] +then + mkdir /etc/tinc +fi + +if [ ! -d /etc/tinc/$project ] +then + mkdir /etc/tinc/$project + + echo -n -e "\n\n" | tincd --pidfile=/etc/tinc/$project/tinc.pid -n $project -K + kill -HUP $(cat /etc/tinc/$project/tinc.pid) + sleep 3 + mkdir /etc/tinc/$project/hosts + echo "ifconfig \$INTERFACE up" > /etc/tinc/$project/tinc-up + if [ "$SERVER" == "no" ] + then + echo "brctl addif br-mesh \$INTERFACE" >> /etc/tinc/$project/tinc-up + fi + chmod +x /etc/tinc/$project/tinc-up +fi + +pubkey=$(for line in $(cat /etc/tinc/$project/rsa_key.pub | sed -e 's/$/%0a/g' | sed -e 's/+/%2b/g' | sed -e 's/ /%20/g'); do echo -n $line; done) +port=666 + +cat < /etc/tinc/$project/tinc.conf +Name = $hostname +Mode = Switch +#PingTimeout = 30 +Hostnames = yes +#GraphDumpFile = /tmp/vpn-graph.dot +TCPOnly = yes +EOF + +# we need this only for first startup +if [ ! -f /etc/tinc/$project/hosts/$hostname ] +then +cat < /etc/tinc/$project/hosts/$hostname +Address = 0.0.0.0 +Port = $port +EOF +cat /etc/tinc/$project/rsa_key.pub >> /etc/tinc/$project/hosts/$hostname +fi + +# fire up +if [ "$(ps aux | grep tincd | grep -v grep)" == "" ] +then + tincd -c /etc/tinc/$project --pidfile=/etc/tinc/$project/tinc.pid --logfile=/var/log/tinc.log $DEBUG +# sleep 1 +# brctl addif br-mesh tap0 +fi + +# register +wget -T15 "http://mastersword.de/~reddog/tinc/?name=$hostname&port=$port&key=$pubkey" -O /etc/tinc/$project/output + +filenames=$(cat /etc/tinc/$project/output| grep ^#### | sed -e 's/^####//' | sed -e 's/.conf//g') +for file in $filenames +do +grep -A100 $file /etc/tinc/$project/output | grep -v $file | grep -m1 ^### -B100 | grep -v ^### > /etc/tinc/$project/hosts/$file.new +if [ "$(diff /etc/tinc/$project/hosts/$file.new /etc/tinc/$project/hosts/$file 2>&1)" == "" ] +then +/bin/rm /etc/tinc/$project/hosts/$file.new +else +/bin/mv /etc/tinc/$project/hosts/$file.new /etc/tinc/$project/hosts/$file +fi +echo "ConnectTo=$file" >> /etc/tinc/$project/tinc.conf +done + +if [ ! -f /etc/tinc/$project/hosts/$hostname ] +then +cat < /etc/tinc/$project/hosts/$hostname +Address = 0.0.0.0 +Port = $port +EOF +cat /etc/tinc/$project/rsa_key.pub >> /etc/tinc/$project/hosts/$hostname +fi + +#reload +kill -HUP $(cat /etc/tinc/$project/tinc.pid) + +else + echo "Der Router kann keine Verbindung zum Tincserver aufbauen" + echo "Tincstart macht nichts!" +fi + +exit 0 diff --git a/root_file_system/dir300/etc/config/network b/root_file_system/dir300/etc/config/network new file mode 100644 index 0000000..ed80b4f --- /dev/null +++ b/root_file_system/dir300/etc/config/network @@ -0,0 +1,37 @@ +config 'interface' 'loopback' + option 'ifname' 'lo' + option 'proto' 'static' + option 'ipaddr' '127.0.0.1' + option 'netmask' '255.0.0.0' + +#config 'interface' 'lan' +# option 'proto' 'dhcp' +# option 'ifname' 'eth0.1' + +config 'interface' 'wlanmesch' + option 'ifname' 'ath1' + option 'mtu' '1527' + +config 'interface' 'mesh' + option 'type' 'bridge' + option 'ifname' 'eth0.1 ath0 bat0 tap0' + option 'stp' '1' + +config 'switch' 'eth0' + option 'name' 'eth0' + option 'reset' '1' + option 'enable_vlan' '1' + +config 'switch_vlan' 'eth0_1' + option 'device' 'eth0' + option 'vlan' '1' + option 'ports' '0 1 2 3 5t' + +config 'switch_vlan' 'eth0_2' + option 'device' 'eth0' + option 'vlan' '2' + option 'ports' '4 5t' + +config 'interface' 'wan' + option 'ifname' 'eth0.2' + option 'proto' 'dhcp' \ No newline at end of file diff --git a/root_file_system/fonera/etc/config/network b/root_file_system/fonera/etc/config/network new file mode 100644 index 0000000..b0989f9 --- /dev/null +++ b/root_file_system/fonera/etc/config/network @@ -0,0 +1,18 @@ +config 'interface' 'loopback' + option 'ifname' 'lo' + option 'proto' 'static' + option 'ipaddr' '127.0.0.1' + option 'netmask' '255.0.0.0' + +config 'interface' 'lan' + option 'proto' 'dhcp' + option 'ifname' 'eth0' + +config 'interface' 'wlanmesch' + option 'ifname' 'ath1' + option 'mtu' '1527' + +config 'interface' 'mesh' + option 'type' 'bridge' + option 'ifname' 'ath0 bat0 tap0' + option 'stp' '1'