Jan Wagner revised this gist 11 years ago. Go to revision
1 file changed, 321 insertions
Makefile.lcd4linux(file created)
| @@ -0,0 +1,321 @@ | |||
| 1 | + | # | |
| 2 | + | # Copyright (C) 2007-2012 OpenWrt.org | |
| 3 | + | # | |
| 4 | + | # This is free software, licensed under the GNU General Public License v2. | |
| 5 | + | # See /LICENSE for more information. | |
| 6 | + | # | |
| 7 | + | ||
| 8 | + | include $(TOPDIR)/rules.mk | |
| 9 | + | ||
| 10 | + | PKG_NAME:=lcd4linux | |
| 11 | + | PKG_REV:=1187 | |
| 12 | + | PKG_VERSION:=r$(PKG_REV) | |
| 13 | + | PKG_RELEASE:=1 | |
| 14 | + | ||
| 15 | + | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 | |
| 16 | + | PKG_SOURCE_URL:=https://ssl.bulix.org/svn/lcd4linux/trunk/ | |
| 17 | + | PKG_SOURCE_SUBDIR:=lcd4linux-$(PKG_VERSION) | |
| 18 | + | PKG_SOURCE_VERSION:=$(PKG_REV) | |
| 19 | + | PKG_SOURCE_PROTO:=svn | |
| 20 | + | ||
| 21 | + | LCD4LINUX_DRIVERS:= \ | |
| 22 | + | ASTUSB \ | |
| 23 | + | BeckmannEgle \ | |
| 24 | + | BWCT \ | |
| 25 | + | CrystalFontz \ | |
| 26 | + | Curses \ | |
| 27 | + | Cwlinux \ | |
| 28 | + | D4D \ | |
| 29 | + | EA232graphic \ | |
| 30 | + | EFN \ | |
| 31 | + | FutabaVFD \ | |
| 32 | + | FW8888 \ | |
| 33 | + | G15 \ | |
| 34 | + | GLCD2USB \ | |
| 35 | + | IRLCD \ | |
| 36 | + | $(if $(CONFIG_BROKEN),HD44780) \ | |
| 37 | + | $(if $(CONFIG_BROKEN),HD44780-I2C) \ | |
| 38 | + | LCD2USB \ | |
| 39 | + | $(if $(CONFIG_BROKEN),LCDLinux) \ | |
| 40 | + | LCDTerm \ | |
| 41 | + | LEDMatrix \ | |
| 42 | + | LPH7508 \ | |
| 43 | + | $(if $(CONFIG_BROKEN),LUIse) \ | |
| 44 | + | LW_ABP \ | |
| 45 | + | M50530 \ | |
| 46 | + | MatrixOrbital \ | |
| 47 | + | MatrixOrbitalGX \ | |
| 48 | + | MilfordInstruments \ | |
| 49 | + | Newhaven \ | |
| 50 | + | Noritake \ | |
| 51 | + | NULL \ | |
| 52 | + | Pertelian \ | |
| 53 | + | PHAnderson \ | |
| 54 | + | PICGraphic \ | |
| 55 | + | picoLCD \ | |
| 56 | + | picoLCDGraphic \ | |
| 57 | + | PNG \ | |
| 58 | + | PPM \ | |
| 59 | + | $(if $(CONFIG_TARGET_rb532),RouterBoard) \ | |
| 60 | + | $(if $(CONFIG_BROKEN),SamsungSPF) \ | |
| 61 | + | serdisplib \ | |
| 62 | + | ShuttleVFD \ | |
| 63 | + | SimpleLCD \ | |
| 64 | + | st2205 \ | |
| 65 | + | T6963 \ | |
| 66 | + | TeakLCM \ | |
| 67 | + | $(if $(CONFIG_TARGET_ar71xx),TEW673GRU) \ | |
| 68 | + | Trefon \ | |
| 69 | + | USBHUB \ | |
| 70 | + | USBLCD \ | |
| 71 | + | VNC \ | |
| 72 | + | WincorNixdorf \ | |
| 73 | + | # ULA200 \ | |
| 74 | + | # X11 \ | |
| 75 | + | # DPF \ | |
| 76 | + | ||
| 77 | + | LCD4LINUX_PLUGINS:= \ | |
| 78 | + | apm \ | |
| 79 | + | asterisk \ | |
| 80 | + | button_exec \ | |
| 81 | + | cpuinfo \ | |
| 82 | + | dbus \ | |
| 83 | + | diskstats \ | |
| 84 | + | dvb \ | |
| 85 | + | event \ | |
| 86 | + | exec \ | |
| 87 | + | fifo \ | |
| 88 | + | file \ | |
| 89 | + | gps \ | |
| 90 | + | hddtemp \ | |
| 91 | + | huawei \ | |
| 92 | + | i2c_sensors \ | |
| 93 | + | iconv \ | |
| 94 | + | imon \ | |
| 95 | + | isdn \ | |
| 96 | + | kvv \ | |
| 97 | + | loadavg \ | |
| 98 | + | netdev \ | |
| 99 | + | netinfo \ | |
| 100 | + | meminfo \ | |
| 101 | + | mpd \ | |
| 102 | + | mpris_dbus \ | |
| 103 | + | mysql \ | |
| 104 | + | netdev \ | |
| 105 | + | pop3 \ | |
| 106 | + | ppp \ | |
| 107 | + | proc_stat \ | |
| 108 | + | qnaplog \ | |
| 109 | + | seti \ | |
| 110 | + | statfs \ | |
| 111 | + | uname \ | |
| 112 | + | uptime \ | |
| 113 | + | w1retap \ | |
| 114 | + | $(if $(CONFIG_BROKEN),wireless) \ | |
| 115 | + | xmms \ | |
| 116 | + | # python \ | |
| 117 | + | ||
| 118 | + | PKG_FIXUP:=autoreconf | |
| 119 | + | PKG_INSTALL:=1 | |
| 120 | + | ||
| 121 | + | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) | |
| 122 | + | ||
| 123 | + | PKG_BUILD_DEPENDS:= \ | |
| 124 | + | libdbus \ | |
| 125 | + | libgd \ | |
| 126 | + | libmpdclient \ | |
| 127 | + | libmysqlclient \ | |
| 128 | + | libncurses \ | |
| 129 | + | libnmeap \ | |
| 130 | + | libsqlite3 \ | |
| 131 | + | libvncserver \ | |
| 132 | + | ppp \ | |
| 133 | + | serdisplib \ | |
| 134 | + | st2205tool \ | |
| 135 | + | # libftdi \ | |
| 136 | + | # libX11 \ | |
| 137 | + | # python \ | |
| 138 | + | ||
| 139 | + | PKG_CONFIG_DEPENDS:= \ | |
| 140 | + | $(patsubst %,CONFIG_LCD4LINUX_CUSTOM_DRIVER_%,$(LCD4LINUX_DRIVERS)) \ | |
| 141 | + | $(patsubst %,CONFIG_LCD4LINUX_CUSTOM_PLUGIN_%,$(LCD4LINUX_PLUGINS)) \ | |
| 142 | + | ||
| 143 | + | include $(INCLUDE_DIR)/package.mk | |
| 144 | + | include $(INCLUDE_DIR)/nls.mk | |
| 145 | + | ||
| 146 | + | define Package/lcd4linux/Default | |
| 147 | + | SECTION:=utils | |
| 148 | + | CATEGORY:=Utilities | |
| 149 | + | MAINTAINER:=Jonathan McCrohan <jmccrohan@gmail.com> | |
| 150 | + | TITLE:=LCD display utility | |
| 151 | + | URL:=http://lcd4linux.bulix.org/ | |
| 152 | + | endef | |
| 153 | + | ||
| 154 | + | define Package/lcd4linux/Default/description | |
| 155 | + | LCD4Linux is a small program that grabs information from the kernel and | |
| 156 | + | some subsystems and displays it on an external liquid crystal display. | |
| 157 | + | endef | |
| 158 | + | ||
| 159 | + | ||
| 160 | + | define Package/lcd4linux-custom | |
| 161 | + | $(call Package/lcd4linux/Default) | |
| 162 | + | DEPENDS:= \ | |
| 163 | + | +LCD4LINUX_CUSTOM_NEEDS_libdbus:libdbus \ | |
| 164 | + | +LCD4LINUX_CUSTOM_NEEDS_libgd:libgd \ | |
| 165 | + | $(if $(ICONV_FULL),+LCD4LINUX_CUSTOM_NEEDS_libiconv:libiconv-full) \ | |
| 166 | + | +LCD4LINUX_CUSTOM_NEEDS_libjpeg:libjpeg \ | |
| 167 | + | +LCD4LINUX_CUSTOM_NEEDS_libmpdclient:libmpdclient \ | |
| 168 | + | +LCD4LINUX_CUSTOM_NEEDS_libmysqlclient:libmysqlclient \ | |
| 169 | + | +LCD4LINUX_CUSTOM_NEEDS_libncurses:libncurses \ | |
| 170 | + | +LCD4LINUX_CUSTOM_NEEDS_libsqlite3:libsqlite3 \ | |
| 171 | + | +LCD4LINUX_CUSTOM_NEEDS_libusb:libusb-compat \ | |
| 172 | + | +LCD4LINUX_CUSTOM_NEEDS_libvncserver:libvncserver \ | |
| 173 | + | +LCD4LINUX_CUSTOM_NEEDS_serdisplib:serdisplib \ | |
| 174 | + | +LCD4LINUX_CUSTOM_NEEDS_st2205tool:st2205tool \ | |
| 175 | + | # +LCD4LINUX_CUSTOM_NEEDS_libftdi:libftdi \ | |
| 176 | + | # +LCD4LINUX_CUSTOM_NEEDS_libX11:libX11 \ | |
| 177 | + | # +LCD4LINUX_CUSTOM_NEEDS_libdpf:libdpf \ | |
| 178 | + | # +LCD4LINUX_CUSTOM_NEEDS_python:python | |
| 179 | + | MENU:=1 | |
| 180 | + | PROVIDES:=lcd4linux | |
| 181 | + | VARIANT=custom | |
| 182 | + | endef | |
| 183 | + | ||
| 184 | + | define Package/lcd4linux-custom/config | |
| 185 | + | source "$(SOURCE)/Config.in" | |
| 186 | + | endef | |
| 187 | + | ||
| 188 | + | define Package/lcd4linux-custom/description | |
| 189 | + | $(call Package/lcd4linux/Default/description) | |
| 190 | + | . | |
| 191 | + | This package contains a customized version of LCD4Linux. | |
| 192 | + | endef | |
| 193 | + | ||
| 194 | + | ||
| 195 | + | define Package/lcd4linux-full | |
| 196 | + | $(call Package/lcd4linux/Default) | |
| 197 | + | DEPENDS:= @DEVEL \ | |
| 198 | + | +libdbus \ | |
| 199 | + | +libgd \ | |
| 200 | + | $(if $(ICONV_FULL),+libiconv-full) \ | |
| 201 | + | +libmpdclient \ | |
| 202 | + | +libmysqlclient \ | |
| 203 | + | +libncurses \ | |
| 204 | + | +libsqlite3 \ | |
| 205 | + | +libusb-compat \ | |
| 206 | + | +libvncserver \ | |
| 207 | + | +serdisplib \ | |
| 208 | + | +st2205tool \ | |
| 209 | + | # +libftdi \ | |
| 210 | + | # +libX11 \ | |
| 211 | + | # +libdpf \ | |
| 212 | + | # +python | |
| 213 | + | PROVIDES:=lcd4linux | |
| 214 | + | VARIANT=full | |
| 215 | + | endef | |
| 216 | + | ||
| 217 | + | define Package/lcd4linux-full/description | |
| 218 | + | $(call Package/lcd4linux/Default/description) | |
| 219 | + | . | |
| 220 | + | This package contains a version of LCD4Linux built with all supported | |
| 221 | + | drivers and plugins. | |
| 222 | + | endef | |
| 223 | + | ||
| 224 | + | ||
| 225 | + | CONFIGURE_ARGS+= \ | |
| 226 | + | --disable-rpath \ | |
| 227 | + | ||
| 228 | + | EXTRA_LDFLAGS+= -Wl,-rpath-link,$(STAGING_DIR)/usr/lib | |
| 229 | + | ||
| 230 | + | ifeq ($(BUILD_VARIANT),custom) | |
| 231 | + | ||
| 232 | + | LCD4LINUX_CUSTOM_DRIVERS:= $(strip $(foreach c, $(LCD4LINUX_DRIVERS), \ | |
| 233 | + | $(if $(CONFIG_LCD4LINUX_CUSTOM_DRIVER_$(c)),$(c),) \ | |
| 234 | + | )) | |
| 235 | + | ifeq ($(LCD4LINUX_CUSTOM_DRIVERS),) | |
| 236 | + | LCD4LINUX_CUSTOM_DRIVERS:=Sample | |
| 237 | + | endif | |
| 238 | + | ||
| 239 | + | LCD4LINUX_CUSTOM_PLUGINS:= $(strip $(foreach c, $(LCD4LINUX_PLUGINS), \ | |
| 240 | + | $(if $(CONFIG_LCD4LINUX_CUSTOM_PLUGIN_$(c)),$(c)) \ | |
| 241 | + | )) | |
| 242 | + | ifeq ($(LCD4LINUX_CUSTOM_PLUGINS),) | |
| 243 | + | LCD4LINUX_CUSTOM_PLUGINS:=sample | |
| 244 | + | endif | |
| 245 | + | ||
| 246 | + | CONFIGURE_ARGS+= \ | |
| 247 | + | --with-drivers="$(LCD4LINUX_CUSTOM_DRIVERS)" \ | |
| 248 | + | --with-plugins="$(LCD4LINUX_CUSTOM_PLUGINS)" \ | |
| 249 | + | ||
| 250 | + | ifneq ($(CONFIG_LCD4LINUX_CUSTOM_NEEDS_libiconv),) | |
| 251 | + | CONFIGURE_ARGS+= --with-libiconv-prefix="$(ICONV_PREFIX)" | |
| 252 | + | else | |
| 253 | + | CONFIGURE_ARGS+= --without-libiconv-prefix | |
| 254 | + | endif | |
| 255 | + | ||
| 256 | + | ifneq ($(CONFIG_LCD4LINUX_CUSTOM_NEEDS_libmysqlclient),) | |
| 257 | + | EXTRA_LDFLAGS+= -L$(STAGING_DIR)/usr/lib/mysql | |
| 258 | + | endif | |
| 259 | + | ||
| 260 | + | # ifneq ($(CONFIG_LCD4LINUX_CUSTOM_NEEDS_python),) | |
| 261 | + | # CONFIGURE_ARGS+= --with-python | |
| 262 | + | # else | |
| 263 | + | CONFIGURE_ARGS+= --without-python | |
| 264 | + | # endif | |
| 265 | + | ||
| 266 | + | # ifneq ($(CONFIG_LCD4LINUX_CUSTOM_NEEDS_libX11),) | |
| 267 | + | # CONFIGURE_ARGS+= --with-x | |
| 268 | + | # else | |
| 269 | + | CONFIGURE_ARGS+= --without-x | |
| 270 | + | # endif | |
| 271 | + | ||
| 272 | + | endif | |
| 273 | + | ||
| 274 | + | ifeq ($(BUILD_VARIANT),full) | |
| 275 | + | ||
| 276 | + | LCD4LINUX_FULL_DRIVERS:= $(strip $(foreach c, $(LCD4LINUX_DRIVERS), \ | |
| 277 | + | $(c) \ | |
| 278 | + | )) | |
| 279 | + | ||
| 280 | + | LCD4LINUX_FULL_PLUGINS:= $(strip $(foreach c, $(LCD4LINUX_PLUGINS), \ | |
| 281 | + | $(c) \ | |
| 282 | + | )) | |
| 283 | + | ||
| 284 | + | CONFIGURE_ARGS+= \ | |
| 285 | + | --with-drivers="$(LCD4LINUX_FULL_DRIVERS)" \ | |
| 286 | + | --with-plugins="$(LCD4LINUX_FULL_PLUGINS)" \ | |
| 287 | + | --with-libiconv-prefix="$(ICONV_PREFIX)" \ | |
| 288 | + | --without-python \ | |
| 289 | + | --without-x \ | |
| 290 | + | ||
| 291 | + | EXTRA_LDFLAGS+= -L$(STAGING_DIR)/usr/lib/mysql | |
| 292 | + | ||
| 293 | + | endif | |
| 294 | + | ||
| 295 | + | ||
| 296 | + | define Package/lcd4linux/conffiles | |
| 297 | + | /etc/lcd4linux.conf | |
| 298 | + | endef | |
| 299 | + | ||
| 300 | + | define Package/lcd4linux/install | |
| 301 | + | $(INSTALL_DIR) $(1)/usr/bin | |
| 302 | + | $(CP) $(PKG_INSTALL_DIR)/usr/bin/lcd4linux $(1)/usr/bin/ | |
| 303 | + | $(INSTALL_DIR) $(1)/etc | |
| 304 | + | $(INSTALL_CONF) $(PKG_BUILD_DIR)/lcd4linux.conf.sample $(1)/etc/lcd4linux.conf | |
| 305 | + | $(INSTALL_DIR) $(1)/etc/init.d | |
| 306 | + | $(INSTALL_BIN) ./files/lcd4linux.init $(1)/etc/init.d/lcd4linux | |
| 307 | + | $(SED) "s|^\(Display 'GLCD2USB'\)|#\1|g" \ | |
| 308 | + | -e "s|^\(Layout 'TestLayer'\)|#\1|g" \ | |
| 309 | + | -e "s|^#\(Display 'Image'\)|\1|g" \ | |
| 310 | + | -e "s|^#\(Layout 'Default'\)|\1|g" \ | |
| 311 | + | $(1)/etc/lcd4linux.conf | |
| 312 | + | endef | |
| 313 | + | ||
| 314 | + | Package/lcd4linux-custom/conffiles = $(Package/lcd4linux/conffiles) | |
| 315 | + | Package/lcd4linux-custom/install = $(Package/lcd4linux/install) | |
| 316 | + | ||
| 317 | + | Package/lcd4linux-full/conffiles = $(Package/lcd4linux/conffiles) | |
| 318 | + | Package/lcd4linux-full/install = $(Package/lcd4linux/install) | |
| 319 | + | ||
| 320 | + | $(eval $(call BuildPackage,lcd4linux-custom)) | |
| 321 | + | $(eval $(call BuildPackage,lcd4linux-full)) | |
Jan Wagner revised this gist 11 years ago. Go to revision
1 file changed, 3996 insertions, 1 deletion
.config
| @@ -1 +1,3996 @@ | |||
| 1 | - | . | |
| 1 | + | # | |
| 2 | + | # Automatically generated file; DO NOT EDIT. | |
| 3 | + | # OpenWrt Configuration | |
| 4 | + | # | |
| 5 | + | CONFIG_MODULES=y | |
| 6 | + | CONFIG_HAVE_DOT_CONFIG=y | |
| 7 | + | # CONFIG_TARGET_ppc40x is not set | |
| 8 | + | # CONFIG_TARGET_realview is not set | |
| 9 | + | # CONFIG_TARGET_sunxi is not set | |
| 10 | + | # CONFIG_TARGET_atheros is not set | |
| 11 | + | # CONFIG_TARGET_ar71xx is not set | |
| 12 | + | # CONFIG_TARGET_at91 is not set | |
| 13 | + | # CONFIG_TARGET_avr32 is not set | |
| 14 | + | # CONFIG_TARGET_brcm2708 is not set | |
| 15 | + | # CONFIG_TARGET_brcm47xx is not set | |
| 16 | + | # CONFIG_TARGET_bcm53xx is not set | |
| 17 | + | # CONFIG_TARGET_brcm63xx is not set | |
| 18 | + | # CONFIG_TARGET_cns21xx is not set | |
| 19 | + | # CONFIG_TARGET_cns3xxx is not set | |
| 20 | + | # CONFIG_TARGET_octeon is not set | |
| 21 | + | # CONFIG_TARGET_ep93xx is not set | |
| 22 | + | # CONFIG_TARGET_cobalt is not set | |
| 23 | + | # CONFIG_TARGET_gemini is not set | |
| 24 | + | # CONFIG_TARGET_mpc52xx is not set | |
| 25 | + | # CONFIG_TARGET_mpc83xx is not set | |
| 26 | + | # CONFIG_TARGET_mpc85xx is not set | |
| 27 | + | # CONFIG_TARGET_imx6 is not set | |
| 28 | + | # CONFIG_TARGET_mxs is not set | |
| 29 | + | # CONFIG_TARGET_adm8668 is not set | |
| 30 | + | # CONFIG_TARGET_adm5120 is not set | |
| 31 | + | # CONFIG_TARGET_xburst is not set | |
| 32 | + | # CONFIG_TARGET_ixp4xx is not set | |
| 33 | + | # CONFIG_TARGET_lantiq is not set | |
| 34 | + | # CONFIG_TARGET_malta is not set | |
| 35 | + | # CONFIG_TARGET_mvebu is not set | |
| 36 | + | # CONFIG_TARGET_kirkwood is not set | |
| 37 | + | # CONFIG_TARGET_orion is not set | |
| 38 | + | # CONFIG_TARGET_pxa is not set | |
| 39 | + | # CONFIG_TARGET_mcs814x is not set | |
| 40 | + | # CONFIG_TARGET_au1000 is not set | |
| 41 | + | # CONFIG_TARGET_ramips is not set | |
| 42 | + | # CONFIG_TARGET_ar7 is not set | |
| 43 | + | # CONFIG_TARGET_omap is not set | |
| 44 | + | # CONFIG_TARGET_uml is not set | |
| 45 | + | CONFIG_TARGET_x86=y | |
| 46 | + | # CONFIG_TARGET_x86_64 is not set | |
| 47 | + | CONFIG_TARGET_x86_generic=y | |
| 48 | + | # CONFIG_TARGET_x86_xen_domu is not set | |
| 49 | + | # CONFIG_TARGET_x86_ep80579 is not set | |
| 50 | + | # CONFIG_TARGET_x86_kvm_guest is not set | |
| 51 | + | # CONFIG_TARGET_x86_alix2 is not set | |
| 52 | + | CONFIG_TARGET_x86_generic_Generic=y | |
| 53 | + | # CONFIG_TARGET_x86_generic_Soekris45xx is not set | |
| 54 | + | # CONFIG_TARGET_x86_generic_Soekris48xx is not set | |
| 55 | + | # CONFIG_TARGET_x86_generic_Wrap is not set | |
| 56 | + | CONFIG_HAS_SUBTARGETS=y | |
| 57 | + | CONFIG_TARGET_BOARD="x86" | |
| 58 | + | CONFIG_TARGET_ARCH_PACKAGES="x86" | |
| 59 | + | CONFIG_DEFAULT_TARGET_OPTIMIZATION="-Os -pipe -march=i486" | |
| 60 | + | CONFIG_CPU_TYPE="i486" | |
| 61 | + | CONFIG_LINUX_3_10=y | |
| 62 | + | CONFIG_DEFAULT_base-files=y | |
| 63 | + | CONFIG_DEFAULT_busybox=y | |
| 64 | + | CONFIG_DEFAULT_dnsmasq=y | |
| 65 | + | CONFIG_DEFAULT_dropbear=y | |
| 66 | + | CONFIG_DEFAULT_firewall=y | |
| 67 | + | CONFIG_DEFAULT_fstools=y | |
| 68 | + | CONFIG_DEFAULT_ip6tables=y | |
| 69 | + | CONFIG_DEFAULT_iptables=y | |
| 70 | + | CONFIG_DEFAULT_kmod-3c59x=y | |
| 71 | + | CONFIG_DEFAULT_kmod-8139too=y | |
| 72 | + | CONFIG_DEFAULT_kmod-e100=y | |
| 73 | + | CONFIG_DEFAULT_kmod-e1000=y | |
| 74 | + | CONFIG_DEFAULT_kmod-ipt-nathelper=y | |
| 75 | + | CONFIG_DEFAULT_kmod-natsemi=y | |
| 76 | + | CONFIG_DEFAULT_kmod-ne2k-pci=y | |
| 77 | + | CONFIG_DEFAULT_kmod-pcnet32=y | |
| 78 | + | CONFIG_DEFAULT_kmod-r8169=y | |
| 79 | + | CONFIG_DEFAULT_kmod-sis900=y | |
| 80 | + | CONFIG_DEFAULT_kmod-tg3=y | |
| 81 | + | CONFIG_DEFAULT_kmod-via-rhine=y | |
| 82 | + | CONFIG_DEFAULT_kmod-via-velocity=y | |
| 83 | + | CONFIG_DEFAULT_libc=y | |
| 84 | + | CONFIG_DEFAULT_libgcc=y | |
| 85 | + | CONFIG_DEFAULT_mtd=y | |
| 86 | + | CONFIG_DEFAULT_netifd=y | |
| 87 | + | CONFIG_DEFAULT_odhcp6c=y | |
| 88 | + | CONFIG_DEFAULT_odhcpd=y | |
| 89 | + | CONFIG_DEFAULT_opkg=y | |
| 90 | + | CONFIG_DEFAULT_ppp=y | |
| 91 | + | CONFIG_DEFAULT_ppp-mod-pppoe=y | |
| 92 | + | CONFIG_DEFAULT_uci=y | |
| 93 | + | CONFIG_AUDIO_SUPPORT=y | |
| 94 | + | CONFIG_PCI_SUPPORT=y | |
| 95 | + | CONFIG_PCIE_SUPPORT=y | |
| 96 | + | CONFIG_PCMCIA_SUPPORT=y | |
| 97 | + | CONFIG_USB_SUPPORT=y | |
| 98 | + | CONFIG_RTC_SUPPORT=y | |
| 99 | + | CONFIG_USES_SQUASHFS=y | |
| 100 | + | CONFIG_USES_EXT4=y | |
| 101 | + | CONFIG_USES_TARGZ=y | |
| 102 | + | CONFIG_i386=y | |
| 103 | + | CONFIG_ARCH="i386" | |
| 104 | + | ||
| 105 | + | # | |
| 106 | + | # Target Images | |
| 107 | + | # | |
| 108 | + | # CONFIG_TARGET_ROOTFS_INITRAMFS is not set | |
| 109 | + | CONFIG_EXTERNAL_CPIO="" | |
| 110 | + | ||
| 111 | + | # | |
| 112 | + | # Root filesystem archives | |
| 113 | + | # | |
| 114 | + | # CONFIG_TARGET_ROOTFS_CPIOGZ is not set | |
| 115 | + | CONFIG_TARGET_ROOTFS_TARGZ=y | |
| 116 | + | ||
| 117 | + | # | |
| 118 | + | # Root filesystem images | |
| 119 | + | # | |
| 120 | + | CONFIG_TARGET_ROOTFS_EXT4FS=y | |
| 121 | + | # CONFIG_TARGET_ROOTFS_ISO is not set | |
| 122 | + | # CONFIG_TARGET_ROOTFS_JFFS2 is not set | |
| 123 | + | CONFIG_TARGET_ROOTFS_SQUASHFS=y | |
| 124 | + | CONFIG_TARGET_UBIFS_FREE_SPACE_FIXUP=y | |
| 125 | + | CONFIG_TARGET_UBIFS_JOURNAL_SIZE="" | |
| 126 | + | CONFIG_GRUB_IMAGES=y | |
| 127 | + | CONFIG_GRUB_CONSOLE=y | |
| 128 | + | CONFIG_GRUB_SERIAL="ttyS0" | |
| 129 | + | CONFIG_GRUB_BAUDRATE=38400 | |
| 130 | + | CONFIG_GRUB_BOOTOPTS="" | |
| 131 | + | CONFIG_GRUB_TIMEOUT="5" | |
| 132 | + | # CONFIG_VDI_IMAGES is not set | |
| 133 | + | # CONFIG_VMDK_IMAGES is not set | |
| 134 | + | # CONFIG_TARGET_IMAGES_PAD is not set | |
| 135 | + | CONFIG_TARGET_IMAGES_GZIP=y | |
| 136 | + | ||
| 137 | + | # | |
| 138 | + | # Image Options | |
| 139 | + | # | |
| 140 | + | CONFIG_TARGET_KERNEL_PARTSIZE=4 | |
| 141 | + | CONFIG_TARGET_ROOTFS_PARTSIZE=48 | |
| 142 | + | CONFIG_TARGET_ROOTFS_PARTNAME="/dev/sda2" | |
| 143 | + | CONFIG_TARGET_ROOTFS_MAXINODE=6000 | |
| 144 | + | CONFIG_TARGET_ROOTFS_RESERVED_PCT=0 | |
| 145 | + | # CONFIG_TARGET_ROOTFS_INCLUDE_KERNEL is not set | |
| 146 | + | CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE=y | |
| 147 | + | CONFIG_TARGET_ROOTFS_INCLUDE_ZIMAGE=y | |
| 148 | + | CONFIG_TARGET_ROOTFS_INCLUDE_FIT=y | |
| 149 | + | ||
| 150 | + | # | |
| 151 | + | # Global build settings | |
| 152 | + | # | |
| 153 | + | # CONFIG_ALL is not set | |
| 154 | + | ||
| 155 | + | # | |
| 156 | + | # General build options | |
| 157 | + | # | |
| 158 | + | CONFIG_DISPLAY_SUPPORT=y | |
| 159 | + | CONFIG_BUILD_PATENTED=y | |
| 160 | + | # CONFIG_BUILD_NLS is not set | |
| 161 | + | # CONFIG_BUILD_STATIC_TOOLS is not set | |
| 162 | + | CONFIG_SHADOW_PASSWORDS=y | |
| 163 | + | # CONFIG_CLEAN_IPKG is not set | |
| 164 | + | # CONFIG_COLLECT_KERNEL_DEBUG is not set | |
| 165 | + | ||
| 166 | + | # | |
| 167 | + | # Kernel build options | |
| 168 | + | # | |
| 169 | + | CONFIG_KERNEL_PRINTK=y | |
| 170 | + | CONFIG_KERNEL_CRASHLOG=y | |
| 171 | + | CONFIG_KERNEL_SWAP=y | |
| 172 | + | CONFIG_KERNEL_DEBUG_FS=y | |
| 173 | + | # CONFIG_KERNEL_PERF_EVENTS is not set | |
| 174 | + | # CONFIG_KERNEL_PROFILING is not set | |
| 175 | + | CONFIG_KERNEL_KALLSYMS=y | |
| 176 | + | # CONFIG_KERNEL_FTRACE is not set | |
| 177 | + | CONFIG_KERNEL_DEBUG_KERNEL=y | |
| 178 | + | CONFIG_KERNEL_DEBUG_INFO=y | |
| 179 | + | # CONFIG_KERNEL_DYNAMIC_DEBUG is not set | |
| 180 | + | # CONFIG_KERNEL_AIO is not set | |
| 181 | + | # CONFIG_KERNEL_DIRECT_IO is not set | |
| 182 | + | CONFIG_KERNEL_MAGIC_SYSRQ=y | |
| 183 | + | CONFIG_KERNEL_COREDUMP=y | |
| 184 | + | CONFIG_KERNEL_ELF_CORE=y | |
| 185 | + | # CONFIG_KERNEL_PROVE_LOCKING is not set | |
| 186 | + | CONFIG_KERNEL_PRINTK_TIME=y | |
| 187 | + | # CONFIG_KERNEL_KEXEC is not set | |
| 188 | + | # CONFIG_USE_RFKILL is not set | |
| 189 | + | # CONFIG_KERNEL_CGROUPS is not set | |
| 190 | + | # CONFIG_KERNEL_NAMESPACES is not set | |
| 191 | + | # CONFIG_KERNEL_LXC_MISC is not set | |
| 192 | + | ||
| 193 | + | # | |
| 194 | + | # Package build options | |
| 195 | + | # | |
| 196 | + | # CONFIG_DEBUG is not set | |
| 197 | + | CONFIG_IPV6=y | |
| 198 | + | CONFIG_PKG_BUILD_PARALLEL=y | |
| 199 | + | CONFIG_PKG_BUILD_USE_JOBSERVER=y | |
| 200 | + | ||
| 201 | + | # | |
| 202 | + | # Stripping options | |
| 203 | + | # | |
| 204 | + | # CONFIG_NO_STRIP is not set | |
| 205 | + | # CONFIG_USE_STRIP is not set | |
| 206 | + | CONFIG_USE_SSTRIP=y | |
| 207 | + | # CONFIG_STRIP_KERNEL_EXPORTS is not set | |
| 208 | + | # CONFIG_USE_MKLIBS is not set | |
| 209 | + | CONFIG_USE_UCLIBCXX=y | |
| 210 | + | # CONFIG_USE_LIBSTDCXX is not set | |
| 211 | + | CONFIG_DEVEL=y | |
| 212 | + | # CONFIG_BROKEN is not set | |
| 213 | + | CONFIG_BINARY_FOLDER="" | |
| 214 | + | CONFIG_DOWNLOAD_FOLDER="" | |
| 215 | + | CONFIG_LOCALMIRROR="" | |
| 216 | + | CONFIG_AUTOREBUILD=y | |
| 217 | + | CONFIG_BUILD_SUFFIX="" | |
| 218 | + | CONFIG_TARGET_ROOTFS_DIR="" | |
| 219 | + | # CONFIG_CCACHE is not set | |
| 220 | + | CONFIG_EXTERNAL_KERNEL_TREE="" | |
| 221 | + | CONFIG_KERNEL_GIT_CLONE_URI="" | |
| 222 | + | CONFIG_KERNEL_GIT_LOCAL_REPOSITORY="" | |
| 223 | + | # CONFIG_BUILD_LOG is not set | |
| 224 | + | # CONFIG_SRC_TREE_OVERRIDE is not set | |
| 225 | + | CONFIG_EXTRA_OPTIMIZATION="-fno-caller-saves" | |
| 226 | + | # CONFIG_TARGET_OPTIONS is not set | |
| 227 | + | CONFIG_TARGET_OPTIMIZATION="-Os -pipe -march=i486" | |
| 228 | + | # CONFIG_EXTERNAL_TOOLCHAIN is not set | |
| 229 | + | CONFIG_NEED_TOOLCHAIN=y | |
| 230 | + | # CONFIG_TOOLCHAINOPTS is not set | |
| 231 | + | # CONFIG_EXTRA_TARGET_ARCH is not set | |
| 232 | + | CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="" | |
| 233 | + | CONFIG_BINUTILS_VERSION="2.22" | |
| 234 | + | CONFIG_EXTRA_GCC_CONFIG_OPTIONS="" | |
| 235 | + | # CONFIG_SSP_SUPPORT is not set | |
| 236 | + | # CONFIG_SJLJ_EXCEPTIONS is not set | |
| 237 | + | # CONFIG_INSTALL_LIBGCJ is not set | |
| 238 | + | # CONFIG_INSTALL_GFORTRAN is not set | |
| 239 | + | CONFIG_GDB=y | |
| 240 | + | # CONFIG_INSIGHT is not set | |
| 241 | + | CONFIG_USE_UCLIBC=y | |
| 242 | + | CONFIG_GCC_VERSION_4_8_LINARO=y | |
| 243 | + | CONFIG_GCC_VERSION="4.8-linaro" | |
| 244 | + | CONFIG_GCC_VERSION_4_8=y | |
| 245 | + | CONFIG_UCLIBC_VERSION="0.9.33.2" | |
| 246 | + | CONFIG_UCLIBC_VERSION_0_9_33=y | |
| 247 | + | CONFIG_LIBC="uClibc" | |
| 248 | + | CONFIG_LIBC_VERSION="0.9.33.2" | |
| 249 | + | CONFIG_TARGET_SUFFIX="uclibc" | |
| 250 | + | # CONFIG_IB is not set | |
| 251 | + | # CONFIG_SDK is not set | |
| 252 | + | # CONFIG_MAKE_TOOLCHAIN is not set | |
| 253 | + | # CONFIG_IMAGEOPT is not set | |
| 254 | + | # CONFIG_PREINITOPT is not set | |
| 255 | + | CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y | |
| 256 | + | CONFIG_TARGET_PREINIT_TIMEOUT=2 | |
| 257 | + | # CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set | |
| 258 | + | # CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set | |
| 259 | + | CONFIG_TARGET_PREINIT_IFNAME="" | |
| 260 | + | CONFIG_TARGET_PREINIT_IP="192.168.1.1" | |
| 261 | + | CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0" | |
| 262 | + | CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255" | |
| 263 | + | # CONFIG_INITOPT is not set | |
| 264 | + | CONFIG_TARGET_INIT_PATH="/bin:/sbin:/usr/bin:/usr/sbin" | |
| 265 | + | CONFIG_TARGET_INIT_ENV="" | |
| 266 | + | CONFIG_TARGET_INIT_CMD="/sbin/init" | |
| 267 | + | CONFIG_TARGET_INIT_SUPPRESS_STDERR=y | |
| 268 | + | # CONFIG_VERSIONOPT is not set | |
| 269 | + | # CONFIG_SMIMEOPT is not set | |
| 270 | + | CONFIG_OPKGSMIME_PASSPHRASE=y | |
| 271 | + | ||
| 272 | + | # | |
| 273 | + | # Package features | |
| 274 | + | # | |
| 275 | + | CONFIG_FEATURE_drawing-backend_DirectFB=y | |
| 276 | + | ||
| 277 | + | # | |
| 278 | + | # Base system | |
| 279 | + | # | |
| 280 | + | CONFIG_PACKAGE_base-files=y | |
| 281 | + | # CONFIG_PACKAGE_block-mount is not set | |
| 282 | + | # CONFIG_PACKAGE_bridge is not set | |
| 283 | + | CONFIG_PACKAGE_busybox=y | |
| 284 | + | # CONFIG_BUSYBOX_CUSTOM is not set | |
| 285 | + | CONFIG_BUSYBOX_DEFAULT_HAVE_DOT_CONFIG=y | |
| 286 | + | # CONFIG_BUSYBOX_DEFAULT_DESKTOP is not set | |
| 287 | + | # CONFIG_BUSYBOX_DEFAULT_EXTRA_COMPAT is not set | |
| 288 | + | CONFIG_BUSYBOX_DEFAULT_INCLUDE_SUSv2=y | |
| 289 | + | # CONFIG_BUSYBOX_DEFAULT_USE_PORTABLE_CODE is not set | |
| 290 | + | CONFIG_BUSYBOX_DEFAULT_PLATFORM_LINUX=y | |
| 291 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_USE_MALLOC is not set | |
| 292 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_GO_ON_STACK=y | |
| 293 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_GO_IN_BSS is not set | |
| 294 | + | CONFIG_BUSYBOX_DEFAULT_SHOW_USAGE=y | |
| 295 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE_USAGE=y | |
| 296 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_COMPRESS_USAGE=y | |
| 297 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSTALLER is not set | |
| 298 | + | # CONFIG_BUSYBOX_DEFAULT_INSTALL_NO_USR is not set | |
| 299 | + | # CONFIG_BUSYBOX_DEFAULT_LOCALE_SUPPORT is not set | |
| 300 | + | # CONFIG_BUSYBOX_DEFAULT_UNICODE_SUPPORT is not set | |
| 301 | + | # CONFIG_BUSYBOX_DEFAULT_UNICODE_USING_LOCALE is not set | |
| 302 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_UNICODE_IN_ENV is not set | |
| 303 | + | CONFIG_BUSYBOX_DEFAULT_SUBST_WCHAR=0 | |
| 304 | + | CONFIG_BUSYBOX_DEFAULT_LAST_SUPPORTED_WCHAR=0 | |
| 305 | + | # CONFIG_BUSYBOX_DEFAULT_UNICODE_COMBINING_WCHARS is not set | |
| 306 | + | # CONFIG_BUSYBOX_DEFAULT_UNICODE_WIDE_WCHARS is not set | |
| 307 | + | # CONFIG_BUSYBOX_DEFAULT_UNICODE_BIDI_SUPPORT is not set | |
| 308 | + | # CONFIG_BUSYBOX_DEFAULT_UNICODE_NEUTRAL_TABLE is not set | |
| 309 | + | # CONFIG_BUSYBOX_DEFAULT_UNICODE_PRESERVE_BROKEN is not set | |
| 310 | + | CONFIG_BUSYBOX_DEFAULT_LONG_OPTS=y | |
| 311 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_DEVPTS=y | |
| 312 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CLEAN_UP is not set | |
| 313 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UTMP is not set | |
| 314 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_WTMP is not set | |
| 315 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDFILE=y | |
| 316 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID=y | |
| 317 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG is not set | |
| 318 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG_QUIET is not set | |
| 319 | + | # CONFIG_BUSYBOX_DEFAULT_SELINUX is not set | |
| 320 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_PREFER_APPLETS=y | |
| 321 | + | CONFIG_BUSYBOX_DEFAULT_BUSYBOX_EXEC_PATH="/proc/self/exe" | |
| 322 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOG=y | |
| 323 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HAVE_RPC is not set | |
| 324 | + | # CONFIG_BUSYBOX_DEFAULT_STATIC is not set | |
| 325 | + | # CONFIG_BUSYBOX_DEFAULT_PIE is not set | |
| 326 | + | # CONFIG_BUSYBOX_DEFAULT_NOMMU is not set | |
| 327 | + | # CONFIG_BUSYBOX_DEFAULT_BUILD_LIBBUSYBOX is not set | |
| 328 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INDIVIDUAL is not set | |
| 329 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SHARED_BUSYBOX is not set | |
| 330 | + | CONFIG_BUSYBOX_DEFAULT_LFS=y | |
| 331 | + | CONFIG_BUSYBOX_DEFAULT_CROSS_COMPILER_PREFIX="" | |
| 332 | + | CONFIG_BUSYBOX_DEFAULT_EXTRA_CFLAGS="" | |
| 333 | + | # CONFIG_BUSYBOX_DEFAULT_DEBUG is not set | |
| 334 | + | # CONFIG_BUSYBOX_DEFAULT_DEBUG_PESSIMIZE is not set | |
| 335 | + | # CONFIG_BUSYBOX_DEFAULT_WERROR is not set | |
| 336 | + | CONFIG_BUSYBOX_DEFAULT_NO_DEBUG_LIB=y | |
| 337 | + | # CONFIG_BUSYBOX_DEFAULT_DMALLOC is not set | |
| 338 | + | # CONFIG_BUSYBOX_DEFAULT_EFENCE is not set | |
| 339 | + | CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_SYMLINKS=y | |
| 340 | + | # CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_HARDLINKS is not set | |
| 341 | + | # CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_SCRIPT_WRAPPERS is not set | |
| 342 | + | # CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_DONT is not set | |
| 343 | + | # CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_SYMLINK is not set | |
| 344 | + | # CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_HARDLINK is not set | |
| 345 | + | # CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set | |
| 346 | + | CONFIG_BUSYBOX_DEFAULT_PREFIX="./_install" | |
| 347 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSTEMD is not set | |
| 348 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_RTMINMAX is not set | |
| 349 | + | CONFIG_BUSYBOX_DEFAULT_PASSWORD_MINLEN=6 | |
| 350 | + | CONFIG_BUSYBOX_DEFAULT_MD5_SIZE_VS_SPEED=2 | |
| 351 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FAST_TOP=y | |
| 352 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_ETC_NETWORKS is not set | |
| 353 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_TERMIOS is not set | |
| 354 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING=y | |
| 355 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_MAX_LEN=512 | |
| 356 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_VI is not set | |
| 357 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_HISTORY=256 | |
| 358 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_SAVEHISTORY is not set | |
| 359 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_REVERSE_SEARCH is not set | |
| 360 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TAB_COMPLETION=y | |
| 361 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_USERNAME_COMPLETION is not set | |
| 362 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_FANCY_PROMPT=y | |
| 363 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_ASK_TERMINAL is not set | |
| 364 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_NON_POSIX_CP=y | |
| 365 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE_CP_MESSAGE is not set | |
| 366 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_COPYBUF_KB=4 | |
| 367 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SKIP_ROOTFS is not set | |
| 368 | + | # CONFIG_BUSYBOX_DEFAULT_MONOTONIC_SYSCALL is not set | |
| 369 | + | CONFIG_BUSYBOX_DEFAULT_IOCTL_HEX2STR_ERROR=y | |
| 370 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HWIB is not set | |
| 371 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_XZ is not set | |
| 372 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_LZMA is not set | |
| 373 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_BZ2 is not set | |
| 374 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_GZ=y | |
| 375 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_Z is not set | |
| 376 | + | # CONFIG_BUSYBOX_DEFAULT_AR is not set | |
| 377 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_AR_LONG_FILENAMES is not set | |
| 378 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_AR_CREATE is not set | |
| 379 | + | CONFIG_BUSYBOX_DEFAULT_BUNZIP2=y | |
| 380 | + | # CONFIG_BUSYBOX_DEFAULT_BZIP2 is not set | |
| 381 | + | # CONFIG_BUSYBOX_DEFAULT_CPIO is not set | |
| 382 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CPIO_O is not set | |
| 383 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CPIO_P is not set | |
| 384 | + | # CONFIG_BUSYBOX_DEFAULT_DPKG is not set | |
| 385 | + | # CONFIG_BUSYBOX_DEFAULT_DPKG_DEB is not set | |
| 386 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DPKG_DEB_EXTRACT_ONLY is not set | |
| 387 | + | CONFIG_BUSYBOX_DEFAULT_GUNZIP=y | |
| 388 | + | CONFIG_BUSYBOX_DEFAULT_GZIP=y | |
| 389 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_LONG_OPTIONS is not set | |
| 390 | + | # CONFIG_BUSYBOX_DEFAULT_LZOP is not set | |
| 391 | + | # CONFIG_BUSYBOX_DEFAULT_LZOP_COMPR_HIGH is not set | |
| 392 | + | # CONFIG_BUSYBOX_DEFAULT_RPM2CPIO is not set | |
| 393 | + | # CONFIG_BUSYBOX_DEFAULT_RPM is not set | |
| 394 | + | CONFIG_BUSYBOX_DEFAULT_TAR=y | |
| 395 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_CREATE=y | |
| 396 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_AUTODETECT is not set | |
| 397 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_FROM=y | |
| 398 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set | |
| 399 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set | |
| 400 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_GNU_EXTENSIONS=y | |
| 401 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_LONG_OPTIONS is not set | |
| 402 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_TO_COMMAND is not set | |
| 403 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_UNAME_GNAME is not set | |
| 404 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_NOPRESERVE_TIME is not set | |
| 405 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_SELINUX is not set | |
| 406 | + | # CONFIG_BUSYBOX_DEFAULT_UNCOMPRESS is not set | |
| 407 | + | # CONFIG_BUSYBOX_DEFAULT_UNLZMA is not set | |
| 408 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LZMA_FAST is not set | |
| 409 | + | # CONFIG_BUSYBOX_DEFAULT_LZMA is not set | |
| 410 | + | # CONFIG_BUSYBOX_DEFAULT_UNXZ is not set | |
| 411 | + | # CONFIG_BUSYBOX_DEFAULT_XZ is not set | |
| 412 | + | # CONFIG_BUSYBOX_DEFAULT_UNZIP is not set | |
| 413 | + | CONFIG_BUSYBOX_DEFAULT_BASENAME=y | |
| 414 | + | CONFIG_BUSYBOX_DEFAULT_CAT=y | |
| 415 | + | CONFIG_BUSYBOX_DEFAULT_DATE=y | |
| 416 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_ISOFMT=y | |
| 417 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_NANO is not set | |
| 418 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_COMPAT is not set | |
| 419 | + | CONFIG_BUSYBOX_DEFAULT_ID=y | |
| 420 | + | # CONFIG_BUSYBOX_DEFAULT_GROUPS is not set | |
| 421 | + | CONFIG_BUSYBOX_DEFAULT_TEST=y | |
| 422 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TEST_64=y | |
| 423 | + | CONFIG_BUSYBOX_DEFAULT_TOUCH=y | |
| 424 | + | CONFIG_BUSYBOX_DEFAULT_TR=y | |
| 425 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TR_CLASSES is not set | |
| 426 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TR_EQUIV is not set | |
| 427 | + | # CONFIG_BUSYBOX_DEFAULT_BASE64 is not set | |
| 428 | + | # CONFIG_BUSYBOX_DEFAULT_WHO is not set | |
| 429 | + | # CONFIG_BUSYBOX_DEFAULT_USERS is not set | |
| 430 | + | # CONFIG_BUSYBOX_DEFAULT_CAL is not set | |
| 431 | + | # CONFIG_BUSYBOX_DEFAULT_CATV is not set | |
| 432 | + | CONFIG_BUSYBOX_DEFAULT_CHGRP=y | |
| 433 | + | CONFIG_BUSYBOX_DEFAULT_CHMOD=y | |
| 434 | + | CONFIG_BUSYBOX_DEFAULT_CHOWN=y | |
| 435 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS is not set | |
| 436 | + | CONFIG_BUSYBOX_DEFAULT_CHROOT=y | |
| 437 | + | # CONFIG_BUSYBOX_DEFAULT_CKSUM is not set | |
| 438 | + | # CONFIG_BUSYBOX_DEFAULT_COMM is not set | |
| 439 | + | CONFIG_BUSYBOX_DEFAULT_CP=y | |
| 440 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CP_LONG_OPTIONS is not set | |
| 441 | + | CONFIG_BUSYBOX_DEFAULT_CUT=y | |
| 442 | + | CONFIG_BUSYBOX_DEFAULT_DD=y | |
| 443 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_SIGNAL_HANDLING=y | |
| 444 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_THIRD_STATUS_LINE is not set | |
| 445 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_IBS_OBS=y | |
| 446 | + | CONFIG_BUSYBOX_DEFAULT_DF=y | |
| 447 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DF_FANCY is not set | |
| 448 | + | CONFIG_BUSYBOX_DEFAULT_DIRNAME=y | |
| 449 | + | # CONFIG_BUSYBOX_DEFAULT_DOS2UNIX is not set | |
| 450 | + | # CONFIG_BUSYBOX_DEFAULT_UNIX2DOS is not set | |
| 451 | + | CONFIG_BUSYBOX_DEFAULT_DU=y | |
| 452 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y | |
| 453 | + | CONFIG_BUSYBOX_DEFAULT_ECHO=y | |
| 454 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO=y | |
| 455 | + | CONFIG_BUSYBOX_DEFAULT_ENV=y | |
| 456 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_ENV_LONG_OPTIONS is not set | |
| 457 | + | # CONFIG_BUSYBOX_DEFAULT_EXPAND is not set | |
| 458 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_EXPAND_LONG_OPTIONS is not set | |
| 459 | + | CONFIG_BUSYBOX_DEFAULT_EXPR=y | |
| 460 | + | CONFIG_BUSYBOX_DEFAULT_EXPR_MATH_SUPPORT_64=y | |
| 461 | + | CONFIG_BUSYBOX_DEFAULT_FALSE=y | |
| 462 | + | # CONFIG_BUSYBOX_DEFAULT_FOLD is not set | |
| 463 | + | CONFIG_BUSYBOX_DEFAULT_FSYNC=y | |
| 464 | + | CONFIG_BUSYBOX_DEFAULT_HEAD=y | |
| 465 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD=y | |
| 466 | + | CONFIG_BUSYBOX_DEFAULT_HOSTID=y | |
| 467 | + | # CONFIG_BUSYBOX_DEFAULT_INSTALL is not set | |
| 468 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS is not set | |
| 469 | + | CONFIG_BUSYBOX_DEFAULT_LN=y | |
| 470 | + | # CONFIG_BUSYBOX_DEFAULT_LOGNAME is not set | |
| 471 | + | CONFIG_BUSYBOX_DEFAULT_LS=y | |
| 472 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_FILETYPES=y | |
| 473 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_FOLLOWLINKS=y | |
| 474 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_RECURSIVE=y | |
| 475 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_SORTFILES=y | |
| 476 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_TIMESTAMPS=y | |
| 477 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_USERNAME=y | |
| 478 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_COLOR=y | |
| 479 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_COLOR_IS_DEFAULT=y | |
| 480 | + | CONFIG_BUSYBOX_DEFAULT_MD5SUM=y | |
| 481 | + | CONFIG_BUSYBOX_DEFAULT_MKDIR=y | |
| 482 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MKDIR_LONG_OPTIONS is not set | |
| 483 | + | CONFIG_BUSYBOX_DEFAULT_MKFIFO=y | |
| 484 | + | CONFIG_BUSYBOX_DEFAULT_MKNOD=y | |
| 485 | + | CONFIG_BUSYBOX_DEFAULT_MV=y | |
| 486 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MV_LONG_OPTIONS is not set | |
| 487 | + | CONFIG_BUSYBOX_DEFAULT_NICE=y | |
| 488 | + | # CONFIG_BUSYBOX_DEFAULT_NOHUP is not set | |
| 489 | + | # CONFIG_BUSYBOX_DEFAULT_OD is not set | |
| 490 | + | # CONFIG_BUSYBOX_DEFAULT_PRINTENV is not set | |
| 491 | + | CONFIG_BUSYBOX_DEFAULT_PRINTF=y | |
| 492 | + | CONFIG_BUSYBOX_DEFAULT_PWD=y | |
| 493 | + | CONFIG_BUSYBOX_DEFAULT_READLINK=y | |
| 494 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_READLINK_FOLLOW=y | |
| 495 | + | # CONFIG_BUSYBOX_DEFAULT_REALPATH is not set | |
| 496 | + | CONFIG_BUSYBOX_DEFAULT_RM=y | |
| 497 | + | CONFIG_BUSYBOX_DEFAULT_RMDIR=y | |
| 498 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_RMDIR_LONG_OPTIONS is not set | |
| 499 | + | CONFIG_BUSYBOX_DEFAULT_SEQ=y | |
| 500 | + | # CONFIG_BUSYBOX_DEFAULT_SHA1SUM is not set | |
| 501 | + | # CONFIG_BUSYBOX_DEFAULT_SHA256SUM is not set | |
| 502 | + | # CONFIG_BUSYBOX_DEFAULT_SHA512SUM is not set | |
| 503 | + | CONFIG_BUSYBOX_DEFAULT_SLEEP=y | |
| 504 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_SLEEP=y | |
| 505 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FLOAT_SLEEP is not set | |
| 506 | + | CONFIG_BUSYBOX_DEFAULT_SORT=y | |
| 507 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SORT_BIG is not set | |
| 508 | + | # CONFIG_BUSYBOX_DEFAULT_SPLIT is not set | |
| 509 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SPLIT_FANCY is not set | |
| 510 | + | # CONFIG_BUSYBOX_DEFAULT_STAT is not set | |
| 511 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_STAT_FORMAT is not set | |
| 512 | + | # CONFIG_BUSYBOX_DEFAULT_STTY is not set | |
| 513 | + | # CONFIG_BUSYBOX_DEFAULT_SUM is not set | |
| 514 | + | CONFIG_BUSYBOX_DEFAULT_SYNC=y | |
| 515 | + | # CONFIG_BUSYBOX_DEFAULT_TAC is not set | |
| 516 | + | CONFIG_BUSYBOX_DEFAULT_TAIL=y | |
| 517 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_TAIL=y | |
| 518 | + | CONFIG_BUSYBOX_DEFAULT_TEE=y | |
| 519 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TEE_USE_BLOCK_IO=y | |
| 520 | + | CONFIG_BUSYBOX_DEFAULT_TRUE=y | |
| 521 | + | # CONFIG_BUSYBOX_DEFAULT_TTY is not set | |
| 522 | + | CONFIG_BUSYBOX_DEFAULT_UNAME=y | |
| 523 | + | # CONFIG_BUSYBOX_DEFAULT_UNEXPAND is not set | |
| 524 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UNEXPAND_LONG_OPTIONS is not set | |
| 525 | + | CONFIG_BUSYBOX_DEFAULT_UNIQ=y | |
| 526 | + | # CONFIG_BUSYBOX_DEFAULT_USLEEP is not set | |
| 527 | + | # CONFIG_BUSYBOX_DEFAULT_UUDECODE is not set | |
| 528 | + | # CONFIG_BUSYBOX_DEFAULT_UUENCODE is not set | |
| 529 | + | CONFIG_BUSYBOX_DEFAULT_WC=y | |
| 530 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_WC_LARGE is not set | |
| 531 | + | # CONFIG_BUSYBOX_DEFAULT_WHOAMI is not set | |
| 532 | + | CONFIG_BUSYBOX_DEFAULT_YES=y | |
| 533 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_PRESERVE_HARDLINKS=y | |
| 534 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_AUTOWIDTH=y | |
| 535 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_HUMAN_READABLE=y | |
| 536 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_MD5_SHA1_SUM_CHECK=y | |
| 537 | + | # CONFIG_BUSYBOX_DEFAULT_CHVT is not set | |
| 538 | + | # CONFIG_BUSYBOX_DEFAULT_FGCONSOLE is not set | |
| 539 | + | CONFIG_BUSYBOX_DEFAULT_CLEAR=y | |
| 540 | + | # CONFIG_BUSYBOX_DEFAULT_DEALLOCVT is not set | |
| 541 | + | # CONFIG_BUSYBOX_DEFAULT_DUMPKMAP is not set | |
| 542 | + | # CONFIG_BUSYBOX_DEFAULT_KBD_MODE is not set | |
| 543 | + | # CONFIG_BUSYBOX_DEFAULT_LOADFONT is not set | |
| 544 | + | # CONFIG_BUSYBOX_DEFAULT_LOADKMAP is not set | |
| 545 | + | # CONFIG_BUSYBOX_DEFAULT_OPENVT is not set | |
| 546 | + | CONFIG_BUSYBOX_DEFAULT_RESET=y | |
| 547 | + | # CONFIG_BUSYBOX_DEFAULT_RESIZE is not set | |
| 548 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_RESIZE_PRINT is not set | |
| 549 | + | # CONFIG_BUSYBOX_DEFAULT_SETCONSOLE is not set | |
| 550 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SETCONSOLE_LONG_OPTIONS is not set | |
| 551 | + | # CONFIG_BUSYBOX_DEFAULT_SETFONT is not set | |
| 552 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SETFONT_TEXTUAL_MAP is not set | |
| 553 | + | CONFIG_BUSYBOX_DEFAULT_DEFAULT_SETFONT_DIR="" | |
| 554 | + | # CONFIG_BUSYBOX_DEFAULT_SETKEYCODES is not set | |
| 555 | + | # CONFIG_BUSYBOX_DEFAULT_SETLOGCONS is not set | |
| 556 | + | # CONFIG_BUSYBOX_DEFAULT_SHOWKEY is not set | |
| 557 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LOADFONT_PSF2 is not set | |
| 558 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LOADFONT_RAW is not set | |
| 559 | + | CONFIG_BUSYBOX_DEFAULT_MKTEMP=y | |
| 560 | + | # CONFIG_BUSYBOX_DEFAULT_PIPE_PROGRESS is not set | |
| 561 | + | # CONFIG_BUSYBOX_DEFAULT_RUN_PARTS is not set | |
| 562 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_LONG_OPTIONS is not set | |
| 563 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_FANCY is not set | |
| 564 | + | CONFIG_BUSYBOX_DEFAULT_START_STOP_DAEMON=y | |
| 565 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_FANCY is not set | |
| 566 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set | |
| 567 | + | CONFIG_BUSYBOX_DEFAULT_WHICH=y | |
| 568 | + | # CONFIG_BUSYBOX_DEFAULT_PATCH is not set | |
| 569 | + | CONFIG_BUSYBOX_DEFAULT_VI=y | |
| 570 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_MAX_LEN=1024 | |
| 571 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_8BIT is not set | |
| 572 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_COLON=y | |
| 573 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_YANKMARK=y | |
| 574 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SEARCH=y | |
| 575 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_REGEX_SEARCH is not set | |
| 576 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_USE_SIGNALS=y | |
| 577 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_DOT_CMD=y | |
| 578 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_READONLY=y | |
| 579 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SETOPTS=y | |
| 580 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SET=y | |
| 581 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_WIN_RESIZE=y | |
| 582 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_ASK_TERMINAL=y | |
| 583 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_OPTIMIZE_CURSOR=y | |
| 584 | + | CONFIG_BUSYBOX_DEFAULT_AWK=y | |
| 585 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_AWK_LIBM=y | |
| 586 | + | CONFIG_BUSYBOX_DEFAULT_CMP=y | |
| 587 | + | # CONFIG_BUSYBOX_DEFAULT_DIFF is not set | |
| 588 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DIFF_LONG_OPTIONS is not set | |
| 589 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DIFF_DIR is not set | |
| 590 | + | # CONFIG_BUSYBOX_DEFAULT_ED is not set | |
| 591 | + | CONFIG_BUSYBOX_DEFAULT_SED=y | |
| 592 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_ALLOW_EXEC=y | |
| 593 | + | CONFIG_BUSYBOX_DEFAULT_FIND=y | |
| 594 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PRINT0=y | |
| 595 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MTIME is not set | |
| 596 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MMIN is not set | |
| 597 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PERM=y | |
| 598 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_TYPE=y | |
| 599 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_XDEV=y | |
| 600 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MAXDEPTH=y | |
| 601 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_NEWER is not set | |
| 602 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_INUM is not set | |
| 603 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_EXEC=y | |
| 604 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_USER=y | |
| 605 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_GROUP=y | |
| 606 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_NOT=y | |
| 607 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH=y | |
| 608 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PAREN=y | |
| 609 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_SIZE=y | |
| 610 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE=y | |
| 611 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_DELETE is not set | |
| 612 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PATH=y | |
| 613 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_REGEX=y | |
| 614 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_CONTEXT is not set | |
| 615 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_LINKS is not set | |
| 616 | + | CONFIG_BUSYBOX_DEFAULT_GREP=y | |
| 617 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_GREP_EGREP_ALIAS=y | |
| 618 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_GREP_FGREP_ALIAS=y | |
| 619 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_GREP_CONTEXT=y | |
| 620 | + | CONFIG_BUSYBOX_DEFAULT_XARGS=y | |
| 621 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_CONFIRMATION=y | |
| 622 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_QUOTES=y | |
| 623 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_TERMOPT=y | |
| 624 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ZERO_TERM=y | |
| 625 | + | # CONFIG_BUSYBOX_DEFAULT_BOOTCHARTD is not set | |
| 626 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set | |
| 627 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_CONFIG_FILE is not set | |
| 628 | + | CONFIG_BUSYBOX_DEFAULT_HALT=y | |
| 629 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CALL_TELINIT is not set | |
| 630 | + | CONFIG_BUSYBOX_DEFAULT_TELINIT_PATH="" | |
| 631 | + | # CONFIG_BUSYBOX_DEFAULT_INIT is not set | |
| 632 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_INITTAB is not set | |
| 633 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_KILL_REMOVED is not set | |
| 634 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_KILL_DELAY=0 | |
| 635 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_SCTTY is not set | |
| 636 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_SYSLOG is not set | |
| 637 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_EXTRA_QUIET is not set | |
| 638 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_COREDUMPS is not set | |
| 639 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INITRD is not set | |
| 640 | + | CONFIG_BUSYBOX_DEFAULT_INIT_TERMINAL_TYPE="" | |
| 641 | + | # CONFIG_BUSYBOX_DEFAULT_MESG is not set | |
| 642 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MESG_ENABLE_ONLY_GROUP is not set | |
| 643 | + | # CONFIG_BUSYBOX_DEFAULT_ADD_SHELL is not set | |
| 644 | + | # CONFIG_BUSYBOX_DEFAULT_REMOVE_SHELL is not set | |
| 645 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_SHADOWPASSWDS=y | |
| 646 | + | # CONFIG_BUSYBOX_DEFAULT_USE_BB_PWD_GRP is not set | |
| 647 | + | # CONFIG_BUSYBOX_DEFAULT_USE_BB_SHADOW is not set | |
| 648 | + | # CONFIG_BUSYBOX_DEFAULT_USE_BB_CRYPT is not set | |
| 649 | + | # CONFIG_BUSYBOX_DEFAULT_USE_BB_CRYPT_SHA is not set | |
| 650 | + | # CONFIG_BUSYBOX_DEFAULT_ADDUSER is not set | |
| 651 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDUSER_LONG_OPTIONS is not set | |
| 652 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_NAMES is not set | |
| 653 | + | CONFIG_BUSYBOX_DEFAULT_FIRST_SYSTEM_ID=0 | |
| 654 | + | CONFIG_BUSYBOX_DEFAULT_LAST_SYSTEM_ID=0 | |
| 655 | + | # CONFIG_BUSYBOX_DEFAULT_ADDGROUP is not set | |
| 656 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDGROUP_LONG_OPTIONS is not set | |
| 657 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDUSER_TO_GROUP is not set | |
| 658 | + | # CONFIG_BUSYBOX_DEFAULT_DELUSER is not set | |
| 659 | + | # CONFIG_BUSYBOX_DEFAULT_DELGROUP is not set | |
| 660 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DEL_USER_FROM_GROUP is not set | |
| 661 | + | # CONFIG_BUSYBOX_DEFAULT_GETTY is not set | |
| 662 | + | # CONFIG_BUSYBOX_DEFAULT_LOGIN is not set | |
| 663 | + | # CONFIG_BUSYBOX_DEFAULT_PAM is not set | |
| 664 | + | # CONFIG_BUSYBOX_DEFAULT_LOGIN_SCRIPTS is not set | |
| 665 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_NOLOGIN is not set | |
| 666 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SECURETTY is not set | |
| 667 | + | CONFIG_BUSYBOX_DEFAULT_PASSWD=y | |
| 668 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_PASSWD_WEAK_CHECK=y | |
| 669 | + | # CONFIG_BUSYBOX_DEFAULT_CRYPTPW is not set | |
| 670 | + | # CONFIG_BUSYBOX_DEFAULT_CHPASSWD is not set | |
| 671 | + | # CONFIG_BUSYBOX_DEFAULT_SU is not set | |
| 672 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_SYSLOG is not set | |
| 673 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_CHECKS_SHELLS is not set | |
| 674 | + | # CONFIG_BUSYBOX_DEFAULT_SULOGIN is not set | |
| 675 | + | # CONFIG_BUSYBOX_DEFAULT_VLOCK is not set | |
| 676 | + | # CONFIG_BUSYBOX_DEFAULT_CHATTR is not set | |
| 677 | + | # CONFIG_BUSYBOX_DEFAULT_FSCK is not set | |
| 678 | + | # CONFIG_BUSYBOX_DEFAULT_LSATTR is not set | |
| 679 | + | # CONFIG_BUSYBOX_DEFAULT_TUNE2FS is not set | |
| 680 | + | # CONFIG_BUSYBOX_DEFAULT_MODINFO is not set | |
| 681 | + | # CONFIG_BUSYBOX_DEFAULT_MODPROBE_SMALL is not set | |
| 682 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE is not set | |
| 683 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set | |
| 684 | + | # CONFIG_BUSYBOX_DEFAULT_INSMOD is not set | |
| 685 | + | # CONFIG_BUSYBOX_DEFAULT_RMMOD is not set | |
| 686 | + | # CONFIG_BUSYBOX_DEFAULT_LSMOD is not set | |
| 687 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set | |
| 688 | + | # CONFIG_BUSYBOX_DEFAULT_MODPROBE is not set | |
| 689 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_BLACKLIST is not set | |
| 690 | + | # CONFIG_BUSYBOX_DEFAULT_DEPMOD is not set | |
| 691 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_2_4_MODULES is not set | |
| 692 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_TRY_MMAP is not set | |
| 693 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_VERSION_CHECKING is not set | |
| 694 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set | |
| 695 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOADINKMEM is not set | |
| 696 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOAD_MAP is not set | |
| 697 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOAD_MAP_FULL is not set | |
| 698 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_TAINTED_MODULE is not set | |
| 699 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODUTILS_ALIAS is not set | |
| 700 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODUTILS_SYMBOLS is not set | |
| 701 | + | CONFIG_BUSYBOX_DEFAULT_DEFAULT_MODULES_DIR="" | |
| 702 | + | CONFIG_BUSYBOX_DEFAULT_DEFAULT_DEPMOD_FILE="" | |
| 703 | + | # CONFIG_BUSYBOX_DEFAULT_BLOCKDEV is not set | |
| 704 | + | # CONFIG_BUSYBOX_DEFAULT_REV is not set | |
| 705 | + | # CONFIG_BUSYBOX_DEFAULT_ACPID is not set | |
| 706 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_ACPID_COMPAT is not set | |
| 707 | + | # CONFIG_BUSYBOX_DEFAULT_BLKID is not set | |
| 708 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_BLKID_TYPE is not set | |
| 709 | + | CONFIG_BUSYBOX_DEFAULT_DMESG=y | |
| 710 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_DMESG_PRETTY=y | |
| 711 | + | # CONFIG_BUSYBOX_DEFAULT_FBSET is not set | |
| 712 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FBSET_FANCY is not set | |
| 713 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FBSET_READMODE is not set | |
| 714 | + | # CONFIG_BUSYBOX_DEFAULT_FDFLUSH is not set | |
| 715 | + | # CONFIG_BUSYBOX_DEFAULT_FDFORMAT is not set | |
| 716 | + | # CONFIG_BUSYBOX_DEFAULT_FDISK is not set | |
| 717 | + | # CONFIG_BUSYBOX_DEFAULT_FDISK_SUPPORT_LARGE_DISKS is not set | |
| 718 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FDISK_WRITABLE is not set | |
| 719 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_AIX_LABEL is not set | |
| 720 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SGI_LABEL is not set | |
| 721 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SUN_LABEL is not set | |
| 722 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_OSF_LABEL is not set | |
| 723 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_GPT_LABEL is not set | |
| 724 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FDISK_ADVANCED is not set | |
| 725 | + | # CONFIG_BUSYBOX_DEFAULT_FINDFS is not set | |
| 726 | + | # CONFIG_BUSYBOX_DEFAULT_FLOCK is not set | |
| 727 | + | # CONFIG_BUSYBOX_DEFAULT_FREERAMDISK is not set | |
| 728 | + | # CONFIG_BUSYBOX_DEFAULT_FSCK_MINIX is not set | |
| 729 | + | # CONFIG_BUSYBOX_DEFAULT_MKFS_EXT2 is not set | |
| 730 | + | # CONFIG_BUSYBOX_DEFAULT_MKFS_MINIX is not set | |
| 731 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MINIX2 is not set | |
| 732 | + | # CONFIG_BUSYBOX_DEFAULT_MKFS_REISER is not set | |
| 733 | + | # CONFIG_BUSYBOX_DEFAULT_MKFS_VFAT is not set | |
| 734 | + | # CONFIG_BUSYBOX_DEFAULT_GETOPT is not set | |
| 735 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_GETOPT_LONG is not set | |
| 736 | + | CONFIG_BUSYBOX_DEFAULT_HEXDUMP=y | |
| 737 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HEXDUMP_REVERSE is not set | |
| 738 | + | # CONFIG_BUSYBOX_DEFAULT_HD is not set | |
| 739 | + | CONFIG_BUSYBOX_DEFAULT_HWCLOCK=y | |
| 740 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HWCLOCK_LONG_OPTIONS is not set | |
| 741 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HWCLOCK_ADJTIME_FHS is not set | |
| 742 | + | # CONFIG_BUSYBOX_DEFAULT_IPCRM is not set | |
| 743 | + | # CONFIG_BUSYBOX_DEFAULT_IPCS is not set | |
| 744 | + | # CONFIG_BUSYBOX_DEFAULT_LOSETUP is not set | |
| 745 | + | # CONFIG_BUSYBOX_DEFAULT_LSPCI is not set | |
| 746 | + | # CONFIG_BUSYBOX_DEFAULT_LSUSB is not set | |
| 747 | + | # CONFIG_BUSYBOX_DEFAULT_MDEV is not set | |
| 748 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_CONF is not set | |
| 749 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_RENAME is not set | |
| 750 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_RENAME_REGEXP is not set | |
| 751 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_EXEC is not set | |
| 752 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_LOAD_FIRMWARE is not set | |
| 753 | + | CONFIG_BUSYBOX_DEFAULT_MKSWAP=y | |
| 754 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MKSWAP_UUID is not set | |
| 755 | + | # CONFIG_BUSYBOX_DEFAULT_MORE is not set | |
| 756 | + | CONFIG_BUSYBOX_DEFAULT_MOUNT=y | |
| 757 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FAKE is not set | |
| 758 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_VERBOSE is not set | |
| 759 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_HELPERS=y | |
| 760 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LABEL is not set | |
| 761 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_NFS is not set | |
| 762 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_CIFS=y | |
| 763 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FLAGS=y | |
| 764 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FSTAB=y | |
| 765 | + | CONFIG_BUSYBOX_DEFAULT_PIVOT_ROOT=y | |
| 766 | + | # CONFIG_BUSYBOX_DEFAULT_RDATE is not set | |
| 767 | + | # CONFIG_BUSYBOX_DEFAULT_RDEV is not set | |
| 768 | + | # CONFIG_BUSYBOX_DEFAULT_READPROFILE is not set | |
| 769 | + | # CONFIG_BUSYBOX_DEFAULT_RTCWAKE is not set | |
| 770 | + | # CONFIG_BUSYBOX_DEFAULT_SCRIPT is not set | |
| 771 | + | # CONFIG_BUSYBOX_DEFAULT_SCRIPTREPLAY is not set | |
| 772 | + | # CONFIG_BUSYBOX_DEFAULT_SETARCH is not set | |
| 773 | + | # CONFIG_BUSYBOX_DEFAULT_SWAPONOFF is not set | |
| 774 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SWAPON_PRI is not set | |
| 775 | + | CONFIG_BUSYBOX_DEFAULT_SWITCH_ROOT=y | |
| 776 | + | CONFIG_BUSYBOX_DEFAULT_UMOUNT=y | |
| 777 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_UMOUNT_ALL=y | |
| 778 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LOOP=y | |
| 779 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LOOP_CREATE is not set | |
| 780 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MTAB_SUPPORT is not set | |
| 781 | + | # CONFIG_BUSYBOX_DEFAULT_VOLUMEID is not set | |
| 782 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_EXT is not set | |
| 783 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_BTRFS is not set | |
| 784 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_REISERFS is not set | |
| 785 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_FAT is not set | |
| 786 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_HFS is not set | |
| 787 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_JFS is not set | |
| 788 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_XFS is not set | |
| 789 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_NTFS is not set | |
| 790 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_ISO9660 is not set | |
| 791 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_UDF is not set | |
| 792 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LUKS is not set | |
| 793 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LINUXSWAP is not set | |
| 794 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_CRAMFS is not set | |
| 795 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_ROMFS is not set | |
| 796 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_SYSV is not set | |
| 797 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_OCFS2 is not set | |
| 798 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LINUXRAID is not set | |
| 799 | + | # CONFIG_BUSYBOX_DEFAULT_CONSPY is not set | |
| 800 | + | CONFIG_BUSYBOX_DEFAULT_LESS=y | |
| 801 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_MAXLINES=9999999 | |
| 802 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_BRACKETS is not set | |
| 803 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_FLAGS is not set | |
| 804 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_MARKS is not set | |
| 805 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_REGEXP is not set | |
| 806 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_WINCH is not set | |
| 807 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_ASK_TERMINAL is not set | |
| 808 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_DASHCMD is not set | |
| 809 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_LINENUMS is not set | |
| 810 | + | # CONFIG_BUSYBOX_DEFAULT_NANDWRITE is not set | |
| 811 | + | # CONFIG_BUSYBOX_DEFAULT_NANDDUMP is not set | |
| 812 | + | # CONFIG_BUSYBOX_DEFAULT_SETSERIAL is not set | |
| 813 | + | # CONFIG_BUSYBOX_DEFAULT_UBIATTACH is not set | |
| 814 | + | # CONFIG_BUSYBOX_DEFAULT_UBIDETACH is not set | |
| 815 | + | # CONFIG_BUSYBOX_DEFAULT_UBIMKVOL is not set | |
| 816 | + | # CONFIG_BUSYBOX_DEFAULT_UBIRMVOL is not set | |
| 817 | + | # CONFIG_BUSYBOX_DEFAULT_UBIRSVOL is not set | |
| 818 | + | # CONFIG_BUSYBOX_DEFAULT_UBIUPDATEVOL is not set | |
| 819 | + | # CONFIG_BUSYBOX_DEFAULT_ADJTIMEX is not set | |
| 820 | + | # CONFIG_BUSYBOX_DEFAULT_BBCONFIG is not set | |
| 821 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_COMPRESS_BBCONFIG is not set | |
| 822 | + | # CONFIG_BUSYBOX_DEFAULT_BEEP is not set | |
| 823 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_BEEP_FREQ=0 | |
| 824 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_BEEP_LENGTH_MS=0 | |
| 825 | + | # CONFIG_BUSYBOX_DEFAULT_CHAT is not set | |
| 826 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_NOFAIL is not set | |
| 827 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_TTY_HIFI is not set | |
| 828 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_IMPLICIT_CR is not set | |
| 829 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_SWALLOW_OPTS is not set | |
| 830 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_SEND_ESCAPES is not set | |
| 831 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_VAR_ABORT_LEN is not set | |
| 832 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_CLR_ABORT is not set | |
| 833 | + | # CONFIG_BUSYBOX_DEFAULT_CHRT is not set | |
| 834 | + | CONFIG_BUSYBOX_DEFAULT_CROND=y | |
| 835 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_D is not set | |
| 836 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_CALL_SENDMAIL is not set | |
| 837 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_DIR="/var/spool/cron" | |
| 838 | + | CONFIG_BUSYBOX_DEFAULT_CRONTAB=y | |
| 839 | + | # CONFIG_BUSYBOX_DEFAULT_DC is not set | |
| 840 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DC_LIBM is not set | |
| 841 | + | # CONFIG_BUSYBOX_DEFAULT_DEVFSD is not set | |
| 842 | + | # CONFIG_BUSYBOX_DEFAULT_DEVFSD_MODLOAD is not set | |
| 843 | + | # CONFIG_BUSYBOX_DEFAULT_DEVFSD_FG_NP is not set | |
| 844 | + | # CONFIG_BUSYBOX_DEFAULT_DEVFSD_VERBOSE is not set | |
| 845 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_DEVFS is not set | |
| 846 | + | CONFIG_BUSYBOX_DEFAULT_DEVMEM=y | |
| 847 | + | # CONFIG_BUSYBOX_DEFAULT_EJECT is not set | |
| 848 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_EJECT_SCSI is not set | |
| 849 | + | # CONFIG_BUSYBOX_DEFAULT_FBSPLASH is not set | |
| 850 | + | # CONFIG_BUSYBOX_DEFAULT_FLASHCP is not set | |
| 851 | + | # CONFIG_BUSYBOX_DEFAULT_FLASH_LOCK is not set | |
| 852 | + | # CONFIG_BUSYBOX_DEFAULT_FLASH_UNLOCK is not set | |
| 853 | + | # CONFIG_BUSYBOX_DEFAULT_FLASH_ERASEALL is not set | |
| 854 | + | # CONFIG_BUSYBOX_DEFAULT_IONICE is not set | |
| 855 | + | # CONFIG_BUSYBOX_DEFAULT_INOTIFYD is not set | |
| 856 | + | # CONFIG_BUSYBOX_DEFAULT_LAST is not set | |
| 857 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LAST_SMALL is not set | |
| 858 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LAST_FANCY is not set | |
| 859 | + | # CONFIG_BUSYBOX_DEFAULT_HDPARM is not set | |
| 860 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_GET_IDENTITY is not set | |
| 861 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set | |
| 862 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set | |
| 863 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set | |
| 864 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set | |
| 865 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_GETSET_DMA is not set | |
| 866 | + | CONFIG_BUSYBOX_DEFAULT_LOCK=y | |
| 867 | + | # CONFIG_BUSYBOX_DEFAULT_MAKEDEVS is not set | |
| 868 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MAKEDEVS_LEAF is not set | |
| 869 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_MAKEDEVS_TABLE is not set | |
| 870 | + | # CONFIG_BUSYBOX_DEFAULT_MAN is not set | |
| 871 | + | # CONFIG_BUSYBOX_DEFAULT_MICROCOM is not set | |
| 872 | + | # CONFIG_BUSYBOX_DEFAULT_MOUNTPOINT is not set | |
| 873 | + | # CONFIG_BUSYBOX_DEFAULT_MT is not set | |
| 874 | + | # CONFIG_BUSYBOX_DEFAULT_RAIDAUTORUN is not set | |
| 875 | + | # CONFIG_BUSYBOX_DEFAULT_READAHEAD is not set | |
| 876 | + | # CONFIG_BUSYBOX_DEFAULT_RFKILL is not set | |
| 877 | + | # CONFIG_BUSYBOX_DEFAULT_RUNLEVEL is not set | |
| 878 | + | # CONFIG_BUSYBOX_DEFAULT_RX is not set | |
| 879 | + | # CONFIG_BUSYBOX_DEFAULT_SETSID is not set | |
| 880 | + | CONFIG_BUSYBOX_DEFAULT_STRINGS=y | |
| 881 | + | # CONFIG_BUSYBOX_DEFAULT_TASKSET is not set | |
| 882 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TASKSET_FANCY is not set | |
| 883 | + | CONFIG_BUSYBOX_DEFAULT_TIME=y | |
| 884 | + | # CONFIG_BUSYBOX_DEFAULT_TIMEOUT is not set | |
| 885 | + | # CONFIG_BUSYBOX_DEFAULT_TTYSIZE is not set | |
| 886 | + | # CONFIG_BUSYBOX_DEFAULT_VOLNAME is not set | |
| 887 | + | # CONFIG_BUSYBOX_DEFAULT_WALL is not set | |
| 888 | + | # CONFIG_BUSYBOX_DEFAULT_WATCHDOG is not set | |
| 889 | + | # CONFIG_BUSYBOX_DEFAULT_NAMEIF is not set | |
| 890 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_NAMEIF_EXTENDED is not set | |
| 891 | + | # CONFIG_BUSYBOX_DEFAULT_NBDCLIENT is not set | |
| 892 | + | CONFIG_BUSYBOX_DEFAULT_NC=y | |
| 893 | + | # CONFIG_BUSYBOX_DEFAULT_NC_SERVER is not set | |
| 894 | + | # CONFIG_BUSYBOX_DEFAULT_NC_EXTRA is not set | |
| 895 | + | # CONFIG_BUSYBOX_DEFAULT_NC_110_COMPAT is not set | |
| 896 | + | CONFIG_BUSYBOX_DEFAULT_PING=y | |
| 897 | + | CONFIG_BUSYBOX_DEFAULT_PING6=y | |
| 898 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_PING=y | |
| 899 | + | # CONFIG_BUSYBOX_DEFAULT_WHOIS is not set | |
| 900 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_IPV6=y | |
| 901 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UNIX_LOCAL is not set | |
| 902 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_PREFER_IPV4_ADDRESS=y | |
| 903 | + | CONFIG_BUSYBOX_DEFAULT_VERBOSE_RESOLUTION_ERRORS=y | |
| 904 | + | # CONFIG_BUSYBOX_DEFAULT_ARP is not set | |
| 905 | + | CONFIG_BUSYBOX_DEFAULT_ARPING=y | |
| 906 | + | CONFIG_BUSYBOX_DEFAULT_BRCTL=y | |
| 907 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_BRCTL_FANCY=y | |
| 908 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_BRCTL_SHOW=y | |
| 909 | + | # CONFIG_BUSYBOX_DEFAULT_DNSD is not set | |
| 910 | + | # CONFIG_BUSYBOX_DEFAULT_ETHER_WAKE is not set | |
| 911 | + | # CONFIG_BUSYBOX_DEFAULT_FAKEIDENTD is not set | |
| 912 | + | # CONFIG_BUSYBOX_DEFAULT_FTPD is not set | |
| 913 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FTP_WRITE is not set | |
| 914 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPD_ACCEPT_BROKEN_LIST is not set | |
| 915 | + | # CONFIG_BUSYBOX_DEFAULT_FTPGET is not set | |
| 916 | + | # CONFIG_BUSYBOX_DEFAULT_FTPPUT is not set | |
| 917 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPGETPUT_LONG_OPTIONS is not set | |
| 918 | + | # CONFIG_BUSYBOX_DEFAULT_HOSTNAME is not set | |
| 919 | + | # CONFIG_BUSYBOX_DEFAULT_HTTPD is not set | |
| 920 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_RANGES is not set | |
| 921 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_USE_SENDFILE is not set | |
| 922 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_SETUID is not set | |
| 923 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_BASIC_AUTH is not set | |
| 924 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_AUTH_MD5 is not set | |
| 925 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_CGI is not set | |
| 926 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set | |
| 927 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set | |
| 928 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_ENCODE_URL_STR is not set | |
| 929 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_ERROR_PAGES is not set | |
| 930 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_PROXY is not set | |
| 931 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_GZIP is not set | |
| 932 | + | CONFIG_BUSYBOX_DEFAULT_IFCONFIG=y | |
| 933 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_STATUS=y | |
| 934 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_SLIP is not set | |
| 935 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set | |
| 936 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_HW=y | |
| 937 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_BROADCAST_PLUS=y | |
| 938 | + | # CONFIG_BUSYBOX_DEFAULT_IFENSLAVE is not set | |
| 939 | + | # CONFIG_BUSYBOX_DEFAULT_IFPLUGD is not set | |
| 940 | + | # CONFIG_BUSYBOX_DEFAULT_IFUPDOWN is not set | |
| 941 | + | CONFIG_BUSYBOX_DEFAULT_IFUPDOWN_IFSTATE_PATH="" | |
| 942 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP is not set | |
| 943 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP_BUILTIN is not set | |
| 944 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set | |
| 945 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV4 is not set | |
| 946 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV6 is not set | |
| 947 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_MAPPING is not set | |
| 948 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set | |
| 949 | + | # CONFIG_BUSYBOX_DEFAULT_INETD is not set | |
| 950 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set | |
| 951 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set | |
| 952 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set | |
| 953 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set | |
| 954 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set | |
| 955 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_RPC is not set | |
| 956 | + | # CONFIG_BUSYBOX_DEFAULT_IP is not set | |
| 957 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ADDRESS is not set | |
| 958 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_LINK is not set | |
| 959 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ROUTE is not set | |
| 960 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_TUNNEL is not set | |
| 961 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_RULE is not set | |
| 962 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_SHORT_FORMS is not set | |
| 963 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_RARE_PROTOCOLS is not set | |
| 964 | + | # CONFIG_BUSYBOX_DEFAULT_IPADDR is not set | |
| 965 | + | # CONFIG_BUSYBOX_DEFAULT_IPLINK is not set | |
| 966 | + | # CONFIG_BUSYBOX_DEFAULT_IPROUTE is not set | |
| 967 | + | # CONFIG_BUSYBOX_DEFAULT_IPTUNNEL is not set | |
| 968 | + | # CONFIG_BUSYBOX_DEFAULT_IPRULE is not set | |
| 969 | + | # CONFIG_BUSYBOX_DEFAULT_IPCALC is not set | |
| 970 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IPCALC_FANCY is not set | |
| 971 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IPCALC_LONG_OPTIONS is not set | |
| 972 | + | CONFIG_BUSYBOX_DEFAULT_NETMSG=y | |
| 973 | + | CONFIG_BUSYBOX_DEFAULT_NETSTAT=y | |
| 974 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_NETSTAT_WIDE=y | |
| 975 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_NETSTAT_PRG=y | |
| 976 | + | CONFIG_BUSYBOX_DEFAULT_NSLOOKUP=y | |
| 977 | + | CONFIG_BUSYBOX_DEFAULT_NTPD=y | |
| 978 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_NTPD_SERVER=y | |
| 979 | + | # CONFIG_BUSYBOX_DEFAULT_PSCAN is not set | |
| 980 | + | CONFIG_BUSYBOX_DEFAULT_ROUTE=y | |
| 981 | + | # CONFIG_BUSYBOX_DEFAULT_SLATTACH is not set | |
| 982 | + | # CONFIG_BUSYBOX_DEFAULT_TCPSVD is not set | |
| 983 | + | CONFIG_BUSYBOX_DEFAULT_TELNET=y | |
| 984 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE=y | |
| 985 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN is not set | |
| 986 | + | CONFIG_BUSYBOX_DEFAULT_TELNETD=y | |
| 987 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNETD_STANDALONE=y | |
| 988 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNETD_INETD_WAIT is not set | |
| 989 | + | # CONFIG_BUSYBOX_DEFAULT_TFTP is not set | |
| 990 | + | # CONFIG_BUSYBOX_DEFAULT_TFTPD is not set | |
| 991 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_GET is not set | |
| 992 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_PUT is not set | |
| 993 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_BLOCKSIZE is not set | |
| 994 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_PROGRESS_BAR is not set | |
| 995 | + | # CONFIG_BUSYBOX_DEFAULT_TFTP_DEBUG is not set | |
| 996 | + | CONFIG_BUSYBOX_DEFAULT_TRACEROUTE=y | |
| 997 | + | # CONFIG_BUSYBOX_DEFAULT_TRACEROUTE6 is not set | |
| 998 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_VERBOSE=y | |
| 999 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set | |
| 1000 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_USE_ICMP is not set | |
| 1001 | + | # CONFIG_BUSYBOX_DEFAULT_TUNCTL is not set | |
| 1002 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TUNCTL_UG is not set | |
| 1003 | + | # CONFIG_BUSYBOX_DEFAULT_UDHCPD is not set | |
| 1004 | + | # CONFIG_BUSYBOX_DEFAULT_DHCPRELAY is not set | |
| 1005 | + | # CONFIG_BUSYBOX_DEFAULT_DUMPLEASES is not set | |
| 1006 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set | |
| 1007 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set | |
| 1008 | + | CONFIG_BUSYBOX_DEFAULT_DHCPD_LEASES_FILE="" | |
| 1009 | + | CONFIG_BUSYBOX_DEFAULT_UDHCPC=y | |
| 1010 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC_ARPING is not set | |
| 1011 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_PORT is not set | |
| 1012 | + | CONFIG_BUSYBOX_DEFAULT_UDHCP_DEBUG=0 | |
| 1013 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_RFC3397=y | |
| 1014 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_8021Q is not set | |
| 1015 | + | CONFIG_BUSYBOX_DEFAULT_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" | |
| 1016 | + | CONFIG_BUSYBOX_DEFAULT_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 | |
| 1017 | + | CONFIG_BUSYBOX_DEFAULT_IFUPDOWN_UDHCPC_CMD_OPTIONS="" | |
| 1018 | + | # CONFIG_BUSYBOX_DEFAULT_UDPSVD is not set | |
| 1019 | + | CONFIG_BUSYBOX_DEFAULT_VCONFIG=y | |
| 1020 | + | CONFIG_BUSYBOX_DEFAULT_WGET=y | |
| 1021 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_STATUSBAR=y | |
| 1022 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_AUTHENTICATION=y | |
| 1023 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_LONG_OPTIONS=y | |
| 1024 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_TIMEOUT is not set | |
| 1025 | + | # CONFIG_BUSYBOX_DEFAULT_ZCIP is not set | |
| 1026 | + | # CONFIG_BUSYBOX_DEFAULT_LPD is not set | |
| 1027 | + | # CONFIG_BUSYBOX_DEFAULT_LPR is not set | |
| 1028 | + | # CONFIG_BUSYBOX_DEFAULT_LPQ is not set | |
| 1029 | + | # CONFIG_BUSYBOX_DEFAULT_MAKEMIME is not set | |
| 1030 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_MIME_CHARSET="" | |
| 1031 | + | # CONFIG_BUSYBOX_DEFAULT_POPMAILDIR is not set | |
| 1032 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_POPMAILDIR_DELIVERY is not set | |
| 1033 | + | # CONFIG_BUSYBOX_DEFAULT_REFORMIME is not set | |
| 1034 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_REFORMIME_COMPAT is not set | |
| 1035 | + | # CONFIG_BUSYBOX_DEFAULT_SENDMAIL is not set | |
| 1036 | + | # CONFIG_BUSYBOX_DEFAULT_IOSTAT is not set | |
| 1037 | + | # CONFIG_BUSYBOX_DEFAULT_MPSTAT is not set | |
| 1038 | + | # CONFIG_BUSYBOX_DEFAULT_NMETER is not set | |
| 1039 | + | # CONFIG_BUSYBOX_DEFAULT_PMAP is not set | |
| 1040 | + | # CONFIG_BUSYBOX_DEFAULT_POWERTOP is not set | |
| 1041 | + | # CONFIG_BUSYBOX_DEFAULT_PSTREE is not set | |
| 1042 | + | # CONFIG_BUSYBOX_DEFAULT_PWDX is not set | |
| 1043 | + | # CONFIG_BUSYBOX_DEFAULT_SMEMCAP is not set | |
| 1044 | + | CONFIG_BUSYBOX_DEFAULT_UPTIME=y | |
| 1045 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_UPTIME_UTMP_SUPPORT is not set | |
| 1046 | + | CONFIG_BUSYBOX_DEFAULT_FREE=y | |
| 1047 | + | # CONFIG_BUSYBOX_DEFAULT_FUSER is not set | |
| 1048 | + | CONFIG_BUSYBOX_DEFAULT_KILL=y | |
| 1049 | + | CONFIG_BUSYBOX_DEFAULT_KILLALL=y | |
| 1050 | + | # CONFIG_BUSYBOX_DEFAULT_KILLALL5 is not set | |
| 1051 | + | CONFIG_BUSYBOX_DEFAULT_PGREP=y | |
| 1052 | + | CONFIG_BUSYBOX_DEFAULT_PIDOF=y | |
| 1053 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDOF_SINGLE is not set | |
| 1054 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDOF_OMIT is not set | |
| 1055 | + | # CONFIG_BUSYBOX_DEFAULT_PKILL is not set | |
| 1056 | + | CONFIG_BUSYBOX_DEFAULT_PS=y | |
| 1057 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_WIDE=y | |
| 1058 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_TIME is not set | |
| 1059 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_ADDITIONAL_COLUMNS is not set | |
| 1060 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_UNUSUAL_SYSTEMS is not set | |
| 1061 | + | # CONFIG_BUSYBOX_DEFAULT_RENICE is not set | |
| 1062 | + | CONFIG_BUSYBOX_DEFAULT_BB_SYSCTL=y | |
| 1063 | + | CONFIG_BUSYBOX_DEFAULT_TOP=y | |
| 1064 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y | |
| 1065 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y | |
| 1066 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_SMP_CPU is not set | |
| 1067 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_DECIMALS is not set | |
| 1068 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_SMP_PROCESS is not set | |
| 1069 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOPMEM is not set | |
| 1070 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SHOW_THREADS is not set | |
| 1071 | + | # CONFIG_BUSYBOX_DEFAULT_WATCH is not set | |
| 1072 | + | # CONFIG_BUSYBOX_DEFAULT_RUNSV is not set | |
| 1073 | + | # CONFIG_BUSYBOX_DEFAULT_RUNSVDIR is not set | |
| 1074 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_RUNSVDIR_LOG is not set | |
| 1075 | + | # CONFIG_BUSYBOX_DEFAULT_SV is not set | |
| 1076 | + | CONFIG_BUSYBOX_DEFAULT_SV_DEFAULT_SERVICE_DIR="" | |
| 1077 | + | # CONFIG_BUSYBOX_DEFAULT_SVLOGD is not set | |
| 1078 | + | # CONFIG_BUSYBOX_DEFAULT_CHPST is not set | |
| 1079 | + | # CONFIG_BUSYBOX_DEFAULT_SETUIDGID is not set | |
| 1080 | + | # CONFIG_BUSYBOX_DEFAULT_ENVUIDGID is not set | |
| 1081 | + | # CONFIG_BUSYBOX_DEFAULT_ENVDIR is not set | |
| 1082 | + | # CONFIG_BUSYBOX_DEFAULT_SOFTLIMIT is not set | |
| 1083 | + | # CONFIG_BUSYBOX_DEFAULT_CHCON is not set | |
| 1084 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHCON_LONG_OPTIONS is not set | |
| 1085 | + | # CONFIG_BUSYBOX_DEFAULT_GETENFORCE is not set | |
| 1086 | + | # CONFIG_BUSYBOX_DEFAULT_GETSEBOOL is not set | |
| 1087 | + | # CONFIG_BUSYBOX_DEFAULT_LOAD_POLICY is not set | |
| 1088 | + | # CONFIG_BUSYBOX_DEFAULT_MATCHPATHCON is not set | |
| 1089 | + | # CONFIG_BUSYBOX_DEFAULT_RESTORECON is not set | |
| 1090 | + | # CONFIG_BUSYBOX_DEFAULT_RUNCON is not set | |
| 1091 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_RUNCON_LONG_OPTIONS is not set | |
| 1092 | + | # CONFIG_BUSYBOX_DEFAULT_SELINUXENABLED is not set | |
| 1093 | + | # CONFIG_BUSYBOX_DEFAULT_SETENFORCE is not set | |
| 1094 | + | # CONFIG_BUSYBOX_DEFAULT_SETFILES is not set | |
| 1095 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SETFILES_CHECK_OPTION is not set | |
| 1096 | + | # CONFIG_BUSYBOX_DEFAULT_SETSEBOOL is not set | |
| 1097 | + | # CONFIG_BUSYBOX_DEFAULT_SESTATUS is not set | |
| 1098 | + | CONFIG_BUSYBOX_DEFAULT_ASH=y | |
| 1099 | + | CONFIG_BUSYBOX_DEFAULT_ASH_BASH_COMPAT=y | |
| 1100 | + | # CONFIG_BUSYBOX_DEFAULT_ASH_IDLE_TIMEOUT is not set | |
| 1101 | + | CONFIG_BUSYBOX_DEFAULT_ASH_JOB_CONTROL=y | |
| 1102 | + | CONFIG_BUSYBOX_DEFAULT_ASH_ALIAS=y | |
| 1103 | + | CONFIG_BUSYBOX_DEFAULT_ASH_GETOPTS=y | |
| 1104 | + | CONFIG_BUSYBOX_DEFAULT_ASH_BUILTIN_ECHO=y | |
| 1105 | + | CONFIG_BUSYBOX_DEFAULT_ASH_BUILTIN_PRINTF=y | |
| 1106 | + | CONFIG_BUSYBOX_DEFAULT_ASH_BUILTIN_TEST=y | |
| 1107 | + | CONFIG_BUSYBOX_DEFAULT_ASH_CMDCMD=y | |
| 1108 | + | # CONFIG_BUSYBOX_DEFAULT_ASH_MAIL is not set | |
| 1109 | + | # CONFIG_BUSYBOX_DEFAULT_ASH_OPTIMIZE_FOR_SIZE is not set | |
| 1110 | + | # CONFIG_BUSYBOX_DEFAULT_ASH_RANDOM_SUPPORT is not set | |
| 1111 | + | CONFIG_BUSYBOX_DEFAULT_ASH_EXPAND_PRMT=y | |
| 1112 | + | # CONFIG_BUSYBOX_DEFAULT_CTTYHACK is not set | |
| 1113 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH is not set | |
| 1114 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_BASH_COMPAT is not set | |
| 1115 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_BRACE_EXPANSION is not set | |
| 1116 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_HELP is not set | |
| 1117 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_INTERACTIVE is not set | |
| 1118 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_SAVEHISTORY is not set | |
| 1119 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_JOB is not set | |
| 1120 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_TICK is not set | |
| 1121 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_IF is not set | |
| 1122 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_LOOPS is not set | |
| 1123 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_CASE is not set | |
| 1124 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_FUNCTIONS is not set | |
| 1125 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_LOCAL is not set | |
| 1126 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_RANDOM_SUPPORT is not set | |
| 1127 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_EXPORT_N is not set | |
| 1128 | + | # CONFIG_BUSYBOX_DEFAULT_HUSH_MODE_X is not set | |
| 1129 | + | # CONFIG_BUSYBOX_DEFAULT_MSH is not set | |
| 1130 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_IS_ASH=y | |
| 1131 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_IS_HUSH is not set | |
| 1132 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_IS_NONE is not set | |
| 1133 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_BASH_IS_ASH is not set | |
| 1134 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_BASH_IS_HUSH is not set | |
| 1135 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_BASH_IS_NONE=y | |
| 1136 | + | CONFIG_BUSYBOX_DEFAULT_SH_MATH_SUPPORT=y | |
| 1137 | + | CONFIG_BUSYBOX_DEFAULT_SH_MATH_SUPPORT_64=y | |
| 1138 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_EXTRA_QUIET is not set | |
| 1139 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_STANDALONE is not set | |
| 1140 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_NOFORK is not set | |
| 1141 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_HISTFILESIZE is not set | |
| 1142 | + | # CONFIG_BUSYBOX_DEFAULT_SYSLOGD is not set | |
| 1143 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_ROTATE_LOGFILE is not set | |
| 1144 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_REMOTE_LOG is not set | |
| 1145 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_DUP is not set | |
| 1146 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_CFG is not set | |
| 1147 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 | |
| 1148 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_IPC_SYSLOG is not set | |
| 1149 | + | CONFIG_BUSYBOX_DEFAULT_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 | |
| 1150 | + | # CONFIG_BUSYBOX_DEFAULT_LOGREAD is not set | |
| 1151 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_LOGREAD_REDUCED_LOCKING is not set | |
| 1152 | + | # CONFIG_BUSYBOX_DEFAULT_KLOGD is not set | |
| 1153 | + | # CONFIG_BUSYBOX_DEFAULT_FEATURE_KLOGD_KLOGCTL is not set | |
| 1154 | + | CONFIG_BUSYBOX_DEFAULT_LOGGER=y | |
| 1155 | + | # CONFIG_PACKAGE_ca-certificates is not set | |
| 1156 | + | # CONFIG_PACKAGE_dash is not set | |
| 1157 | + | CONFIG_PACKAGE_dnsmasq=y | |
| 1158 | + | # CONFIG_PACKAGE_dnsmasq-dhcpv6 is not set | |
| 1159 | + | CONFIG_PACKAGE_dropbear=y | |
| 1160 | + | ||
| 1161 | + | # | |
| 1162 | + | # Configuration | |
| 1163 | + | # | |
| 1164 | + | # CONFIG_DROPBEAR_ECC is not set | |
| 1165 | + | # CONFIG_PACKAGE_ead is not set | |
| 1166 | + | CONFIG_PACKAGE_firewall=y | |
| 1167 | + | CONFIG_PACKAGE_fstools=y | |
| 1168 | + | # CONFIG_PACKAGE_hsflowd is not set | |
| 1169 | + | # CONFIG_PACKAGE_jsonpath is not set | |
| 1170 | + | CONFIG_PACKAGE_libc=y | |
| 1171 | + | CONFIG_PACKAGE_libgcc=y | |
| 1172 | + | CONFIG_PACKAGE_libpthread=m | |
| 1173 | + | CONFIG_PACKAGE_librt=m | |
| 1174 | + | # CONFIG_PACKAGE_libstdcpp is not set | |
| 1175 | + | # CONFIG_PACKAGE_libthread-db is not set | |
| 1176 | + | CONFIG_PACKAGE_mkelfimage=y | |
| 1177 | + | # CONFIG_PACKAGE_mksh is not set | |
| 1178 | + | CONFIG_PACKAGE_mtd=y | |
| 1179 | + | CONFIG_PACKAGE_netifd=y | |
| 1180 | + | # CONFIG_PACKAGE_om-watchdog is not set | |
| 1181 | + | CONFIG_PACKAGE_opkg=y | |
| 1182 | + | # CONFIG_PACKAGE_opkg-smime is not set | |
| 1183 | + | CONFIG_PACKAGE_procd=y | |
| 1184 | + | # CONFIG_PACKAGE_qos-scripts is not set | |
| 1185 | + | # CONFIG_PACKAGE_resolveip is not set | |
| 1186 | + | # CONFIG_PACKAGE_rpcd is not set | |
| 1187 | + | # CONFIG_PACKAGE_sflowovsd is not set | |
| 1188 | + | # CONFIG_PACKAGE_swconfig is not set | |
| 1189 | + | # CONFIG_PACKAGE_ubi-flash is not set | |
| 1190 | + | CONFIG_PACKAGE_ubox=y | |
| 1191 | + | CONFIG_PACKAGE_ubus=y | |
| 1192 | + | CONFIG_PACKAGE_ubusd=y | |
| 1193 | + | CONFIG_PACKAGE_uci=y | |
| 1194 | + | # CONFIG_PACKAGE_udev is not set | |
| 1195 | + | # CONFIG_PACKAGE_wireless-tools is not set | |
| 1196 | + | # CONFIG_PACKAGE_zram-swap is not set | |
| 1197 | + | ||
| 1198 | + | # | |
| 1199 | + | # Administration | |
| 1200 | + | # | |
| 1201 | + | ||
| 1202 | + | # | |
| 1203 | + | # Pmacct suite | |
| 1204 | + | # | |
| 1205 | + | # CONFIG_PACKAGE_nfacctd is not set | |
| 1206 | + | # CONFIG_PACKAGE_nfacctd-mysql is not set | |
| 1207 | + | # CONFIG_PACKAGE_nfacctd-pgsql is not set | |
| 1208 | + | # CONFIG_PACKAGE_nfacctd-sqlite is not set | |
| 1209 | + | # CONFIG_PACKAGE_pmacct-client is not set | |
| 1210 | + | # CONFIG_PACKAGE_pmacctd is not set | |
| 1211 | + | # CONFIG_PACKAGE_pmacctd-mysql is not set | |
| 1212 | + | # CONFIG_PACKAGE_pmacctd-pgsql is not set | |
| 1213 | + | # CONFIG_PACKAGE_pmacctd-sqlite is not set | |
| 1214 | + | # CONFIG_PACKAGE_sfacctd is not set | |
| 1215 | + | # CONFIG_PACKAGE_sfacctd-mysql is not set | |
| 1216 | + | # CONFIG_PACKAGE_sfacctd-pgsql is not set | |
| 1217 | + | # CONFIG_PACKAGE_sfacctd-sqlite is not set | |
| 1218 | + | # CONFIG_PACKAGE_uacctd is not set | |
| 1219 | + | # CONFIG_PACKAGE_uacctd-mysql is not set | |
| 1220 | + | # CONFIG_PACKAGE_uacctd-pgsql is not set | |
| 1221 | + | # CONFIG_PACKAGE_uacctd-sqlite is not set | |
| 1222 | + | ||
| 1223 | + | # | |
| 1224 | + | # zabbix | |
| 1225 | + | # | |
| 1226 | + | # CONFIG_PACKAGE_zabbix-agent is not set | |
| 1227 | + | # CONFIG_PACKAGE_zabbix-agentd is not set | |
| 1228 | + | # CONFIG_PACKAGE_zabbix-extra-network is not set | |
| 1229 | + | # CONFIG_PACKAGE_zabbix-extra-wifi is not set | |
| 1230 | + | # CONFIG_PACKAGE_zabbix-get is not set | |
| 1231 | + | # CONFIG_PACKAGE_zabbix-proxy is not set | |
| 1232 | + | # CONFIG_PACKAGE_zabbix-sender is not set | |
| 1233 | + | # CONFIG_PACKAGE_zabbix-server is not set | |
| 1234 | + | # CONFIG_PACKAGE_asterisk11-gui is not set | |
| 1235 | + | # CONFIG_PACKAGE_asterisk18-gui is not set | |
| 1236 | + | # CONFIG_PACKAGE_debootstrap is not set | |
| 1237 | + | # CONFIG_PACKAGE_facter is not set | |
| 1238 | + | # CONFIG_PACKAGE_gkrellmd is not set | |
| 1239 | + | # CONFIG_PACKAGE_htop is not set | |
| 1240 | + | # CONFIG_PACKAGE_monit is not set | |
| 1241 | + | # CONFIG_PACKAGE_monit-nossl is not set | |
| 1242 | + | # CONFIG_PACKAGE_muninlite is not set | |
| 1243 | + | # CONFIG_PACKAGE_nagios is not set | |
| 1244 | + | # CONFIG_PACKAGE_nagios-plugins is not set | |
| 1245 | + | # CONFIG_PACKAGE_nrpe is not set | |
| 1246 | + | # CONFIG_PACKAGE_osirisd is not set | |
| 1247 | + | # CONFIG_PACKAGE_ostiary is not set | |
| 1248 | + | # CONFIG_PACKAGE_send-nsca is not set | |
| 1249 | + | # CONFIG_PACKAGE_sudo is not set | |
| 1250 | + | # CONFIG_PACKAGE_syslog-ng is not set | |
| 1251 | + | # CONFIG_PACKAGE_syslog-ng3 is not set | |
| 1252 | + | ||
| 1253 | + | # | |
| 1254 | + | # Boot Loaders | |
| 1255 | + | # | |
| 1256 | + | # CONFIG_PACKAGE_lilo is not set | |
| 1257 | + | ||
| 1258 | + | # | |
| 1259 | + | # Development | |
| 1260 | + | # | |
| 1261 | + | # CONFIG_PACKAGE_binutils is not set | |
| 1262 | + | # CONFIG_PACKAGE_cppunit is not set | |
| 1263 | + | # CONFIG_PACKAGE_diffutils is not set | |
| 1264 | + | # CONFIG_PACKAGE_gdb is not set | |
| 1265 | + | # CONFIG_PACKAGE_gdbserver is not set | |
| 1266 | + | # CONFIG_PACKAGE_lttng-tools is not set | |
| 1267 | + | # CONFIG_PACKAGE_make is not set | |
| 1268 | + | # CONFIG_PACKAGE_objdump is not set | |
| 1269 | + | # CONFIG_PACKAGE_patch is not set | |
| 1270 | + | # CONFIG_PACKAGE_perf is not set | |
| 1271 | + | # CONFIG_PACKAGE_python-sip is not set | |
| 1272 | + | # CONFIG_PACKAGE_sysprof is not set | |
| 1273 | + | # CONFIG_PACKAGE_tig is not set | |
| 1274 | + | # CONFIG_PACKAGE_trace-cmd is not set | |
| 1275 | + | # CONFIG_PACKAGE_trace-cmd-extra is not set | |
| 1276 | + | # CONFIG_PACKAGE_valgrind is not set | |
| 1277 | + | ||
| 1278 | + | # | |
| 1279 | + | # Emulators | |
| 1280 | + | # | |
| 1281 | + | ||
| 1282 | + | # | |
| 1283 | + | # Firmware | |
| 1284 | + | # | |
| 1285 | + | ||
| 1286 | + | # | |
| 1287 | + | # Kernel modules | |
| 1288 | + | # | |
| 1289 | + | ||
| 1290 | + | # | |
| 1291 | + | # Block Devices | |
| 1292 | + | # | |
| 1293 | + | # CONFIG_PACKAGE_kmod-aoe is not set | |
| 1294 | + | # CONFIG_PACKAGE_kmod-ata-core is not set | |
| 1295 | + | # CONFIG_PACKAGE_kmod-block2mtd is not set | |
| 1296 | + | # CONFIG_PACKAGE_kmod-dm is not set | |
| 1297 | + | # CONFIG_PACKAGE_kmod-ide-core is not set | |
| 1298 | + | # CONFIG_PACKAGE_kmod-libsas is not set | |
| 1299 | + | # CONFIG_PACKAGE_kmod-loop is not set | |
| 1300 | + | # CONFIG_PACKAGE_kmod-md-mod is not set | |
| 1301 | + | # CONFIG_PACKAGE_kmod-mvsas is not set | |
| 1302 | + | # CONFIG_PACKAGE_kmod-nbd is not set | |
| 1303 | + | # CONFIG_PACKAGE_kmod-scsi-cdrom is not set | |
| 1304 | + | # CONFIG_PACKAGE_kmod-scsi-core is not set | |
| 1305 | + | # CONFIG_PACKAGE_kmod-scsi-generic is not set | |
| 1306 | + | ||
| 1307 | + | # | |
| 1308 | + | # CAN Support | |
| 1309 | + | # | |
| 1310 | + | # CONFIG_PACKAGE_kmod-can is not set | |
| 1311 | + | ||
| 1312 | + | # | |
| 1313 | + | # Cryptographic API modules | |
| 1314 | + | # | |
| 1315 | + | # CONFIG_PACKAGE_kmod-crypto-aes is not set | |
| 1316 | + | # CONFIG_PACKAGE_kmod-crypto-arc4 is not set | |
| 1317 | + | # CONFIG_PACKAGE_kmod-crypto-authenc is not set | |
| 1318 | + | # CONFIG_PACKAGE_kmod-crypto-cbc is not set | |
| 1319 | + | # CONFIG_PACKAGE_kmod-crypto-core is not set | |
| 1320 | + | # CONFIG_PACKAGE_kmod-crypto-crc32c is not set | |
| 1321 | + | # CONFIG_PACKAGE_kmod-crypto-deflate is not set | |
| 1322 | + | # CONFIG_PACKAGE_kmod-crypto-des is not set | |
| 1323 | + | # CONFIG_PACKAGE_kmod-crypto-ecb is not set | |
| 1324 | + | # CONFIG_PACKAGE_kmod-crypto-hash is not set | |
| 1325 | + | # CONFIG_PACKAGE_kmod-crypto-hmac is not set | |
| 1326 | + | # CONFIG_PACKAGE_kmod-crypto-hw-geode is not set | |
| 1327 | + | # CONFIG_PACKAGE_kmod-crypto-hw-hifn-795x is not set | |
| 1328 | + | # CONFIG_PACKAGE_kmod-crypto-hw-padlock is not set | |
| 1329 | + | # CONFIG_PACKAGE_kmod-crypto-hw-talitos is not set | |
| 1330 | + | # CONFIG_PACKAGE_kmod-crypto-iv is not set | |
| 1331 | + | # CONFIG_PACKAGE_kmod-crypto-manager is not set | |
| 1332 | + | # CONFIG_PACKAGE_kmod-crypto-md4 is not set | |
| 1333 | + | # CONFIG_PACKAGE_kmod-crypto-md5 is not set | |
| 1334 | + | # CONFIG_PACKAGE_kmod-crypto-michael-mic is not set | |
| 1335 | + | # CONFIG_PACKAGE_kmod-crypto-misc is not set | |
| 1336 | + | # CONFIG_PACKAGE_kmod-crypto-null is not set | |
| 1337 | + | # CONFIG_PACKAGE_kmod-crypto-ocf is not set | |
| 1338 | + | # CONFIG_PACKAGE_kmod-crypto-pcompress is not set | |
| 1339 | + | # CONFIG_PACKAGE_kmod-crypto-rng is not set | |
| 1340 | + | # CONFIG_PACKAGE_kmod-crypto-sha1 is not set | |
| 1341 | + | # CONFIG_PACKAGE_kmod-crypto-sha256 is not set | |
| 1342 | + | # CONFIG_PACKAGE_kmod-crypto-test is not set | |
| 1343 | + | # CONFIG_PACKAGE_kmod-crypto-user is not set | |
| 1344 | + | # CONFIG_PACKAGE_kmod-crypto-wq is not set | |
| 1345 | + | # CONFIG_PACKAGE_kmod-crypto-xts is not set | |
| 1346 | + | # CONFIG_PACKAGE_kmod-loop-aes is not set | |
| 1347 | + | ||
| 1348 | + | # | |
| 1349 | + | # Filesystems | |
| 1350 | + | # | |
| 1351 | + | # CONFIG_PACKAGE_kmod-fs-autofs4 is not set | |
| 1352 | + | # CONFIG_PACKAGE_kmod-fs-btrfs is not set | |
| 1353 | + | # CONFIG_PACKAGE_kmod-fs-cifs is not set | |
| 1354 | + | # CONFIG_PACKAGE_kmod-fs-configfs is not set | |
| 1355 | + | # CONFIG_PACKAGE_kmod-fs-exportfs is not set | |
| 1356 | + | # CONFIG_PACKAGE_kmod-fs-ext4 is not set | |
| 1357 | + | # CONFIG_PACKAGE_kmod-fs-hfs is not set | |
| 1358 | + | # CONFIG_PACKAGE_kmod-fs-hfsplus is not set | |
| 1359 | + | # CONFIG_PACKAGE_kmod-fs-isofs is not set | |
| 1360 | + | # CONFIG_PACKAGE_kmod-fs-jfs is not set | |
| 1361 | + | # CONFIG_PACKAGE_kmod-fs-minix is not set | |
| 1362 | + | # CONFIG_PACKAGE_kmod-fs-msdos is not set | |
| 1363 | + | # CONFIG_PACKAGE_kmod-fs-nfs is not set | |
| 1364 | + | # CONFIG_PACKAGE_kmod-fs-nfs-common is not set | |
| 1365 | + | # CONFIG_PACKAGE_kmod-fs-nfsd is not set | |
| 1366 | + | # CONFIG_PACKAGE_kmod-fs-ntfs is not set | |
| 1367 | + | # CONFIG_PACKAGE_kmod-fs-reiserfs is not set | |
| 1368 | + | # CONFIG_PACKAGE_kmod-fs-udf is not set | |
| 1369 | + | # CONFIG_PACKAGE_kmod-fs-vfat is not set | |
| 1370 | + | # CONFIG_PACKAGE_kmod-fs-xfs is not set | |
| 1371 | + | # CONFIG_PACKAGE_kmod-fuse is not set | |
| 1372 | + | ||
| 1373 | + | # | |
| 1374 | + | # FireWire support | |
| 1375 | + | # | |
| 1376 | + | # CONFIG_PACKAGE_kmod-firewire is not set | |
| 1377 | + | ||
| 1378 | + | # | |
| 1379 | + | # Hardware Monitoring Support | |
| 1380 | + | # | |
| 1381 | + | CONFIG_PACKAGE_kmod-hwmon-core=y | |
| 1382 | + | # CONFIG_PACKAGE_kmod-hwmon-adt7410 is not set | |
| 1383 | + | # CONFIG_PACKAGE_kmod-hwmon-adt7475 is not set | |
| 1384 | + | # CONFIG_PACKAGE_kmod-hwmon-gsc is not set | |
| 1385 | + | # CONFIG_PACKAGE_kmod-hwmon-ina2xx is not set | |
| 1386 | + | # CONFIG_PACKAGE_kmod-hwmon-lm63 is not set | |
| 1387 | + | # CONFIG_PACKAGE_kmod-hwmon-lm75 is not set | |
| 1388 | + | # CONFIG_PACKAGE_kmod-hwmon-lm77 is not set | |
| 1389 | + | # CONFIG_PACKAGE_kmod-hwmon-lm85 is not set | |
| 1390 | + | # CONFIG_PACKAGE_kmod-hwmon-lm90 is not set | |
| 1391 | + | # CONFIG_PACKAGE_kmod-hwmon-lm92 is not set | |
| 1392 | + | # CONFIG_PACKAGE_kmod-hwmon-lm95241 is not set | |
| 1393 | + | # CONFIG_PACKAGE_kmod-hwmon-pc87360 is not set | |
| 1394 | + | # CONFIG_PACKAGE_kmod-hwmon-sht21 is not set | |
| 1395 | + | # CONFIG_PACKAGE_kmod-hwmon-vid is not set | |
| 1396 | + | # CONFIG_PACKAGE_kmod-hwmon-w83627hf is not set | |
| 1397 | + | ||
| 1398 | + | # | |
| 1399 | + | # I2C support | |
| 1400 | + | # | |
| 1401 | + | # CONFIG_PACKAGE_kmod-i2c-core is not set | |
| 1402 | + | ||
| 1403 | + | # | |
| 1404 | + | # Input modules | |
| 1405 | + | # | |
| 1406 | + | # CONFIG_PACKAGE_kmod-acpi-button is not set | |
| 1407 | + | # CONFIG_PACKAGE_kmod-hid is not set | |
| 1408 | + | # CONFIG_PACKAGE_kmod-hid-generic is not set | |
| 1409 | + | # CONFIG_PACKAGE_kmod-input-core is not set | |
| 1410 | + | # CONFIG_PACKAGE_kmod-input-evdev is not set | |
| 1411 | + | # CONFIG_PACKAGE_kmod-input-joydev is not set | |
| 1412 | + | # CONFIG_PACKAGE_kmod-input-matrixkmap is not set | |
| 1413 | + | # CONFIG_PACKAGE_kmod-input-polldev is not set | |
| 1414 | + | ||
| 1415 | + | # | |
| 1416 | + | # LED modules | |
| 1417 | + | # | |
| 1418 | + | # CONFIG_PACKAGE_kmod-leds-net48xx is not set | |
| 1419 | + | # CONFIG_PACKAGE_kmod-leds-wrap is not set | |
| 1420 | + | # CONFIG_PACKAGE_kmod-ledtrig-default-on is not set | |
| 1421 | + | # CONFIG_PACKAGE_kmod-ledtrig-gpio is not set | |
| 1422 | + | # CONFIG_PACKAGE_kmod-ledtrig-heartbeat is not set | |
| 1423 | + | # CONFIG_PACKAGE_kmod-ledtrig-morse is not set | |
| 1424 | + | # CONFIG_PACKAGE_kmod-ledtrig-netdev is not set | |
| 1425 | + | # CONFIG_PACKAGE_kmod-ledtrig-netfilter is not set | |
| 1426 | + | # CONFIG_PACKAGE_kmod-ledtrig-oneshot is not set | |
| 1427 | + | # CONFIG_PACKAGE_kmod-ledtrig-timer is not set | |
| 1428 | + | ||
| 1429 | + | # | |
| 1430 | + | # Libraries | |
| 1431 | + | # | |
| 1432 | + | # CONFIG_PACKAGE_kmod-lib-cordic is not set | |
| 1433 | + | CONFIG_PACKAGE_kmod-lib-crc-ccitt=y | |
| 1434 | + | # CONFIG_PACKAGE_kmod-lib-crc-itu-t is not set | |
| 1435 | + | # CONFIG_PACKAGE_kmod-lib-crc16 is not set | |
| 1436 | + | # CONFIG_PACKAGE_kmod-lib-crc32c is not set | |
| 1437 | + | # CONFIG_PACKAGE_kmod-lib-crc7 is not set | |
| 1438 | + | # CONFIG_PACKAGE_kmod-lib-crc8 is not set | |
| 1439 | + | # CONFIG_PACKAGE_kmod-lib-lzo is not set | |
| 1440 | + | # CONFIG_PACKAGE_kmod-lib-textsearch is not set | |
| 1441 | + | # CONFIG_PACKAGE_kmod-lib-zlib is not set | |
| 1442 | + | ||
| 1443 | + | # | |
| 1444 | + | # Native Language Support | |
| 1445 | + | # | |
| 1446 | + | # CONFIG_PACKAGE_kmod-nls-base is not set | |
| 1447 | + | # CONFIG_PACKAGE_kmod-nls-cp1250 is not set | |
| 1448 | + | # CONFIG_PACKAGE_kmod-nls-cp1251 is not set | |
| 1449 | + | # CONFIG_PACKAGE_kmod-nls-cp437 is not set | |
| 1450 | + | # CONFIG_PACKAGE_kmod-nls-cp775 is not set | |
| 1451 | + | # CONFIG_PACKAGE_kmod-nls-cp850 is not set | |
| 1452 | + | # CONFIG_PACKAGE_kmod-nls-cp852 is not set | |
| 1453 | + | # CONFIG_PACKAGE_kmod-nls-cp862 is not set | |
| 1454 | + | # CONFIG_PACKAGE_kmod-nls-cp864 is not set | |
| 1455 | + | # CONFIG_PACKAGE_kmod-nls-cp866 is not set | |
| 1456 | + | # CONFIG_PACKAGE_kmod-nls-iso8859-1 is not set | |
| 1457 | + | # CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set | |
| 1458 | + | # CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set | |
| 1459 | + | # CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set | |
| 1460 | + | # CONFIG_PACKAGE_kmod-nls-iso8859-6 is not set | |
| 1461 | + | # CONFIG_PACKAGE_kmod-nls-iso8859-8 is not set | |
| 1462 | + | # CONFIG_PACKAGE_kmod-nls-koi8r is not set | |
| 1463 | + | # CONFIG_PACKAGE_kmod-nls-utf8 is not set | |
| 1464 | + | ||
| 1465 | + | # | |
| 1466 | + | # Netfilter Extensions | |
| 1467 | + | # | |
| 1468 | + | # CONFIG_PACKAGE_kmod-arptables is not set | |
| 1469 | + | # CONFIG_PACKAGE_kmod-ebtables is not set | |
| 1470 | + | CONFIG_PACKAGE_kmod-ip6tables=y | |
| 1471 | + | # CONFIG_PACKAGE_kmod-ipt-account is not set | |
| 1472 | + | # CONFIG_PACKAGE_kmod-ipt-chaos is not set | |
| 1473 | + | # CONFIG_PACKAGE_kmod-ipt-compat-xtables is not set | |
| 1474 | + | # CONFIG_PACKAGE_kmod-ipt-condition is not set | |
| 1475 | + | CONFIG_PACKAGE_kmod-ipt-conntrack=y | |
| 1476 | + | # CONFIG_PACKAGE_kmod-ipt-conntrack-extra is not set | |
| 1477 | + | CONFIG_PACKAGE_kmod-ipt-core=y | |
| 1478 | + | # CONFIG_PACKAGE_kmod-ipt-debug is not set | |
| 1479 | + | # CONFIG_PACKAGE_kmod-ipt-delude is not set | |
| 1480 | + | # CONFIG_PACKAGE_kmod-ipt-dhcpmac is not set | |
| 1481 | + | # CONFIG_PACKAGE_kmod-ipt-dnetmap is not set | |
| 1482 | + | # CONFIG_PACKAGE_kmod-ipt-extra is not set | |
| 1483 | + | # CONFIG_PACKAGE_kmod-ipt-filter is not set | |
| 1484 | + | # CONFIG_PACKAGE_kmod-ipt-fuzzy is not set | |
| 1485 | + | # CONFIG_PACKAGE_kmod-ipt-geoip is not set | |
| 1486 | + | # CONFIG_PACKAGE_kmod-ipt-hashlimit is not set | |
| 1487 | + | # CONFIG_PACKAGE_kmod-ipt-iface is not set | |
| 1488 | + | # CONFIG_PACKAGE_kmod-ipt-ipmark is not set | |
| 1489 | + | # CONFIG_PACKAGE_kmod-ipt-ipopt is not set | |
| 1490 | + | # CONFIG_PACKAGE_kmod-ipt-ipp2p is not set | |
| 1491 | + | # CONFIG_PACKAGE_kmod-ipt-iprange is not set | |
| 1492 | + | # CONFIG_PACKAGE_kmod-ipt-ipsec is not set | |
| 1493 | + | # CONFIG_PACKAGE_kmod-ipt-ipset is not set | |
| 1494 | + | # CONFIG_PACKAGE_kmod-ipt-ipv4options is not set | |
| 1495 | + | # CONFIG_PACKAGE_kmod-ipt-led is not set | |
| 1496 | + | # CONFIG_PACKAGE_kmod-ipt-length2 is not set | |
| 1497 | + | # CONFIG_PACKAGE_kmod-ipt-logmark is not set | |
| 1498 | + | # CONFIG_PACKAGE_kmod-ipt-lscan is not set | |
| 1499 | + | # CONFIG_PACKAGE_kmod-ipt-lua is not set | |
| 1500 | + | CONFIG_PACKAGE_kmod-ipt-nat=y | |
| 1501 | + | # CONFIG_PACKAGE_kmod-ipt-nat-extra is not set | |
| 1502 | + | # CONFIG_PACKAGE_kmod-ipt-nat6 is not set | |
| 1503 | + | CONFIG_PACKAGE_kmod-ipt-nathelper=y | |
| 1504 | + | # CONFIG_PACKAGE_kmod-ipt-nathelper-extra is not set | |
| 1505 | + | # CONFIG_PACKAGE_kmod-ipt-nathelper-rtsp is not set | |
| 1506 | + | # CONFIG_PACKAGE_kmod-ipt-psd is not set | |
| 1507 | + | # CONFIG_PACKAGE_kmod-ipt-queue is not set | |
| 1508 | + | # CONFIG_PACKAGE_kmod-ipt-quota2 is not set | |
| 1509 | + | # CONFIG_PACKAGE_kmod-ipt-rawnat is not set | |
| 1510 | + | # CONFIG_PACKAGE_kmod-ipt-rawpost is not set | |
| 1511 | + | # CONFIG_PACKAGE_kmod-ipt-steal is not set | |
| 1512 | + | # CONFIG_PACKAGE_kmod-ipt-sysrq is not set | |
| 1513 | + | # CONFIG_PACKAGE_kmod-ipt-tarpit is not set | |
| 1514 | + | # CONFIG_PACKAGE_kmod-ipt-tee is not set | |
| 1515 | + | # CONFIG_PACKAGE_kmod-ipt-tproxy is not set | |
| 1516 | + | # CONFIG_PACKAGE_kmod-ipt-u32 is not set | |
| 1517 | + | # CONFIG_PACKAGE_kmod-ipt-ulog is not set | |
| 1518 | + | # CONFIG_PACKAGE_kmod-nf-conntrack-netlink is not set | |
| 1519 | + | # CONFIG_PACKAGE_kmod-nfnetlink is not set | |
| 1520 | + | # CONFIG_PACKAGE_kmod-nfnetlink-log is not set | |
| 1521 | + | # CONFIG_PACKAGE_kmod-nfnetlink-queue is not set | |
| 1522 | + | ||
| 1523 | + | # | |
| 1524 | + | # Network Devices | |
| 1525 | + | # | |
| 1526 | + | CONFIG_PACKAGE_kmod-3c59x=y | |
| 1527 | + | # CONFIG_PACKAGE_kmod-8139cp is not set | |
| 1528 | + | CONFIG_PACKAGE_kmod-8139too=y | |
| 1529 | + | # CONFIG_PACKAGE_kmod-atl1 is not set | |
| 1530 | + | # CONFIG_PACKAGE_kmod-atl1c is not set | |
| 1531 | + | # CONFIG_PACKAGE_kmod-atl1e is not set | |
| 1532 | + | # CONFIG_PACKAGE_kmod-atl2 is not set | |
| 1533 | + | # CONFIG_PACKAGE_kmod-b44 is not set | |
| 1534 | + | # CONFIG_PACKAGE_kmod-dm9000 is not set | |
| 1535 | + | # CONFIG_PACKAGE_kmod-dummy is not set | |
| 1536 | + | CONFIG_PACKAGE_kmod-e100=y | |
| 1537 | + | CONFIG_PACKAGE_kmod-e1000=y | |
| 1538 | + | # CONFIG_PACKAGE_kmod-e1000e is not set | |
| 1539 | + | # CONFIG_PACKAGE_kmod-et131x is not set | |
| 1540 | + | # CONFIG_PACKAGE_kmod-forcedeth is not set | |
| 1541 | + | # CONFIG_PACKAGE_kmod-gigaset is not set | |
| 1542 | + | # CONFIG_PACKAGE_kmod-hfcmulti is not set | |
| 1543 | + | # CONFIG_PACKAGE_kmod-hfcpci is not set | |
| 1544 | + | # CONFIG_PACKAGE_kmod-ifb is not set | |
| 1545 | + | CONFIG_PACKAGE_kmod-libphy=y | |
| 1546 | + | # CONFIG_PACKAGE_kmod-macvlan is not set | |
| 1547 | + | CONFIG_PACKAGE_kmod-mii=y | |
| 1548 | + | CONFIG_PACKAGE_kmod-natsemi=y | |
| 1549 | + | CONFIG_PACKAGE_kmod-ne2k-pci=y | |
| 1550 | + | # CONFIG_PACKAGE_kmod-of-mdio is not set | |
| 1551 | + | CONFIG_PACKAGE_kmod-pcnet32=y | |
| 1552 | + | # CONFIG_PACKAGE_kmod-r6040 is not set | |
| 1553 | + | CONFIG_PACKAGE_kmod-r8169=y | |
| 1554 | + | # CONFIG_PACKAGE_kmod-siit is not set | |
| 1555 | + | # CONFIG_PACKAGE_kmod-sis190 is not set | |
| 1556 | + | CONFIG_PACKAGE_kmod-sis900=y | |
| 1557 | + | # CONFIG_PACKAGE_kmod-skge is not set | |
| 1558 | + | # CONFIG_PACKAGE_kmod-sky2 is not set | |
| 1559 | + | # CONFIG_PACKAGE_kmod-solos-pci is not set | |
| 1560 | + | # CONFIG_PACKAGE_kmod-swconfig is not set | |
| 1561 | + | # CONFIG_PACKAGE_kmod-switch-ip17xx is not set | |
| 1562 | + | CONFIG_PACKAGE_kmod-tg3=y | |
| 1563 | + | # CONFIG_PACKAGE_kmod-tulip is not set | |
| 1564 | + | CONFIG_PACKAGE_kmod-via-rhine=y | |
| 1565 | + | CONFIG_PACKAGE_kmod-via-velocity=y | |
| 1566 | + | # CONFIG_PACKAGE_kmod-vmxnet3 is not set | |
| 1567 | + | ||
| 1568 | + | # | |
| 1569 | + | # Network Support | |
| 1570 | + | # | |
| 1571 | + | # CONFIG_PACKAGE_kmod-8021q is not set | |
| 1572 | + | # CONFIG_PACKAGE_kmod-appletalk is not set | |
| 1573 | + | # CONFIG_PACKAGE_kmod-atm is not set | |
| 1574 | + | # CONFIG_PACKAGE_kmod-ax25 is not set | |
| 1575 | + | # CONFIG_PACKAGE_kmod-bonding is not set | |
| 1576 | + | # CONFIG_PACKAGE_kmod-bridge is not set | |
| 1577 | + | # CONFIG_PACKAGE_kmod-capi is not set | |
| 1578 | + | # CONFIG_PACKAGE_kmod-gre is not set | |
| 1579 | + | # CONFIG_PACKAGE_kmod-gre6 is not set | |
| 1580 | + | # CONFIG_PACKAGE_kmod-ip6-tunnel is not set | |
| 1581 | + | # CONFIG_PACKAGE_kmod-ipip is not set | |
| 1582 | + | # CONFIG_PACKAGE_kmod-ipsec is not set | |
| 1583 | + | # CONFIG_PACKAGE_kmod-iptunnel6 is not set | |
| 1584 | + | CONFIG_PACKAGE_kmod-ipv6=y | |
| 1585 | + | # CONFIG_PACKAGE_kmod-isdn4linux is not set | |
| 1586 | + | # CONFIG_PACKAGE_kmod-l2tp is not set | |
| 1587 | + | # CONFIG_PACKAGE_kmod-l2tp-eth is not set | |
| 1588 | + | # CONFIG_PACKAGE_kmod-l2tp-ip is not set | |
| 1589 | + | # CONFIG_PACKAGE_kmod-llc is not set | |
| 1590 | + | # CONFIG_PACKAGE_kmod-misdn is not set | |
| 1591 | + | # CONFIG_PACKAGE_kmod-mp-alg is not set | |
| 1592 | + | # CONFIG_PACKAGE_kmod-netem is not set | |
| 1593 | + | # CONFIG_PACKAGE_kmod-openswan is not set | |
| 1594 | + | # CONFIG_PACKAGE_kmod-pktgen is not set | |
| 1595 | + | CONFIG_PACKAGE_kmod-ppp=y | |
| 1596 | + | # CONFIG_PACKAGE_kmod-mppe is not set | |
| 1597 | + | # CONFIG_PACKAGE_kmod-ppp-synctty is not set | |
| 1598 | + | # CONFIG_PACKAGE_kmod-pppoa is not set | |
| 1599 | + | CONFIG_PACKAGE_kmod-pppoe=y | |
| 1600 | + | # CONFIG_PACKAGE_kmod-pppol2tp is not set | |
| 1601 | + | CONFIG_PACKAGE_kmod-pppox=y | |
| 1602 | + | # CONFIG_PACKAGE_kmod-pptp is not set | |
| 1603 | + | # CONFIG_PACKAGE_kmod-sched is not set | |
| 1604 | + | # CONFIG_PACKAGE_kmod-sched-connmark is not set | |
| 1605 | + | # CONFIG_PACKAGE_kmod-sched-core is not set | |
| 1606 | + | # CONFIG_PACKAGE_kmod-sched-esfq is not set | |
| 1607 | + | # CONFIG_PACKAGE_kmod-sctp is not set | |
| 1608 | + | # CONFIG_PACKAGE_kmod-sit is not set | |
| 1609 | + | CONFIG_PACKAGE_kmod-slhc=y | |
| 1610 | + | # CONFIG_PACKAGE_kmod-slip is not set | |
| 1611 | + | # CONFIG_PACKAGE_kmod-stp is not set | |
| 1612 | + | # CONFIG_PACKAGE_kmod-trelay is not set | |
| 1613 | + | # CONFIG_PACKAGE_kmod-tun is not set | |
| 1614 | + | # CONFIG_PACKAGE_kmod-veth is not set | |
| 1615 | + | # CONFIG_PACKAGE_kmod-wprobe is not set | |
| 1616 | + | ||
| 1617 | + | # | |
| 1618 | + | # Other modules | |
| 1619 | + | # | |
| 1620 | + | # CONFIG_PACKAGE_kmod-bcma is not set | |
| 1621 | + | # CONFIG_PACKAGE_kmod-bluetooth is not set | |
| 1622 | + | # CONFIG_PACKAGE_kmod-button-hotplug is not set | |
| 1623 | + | # CONFIG_PACKAGE_kmod-cpu-msr is not set | |
| 1624 | + | # CONFIG_PACKAGE_kmod-cs5535-clockevt is not set | |
| 1625 | + | # CONFIG_PACKAGE_kmod-cs5535-mfd is not set | |
| 1626 | + | # CONFIG_PACKAGE_kmod-cs5535-mfgpt is not set | |
| 1627 | + | # CONFIG_PACKAGE_kmod-eeprom-93cx6 is not set | |
| 1628 | + | # CONFIG_PACKAGE_kmod-eeprom-at24 is not set | |
| 1629 | + | # CONFIG_PACKAGE_kmod-eeprom-at25 is not set | |
| 1630 | + | # CONFIG_PACKAGE_kmod-gpio-button-hotplug is not set | |
| 1631 | + | # CONFIG_PACKAGE_kmod-gpio-cs5535-new is not set | |
| 1632 | + | # CONFIG_PACKAGE_kmod-gpio-nsc is not set | |
| 1633 | + | # CONFIG_PACKAGE_kmod-gpio-nxp-74hc164 is not set | |
| 1634 | + | # CONFIG_PACKAGE_kmod-gpio-pc8736x is not set | |
| 1635 | + | # CONFIG_PACKAGE_kmod-gpio-scx200 is not set | |
| 1636 | + | # CONFIG_PACKAGE_kmod-gpiotoggling is not set | |
| 1637 | + | # CONFIG_PACKAGE_kmod-iio-core is not set | |
| 1638 | + | # CONFIG_PACKAGE_kmod-ikconfig is not set | |
| 1639 | + | # CONFIG_PACKAGE_kmod-mmc is not set | |
| 1640 | + | # CONFIG_PACKAGE_kmod-mtdtests is not set | |
| 1641 | + | # CONFIG_PACKAGE_kmod-nand is not set | |
| 1642 | + | # CONFIG_PACKAGE_kmod-nandsim is not set | |
| 1643 | + | CONFIG_PACKAGE_kmod-pps=y | |
| 1644 | + | CONFIG_PACKAGE_kmod-ptp=y | |
| 1645 | + | # CONFIG_PACKAGE_kmod-pwm is not set | |
| 1646 | + | # CONFIG_PACKAGE_kmod-pwm-gpio is not set | |
| 1647 | + | # CONFIG_PACKAGE_kmod-random-core is not set | |
| 1648 | + | # CONFIG_PACKAGE_kmod-regmap is not set | |
| 1649 | + | # CONFIG_PACKAGE_kmod-rtc-ds1672 is not set | |
| 1650 | + | # CONFIG_PACKAGE_kmod-rtc-isl1208 is not set | |
| 1651 | + | # CONFIG_PACKAGE_kmod-rtc-pcf2123 is not set | |
| 1652 | + | # CONFIG_PACKAGE_kmod-rtc-pcf8563 is not set | |
| 1653 | + | # CONFIG_PACKAGE_kmod-rtc-pt7c4338 is not set | |
| 1654 | + | # CONFIG_PACKAGE_kmod-sdhci is not set | |
| 1655 | + | # CONFIG_PACKAGE_kmod-serial-8250 is not set | |
| 1656 | + | # CONFIG_PACKAGE_kmod-softdog is not set | |
| 1657 | + | # CONFIG_PACKAGE_kmod-ssb is not set | |
| 1658 | + | # CONFIG_PACKAGE_kmod-wdt-geode is not set | |
| 1659 | + | # CONFIG_PACKAGE_kmod-wdt-sc520 is not set | |
| 1660 | + | # CONFIG_PACKAGE_kmod-wdt-scx200 is not set | |
| 1661 | + | # CONFIG_PACKAGE_kmod-zram is not set | |
| 1662 | + | ||
| 1663 | + | # | |
| 1664 | + | # PCMCIA support | |
| 1665 | + | # | |
| 1666 | + | # CONFIG_PACKAGE_kmod-pcmcia-core is not set | |
| 1667 | + | ||
| 1668 | + | # | |
| 1669 | + | # SPI Support | |
| 1670 | + | # | |
| 1671 | + | # CONFIG_PACKAGE_kmod-mmc-spi is not set | |
| 1672 | + | # CONFIG_PACKAGE_kmod-spi-bitbang is not set | |
| 1673 | + | # CONFIG_PACKAGE_kmod-spi-dev is not set | |
| 1674 | + | # CONFIG_PACKAGE_kmod-spi-ks8995 is not set | |
| 1675 | + | ||
| 1676 | + | # | |
| 1677 | + | # Sound Support | |
| 1678 | + | # | |
| 1679 | + | # CONFIG_PACKAGE_kmod-sound-core is not set | |
| 1680 | + | ||
| 1681 | + | # | |
| 1682 | + | # USB Support | |
| 1683 | + | # | |
| 1684 | + | # CONFIG_PACKAGE_kmod-usb-acm is not set | |
| 1685 | + | # CONFIG_PACKAGE_kmod-usb-atm is not set | |
| 1686 | + | # CONFIG_PACKAGE_kmod-usb-chipidea is not set | |
| 1687 | + | # CONFIG_PACKAGE_kmod-usb-cm109 is not set | |
| 1688 | + | # CONFIG_PACKAGE_kmod-usb-core is not set | |
| 1689 | + | # CONFIG_PACKAGE_kmod-usb-dwc2 is not set | |
| 1690 | + | # CONFIG_PACKAGE_kmod-usb-hid is not set | |
| 1691 | + | # CONFIG_PACKAGE_kmod-usb-net is not set | |
| 1692 | + | # CONFIG_PACKAGE_kmod-usb-ohci is not set | |
| 1693 | + | # CONFIG_PACKAGE_kmod-usb-phy-nop is not set | |
| 1694 | + | # CONFIG_PACKAGE_kmod-usb-printer is not set | |
| 1695 | + | # CONFIG_PACKAGE_kmod-usb-serial is not set | |
| 1696 | + | # CONFIG_PACKAGE_kmod-usb-storage is not set | |
| 1697 | + | # CONFIG_PACKAGE_kmod-usb-storage-extras is not set | |
| 1698 | + | # CONFIG_PACKAGE_kmod-usb-test is not set | |
| 1699 | + | # CONFIG_PACKAGE_kmod-usb-uhci is not set | |
| 1700 | + | # CONFIG_PACKAGE_kmod-usb-wdm is not set | |
| 1701 | + | # CONFIG_PACKAGE_kmod-usb-yealink is not set | |
| 1702 | + | # CONFIG_PACKAGE_kmod-usb2 is not set | |
| 1703 | + | # CONFIG_PACKAGE_kmod-usb2-pci is not set | |
| 1704 | + | # CONFIG_PACKAGE_kmod-usb3 is not set | |
| 1705 | + | # CONFIG_PACKAGE_kmod-usbip is not set | |
| 1706 | + | # CONFIG_PACKAGE_kmod-usbip-client is not set | |
| 1707 | + | # CONFIG_PACKAGE_kmod-usbip-server is not set | |
| 1708 | + | # CONFIG_PACKAGE_kmod-usbmon is not set | |
| 1709 | + | ||
| 1710 | + | # | |
| 1711 | + | # Video Support | |
| 1712 | + | # | |
| 1713 | + | # CONFIG_PACKAGE_kmod-fb is not set | |
| 1714 | + | # CONFIG_PACKAGE_kmod-fb-cfb-copyarea is not set | |
| 1715 | + | # CONFIG_PACKAGE_kmod-fb-cfb-fillrect is not set | |
| 1716 | + | # CONFIG_PACKAGE_kmod-fb-cfb-imgblt is not set | |
| 1717 | + | # CONFIG_PACKAGE_kmod-video-core is not set | |
| 1718 | + | ||
| 1719 | + | # | |
| 1720 | + | # Virtualization Support | |
| 1721 | + | # | |
| 1722 | + | ||
| 1723 | + | # | |
| 1724 | + | # Voice over IP | |
| 1725 | + | # | |
| 1726 | + | ||
| 1727 | + | # | |
| 1728 | + | # W1 support | |
| 1729 | + | # | |
| 1730 | + | # CONFIG_PACKAGE_kmod-w1 is not set | |
| 1731 | + | ||
| 1732 | + | # | |
| 1733 | + | # Wireless Drivers | |
| 1734 | + | # | |
| 1735 | + | # CONFIG_PACKAGE_kmod-adm8211 is not set | |
| 1736 | + | # CONFIG_PACKAGE_kmod-ath is not set | |
| 1737 | + | # CONFIG_PACKAGE_kmod-ath10k is not set | |
| 1738 | + | # CONFIG_PACKAGE_kmod-ath5k is not set | |
| 1739 | + | # CONFIG_PACKAGE_kmod-ath9k is not set | |
| 1740 | + | # CONFIG_PACKAGE_kmod-ath9k-common is not set | |
| 1741 | + | # CONFIG_PACKAGE_kmod-ath9k-htc is not set | |
| 1742 | + | # CONFIG_PACKAGE_kmod-b43 is not set | |
| 1743 | + | # CONFIG_PACKAGE_kmod-b43legacy is not set | |
| 1744 | + | # CONFIG_PACKAGE_kmod-brcmfmac is not set | |
| 1745 | + | # CONFIG_PACKAGE_kmod-brcmsmac is not set | |
| 1746 | + | # CONFIG_PACKAGE_kmod-brcmutil is not set | |
| 1747 | + | # CONFIG_PACKAGE_kmod-carl9170 is not set | |
| 1748 | + | # CONFIG_PACKAGE_kmod-cfg80211 is not set | |
| 1749 | + | # CONFIG_PACKAGE_kmod-hostap is not set | |
| 1750 | + | # CONFIG_PACKAGE_kmod-hostap-cs is not set | |
| 1751 | + | # CONFIG_PACKAGE_kmod-hostap-pci is not set | |
| 1752 | + | # CONFIG_PACKAGE_kmod-hostap-plx is not set | |
| 1753 | + | # CONFIG_PACKAGE_kmod-iwl-legacy is not set | |
| 1754 | + | # CONFIG_PACKAGE_kmod-iwl3945 is not set | |
| 1755 | + | # CONFIG_PACKAGE_kmod-iwl4965 is not set | |
| 1756 | + | # CONFIG_PACKAGE_kmod-iwlagn is not set | |
| 1757 | + | # CONFIG_PACKAGE_kmod-lib80211 is not set | |
| 1758 | + | # CONFIG_PACKAGE_kmod-libertas-sd is not set | |
| 1759 | + | # CONFIG_PACKAGE_kmod-libertas-usb is not set | |
| 1760 | + | # CONFIG_PACKAGE_kmod-mac80211 is not set | |
| 1761 | + | # CONFIG_PACKAGE_kmod-mac80211-hwsim is not set | |
| 1762 | + | # CONFIG_PACKAGE_kmod-madwifi is not set | |
| 1763 | + | # CONFIG_PACKAGE_kmod-mwl8k is not set | |
| 1764 | + | # CONFIG_PACKAGE_kmod-net-airo is not set | |
| 1765 | + | # CONFIG_PACKAGE_kmod-net-hermes is not set | |
| 1766 | + | # CONFIG_PACKAGE_kmod-net-hermes-pci is not set | |
| 1767 | + | # CONFIG_PACKAGE_kmod-net-hermes-plx is not set | |
| 1768 | + | # CONFIG_PACKAGE_kmod-net-ipw2100 is not set | |
| 1769 | + | # CONFIG_PACKAGE_kmod-net-ipw2200 is not set | |
| 1770 | + | # CONFIG_PACKAGE_kmod-net-libipw is not set | |
| 1771 | + | # CONFIG_PACKAGE_kmod-net-prism54 is not set | |
| 1772 | + | # CONFIG_PACKAGE_kmod-net-zd1201 is not set | |
| 1773 | + | # CONFIG_PACKAGE_kmod-p54-common is not set | |
| 1774 | + | # CONFIG_PACKAGE_kmod-p54-pci is not set | |
| 1775 | + | # CONFIG_PACKAGE_kmod-p54-usb is not set | |
| 1776 | + | # CONFIG_PACKAGE_kmod-rt2400-pci is not set | |
| 1777 | + | # CONFIG_PACKAGE_kmod-rt2500-pci is not set | |
| 1778 | + | # CONFIG_PACKAGE_kmod-rt2500-usb is not set | |
| 1779 | + | # CONFIG_PACKAGE_kmod-rt2800-pci is not set | |
| 1780 | + | # CONFIG_PACKAGE_kmod-rt2800-usb is not set | |
| 1781 | + | # CONFIG_PACKAGE_kmod-rt2x00-lib is not set | |
| 1782 | + | # CONFIG_PACKAGE_kmod-rt61-pci is not set | |
| 1783 | + | # CONFIG_PACKAGE_kmod-rt73-usb is not set | |
| 1784 | + | # CONFIG_PACKAGE_kmod-rtl8180 is not set | |
| 1785 | + | # CONFIG_PACKAGE_kmod-rtl8187 is not set | |
| 1786 | + | # CONFIG_PACKAGE_kmod-rtl8192ce is not set | |
| 1787 | + | # CONFIG_PACKAGE_kmod-rtl8192cu is not set | |
| 1788 | + | # CONFIG_PACKAGE_kmod-rtl8192de is not set | |
| 1789 | + | # CONFIG_PACKAGE_kmod-rtl8192se is not set | |
| 1790 | + | # CONFIG_PACKAGE_kmod-rtlwifi is not set | |
| 1791 | + | # CONFIG_PACKAGE_kmod-zd1211rw is not set | |
| 1792 | + | ||
| 1793 | + | # | |
| 1794 | + | # Languages | |
| 1795 | + | # | |
| 1796 | + | ||
| 1797 | + | # | |
| 1798 | + | # Erlang | |
| 1799 | + | # | |
| 1800 | + | # CONFIG_PACKAGE_erlang is not set | |
| 1801 | + | # CONFIG_PACKAGE_erlang-asn1 is not set | |
| 1802 | + | # CONFIG_PACKAGE_erlang-compiler is not set | |
| 1803 | + | # CONFIG_PACKAGE_erlang-crypto is not set | |
| 1804 | + | # CONFIG_PACKAGE_erlang-hipe is not set | |
| 1805 | + | # CONFIG_PACKAGE_erlang-inets is not set | |
| 1806 | + | # CONFIG_PACKAGE_erlang-mnesia is not set | |
| 1807 | + | # CONFIG_PACKAGE_erlang-runtime-tools is not set | |
| 1808 | + | # CONFIG_PACKAGE_erlang-snmp is not set | |
| 1809 | + | # CONFIG_PACKAGE_erlang-ssh is not set | |
| 1810 | + | # CONFIG_PACKAGE_erlang-ssl is not set | |
| 1811 | + | # CONFIG_PACKAGE_erlang-syntax-tools is not set | |
| 1812 | + | ||
| 1813 | + | # | |
| 1814 | + | # Java | |
| 1815 | + | # | |
| 1816 | + | # CONFIG_PACKAGE_jamvm is not set | |
| 1817 | + | ||
| 1818 | + | # | |
| 1819 | + | # JavaScript | |
| 1820 | + | # | |
| 1821 | + | # CONFIG_PACKAGE_js is not set | |
| 1822 | + | ||
| 1823 | + | # | |
| 1824 | + | # Lua | |
| 1825 | + | # | |
| 1826 | + | # CONFIG_PACKAGE_libiwinfo-lua is not set | |
| 1827 | + | # CONFIG_PACKAGE_lsqlite3 is not set | |
| 1828 | + | # CONFIG_PACKAGE_lua is not set | |
| 1829 | + | # CONFIG_PACKAGE_luac is not set | |
| 1830 | + | # CONFIG_PACKAGE_luacurl is not set | |
| 1831 | + | # CONFIG_PACKAGE_luaexpat is not set | |
| 1832 | + | # CONFIG_PACKAGE_luafilesystem is not set | |
| 1833 | + | # CONFIG_PACKAGE_luaposix is not set | |
| 1834 | + | # CONFIG_PACKAGE_luaprofiler is not set | |
| 1835 | + | # CONFIG_PACKAGE_luasec is not set | |
| 1836 | + | # CONFIG_PACKAGE_luasoap is not set | |
| 1837 | + | # CONFIG_PACKAGE_luasocket is not set | |
| 1838 | + | # CONFIG_PACKAGE_luasql-mysql is not set | |
| 1839 | + | # CONFIG_PACKAGE_luasql-pgsql is not set | |
| 1840 | + | # CONFIG_PACKAGE_luasql-sqlite3 is not set | |
| 1841 | + | # CONFIG_PACKAGE_luavstruct is not set | |
| 1842 | + | ||
| 1843 | + | # | |
| 1844 | + | # PHP | |
| 1845 | + | # | |
| 1846 | + | # CONFIG_PACKAGE_php-pear is not set | |
| 1847 | + | # CONFIG_PACKAGE_php4 is not set | |
| 1848 | + | # CONFIG_PACKAGE_php5 is not set | |
| 1849 | + | ||
| 1850 | + | # | |
| 1851 | + | # Perl | |
| 1852 | + | # | |
| 1853 | + | # CONFIG_PACKAGE_microperl is not set | |
| 1854 | + | # CONFIG_PACKAGE_perl is not set | |
| 1855 | + | # CONFIG_PACKAGE_perl-test-harness is not set | |
| 1856 | + | ||
| 1857 | + | # | |
| 1858 | + | # Python | |
| 1859 | + | # | |
| 1860 | + | # CONFIG_PACKAGE_cython is not set | |
| 1861 | + | # CONFIG_PACKAGE_dbus-python is not set | |
| 1862 | + | # CONFIG_PACKAGE_distribute is not set | |
| 1863 | + | # CONFIG_PACKAGE_gst-python is not set | |
| 1864 | + | # CONFIG_PACKAGE_ipython is not set | |
| 1865 | + | # CONFIG_PACKAGE_libyaml is not set | |
| 1866 | + | # CONFIG_PACKAGE_logilab-astng is not set | |
| 1867 | + | # CONFIG_PACKAGE_logilab-common is not set | |
| 1868 | + | # CONFIG_PACKAGE_mako is not set | |
| 1869 | + | # CONFIG_PACKAGE_pyclips is not set | |
| 1870 | + | # CONFIG_PACKAGE_pyopenssl is not set | |
| 1871 | + | # CONFIG_PACKAGE_pyrrd is not set | |
| 1872 | + | # CONFIG_PACKAGE_pyserial is not set | |
| 1873 | + | # CONFIG_PACKAGE_python is not set | |
| 1874 | + | # CONFIG_PACKAGE_python-bluez is not set | |
| 1875 | + | # CONFIG_PACKAGE_python-bzip2 is not set | |
| 1876 | + | # CONFIG_PACKAGE_python-cjson is not set | |
| 1877 | + | # CONFIG_PACKAGE_python-crypto is not set | |
| 1878 | + | # CONFIG_PACKAGE_python-curl is not set | |
| 1879 | + | # CONFIG_PACKAGE_python-cwiid is not set | |
| 1880 | + | # CONFIG_PACKAGE_python-django is not set | |
| 1881 | + | # CONFIG_PACKAGE_python-doc is not set | |
| 1882 | + | # CONFIG_PACKAGE_python-eeml is not set | |
| 1883 | + | # CONFIG_PACKAGE_python-egenix-mx is not set | |
| 1884 | + | # CONFIG_PACKAGE_python-event is not set | |
| 1885 | + | # CONFIG_PACKAGE_python-expat is not set | |
| 1886 | + | # CONFIG_PACKAGE_python-flup is not set | |
| 1887 | + | # CONFIG_PACKAGE_python-gdbm is not set | |
| 1888 | + | # CONFIG_PACKAGE_python-gobject is not set | |
| 1889 | + | # CONFIG_PACKAGE_python-gzip is not set | |
| 1890 | + | # CONFIG_PACKAGE_python-ifconfig is not set | |
| 1891 | + | # CONFIG_PACKAGE_python-imaging-library is not set | |
| 1892 | + | # CONFIG_PACKAGE_python-json is not set | |
| 1893 | + | # CONFIG_PACKAGE_python-kid is not set | |
| 1894 | + | # CONFIG_PACKAGE_python-mimms is not set | |
| 1895 | + | # CONFIG_PACKAGE_python-mini is not set | |
| 1896 | + | # CONFIG_PACKAGE_python-mysql is not set | |
| 1897 | + | # CONFIG_PACKAGE_python-ncurses is not set | |
| 1898 | + | # CONFIG_PACKAGE_python-openssl is not set | |
| 1899 | + | # CONFIG_PACKAGE_python-pcap is not set | |
| 1900 | + | # CONFIG_PACKAGE_python-psycopg is not set | |
| 1901 | + | # CONFIG_PACKAGE_python-pydaemon is not set | |
| 1902 | + | # CONFIG_PACKAGE_python-pyosc is not set | |
| 1903 | + | # CONFIG_PACKAGE_python-rsfile is not set | |
| 1904 | + | # CONFIG_PACKAGE_python-shutil is not set | |
| 1905 | + | # CONFIG_PACKAGE_python-smbus is not set | |
| 1906 | + | # CONFIG_PACKAGE_python-sqlite is not set | |
| 1907 | + | # CONFIG_PACKAGE_python-sqlite3 is not set | |
| 1908 | + | # CONFIG_PACKAGE_python-webpy is not set | |
| 1909 | + | # CONFIG_PACKAGE_python-xapian is not set | |
| 1910 | + | # CONFIG_PACKAGE_python-yapsnmp is not set | |
| 1911 | + | # CONFIG_PACKAGE_python2-chardet is not set | |
| 1912 | + | # CONFIG_PACKAGE_pyusb is not set | |
| 1913 | + | # CONFIG_PACKAGE_pyxdg is not set | |
| 1914 | + | # CONFIG_PACKAGE_pyyaml is not set | |
| 1915 | + | # CONFIG_PACKAGE_simplejson is not set | |
| 1916 | + | # CONFIG_PACKAGE_telepathy-python is not set | |
| 1917 | + | # CONFIG_PACKAGE_twisted is not set | |
| 1918 | + | # CONFIG_PACKAGE_zope-interface is not set | |
| 1919 | + | ||
| 1920 | + | # | |
| 1921 | + | # Ruby | |
| 1922 | + | # | |
| 1923 | + | # CONFIG_PACKAGE_ruby is not set | |
| 1924 | + | # CONFIG_PACKAGE_4th is not set | |
| 1925 | + | # CONFIG_PACKAGE_eggdrop is not set | |
| 1926 | + | # CONFIG_PACKAGE_libgupnp-vala is not set | |
| 1927 | + | # CONFIG_PACKAGE_sigscheme is not set | |
| 1928 | + | # CONFIG_PACKAGE_slsh is not set | |
| 1929 | + | # CONFIG_PACKAGE_tcl is not set | |
| 1930 | + | # CONFIG_PACKAGE_vala is not set | |
| 1931 | + | ||
| 1932 | + | # | |
| 1933 | + | # Libraries | |
| 1934 | + | # | |
| 1935 | + | ||
| 1936 | + | # | |
| 1937 | + | # Filesystem | |
| 1938 | + | # | |
| 1939 | + | # CONFIG_PACKAGE_libext2fs is not set | |
| 1940 | + | # CONFIG_PACKAGE_libfuse is not set | |
| 1941 | + | # CONFIG_PACKAGE_libnfsidmap is not set | |
| 1942 | + | # CONFIG_PACKAGE_libow is not set | |
| 1943 | + | # CONFIG_PACKAGE_libow-capi is not set | |
| 1944 | + | # CONFIG_PACKAGE_libsysfs is not set | |
| 1945 | + | ||
| 1946 | + | # | |
| 1947 | + | # Firewall | |
| 1948 | + | # | |
| 1949 | + | # CONFIG_PACKAGE_libfko is not set | |
| 1950 | + | CONFIG_PACKAGE_libip4tc=y | |
| 1951 | + | CONFIG_PACKAGE_libip6tc=y | |
| 1952 | + | # CONFIG_PACKAGE_libiptc is not set | |
| 1953 | + | CONFIG_PACKAGE_libxtables=y | |
| 1954 | + | ||
| 1955 | + | # | |
| 1956 | + | # Printing | |
| 1957 | + | # | |
| 1958 | + | # CONFIG_PACKAGE_libcups is not set | |
| 1959 | + | # CONFIG_PACKAGE_libcupscgi is not set | |
| 1960 | + | # CONFIG_PACKAGE_libcupsdriver is not set | |
| 1961 | + | # CONFIG_PACKAGE_libcupsimage is not set | |
| 1962 | + | # CONFIG_PACKAGE_libcupsmime is not set | |
| 1963 | + | # CONFIG_PACKAGE_libcupsppdc is not set | |
| 1964 | + | ||
| 1965 | + | # | |
| 1966 | + | # SSL | |
| 1967 | + | # | |
| 1968 | + | # CONFIG_PACKAGE_libaxtls is not set | |
| 1969 | + | # CONFIG_PACKAGE_libcyassl is not set | |
| 1970 | + | # CONFIG_PACKAGE_libgnutls is not set | |
| 1971 | + | # CONFIG_PACKAGE_libgnutls-openssl is not set | |
| 1972 | + | # CONFIG_PACKAGE_libmatrixssl is not set | |
| 1973 | + | CONFIG_PACKAGE_libopenssl=m | |
| 1974 | + | ||
| 1975 | + | # | |
| 1976 | + | # Configuration | |
| 1977 | + | # | |
| 1978 | + | CONFIG_OPENSSL_WITH_EC=y | |
| 1979 | + | # CONFIG_OPENSSL_WITH_EC2M is not set | |
| 1980 | + | # CONFIG_OPENSSL_ENGINE_CRYPTO is not set | |
| 1981 | + | # CONFIG_PACKAGE_libpolarssl is not set | |
| 1982 | + | ||
| 1983 | + | # | |
| 1984 | + | # Sound | |
| 1985 | + | # | |
| 1986 | + | # CONFIG_PACKAGE_liblo is not set | |
| 1987 | + | ||
| 1988 | + | # | |
| 1989 | + | # database | |
| 1990 | + | # | |
| 1991 | + | # CONFIG_PACKAGE_libpq is not set | |
| 1992 | + | # CONFIG_PACKAGE_libsqlite2 is not set | |
| 1993 | + | CONFIG_PACKAGE_libsqlite3=m | |
| 1994 | + | # CONFIG_PACKAGE_pgsqlodbc is not set | |
| 1995 | + | # CONFIG_PACKAGE_tokyocabinet is not set | |
| 1996 | + | # CONFIG_PACKAGE_unixodbc is not set | |
| 1997 | + | # CONFIG_PACKAGE_alsa-lib is not set | |
| 1998 | + | # CONFIG_PACKAGE_argp-standalone is not set | |
| 1999 | + | # CONFIG_PACKAGE_argtable is not set | |
| 2000 | + | # CONFIG_PACKAGE_bind-libs is not set | |
| 2001 | + | # CONFIG_PACKAGE_bluez-libs is not set | |
| 2002 | + | # CONFIG_PACKAGE_boost-chrono is not set | |
| 2003 | + | # CONFIG_PACKAGE_boost-date_time is not set | |
| 2004 | + | # CONFIG_PACKAGE_boost-filesystem is not set | |
| 2005 | + | # CONFIG_PACKAGE_boost-graph is not set | |
| 2006 | + | # CONFIG_PACKAGE_boost-iostreams is not set | |
| 2007 | + | # CONFIG_PACKAGE_boost-locale is not set | |
| 2008 | + | # CONFIG_PACKAGE_boost-math is not set | |
| 2009 | + | # CONFIG_PACKAGE_boost-program_options is not set | |
| 2010 | + | # CONFIG_PACKAGE_boost-python is not set | |
| 2011 | + | # CONFIG_PACKAGE_boost-random is not set | |
| 2012 | + | # CONFIG_PACKAGE_boost-regex is not set | |
| 2013 | + | # CONFIG_PACKAGE_boost-serialization is not set | |
| 2014 | + | # CONFIG_PACKAGE_boost-signals is not set | |
| 2015 | + | # CONFIG_PACKAGE_boost-system is not set | |
| 2016 | + | # CONFIG_PACKAGE_boost-test is not set | |
| 2017 | + | # CONFIG_PACKAGE_boost-thread is not set | |
| 2018 | + | # CONFIG_PACKAGE_boost-wave is not set | |
| 2019 | + | # CONFIG_PACKAGE_ccid is not set | |
| 2020 | + | # CONFIG_PACKAGE_cgilib is not set | |
| 2021 | + | # CONFIG_PACKAGE_check is not set | |
| 2022 | + | # CONFIG_PACKAGE_classpath is not set | |
| 2023 | + | # CONFIG_PACKAGE_classpath-tools is not set | |
| 2024 | + | # CONFIG_PACKAGE_clearsilver is not set | |
| 2025 | + | # CONFIG_PACKAGE_confuse is not set | |
| 2026 | + | # CONFIG_PACKAGE_credis is not set | |
| 2027 | + | # CONFIG_PACKAGE_directfb is not set | |
| 2028 | + | # CONFIG_PACKAGE_fcgi is not set | |
| 2029 | + | # CONFIG_PACKAGE_fftw3 is not set | |
| 2030 | + | # CONFIG_PACKAGE_fftw3f is not set | |
| 2031 | + | # CONFIG_PACKAGE_fribidi is not set | |
| 2032 | + | # CONFIG_PACKAGE_ftplib is not set | |
| 2033 | + | # CONFIG_PACKAGE_giflib is not set | |
| 2034 | + | # CONFIG_PACKAGE_glib1 is not set | |
| 2035 | + | # CONFIG_PACKAGE_glib2 is not set | |
| 2036 | + | # CONFIG_PACKAGE_glibmm is not set | |
| 2037 | + | # CONFIG_PACKAGE_id3lib is not set | |
| 2038 | + | # CONFIG_PACKAGE_jansson is not set | |
| 2039 | + | # CONFIG_PACKAGE_libIDL2 is not set | |
| 2040 | + | # CONFIG_PACKAGE_libaa is not set | |
| 2041 | + | # CONFIG_PACKAGE_libaio is not set | |
| 2042 | + | # CONFIG_PACKAGE_libamsel is not set | |
| 2043 | + | # CONFIG_PACKAGE_libao is not set | |
| 2044 | + | # CONFIG_PACKAGE_libapr is not set | |
| 2045 | + | # CONFIG_PACKAGE_libaprutil is not set | |
| 2046 | + | # CONFIG_PACKAGE_libart is not set | |
| 2047 | + | # CONFIG_PACKAGE_libassuan is not set | |
| 2048 | + | # CONFIG_PACKAGE_libatomicops is not set | |
| 2049 | + | # CONFIG_PACKAGE_libaudiofile is not set | |
| 2050 | + | # CONFIG_PACKAGE_libavahi is not set | |
| 2051 | + | # CONFIG_PACKAGE_libavahi-client is not set | |
| 2052 | + | # CONFIG_PACKAGE_libavahi-dbus-support is not set | |
| 2053 | + | # CONFIG_PACKAGE_libblkid is not set | |
| 2054 | + | CONFIG_PACKAGE_libblobmsg-json=y | |
| 2055 | + | # CONFIG_PACKAGE_libboblight is not set | |
| 2056 | + | # CONFIG_PACKAGE_libbz2 is not set | |
| 2057 | + | # CONFIG_PACKAGE_libcap is not set | |
| 2058 | + | # CONFIG_PACKAGE_libcares is not set | |
| 2059 | + | # CONFIG_PACKAGE_libcelt is not set | |
| 2060 | + | # CONFIG_PACKAGE_libcharset is not set | |
| 2061 | + | # CONFIG_PACKAGE_libcli is not set | |
| 2062 | + | # CONFIG_PACKAGE_libclinkc is not set | |
| 2063 | + | # CONFIG_PACKAGE_libconfig is not set | |
| 2064 | + | # CONFIG_PACKAGE_libcroco is not set | |
| 2065 | + | # CONFIG_PACKAGE_libcryptoxx is not set | |
| 2066 | + | # CONFIG_PACKAGE_libcunit is not set | |
| 2067 | + | # CONFIG_PACKAGE_libcurl is not set | |
| 2068 | + | # CONFIG_PACKAGE_libcwiid is not set | |
| 2069 | + | # CONFIG_PACKAGE_libdaemon is not set | |
| 2070 | + | # CONFIG_PACKAGE_libdaq is not set | |
| 2071 | + | # CONFIG_PACKAGE_libdb47 is not set | |
| 2072 | + | # CONFIG_PACKAGE_libdb47xx is not set | |
| 2073 | + | # CONFIG_PACKAGE_libdbi is not set | |
| 2074 | + | CONFIG_PACKAGE_libdbus=m | |
| 2075 | + | # CONFIG_PACKAGE_libdbus-glib is not set | |
| 2076 | + | # CONFIG_PACKAGE_libdevmapper is not set | |
| 2077 | + | # CONFIG_PACKAGE_libdmapsharing is not set | |
| 2078 | + | # CONFIG_PACKAGE_libdnet is not set | |
| 2079 | + | # CONFIG_PACKAGE_libdvbpsi is not set | |
| 2080 | + | # CONFIG_PACKAGE_libdvdread is not set | |
| 2081 | + | # CONFIG_PACKAGE_libelf1 is not set | |
| 2082 | + | # CONFIG_PACKAGE_libevent is not set | |
| 2083 | + | # CONFIG_PACKAGE_libevent2 is not set | |
| 2084 | + | # CONFIG_PACKAGE_libevent2-core is not set | |
| 2085 | + | # CONFIG_PACKAGE_libevent2-extra is not set | |
| 2086 | + | # CONFIG_PACKAGE_libevent2-openssl is not set | |
| 2087 | + | # CONFIG_PACKAGE_libevent2-pthreads is not set | |
| 2088 | + | # CONFIG_PACKAGE_libeventlog is not set | |
| 2089 | + | # CONFIG_PACKAGE_libexif is not set | |
| 2090 | + | # CONFIG_PACKAGE_libexpat is not set | |
| 2091 | + | # CONFIG_PACKAGE_libexslt is not set | |
| 2092 | + | # CONFIG_PACKAGE_libezxml is not set | |
| 2093 | + | # CONFIG_PACKAGE_libfaad2 is not set | |
| 2094 | + | # CONFIG_PACKAGE_libfaifa is not set | |
| 2095 | + | # CONFIG_PACKAGE_libffi is not set | |
| 2096 | + | # CONFIG_PACKAGE_libffmpeg-custom is not set | |
| 2097 | + | # CONFIG_PACKAGE_libffmpeg-full is not set | |
| 2098 | + | # CONFIG_PACKAGE_libffmpeg-mini is not set | |
| 2099 | + | # CONFIG_PACKAGE_libflac is not set | |
| 2100 | + | # CONFIG_PACKAGE_libfreecwmp is not set | |
| 2101 | + | # CONFIG_PACKAGE_libfreefare is not set | |
| 2102 | + | # CONFIG_PACKAGE_libfreenect is not set | |
| 2103 | + | # CONFIG_PACKAGE_libfreetype is not set | |
| 2104 | + | # CONFIG_PACKAGE_libftdi is not set | |
| 2105 | + | # CONFIG_PACKAGE_libgcrypt is not set | |
| 2106 | + | CONFIG_PACKAGE_libgd=m | |
| 2107 | + | # CONFIG_PACKAGE_libgdbm is not set | |
| 2108 | + | # CONFIG_PACKAGE_libgee is not set | |
| 2109 | + | # CONFIG_PACKAGE_libgmp is not set | |
| 2110 | + | # CONFIG_PACKAGE_libgpg-error is not set | |
| 2111 | + | # CONFIG_PACKAGE_libgpgme is not set | |
| 2112 | + | # CONFIG_PACKAGE_libgphoto2 is not set | |
| 2113 | + | # CONFIG_PACKAGE_libgps is not set | |
| 2114 | + | # CONFIG_PACKAGE_libgpsd is not set | |
| 2115 | + | # CONFIG_PACKAGE_libgsl is not set | |
| 2116 | + | # CONFIG_PACKAGE_libgsm is not set | |
| 2117 | + | # CONFIG_PACKAGE_libgssapi is not set | |
| 2118 | + | # CONFIG_PACKAGE_libgssdp is not set | |
| 2119 | + | # CONFIG_PACKAGE_libgupnp is not set | |
| 2120 | + | # CONFIG_PACKAGE_libgupnp-av is not set | |
| 2121 | + | # CONFIG_PACKAGE_libgupnp-dlna is not set | |
| 2122 | + | # CONFIG_PACKAGE_libhowl is not set | |
| 2123 | + | # CONFIG_PACKAGE_libi2c is not set | |
| 2124 | + | # CONFIG_PACKAGE_libiconv is not set | |
| 2125 | + | # CONFIG_PACKAGE_libiconv-full is not set | |
| 2126 | + | # CONFIG_PACKAGE_libid3tag is not set | |
| 2127 | + | # CONFIG_PACKAGE_libidn is not set | |
| 2128 | + | # CONFIG_PACKAGE_libiksemel is not set | |
| 2129 | + | # CONFIG_PACKAGE_libimobiledevice is not set | |
| 2130 | + | # CONFIG_PACKAGE_libinklevel is not set | |
| 2131 | + | # CONFIG_PACKAGE_libintl is not set | |
| 2132 | + | # CONFIG_PACKAGE_libintl-full is not set | |
| 2133 | + | # CONFIG_PACKAGE_libiw is not set | |
| 2134 | + | # CONFIG_PACKAGE_libiwinfo is not set | |
| 2135 | + | CONFIG_PACKAGE_libjpeg=m | |
| 2136 | + | # CONFIG_PACKAGE_libjs is not set | |
| 2137 | + | # CONFIG_PACKAGE_libjson is not set | |
| 2138 | + | CONFIG_PACKAGE_libjson-c=y | |
| 2139 | + | # CONFIG_PACKAGE_libldns is not set | |
| 2140 | + | # CONFIG_PACKAGE_libleptonica is not set | |
| 2141 | + | # CONFIG_PACKAGE_libloudmouth1 is not set | |
| 2142 | + | # CONFIG_PACKAGE_libltdl is not set | |
| 2143 | + | # CONFIG_PACKAGE_liblua is not set | |
| 2144 | + | # CONFIG_PACKAGE_liblzma is not set | |
| 2145 | + | # CONFIG_PACKAGE_liblzo is not set | |
| 2146 | + | # CONFIG_PACKAGE_libmad is not set | |
| 2147 | + | # CONFIG_PACKAGE_libmagic is not set | |
| 2148 | + | # CONFIG_PACKAGE_libmbus is not set | |
| 2149 | + | # CONFIG_PACKAGE_libmcrypt is not set | |
| 2150 | + | # CONFIG_PACKAGE_libmicrohttpd is not set | |
| 2151 | + | # CONFIG_PACKAGE_libmicroxml is not set | |
| 2152 | + | # CONFIG_PACKAGE_libmikmod is not set | |
| 2153 | + | # CONFIG_PACKAGE_libminiupnpc is not set | |
| 2154 | + | # CONFIG_PACKAGE_libmms is not set | |
| 2155 | + | # CONFIG_PACKAGE_libmnl is not set | |
| 2156 | + | # CONFIG_PACKAGE_libmodbus is not set | |
| 2157 | + | # CONFIG_PACKAGE_libmosquitto is not set | |
| 2158 | + | # CONFIG_PACKAGE_libmosquitto-nossl is not set | |
| 2159 | + | # CONFIG_PACKAGE_libmount is not set | |
| 2160 | + | # CONFIG_PACKAGE_libmpcdec is not set | |
| 2161 | + | # CONFIG_PACKAGE_libmpd is not set | |
| 2162 | + | CONFIG_PACKAGE_libmpdclient=m | |
| 2163 | + | # CONFIG_PACKAGE_libmpeg2 is not set | |
| 2164 | + | CONFIG_PACKAGE_libmysqlclient=m | |
| 2165 | + | # CONFIG_PACKAGE_libmysqlclient-r is not set | |
| 2166 | + | # CONFIG_PACKAGE_libnatpmp is not set | |
| 2167 | + | CONFIG_PACKAGE_libncurses=m | |
| 2168 | + | # CONFIG_PACKAGE_libncursesw is not set | |
| 2169 | + | # CONFIG_PACKAGE_libneon is not set | |
| 2170 | + | # CONFIG_PACKAGE_libnet0 is not set | |
| 2171 | + | # CONFIG_PACKAGE_libnet1 is not set | |
| 2172 | + | # CONFIG_PACKAGE_libnetfilter-conntrack is not set | |
| 2173 | + | # CONFIG_PACKAGE_libnetfilter-log is not set | |
| 2174 | + | # CONFIG_PACKAGE_libnetfilter-queue is not set | |
| 2175 | + | # CONFIG_PACKAGE_libnetsnmp is not set | |
| 2176 | + | # CONFIG_PACKAGE_libnettle is not set | |
| 2177 | + | # CONFIG_PACKAGE_libnewt is not set | |
| 2178 | + | # CONFIG_PACKAGE_libnfc is not set | |
| 2179 | + | # CONFIG_PACKAGE_libnfnetlink is not set | |
| 2180 | + | # CONFIG_PACKAGE_libnids is not set | |
| 2181 | + | # CONFIG_PACKAGE_libnl is not set | |
| 2182 | + | CONFIG_PACKAGE_libnl-tiny=y | |
| 2183 | + | # CONFIG_PACKAGE_libnmeap is not set | |
| 2184 | + | # CONFIG_PACKAGE_libogg is not set | |
| 2185 | + | # CONFIG_PACKAGE_liboil is not set | |
| 2186 | + | # CONFIG_PACKAGE_libol is not set | |
| 2187 | + | # CONFIG_PACKAGE_libopencdk is not set | |
| 2188 | + | # CONFIG_PACKAGE_libopenh323 is not set | |
| 2189 | + | # CONFIG_PACKAGE_libopenldap is not set | |
| 2190 | + | # CONFIG_PACKAGE_liboping is not set | |
| 2191 | + | # CONFIG_PACKAGE_libortp is not set | |
| 2192 | + | # CONFIG_PACKAGE_libosip2 is not set | |
| 2193 | + | # CONFIG_PACKAGE_libotr is not set | |
| 2194 | + | # CONFIG_PACKAGE_libowfat is not set | |
| 2195 | + | # CONFIG_PACKAGE_libpam is not set | |
| 2196 | + | # CONFIG_PACKAGE_libpam-google-authenticator is not set | |
| 2197 | + | # CONFIG_PACKAGE_libpar2 is not set | |
| 2198 | + | # CONFIG_PACKAGE_libpcap is not set | |
| 2199 | + | CONFIG_PACKAGE_libpcre=m | |
| 2200 | + | # CONFIG_PACKAGE_libpcrecpp is not set | |
| 2201 | + | # CONFIG_PACKAGE_libpcsclite is not set | |
| 2202 | + | # CONFIG_PACKAGE_libpiano is not set | |
| 2203 | + | # CONFIG_PACKAGE_libplist is not set | |
| 2204 | + | # CONFIG_PACKAGE_libplistcxx is not set | |
| 2205 | + | CONFIG_PACKAGE_libpng=m | |
| 2206 | + | # CONFIG_PACKAGE_libpopt is not set | |
| 2207 | + | # CONFIG_PACKAGE_libprotobuf-c is not set | |
| 2208 | + | # CONFIG_PACKAGE_libptmalloc3 is not set | |
| 2209 | + | # CONFIG_PACKAGE_libqrencode is not set | |
| 2210 | + | # CONFIG_PACKAGE_libradiusclient-ng is not set | |
| 2211 | + | # CONFIG_PACKAGE_libre is not set | |
| 2212 | + | # CONFIG_PACKAGE_libreadline is not set | |
| 2213 | + | # CONFIG_PACKAGE_librem is not set | |
| 2214 | + | # CONFIG_PACKAGE_libroxml is not set | |
| 2215 | + | # CONFIG_PACKAGE_librpc is not set | |
| 2216 | + | # CONFIG_PACKAGE_librpcsecgss is not set | |
| 2217 | + | # CONFIG_PACKAGE_librrd is not set | |
| 2218 | + | # CONFIG_PACKAGE_librrd1 is not set | |
| 2219 | + | # CONFIG_PACKAGE_librsync is not set | |
| 2220 | + | # CONFIG_PACKAGE_librtlsdr is not set | |
| 2221 | + | # CONFIG_PACKAGE_libruby is not set | |
| 2222 | + | # CONFIG_PACKAGE_libsamplerate is not set | |
| 2223 | + | # CONFIG_PACKAGE_libsasl2 is not set | |
| 2224 | + | # CONFIG_PACKAGE_libsdl is not set | |
| 2225 | + | # CONFIG_PACKAGE_libsdl-mixer is not set | |
| 2226 | + | # CONFIG_PACKAGE_libsdl-sound is not set | |
| 2227 | + | # CONFIG_PACKAGE_libsensors is not set | |
| 2228 | + | # CONFIG_PACKAGE_libshout is not set | |
| 2229 | + | # CONFIG_PACKAGE_libsigcxx is not set | |
| 2230 | + | # CONFIG_PACKAGE_libslang2 is not set | |
| 2231 | + | # CONFIG_PACKAGE_libsml is not set | |
| 2232 | + | # CONFIG_PACKAGE_libsndfile is not set | |
| 2233 | + | # CONFIG_PACKAGE_libsocketcan is not set | |
| 2234 | + | # CONFIG_PACKAGE_libsocks is not set | |
| 2235 | + | # CONFIG_PACKAGE_libsoup is not set | |
| 2236 | + | # CONFIG_PACKAGE_libspandsp is not set | |
| 2237 | + | # CONFIG_PACKAGE_libspeex is not set | |
| 2238 | + | # CONFIG_PACKAGE_libspeexdsp is not set | |
| 2239 | + | # CONFIG_PACKAGE_libsrtp is not set | |
| 2240 | + | # CONFIG_PACKAGE_libssh2 is not set | |
| 2241 | + | # CONFIG_PACKAGE_libsynce is not set | |
| 2242 | + | # CONFIG_PACKAGE_libtasn1 is not set | |
| 2243 | + | # CONFIG_PACKAGE_libtheora is not set | |
| 2244 | + | # CONFIG_PACKAGE_libtiff is not set | |
| 2245 | + | # CONFIG_PACKAGE_libtiffxx is not set | |
| 2246 | + | # CONFIG_PACKAGE_libtorrent is not set | |
| 2247 | + | # CONFIG_PACKAGE_libtwin is not set | |
| 2248 | + | CONFIG_PACKAGE_libubox=y | |
| 2249 | + | # CONFIG_PACKAGE_libubox-lua is not set | |
| 2250 | + | CONFIG_PACKAGE_libubus=y | |
| 2251 | + | # CONFIG_PACKAGE_libubus-lua is not set | |
| 2252 | + | CONFIG_PACKAGE_libuci=y | |
| 2253 | + | # CONFIG_PACKAGE_libuci-lua is not set | |
| 2254 | + | # CONFIG_PACKAGE_libucl is not set | |
| 2255 | + | # CONFIG_PACKAGE_libunbound is not set | |
| 2256 | + | # CONFIG_PACKAGE_libupnp is not set | |
| 2257 | + | # CONFIG_PACKAGE_liburcu is not set | |
| 2258 | + | CONFIG_PACKAGE_libusb-1.0=m | |
| 2259 | + | CONFIG_PACKAGE_libusb-compat=m | |
| 2260 | + | # CONFIG_PACKAGE_libusbmuxd is not set | |
| 2261 | + | # CONFIG_PACKAGE_libustream-cyassl is not set | |
| 2262 | + | # CONFIG_PACKAGE_libustream-openssl is not set | |
| 2263 | + | # CONFIG_PACKAGE_libustream-polarssl is not set | |
| 2264 | + | # CONFIG_PACKAGE_libuuid is not set | |
| 2265 | + | # CONFIG_PACKAGE_libv4l is not set | |
| 2266 | + | CONFIG_PACKAGE_libvncserver=m | |
| 2267 | + | # CONFIG_PACKAGE_libvorbis is not set | |
| 2268 | + | # CONFIG_PACKAGE_libvorbisidec is not set | |
| 2269 | + | # CONFIG_PACKAGE_libwrap is not set | |
| 2270 | + | # CONFIG_PACKAGE_libwxbase is not set | |
| 2271 | + | # CONFIG_PACKAGE_libxapian is not set | |
| 2272 | + | # CONFIG_PACKAGE_libxml2 is not set | |
| 2273 | + | # CONFIG_PACKAGE_libxslt is not set | |
| 2274 | + | # CONFIG_PACKAGE_libzip is not set | |
| 2275 | + | # CONFIG_PACKAGE_libzstream is not set | |
| 2276 | + | # CONFIG_PACKAGE_linux-atm is not set | |
| 2277 | + | # CONFIG_PACKAGE_lttng-ust is not set | |
| 2278 | + | # CONFIG_PACKAGE_mxml is not set | |
| 2279 | + | # CONFIG_PACKAGE_nacl is not set | |
| 2280 | + | # CONFIG_PACKAGE_phidget21 is not set | |
| 2281 | + | # CONFIG_PACKAGE_poco is not set | |
| 2282 | + | # CONFIG_PACKAGE_protobuf is not set | |
| 2283 | + | # CONFIG_PACKAGE_pwlib is not set | |
| 2284 | + | # CONFIG_PACKAGE_radlib is not set | |
| 2285 | + | # CONFIG_PACKAGE_sane-libs is not set | |
| 2286 | + | CONFIG_PACKAGE_serdisplib=m | |
| 2287 | + | # CONFIG_PACKAGE_shflags is not set | |
| 2288 | + | CONFIG_PACKAGE_st2205tool=m | |
| 2289 | + | # CONFIG_PACKAGE_taglib is not set | |
| 2290 | + | # CONFIG_PACKAGE_taglibc is not set | |
| 2291 | + | CONFIG_PACKAGE_terminfo=m | |
| 2292 | + | CONFIG_PACKAGE_uclibcxx=m | |
| 2293 | + | # CONFIG_PACKAGE_ustl is not set | |
| 2294 | + | # CONFIG_PACKAGE_wt is not set | |
| 2295 | + | # CONFIG_PACKAGE_xmlrpc-c is not set | |
| 2296 | + | # CONFIG_PACKAGE_xmlrpc-c-abyss is not set | |
| 2297 | + | # CONFIG_PACKAGE_xmlrpc-c-client is not set | |
| 2298 | + | # CONFIG_PACKAGE_xmlrpc-c-common is not set | |
| 2299 | + | # CONFIG_PACKAGE_xmlrpc-c-internal is not set | |
| 2300 | + | # CONFIG_PACKAGE_xmlrpc-c-server is not set | |
| 2301 | + | # CONFIG_PACKAGE_xmlrpc-c-server-abyss is not set | |
| 2302 | + | # CONFIG_PACKAGE_xmpp4r is not set | |
| 2303 | + | # CONFIG_PACKAGE_zaptel-libtonezone is not set | |
| 2304 | + | CONFIG_PACKAGE_zlib=m | |
| 2305 | + | ||
| 2306 | + | # | |
| 2307 | + | # LuCI | |
| 2308 | + | # | |
| 2309 | + | ||
| 2310 | + | # | |
| 2311 | + | # 1. Collections | |
| 2312 | + | # | |
| 2313 | + | # CONFIG_PACKAGE_luci is not set | |
| 2314 | + | # CONFIG_PACKAGE_luci-ssl is not set | |
| 2315 | + | ||
| 2316 | + | # | |
| 2317 | + | # 2. Modules | |
| 2318 | + | # | |
| 2319 | + | # CONFIG_PACKAGE_luci-mod-admin-core is not set | |
| 2320 | + | # CONFIG_PACKAGE_luci-mod-admin-full is not set | |
| 2321 | + | # CONFIG_PACKAGE_luci-mod-failsafe is not set | |
| 2322 | + | # CONFIG_PACKAGE_luci-mod-freifunk is not set | |
| 2323 | + | # CONFIG_PACKAGE_luci-mod-rpc is not set | |
| 2324 | + | ||
| 2325 | + | # | |
| 2326 | + | # 3. Applications | |
| 2327 | + | # | |
| 2328 | + | # CONFIG_PACKAGE_luci-app-ahcp is not set | |
| 2329 | + | # CONFIG_PACKAGE_luci-app-commands is not set | |
| 2330 | + | # CONFIG_PACKAGE_luci-app-ddns is not set | |
| 2331 | + | # CONFIG_PACKAGE_luci-app-diag-core is not set | |
| 2332 | + | # CONFIG_PACKAGE_luci-app-diag-devinfo is not set | |
| 2333 | + | # CONFIG_PACKAGE_luci-app-firewall is not set | |
| 2334 | + | # CONFIG_PACKAGE_luci-app-freifunk-diagnostics is not set | |
| 2335 | + | # CONFIG_PACKAGE_luci-app-freifunk-policyrouting is not set | |
| 2336 | + | # CONFIG_PACKAGE_luci-app-freifunk-widgets is not set | |
| 2337 | + | # CONFIG_PACKAGE_luci-app-hd-idle is not set | |
| 2338 | + | # CONFIG_PACKAGE_luci-app-ltqtapi is not set | |
| 2339 | + | # CONFIG_PACKAGE_luci-app-meshwizard is not set | |
| 2340 | + | # CONFIG_PACKAGE_luci-app-ntpc is not set | |
| 2341 | + | # CONFIG_PACKAGE_luci-app-olsr is not set | |
| 2342 | + | # CONFIG_PACKAGE_luci-app-p910nd is not set | |
| 2343 | + | # CONFIG_PACKAGE_luci-app-pbx is not set | |
| 2344 | + | # CONFIG_PACKAGE_luci-app-polipo is not set | |
| 2345 | + | # CONFIG_PACKAGE_luci-app-qos is not set | |
| 2346 | + | # CONFIG_PACKAGE_luci-app-radvd is not set | |
| 2347 | + | # CONFIG_PACKAGE_luci-app-samba is not set | |
| 2348 | + | # CONFIG_PACKAGE_luci-app-siitwizard is not set | |
| 2349 | + | # CONFIG_PACKAGE_luci-app-splash is not set | |
| 2350 | + | # CONFIG_PACKAGE_luci-app-statistics is not set | |
| 2351 | + | # CONFIG_PACKAGE_luci-app-tinyproxy is not set | |
| 2352 | + | # CONFIG_PACKAGE_luci-app-transmission is not set | |
| 2353 | + | # CONFIG_PACKAGE_luci-app-upnp is not set | |
| 2354 | + | # CONFIG_PACKAGE_luci-app-vnstat is not set | |
| 2355 | + | # CONFIG_PACKAGE_luci-app-voice-core is not set | |
| 2356 | + | # CONFIG_PACKAGE_luci-app-watchcat is not set | |
| 2357 | + | # CONFIG_PACKAGE_luci-app-wol is not set | |
| 2358 | + | # CONFIG_PACKAGE_luci-app-wshaper is not set | |
| 2359 | + | ||
| 2360 | + | # | |
| 2361 | + | # 4. Themes | |
| 2362 | + | # | |
| 2363 | + | # CONFIG_PACKAGE_luci-theme-base is not set | |
| 2364 | + | # CONFIG_PACKAGE_luci-theme-bootstrap is not set | |
| 2365 | + | # CONFIG_PACKAGE_luci-theme-freifunk-bno is not set | |
| 2366 | + | # CONFIG_PACKAGE_luci-theme-freifunk-generic is not set | |
| 2367 | + | # CONFIG_PACKAGE_luci-theme-openwrt is not set | |
| 2368 | + | ||
| 2369 | + | # | |
| 2370 | + | # 5. Translations | |
| 2371 | + | # | |
| 2372 | + | # CONFIG_PACKAGE_luci-i18n-catalan is not set | |
| 2373 | + | # CONFIG_PACKAGE_luci-i18n-chinese is not set | |
| 2374 | + | # CONFIG_PACKAGE_luci-i18n-english is not set | |
| 2375 | + | # CONFIG_PACKAGE_luci-i18n-french is not set | |
| 2376 | + | # CONFIG_PACKAGE_luci-i18n-german is not set | |
| 2377 | + | # CONFIG_PACKAGE_luci-i18n-greek is not set | |
| 2378 | + | # CONFIG_PACKAGE_luci-i18n-hebrew is not set | |
| 2379 | + | # CONFIG_PACKAGE_luci-i18n-hungarian is not set | |
| 2380 | + | # CONFIG_PACKAGE_luci-i18n-italian is not set | |
| 2381 | + | # CONFIG_PACKAGE_luci-i18n-japanese is not set | |
| 2382 | + | # CONFIG_PACKAGE_luci-i18n-malay is not set | |
| 2383 | + | # CONFIG_PACKAGE_luci-i18n-norwegian is not set | |
| 2384 | + | # CONFIG_PACKAGE_luci-i18n-polish is not set | |
| 2385 | + | # CONFIG_PACKAGE_luci-i18n-portuguese is not set | |
| 2386 | + | # CONFIG_PACKAGE_luci-i18n-portuguese-brazilian is not set | |
| 2387 | + | # CONFIG_PACKAGE_luci-i18n-romanian is not set | |
| 2388 | + | # CONFIG_PACKAGE_luci-i18n-russian is not set | |
| 2389 | + | # CONFIG_PACKAGE_luci-i18n-spanish is not set | |
| 2390 | + | # CONFIG_PACKAGE_luci-i18n-ukrainian is not set | |
| 2391 | + | # CONFIG_PACKAGE_luci-i18n-vietnamese is not set | |
| 2392 | + | ||
| 2393 | + | # | |
| 2394 | + | # 6. Protocols | |
| 2395 | + | # | |
| 2396 | + | # CONFIG_PACKAGE_luci-proto-3g is not set | |
| 2397 | + | # CONFIG_PACKAGE_luci-proto-core is not set | |
| 2398 | + | # CONFIG_PACKAGE_luci-proto-ipv6 is not set | |
| 2399 | + | # CONFIG_PACKAGE_luci-proto-ppp is not set | |
| 2400 | + | # CONFIG_PACKAGE_luci-proto-relay is not set | |
| 2401 | + | ||
| 2402 | + | # | |
| 2403 | + | # 7. Server Interfaces | |
| 2404 | + | # | |
| 2405 | + | # CONFIG_PACKAGE_luci-sgi-cgi is not set | |
| 2406 | + | # CONFIG_PACKAGE_luci-sgi-uhttpd is not set | |
| 2407 | + | ||
| 2408 | + | # | |
| 2409 | + | # 8. Libraries | |
| 2410 | + | # | |
| 2411 | + | # CONFIG_PACKAGE_luci-lib-core is not set | |
| 2412 | + | # CONFIG_PACKAGE_luci-lib-core_compile is not set | |
| 2413 | + | # CONFIG_PACKAGE_luci-lib-core_stripped is not set | |
| 2414 | + | # CONFIG_PACKAGE_luci-lib-core_srcdiet is not set | |
| 2415 | + | CONFIG_PACKAGE_luci-lib-core_source=y | |
| 2416 | + | # CONFIG_PACKAGE_luci-lib-fastindex is not set | |
| 2417 | + | # CONFIG_PACKAGE_luci-lib-httpclient is not set | |
| 2418 | + | # CONFIG_PACKAGE_luci-lib-ipkg is not set | |
| 2419 | + | # CONFIG_PACKAGE_luci-lib-json is not set | |
| 2420 | + | # CONFIG_PACKAGE_luci-lib-luaneightbl is not set | |
| 2421 | + | # CONFIG_PACKAGE_luci-lib-lucid is not set | |
| 2422 | + | # CONFIG_PACKAGE_luci-lib-lucid-http is not set | |
| 2423 | + | # CONFIG_PACKAGE_luci-lib-lucid-rpc is not set | |
| 2424 | + | # CONFIG_PACKAGE_luci-lib-nixio is not set | |
| 2425 | + | CONFIG_PACKAGE_luci-lib-nixio_notls=y | |
| 2426 | + | # CONFIG_PACKAGE_luci-lib-nixio_axtls is not set | |
| 2427 | + | # CONFIG_PACKAGE_luci-lib-nixio_cyassl is not set | |
| 2428 | + | # CONFIG_PACKAGE_luci-lib-nixio_openssl is not set | |
| 2429 | + | # CONFIG_PACKAGE_luci-lib-px5g is not set | |
| 2430 | + | # CONFIG_PACKAGE_luci-lib-sys is not set | |
| 2431 | + | # CONFIG_PACKAGE_luci-lib-web is not set | |
| 2432 | + | ||
| 2433 | + | # | |
| 2434 | + | # 9. Freifunk | |
| 2435 | + | # | |
| 2436 | + | # CONFIG_PACKAGE_freifunk-common is not set | |
| 2437 | + | # CONFIG_PACKAGE_freifunk-firewall is not set | |
| 2438 | + | # CONFIG_PACKAGE_freifunk-gwcheck is not set | |
| 2439 | + | # CONFIG_PACKAGE_freifunk-mapupdate is not set | |
| 2440 | + | # CONFIG_PACKAGE_freifunk-p2pblock is not set | |
| 2441 | + | # CONFIG_PACKAGE_freifunk-policyrouting is not set | |
| 2442 | + | # CONFIG_PACKAGE_freifunk-watchdog is not set | |
| 2443 | + | # CONFIG_PACKAGE_luci-mod-freifunk-community is not set | |
| 2444 | + | # CONFIG_PACKAGE_meshwizard is not set | |
| 2445 | + | ||
| 2446 | + | # | |
| 2447 | + | ||
| 2448 | + | # | |
| 2449 | + | # CONFIG_PACKAGE_alpine is not set | |
| 2450 | + | # CONFIG_PACKAGE_dovecot is not set | |
| 2451 | + | # CONFIG_PACKAGE_fetchmail is not set | |
| 2452 | + | # CONFIG_PACKAGE_fetchmail-nossl is not set | |
| 2453 | + | # CONFIG_PACKAGE_imapfilter is not set | |
| 2454 | + | # CONFIG_PACKAGE_mini-sendmail is not set | |
| 2455 | + | # CONFIG_PACKAGE_msmtp is not set | |
| 2456 | + | # CONFIG_PACKAGE_msmtp-nossl is not set | |
| 2457 | + | # CONFIG_PACKAGE_msmtp-queue is not set | |
| 2458 | + | # CONFIG_PACKAGE_mutt is not set | |
| 2459 | + | # CONFIG_PACKAGE_nullmailer is not set | |
| 2460 | + | # CONFIG_PACKAGE_procmail is not set | |
| 2461 | + | # CONFIG_PACKAGE_ssmtp is not set | |
| 2462 | + | # CONFIG_PACKAGE_xmail is not set | |
| 2463 | + | ||
| 2464 | + | # | |
| 2465 | + | # Multimedia | |
| 2466 | + | # | |
| 2467 | + | ||
| 2468 | + | # | |
| 2469 | + | # Streaming | |
| 2470 | + | # | |
| 2471 | + | # CONFIG_PACKAGE_darkice is not set | |
| 2472 | + | # CONFIG_PACKAGE_GraphicsMagick is not set | |
| 2473 | + | # CONFIG_PACKAGE_GraphicsMagick-jpeg is not set | |
| 2474 | + | # CONFIG_PACKAGE_crtmpserver is not set | |
| 2475 | + | # CONFIG_PACKAGE_ffmpeg is not set | |
| 2476 | + | # CONFIG_PACKAGE_ffprobe is not set | |
| 2477 | + | # CONFIG_PACKAGE_ffserver is not set | |
| 2478 | + | # CONFIG_PACKAGE_fswebcam is not set | |
| 2479 | + | # CONFIG_PACKAGE_ftpd-topfield is not set | |
| 2480 | + | # CONFIG_PACKAGE_gmediaserver is not set | |
| 2481 | + | # CONFIG_PACKAGE_gphoto2 is not set | |
| 2482 | + | # CONFIG_PACKAGE_gst-ffmpeg is not set | |
| 2483 | + | # CONFIG_PACKAGE_gst-mod-adpcmdec is not set | |
| 2484 | + | # CONFIG_PACKAGE_gst-mod-adpcmenc is not set | |
| 2485 | + | # CONFIG_PACKAGE_gst-mod-aiff is not set | |
| 2486 | + | # CONFIG_PACKAGE_gst-mod-alsa is not set | |
| 2487 | + | # CONFIG_PACKAGE_gst-mod-app is not set | |
| 2488 | + | # CONFIG_PACKAGE_gst-mod-asf is not set | |
| 2489 | + | # CONFIG_PACKAGE_gst-mod-asfmux is not set | |
| 2490 | + | # CONFIG_PACKAGE_gst-mod-audioconvert is not set | |
| 2491 | + | # CONFIG_PACKAGE_gst-mod-audiofx is not set | |
| 2492 | + | # CONFIG_PACKAGE_gst-mod-audioparsers is not set | |
| 2493 | + | # CONFIG_PACKAGE_gst-mod-audiorate is not set | |
| 2494 | + | # CONFIG_PACKAGE_gst-mod-audioresample is not set | |
| 2495 | + | # CONFIG_PACKAGE_gst-mod-audiotestsrc is not set | |
| 2496 | + | # CONFIG_PACKAGE_gst-mod-autoconvert is not set | |
| 2497 | + | # CONFIG_PACKAGE_gst-mod-autodetect is not set | |
| 2498 | + | # CONFIG_PACKAGE_gst-mod-bayer is not set | |
| 2499 | + | # CONFIG_PACKAGE_gst-mod-camerabin is not set | |
| 2500 | + | # CONFIG_PACKAGE_gst-mod-cdxaparse is not set | |
| 2501 | + | # CONFIG_PACKAGE_gst-mod-cutter is not set | |
| 2502 | + | # CONFIG_PACKAGE_gst-mod-dataurisrc is not set | |
| 2503 | + | # CONFIG_PACKAGE_gst-mod-dccp is not set | |
| 2504 | + | # CONFIG_PACKAGE_gst-mod-debug is not set | |
| 2505 | + | # CONFIG_PACKAGE_gst-mod-debugutilsbad is not set | |
| 2506 | + | # CONFIG_PACKAGE_gst-mod-decodebin is not set | |
| 2507 | + | # CONFIG_PACKAGE_gst-mod-decodebin2 is not set | |
| 2508 | + | # CONFIG_PACKAGE_gst-mod-dtmf is not set | |
| 2509 | + | # CONFIG_PACKAGE_gst-mod-dvdspu is not set | |
| 2510 | + | # CONFIG_PACKAGE_gst-mod-equalizer is not set | |
| 2511 | + | # CONFIG_PACKAGE_gst-mod-faad is not set | |
| 2512 | + | # CONFIG_PACKAGE_gst-mod-festival is not set | |
| 2513 | + | # CONFIG_PACKAGE_gst-mod-flac is not set | |
| 2514 | + | # CONFIG_PACKAGE_gst-mod-freeze is not set | |
| 2515 | + | # CONFIG_PACKAGE_gst-mod-frei0r is not set | |
| 2516 | + | # CONFIG_PACKAGE_gst-mod-gio is not set | |
| 2517 | + | # CONFIG_PACKAGE_gst-mod-h264parse is not set | |
| 2518 | + | # CONFIG_PACKAGE_gst-mod-hdvparse is not set | |
| 2519 | + | # CONFIG_PACKAGE_gst-mod-icydemux is not set | |
| 2520 | + | # CONFIG_PACKAGE_gst-mod-id3demux is not set | |
| 2521 | + | # CONFIG_PACKAGE_gst-mod-id3tag is not set | |
| 2522 | + | # CONFIG_PACKAGE_gst-mod-interleave is not set | |
| 2523 | + | # CONFIG_PACKAGE_gst-mod-isomp4 is not set | |
| 2524 | + | # CONFIG_PACKAGE_gst-mod-jpegformat is not set | |
| 2525 | + | # CONFIG_PACKAGE_gst-mod-lame is not set | |
| 2526 | + | # CONFIG_PACKAGE_gst-mod-legacyresample is not set | |
| 2527 | + | # CONFIG_PACKAGE_gst-mod-level is not set | |
| 2528 | + | # CONFIG_PACKAGE_gst-mod-liveadder is not set | |
| 2529 | + | # CONFIG_PACKAGE_gst-mod-mad is not set | |
| 2530 | + | # CONFIG_PACKAGE_gst-mod-mms is not set | |
| 2531 | + | # CONFIG_PACKAGE_gst-mod-mpeg2dec is not set | |
| 2532 | + | # CONFIG_PACKAGE_gst-mod-mpegdemux is not set | |
| 2533 | + | # CONFIG_PACKAGE_gst-mod-mpegpsmux is not set | |
| 2534 | + | # CONFIG_PACKAGE_gst-mod-mpegtsmux is not set | |
| 2535 | + | # CONFIG_PACKAGE_gst-mod-mpegvideoparse is not set | |
| 2536 | + | # CONFIG_PACKAGE_gst-mod-multifile is not set | |
| 2537 | + | # CONFIG_PACKAGE_gst-mod-multipart is not set | |
| 2538 | + | # CONFIG_PACKAGE_gst-mod-mve is not set | |
| 2539 | + | # CONFIG_PACKAGE_gst-mod-mxf is not set | |
| 2540 | + | # CONFIG_PACKAGE_gst-mod-nsf is not set | |
| 2541 | + | # CONFIG_PACKAGE_gst-mod-nuvdemux is not set | |
| 2542 | + | # CONFIG_PACKAGE_gst-mod-ogg is not set | |
| 2543 | + | # CONFIG_PACKAGE_gst-mod-ossaudio is not set | |
| 2544 | + | # CONFIG_PACKAGE_gst-mod-pcapparse is not set | |
| 2545 | + | # CONFIG_PACKAGE_gst-mod-playbin is not set | |
| 2546 | + | # CONFIG_PACKAGE_gst-mod-pnm is not set | |
| 2547 | + | # CONFIG_PACKAGE_gst-mod-rawparse is not set | |
| 2548 | + | # CONFIG_PACKAGE_gst-mod-replaygain is not set | |
| 2549 | + | # CONFIG_PACKAGE_gst-mod-rtp is not set | |
| 2550 | + | # CONFIG_PACKAGE_gst-mod-rtpmux is not set | |
| 2551 | + | # CONFIG_PACKAGE_gst-mod-rtsp is not set | |
| 2552 | + | # CONFIG_PACKAGE_gst-mod-scaletempoplugin is not set | |
| 2553 | + | # CONFIG_PACKAGE_gst-mod-sdpelem is not set | |
| 2554 | + | # CONFIG_PACKAGE_gst-mod-segmentclip is not set | |
| 2555 | + | # CONFIG_PACKAGE_gst-mod-siren is not set | |
| 2556 | + | # CONFIG_PACKAGE_gst-mod-souphttpsrc is not set | |
| 2557 | + | # CONFIG_PACKAGE_gst-mod-spectrum is not set | |
| 2558 | + | # CONFIG_PACKAGE_gst-mod-speed is not set | |
| 2559 | + | # CONFIG_PACKAGE_gst-mod-stereo is not set | |
| 2560 | + | # CONFIG_PACKAGE_gst-mod-subenc is not set | |
| 2561 | + | # CONFIG_PACKAGE_gst-mod-tcp is not set | |
| 2562 | + | # CONFIG_PACKAGE_gst-mod-theora is not set | |
| 2563 | + | # CONFIG_PACKAGE_gst-mod-tta is not set | |
| 2564 | + | # CONFIG_PACKAGE_gst-mod-typefindfunctions is not set | |
| 2565 | + | # CONFIG_PACKAGE_gst-mod-udp is not set | |
| 2566 | + | # CONFIG_PACKAGE_gst-mod-videomeasure is not set | |
| 2567 | + | # CONFIG_PACKAGE_gst-mod-videosignal is not set | |
| 2568 | + | # CONFIG_PACKAGE_gst-mod-videotestsrc is not set | |
| 2569 | + | # CONFIG_PACKAGE_gst-mod-vmnc is not set | |
| 2570 | + | # CONFIG_PACKAGE_gst-mod-volume is not set | |
| 2571 | + | # CONFIG_PACKAGE_gst-mod-vorbis is not set | |
| 2572 | + | # CONFIG_PACKAGE_gst-mod-wavenc is not set | |
| 2573 | + | # CONFIG_PACKAGE_gst-mod-wavparse is not set | |
| 2574 | + | # CONFIG_PACKAGE_gst-plugins-bad is not set | |
| 2575 | + | # CONFIG_PACKAGE_gst-plugins-base is not set | |
| 2576 | + | # CONFIG_PACKAGE_gst-plugins-good is not set | |
| 2577 | + | # CONFIG_PACKAGE_gst-plugins-ugly is not set | |
| 2578 | + | # CONFIG_PACKAGE_gstreamer is not set | |
| 2579 | + | # CONFIG_PACKAGE_gstreamer-utils is not set | |
| 2580 | + | # CONFIG_PACKAGE_hasciicam is not set | |
| 2581 | + | # CONFIG_PACKAGE_icecast is not set | |
| 2582 | + | # CONFIG_PACKAGE_imagemagick is not set | |
| 2583 | + | # CONFIG_PACKAGE_imagemagick-jpeg is not set | |
| 2584 | + | # CONFIG_PACKAGE_imagemagick-png is not set | |
| 2585 | + | # CONFIG_PACKAGE_imagemagick-tiff is not set | |
| 2586 | + | # CONFIG_PACKAGE_imagemagick-tools is not set | |
| 2587 | + | # CONFIG_PACKAGE_kissdx is not set | |
| 2588 | + | # CONFIG_PACKAGE_libgstapp is not set | |
| 2589 | + | # CONFIG_PACKAGE_libgstaudio is not set | |
| 2590 | + | # CONFIG_PACKAGE_libgstcdda is not set | |
| 2591 | + | # CONFIG_PACKAGE_libgstcheck is not set | |
| 2592 | + | # CONFIG_PACKAGE_libgstcontroller is not set | |
| 2593 | + | # CONFIG_PACKAGE_libgstdataprotocol is not set | |
| 2594 | + | # CONFIG_PACKAGE_libgstfft is not set | |
| 2595 | + | # CONFIG_PACKAGE_libgstinterfaces is not set | |
| 2596 | + | # CONFIG_PACKAGE_libgstnet is not set | |
| 2597 | + | # CONFIG_PACKAGE_libgstnetbuffer is not set | |
| 2598 | + | # CONFIG_PACKAGE_libgstpbutils is not set | |
| 2599 | + | # CONFIG_PACKAGE_libgstphotography is not set | |
| 2600 | + | # CONFIG_PACKAGE_libgstreamer is not set | |
| 2601 | + | # CONFIG_PACKAGE_libgstriff is not set | |
| 2602 | + | # CONFIG_PACKAGE_libgstrtp is not set | |
| 2603 | + | # CONFIG_PACKAGE_libgstrtsp is not set | |
| 2604 | + | # CONFIG_PACKAGE_libgstsdp is not set | |
| 2605 | + | # CONFIG_PACKAGE_libgsttag is not set | |
| 2606 | + | # CONFIG_PACKAGE_libgstvideo is not set | |
| 2607 | + | # CONFIG_PACKAGE_mjpg-streamer is not set | |
| 2608 | + | # CONFIG_PACKAGE_motion is not set | |
| 2609 | + | # CONFIG_PACKAGE_peercast is not set | |
| 2610 | + | # CONFIG_PACKAGE_puppy is not set | |
| 2611 | + | # CONFIG_PACKAGE_rygel is not set | |
| 2612 | + | # CONFIG_PACKAGE_rygel-external is not set | |
| 2613 | + | # CONFIG_PACKAGE_rygel-media-export is not set | |
| 2614 | + | # CONFIG_PACKAGE_rygel-mpris is not set | |
| 2615 | + | # CONFIG_PACKAGE_rygel-playbin is not set | |
| 2616 | + | # CONFIG_PACKAGE_rygel-playbin-gst-suggested is not set | |
| 2617 | + | # CONFIG_PACKAGE_rygel-tracker is not set | |
| 2618 | + | # CONFIG_PACKAGE_shairport is not set | |
| 2619 | + | # CONFIG_PACKAGE_streamripper is not set | |
| 2620 | + | # CONFIG_PACKAGE_tvheadend is not set | |
| 2621 | + | # CONFIG_PACKAGE_vips is not set | |
| 2622 | + | # CONFIG_PACKAGE_xupnpd is not set | |
| 2623 | + | ||
| 2624 | + | # | |
| 2625 | + | # Network | |
| 2626 | + | # | |
| 2627 | + | ||
| 2628 | + | # | |
| 2629 | + | # BitTorrent | |
| 2630 | + | # | |
| 2631 | + | # CONFIG_PACKAGE_btpd is not set | |
| 2632 | + | # CONFIG_PACKAGE_cbtt is not set | |
| 2633 | + | # CONFIG_PACKAGE_cbtt-mysql is not set | |
| 2634 | + | # CONFIG_PACKAGE_ctorrent is not set | |
| 2635 | + | # CONFIG_PACKAGE_ctorrent-nossl is not set | |
| 2636 | + | # CONFIG_PACKAGE_rtorrent is not set | |
| 2637 | + | # CONFIG_PACKAGE_transmission-daemon is not set | |
| 2638 | + | # CONFIG_PACKAGE_transmission-remote is not set | |
| 2639 | + | ||
| 2640 | + | # | |
| 2641 | + | # Captive Portals | |
| 2642 | + | # | |
| 2643 | + | # CONFIG_PACKAGE_chillispot is not set | |
| 2644 | + | # CONFIG_PACKAGE_coova-chilli is not set | |
| 2645 | + | # CONFIG_PACKAGE_nocatauth is not set | |
| 2646 | + | # CONFIG_PACKAGE_nocatsplash is not set | |
| 2647 | + | # CONFIG_PACKAGE_pepperspot is not set | |
| 2648 | + | # CONFIG_PACKAGE_wifidog is not set | |
| 2649 | + | ||
| 2650 | + | # | |
| 2651 | + | # File Transfer | |
| 2652 | + | # | |
| 2653 | + | # CONFIG_PACKAGE_aria2 is not set | |
| 2654 | + | # CONFIG_PACKAGE_atftp is not set | |
| 2655 | + | # CONFIG_PACKAGE_atftpd is not set | |
| 2656 | + | # CONFIG_PACKAGE_axel is not set | |
| 2657 | + | # CONFIG_PACKAGE_cmdftp is not set | |
| 2658 | + | # CONFIG_PACKAGE_curl is not set | |
| 2659 | + | # CONFIG_PACKAGE_lftp is not set | |
| 2660 | + | # CONFIG_PACKAGE_ncftp is not set | |
| 2661 | + | # CONFIG_PACKAGE_ncftp-utils is not set | |
| 2662 | + | # CONFIG_PACKAGE_proftpd is not set | |
| 2663 | + | # CONFIG_PACKAGE_pure-ftpd is not set | |
| 2664 | + | # CONFIG_PACKAGE_pure-ftpd-tls is not set | |
| 2665 | + | # CONFIG_PACKAGE_rsync is not set | |
| 2666 | + | # CONFIG_PACKAGE_rsyncd is not set | |
| 2667 | + | # CONFIG_PACKAGE_tftp-hpa is not set | |
| 2668 | + | # CONFIG_PACKAGE_tftpd-hpa is not set | |
| 2669 | + | # CONFIG_PACKAGE_uftp is not set | |
| 2670 | + | # CONFIG_PACKAGE_uftp-keymgt is not set | |
| 2671 | + | # CONFIG_PACKAGE_uftp-notls is not set | |
| 2672 | + | # CONFIG_PACKAGE_uftpd is not set | |
| 2673 | + | # CONFIG_PACKAGE_uftpd-notls is not set | |
| 2674 | + | # CONFIG_PACKAGE_uftpproxyd is not set | |
| 2675 | + | # CONFIG_PACKAGE_uftpproxyd-notls is not set | |
| 2676 | + | # CONFIG_PACKAGE_uucp is not set | |
| 2677 | + | # CONFIG_PACKAGE_vsftpd is not set | |
| 2678 | + | # CONFIG_PACKAGE_vsftpd-tls is not set | |
| 2679 | + | # CONFIG_PACKAGE_wget is not set | |
| 2680 | + | # CONFIG_PACKAGE_wget-nossl is not set | |
| 2681 | + | # CONFIG_PACKAGE_wput is not set | |
| 2682 | + | # CONFIG_PACKAGE_yafc is not set | |
| 2683 | + | # CONFIG_PACKAGE_zstream is not set | |
| 2684 | + | ||
| 2685 | + | # | |
| 2686 | + | # Filesystem | |
| 2687 | + | # | |
| 2688 | + | # CONFIG_PACKAGE_curlftpfs is not set | |
| 2689 | + | # CONFIG_PACKAGE_netatalk is not set | |
| 2690 | + | # CONFIG_PACKAGE_nfs-kernel-server is not set | |
| 2691 | + | # CONFIG_PACKAGE_nfs-server is not set | |
| 2692 | + | # CONFIG_PACKAGE_owftpd is not set | |
| 2693 | + | # CONFIG_PACKAGE_owhttpd is not set | |
| 2694 | + | # CONFIG_PACKAGE_owserver is not set | |
| 2695 | + | # CONFIG_PACKAGE_remotefs is not set | |
| 2696 | + | # CONFIG_PACKAGE_remotefs-server is not set | |
| 2697 | + | # CONFIG_PACKAGE_sshfs is not set | |
| 2698 | + | # CONFIG_PACKAGE_unfs3 is not set | |
| 2699 | + | ||
| 2700 | + | # | |
| 2701 | + | # Firewall | |
| 2702 | + | # | |
| 2703 | + | # CONFIG_PACKAGE_amwall is not set | |
| 2704 | + | # CONFIG_PACKAGE_arptables is not set | |
| 2705 | + | # CONFIG_PACKAGE_conntrack-tools is not set | |
| 2706 | + | # CONFIG_PACKAGE_ebtables is not set | |
| 2707 | + | # CONFIG_PACKAGE_fwknop is not set | |
| 2708 | + | # CONFIG_PACKAGE_fwknopd is not set | |
| 2709 | + | CONFIG_PACKAGE_ip6tables=y | |
| 2710 | + | # CONFIG_PACKAGE_ip6tables-mod-nat is not set | |
| 2711 | + | # CONFIG_PACKAGE_ipkungfu is not set | |
| 2712 | + | CONFIG_PACKAGE_iptables=y | |
| 2713 | + | # CONFIG_PACKAGE_iptables-mod-account is not set | |
| 2714 | + | # CONFIG_PACKAGE_iptables-mod-chaos is not set | |
| 2715 | + | # CONFIG_PACKAGE_iptables-mod-condition is not set | |
| 2716 | + | # CONFIG_PACKAGE_iptables-mod-conntrack-extra is not set | |
| 2717 | + | # CONFIG_PACKAGE_iptables-mod-delude is not set | |
| 2718 | + | # CONFIG_PACKAGE_iptables-mod-dhcpmac is not set | |
| 2719 | + | # CONFIG_PACKAGE_iptables-mod-dnetmap is not set | |
| 2720 | + | # CONFIG_PACKAGE_iptables-mod-extra is not set | |
| 2721 | + | # CONFIG_PACKAGE_iptables-mod-filter is not set | |
| 2722 | + | # CONFIG_PACKAGE_iptables-mod-fuzzy is not set | |
| 2723 | + | # CONFIG_PACKAGE_iptables-mod-geoip is not set | |
| 2724 | + | # CONFIG_PACKAGE_iptables-mod-hashlimit is not set | |
| 2725 | + | # CONFIG_PACKAGE_iptables-mod-iface is not set | |
| 2726 | + | # CONFIG_PACKAGE_iptables-mod-ipmark is not set | |
| 2727 | + | # CONFIG_PACKAGE_iptables-mod-ipopt is not set | |
| 2728 | + | # CONFIG_PACKAGE_iptables-mod-ipp2p is not set | |
| 2729 | + | # CONFIG_PACKAGE_iptables-mod-iprange is not set | |
| 2730 | + | # CONFIG_PACKAGE_iptables-mod-ipsec is not set | |
| 2731 | + | # CONFIG_PACKAGE_iptables-mod-ipv4options is not set | |
| 2732 | + | # CONFIG_PACKAGE_iptables-mod-led is not set | |
| 2733 | + | # CONFIG_PACKAGE_iptables-mod-length2 is not set | |
| 2734 | + | # CONFIG_PACKAGE_iptables-mod-logmark is not set | |
| 2735 | + | # CONFIG_PACKAGE_iptables-mod-lscan is not set | |
| 2736 | + | # CONFIG_PACKAGE_iptables-mod-lua is not set | |
| 2737 | + | # CONFIG_PACKAGE_iptables-mod-nat-extra is not set | |
| 2738 | + | # CONFIG_PACKAGE_iptables-mod-psd is not set | |
| 2739 | + | # CONFIG_PACKAGE_iptables-mod-quota2 is not set | |
| 2740 | + | # CONFIG_PACKAGE_iptables-mod-rawnat is not set | |
| 2741 | + | # CONFIG_PACKAGE_iptables-mod-steal is not set | |
| 2742 | + | # CONFIG_PACKAGE_iptables-mod-sysrq is not set | |
| 2743 | + | # CONFIG_PACKAGE_iptables-mod-tarpit is not set | |
| 2744 | + | # CONFIG_PACKAGE_iptables-mod-tee is not set | |
| 2745 | + | # CONFIG_PACKAGE_iptables-mod-tproxy is not set | |
| 2746 | + | # CONFIG_PACKAGE_iptables-mod-u32 is not set | |
| 2747 | + | # CONFIG_PACKAGE_iptables-mod-ulog is not set | |
| 2748 | + | # CONFIG_PACKAGE_iptables-snmp is not set | |
| 2749 | + | # CONFIG_PACKAGE_iptaccount is not set | |
| 2750 | + | # CONFIG_PACKAGE_knock is not set | |
| 2751 | + | # CONFIG_PACKAGE_knockd is not set | |
| 2752 | + | # CONFIG_PACKAGE_miniupnpc is not set | |
| 2753 | + | # CONFIG_PACKAGE_miniupnpd is not set | |
| 2754 | + | # CONFIG_PACKAGE_natpmp is not set | |
| 2755 | + | # CONFIG_PACKAGE_natpmpc is not set | |
| 2756 | + | # CONFIG_PACKAGE_nufw is not set | |
| 2757 | + | # CONFIG_PACKAGE_nufw-modules is not set | |
| 2758 | + | # CONFIG_PACKAGE_nufw-python is not set | |
| 2759 | + | # CONFIG_PACKAGE_nutcpc is not set | |
| 2760 | + | # CONFIG_PACKAGE_portsentry is not set | |
| 2761 | + | # CONFIG_PACKAGE_scanlogd is not set | |
| 2762 | + | # CONFIG_PACKAGE_shorewall-core is not set | |
| 2763 | + | # CONFIG_PACKAGE_shorewall-lite is not set | |
| 2764 | + | # CONFIG_PACKAGE_shorewall6-lite is not set | |
| 2765 | + | # CONFIG_PACKAGE_snort is not set | |
| 2766 | + | # CONFIG_PACKAGE_snort-mysql is not set | |
| 2767 | + | # CONFIG_PACKAGE_snort-pgsql is not set | |
| 2768 | + | # CONFIG_PACKAGE_snortsam is not set | |
| 2769 | + | ||
| 2770 | + | # | |
| 2771 | + | # Firewall Tunnel | |
| 2772 | + | # | |
| 2773 | + | # CONFIG_PACKAGE_httptunnel is not set | |
| 2774 | + | # CONFIG_PACKAGE_icmptx is not set | |
| 2775 | + | # CONFIG_PACKAGE_iodine is not set | |
| 2776 | + | # CONFIG_PACKAGE_iodined is not set | |
| 2777 | + | # CONFIG_PACKAGE_nstx is not set | |
| 2778 | + | # CONFIG_PACKAGE_nstxd is not set | |
| 2779 | + | # CONFIG_PACKAGE_ptunnel is not set | |
| 2780 | + | ||
| 2781 | + | # | |
| 2782 | + | # FreeRADIUS (version 2) | |
| 2783 | + | # | |
| 2784 | + | # CONFIG_PACKAGE_freeradius2 is not set | |
| 2785 | + | # CONFIG_PACKAGE_freeradius2-common is not set | |
| 2786 | + | # CONFIG_PACKAGE_freeradius2-utils is not set | |
| 2787 | + | ||
| 2788 | + | # | |
| 2789 | + | # IP Addresses and Names | |
| 2790 | + | # | |
| 2791 | + | # CONFIG_PACKAGE_avahi-autoipd is not set | |
| 2792 | + | # CONFIG_PACKAGE_avahi-daemon is not set | |
| 2793 | + | # CONFIG_PACKAGE_avahi-dnsconfd is not set | |
| 2794 | + | # CONFIG_PACKAGE_avahi-utils is not set | |
| 2795 | + | # CONFIG_PACKAGE_bind-check is not set | |
| 2796 | + | # CONFIG_PACKAGE_bind-client is not set | |
| 2797 | + | # CONFIG_PACKAGE_bind-dig is not set | |
| 2798 | + | # CONFIG_PACKAGE_bind-dnssec is not set | |
| 2799 | + | # CONFIG_PACKAGE_bind-host is not set | |
| 2800 | + | # CONFIG_PACKAGE_bind-rndc is not set | |
| 2801 | + | # CONFIG_PACKAGE_bind-server is not set | |
| 2802 | + | # CONFIG_PACKAGE_bind-tools is not set | |
| 2803 | + | # CONFIG_PACKAGE_ddns-scripts is not set | |
| 2804 | + | # CONFIG_PACKAGE_dhcp-forwarder is not set | |
| 2805 | + | # CONFIG_PACKAGE_dhcpcd is not set | |
| 2806 | + | # CONFIG_PACKAGE_djbdns-axfrdns is not set | |
| 2807 | + | # CONFIG_PACKAGE_djbdns-base is not set | |
| 2808 | + | # CONFIG_PACKAGE_djbdns-dnscache is not set | |
| 2809 | + | # CONFIG_PACKAGE_djbdns-rbldns is not set | |
| 2810 | + | # CONFIG_PACKAGE_djbdns-tinydns is not set | |
| 2811 | + | # CONFIG_PACKAGE_djbdns-tools is not set | |
| 2812 | + | # CONFIG_PACKAGE_djbdns-walldns is not set | |
| 2813 | + | # CONFIG_PACKAGE_drill is not set | |
| 2814 | + | # CONFIG_PACKAGE_dudders is not set | |
| 2815 | + | # CONFIG_PACKAGE_ez-ipupdate is not set | |
| 2816 | + | # CONFIG_PACKAGE_howl-autoipd is not set | |
| 2817 | + | # CONFIG_PACKAGE_howl-mdnsresponder is not set | |
| 2818 | + | # CONFIG_PACKAGE_howl-nifd is not set | |
| 2819 | + | # CONFIG_PACKAGE_howl-utils is not set | |
| 2820 | + | # CONFIG_PACKAGE_ipupdate is not set | |
| 2821 | + | # CONFIG_PACKAGE_isc-dhcp-client-ipv4 is not set | |
| 2822 | + | # CONFIG_PACKAGE_isc-dhcp-client-ipv6 is not set | |
| 2823 | + | # CONFIG_PACKAGE_isc-dhcp-omshell-ipv4 is not set | |
| 2824 | + | # CONFIG_PACKAGE_isc-dhcp-omshell-ipv6 is not set | |
| 2825 | + | # CONFIG_PACKAGE_isc-dhcp-relay-ipv4 is not set | |
| 2826 | + | # CONFIG_PACKAGE_isc-dhcp-relay-ipv6 is not set | |
| 2827 | + | # CONFIG_PACKAGE_isc-dhcp-server-ipv4 is not set | |
| 2828 | + | # CONFIG_PACKAGE_isc-dhcp-server-ipv6 is not set | |
| 2829 | + | # CONFIG_PACKAGE_maradns is not set | |
| 2830 | + | # CONFIG_PACKAGE_mdns-utils is not set | |
| 2831 | + | # CONFIG_PACKAGE_mdnsd is not set | |
| 2832 | + | # CONFIG_PACKAGE_mdnsresponder is not set | |
| 2833 | + | # CONFIG_PACKAGE_ndyndns is not set | |
| 2834 | + | # CONFIG_PACKAGE_rarpd is not set | |
| 2835 | + | # CONFIG_PACKAGE_unbound is not set | |
| 2836 | + | # CONFIG_PACKAGE_unbound-anchor is not set | |
| 2837 | + | # CONFIG_PACKAGE_unbound-control is not set | |
| 2838 | + | # CONFIG_PACKAGE_unbound-control-setup is not set | |
| 2839 | + | # CONFIG_PACKAGE_unbound-host is not set | |
| 2840 | + | # CONFIG_PACKAGE_updatedd is not set | |
| 2841 | + | # CONFIG_PACKAGE_yaddns is not set | |
| 2842 | + | ||
| 2843 | + | # | |
| 2844 | + | # IPv6 discovery tools | |
| 2845 | + | # | |
| 2846 | + | # CONFIG_PACKAGE_ndisc6 is not set | |
| 2847 | + | # CONFIG_PACKAGE_rdisc6 is not set | |
| 2848 | + | # CONFIG_PACKAGE_rdnssd is not set | |
| 2849 | + | # CONFIG_PACKAGE_traceroute6 is not set | |
| 2850 | + | ||
| 2851 | + | # | |
| 2852 | + | # Instant Messaging | |
| 2853 | + | # | |
| 2854 | + | # CONFIG_PACKAGE_bahamut is not set | |
| 2855 | + | # CONFIG_PACKAGE_bitchx is not set | |
| 2856 | + | # CONFIG_PACKAGE_bitlbee is not set | |
| 2857 | + | # CONFIG_PACKAGE_dircproxy is not set | |
| 2858 | + | # CONFIG_PACKAGE_ekg is not set | |
| 2859 | + | # CONFIG_PACKAGE_imsnif is not set | |
| 2860 | + | # CONFIG_PACKAGE_imspector is not set | |
| 2861 | + | # CONFIG_PACKAGE_irssi is not set | |
| 2862 | + | # CONFIG_PACKAGE_irssi-nossl is not set | |
| 2863 | + | # CONFIG_PACKAGE_mcabber is not set | |
| 2864 | + | # CONFIG_PACKAGE_miau is not set | |
| 2865 | + | # CONFIG_PACKAGE_ngircd is not set | |
| 2866 | + | # CONFIG_PACKAGE_ngircd-nossl is not set | |
| 2867 | + | # CONFIG_PACKAGE_prosody is not set | |
| 2868 | + | # CONFIG_PACKAGE_psybnc is not set | |
| 2869 | + | # CONFIG_PACKAGE_reaim is not set | |
| 2870 | + | # CONFIG_PACKAGE_tmsnc is not set | |
| 2871 | + | # CONFIG_PACKAGE_umurmur-openssl is not set | |
| 2872 | + | # CONFIG_PACKAGE_umurmur-polarssl is not set | |
| 2873 | + | # CONFIG_PACKAGE_weechat is not set | |
| 2874 | + | # CONFIG_PACKAGE_znc is not set | |
| 2875 | + | ||
| 2876 | + | # | |
| 2877 | + | # Linux ATM tools | |
| 2878 | + | # | |
| 2879 | + | # CONFIG_PACKAGE_atm-aread is not set | |
| 2880 | + | # CONFIG_PACKAGE_atm-atmaddr is not set | |
| 2881 | + | # CONFIG_PACKAGE_atm-atmdiag is not set | |
| 2882 | + | # CONFIG_PACKAGE_atm-atmdump is not set | |
| 2883 | + | # CONFIG_PACKAGE_atm-atmloop is not set | |
| 2884 | + | # CONFIG_PACKAGE_atm-atmsigd is not set | |
| 2885 | + | # CONFIG_PACKAGE_atm-atmswitch is not set | |
| 2886 | + | # CONFIG_PACKAGE_atm-atmtcp is not set | |
| 2887 | + | # CONFIG_PACKAGE_atm-awrite is not set | |
| 2888 | + | # CONFIG_PACKAGE_atm-bus is not set | |
| 2889 | + | # CONFIG_PACKAGE_atm-debug-tools is not set | |
| 2890 | + | # CONFIG_PACKAGE_atm-diagnostics is not set | |
| 2891 | + | # CONFIG_PACKAGE_atm-esi is not set | |
| 2892 | + | # CONFIG_PACKAGE_atm-ilmid is not set | |
| 2893 | + | # CONFIG_PACKAGE_atm-ilmidiag is not set | |
| 2894 | + | # CONFIG_PACKAGE_atm-lecs is not set | |
| 2895 | + | # CONFIG_PACKAGE_atm-les is not set | |
| 2896 | + | # CONFIG_PACKAGE_atm-mpcd is not set | |
| 2897 | + | # CONFIG_PACKAGE_atm-saaldump is not set | |
| 2898 | + | # CONFIG_PACKAGE_atm-sonetdiag is not set | |
| 2899 | + | # CONFIG_PACKAGE_atm-svc_recv is not set | |
| 2900 | + | # CONFIG_PACKAGE_atm-svc_send is not set | |
| 2901 | + | # CONFIG_PACKAGE_atm-tools is not set | |
| 2902 | + | # CONFIG_PACKAGE_atm-ttcp_atm is not set | |
| 2903 | + | # CONFIG_PACKAGE_atm-zeppelin is not set | |
| 2904 | + | # CONFIG_PACKAGE_br2684ctl is not set | |
| 2905 | + | ||
| 2906 | + | # | |
| 2907 | + | # NMAP Suite | |
| 2908 | + | # | |
| 2909 | + | # CONFIG_PACKAGE_ncat is not set | |
| 2910 | + | # CONFIG_PACKAGE_ncat-ssl is not set | |
| 2911 | + | # CONFIG_PACKAGE_ndiff is not set | |
| 2912 | + | # CONFIG_PACKAGE_nmap is not set | |
| 2913 | + | # CONFIG_PACKAGE_nmap-ssl is not set | |
| 2914 | + | # CONFIG_PACKAGE_nping is not set | |
| 2915 | + | ||
| 2916 | + | # | |
| 2917 | + | # NNTP | |
| 2918 | + | # | |
| 2919 | + | # CONFIG_PACKAGE_leafnode is not set | |
| 2920 | + | # CONFIG_PACKAGE_nzbget is not set | |
| 2921 | + | # CONFIG_PACKAGE_nzbgetweb is not set | |
| 2922 | + | ||
| 2923 | + | # | |
| 2924 | + | # NTRIP | |
| 2925 | + | # | |
| 2926 | + | # CONFIG_PACKAGE_ntripcaster is not set | |
| 2927 | + | # CONFIG_PACKAGE_ntripclient is not set | |
| 2928 | + | # CONFIG_PACKAGE_ntripserver is not set | |
| 2929 | + | ||
| 2930 | + | # | |
| 2931 | + | # P2P | |
| 2932 | + | # | |
| 2933 | + | # CONFIG_PACKAGE_amule is not set | |
| 2934 | + | # CONFIG_PACKAGE_mutella is not set | |
| 2935 | + | # CONFIG_PACKAGE_opendchub is not set | |
| 2936 | + | # CONFIG_PACKAGE_peerguardian is not set | |
| 2937 | + | # CONFIG_PACKAGE_uhub is not set | |
| 2938 | + | ||
| 2939 | + | # | |
| 2940 | + | # Printing | |
| 2941 | + | # | |
| 2942 | + | # CONFIG_PACKAGE_cups is not set | |
| 2943 | + | # CONFIG_PACKAGE_cups-bsd is not set | |
| 2944 | + | # CONFIG_PACKAGE_cups-client is not set | |
| 2945 | + | # CONFIG_PACKAGE_cups-filters is not set | |
| 2946 | + | # CONFIG_PACKAGE_cups-locale-da is not set | |
| 2947 | + | # CONFIG_PACKAGE_cups-locale-de is not set | |
| 2948 | + | # CONFIG_PACKAGE_cups-locale-es is not set | |
| 2949 | + | # CONFIG_PACKAGE_cups-locale-eu is not set | |
| 2950 | + | # CONFIG_PACKAGE_cups-locale-fi is not set | |
| 2951 | + | # CONFIG_PACKAGE_cups-locale-fr is not set | |
| 2952 | + | # CONFIG_PACKAGE_cups-locale-hu is not set | |
| 2953 | + | # CONFIG_PACKAGE_cups-locale-id is not set | |
| 2954 | + | # CONFIG_PACKAGE_cups-locale-it is not set | |
| 2955 | + | # CONFIG_PACKAGE_cups-locale-ja is not set | |
| 2956 | + | # CONFIG_PACKAGE_cups-locale-ko is not set | |
| 2957 | + | # CONFIG_PACKAGE_cups-locale-nl is not set | |
| 2958 | + | # CONFIG_PACKAGE_cups-locale-no is not set | |
| 2959 | + | # CONFIG_PACKAGE_cups-locale-pl is not set | |
| 2960 | + | # CONFIG_PACKAGE_cups-locale-pt is not set | |
| 2961 | + | # CONFIG_PACKAGE_cups-locale-pt_BR is not set | |
| 2962 | + | # CONFIG_PACKAGE_cups-locale-ru is not set | |
| 2963 | + | # CONFIG_PACKAGE_cups-locale-sv is not set | |
| 2964 | + | # CONFIG_PACKAGE_cups-locale-zh is not set | |
| 2965 | + | # CONFIG_PACKAGE_cups-locale-zh_TW is not set | |
| 2966 | + | # CONFIG_PACKAGE_cups-ppdc is not set | |
| 2967 | + | # CONFIG_PACKAGE_p910nd is not set | |
| 2968 | + | ||
| 2969 | + | # | |
| 2970 | + | # Routing and Redirection | |
| 2971 | + | # | |
| 2972 | + | # CONFIG_PACKAGE_genl is not set | |
| 2973 | + | # CONFIG_PACKAGE_igmpproxy is not set | |
| 2974 | + | # CONFIG_PACKAGE_ip is not set | |
| 2975 | + | # CONFIG_PACKAGE_ip-full is not set | |
| 2976 | + | # CONFIG_PACKAGE_lldpd is not set | |
| 2977 | + | # CONFIG_PACKAGE_net-tools-route is not set | |
| 2978 | + | # CONFIG_PACKAGE_parprouted is not set | |
| 2979 | + | # CONFIG_PACKAGE_redir is not set | |
| 2980 | + | # CONFIG_PACKAGE_relayd is not set | |
| 2981 | + | # CONFIG_PACKAGE_rinetd is not set | |
| 2982 | + | # CONFIG_PACKAGE_smcroute is not set | |
| 2983 | + | # CONFIG_PACKAGE_ss is not set | |
| 2984 | + | # CONFIG_PACKAGE_sslh is not set | |
| 2985 | + | # CONFIG_PACKAGE_tc is not set | |
| 2986 | + | # CONFIG_PACKAGE_udp-broadcast-relay is not set | |
| 2987 | + | # CONFIG_PACKAGE_vrrpd is not set | |
| 2988 | + | # CONFIG_PACKAGE_wing is not set | |
| 2989 | + | ||
| 2990 | + | # | |
| 2991 | + | # SSH | |
| 2992 | + | # | |
| 2993 | + | # CONFIG_PACKAGE_autossh is not set | |
| 2994 | + | # CONFIG_PACKAGE_corkscrew is not set | |
| 2995 | + | # CONFIG_PACKAGE_gesftpserver is not set | |
| 2996 | + | # CONFIG_PACKAGE_openssh-client is not set | |
| 2997 | + | # CONFIG_PACKAGE_openssh-client-utils is not set | |
| 2998 | + | # CONFIG_PACKAGE_openssh-keygen is not set | |
| 2999 | + | # CONFIG_PACKAGE_openssh-moduli is not set | |
| 3000 | + | # CONFIG_PACKAGE_openssh-server is not set | |
| 3001 | + | # CONFIG_PACKAGE_openssh-server-pam is not set | |
| 3002 | + | # CONFIG_PACKAGE_openssh-sftp-client is not set | |
| 3003 | + | # CONFIG_PACKAGE_openssh-sftp-server is not set | |
| 3004 | + | # CONFIG_PACKAGE_rssh is not set | |
| 3005 | + | # CONFIG_PACKAGE_sshtunnel is not set | |
| 3006 | + | ||
| 3007 | + | # | |
| 3008 | + | # THC-IPv6 attack and analyzing toolkit | |
| 3009 | + | # | |
| 3010 | + | # CONFIG_PACKAGE_thc-ipv6-address6 is not set | |
| 3011 | + | # CONFIG_PACKAGE_thc-ipv6-alive6 is not set | |
| 3012 | + | # CONFIG_PACKAGE_thc-ipv6-covert-send6 is not set | |
| 3013 | + | # CONFIG_PACKAGE_thc-ipv6-covert-send6d is not set | |
| 3014 | + | # CONFIG_PACKAGE_thc-ipv6-denial6 is not set | |
| 3015 | + | # CONFIG_PACKAGE_thc-ipv6-detect-new-ip6 is not set | |
| 3016 | + | # CONFIG_PACKAGE_thc-ipv6-detect-sniffer6 is not set | |
| 3017 | + | # CONFIG_PACKAGE_thc-ipv6-dnsdict6 is not set | |
| 3018 | + | # CONFIG_PACKAGE_thc-ipv6-dnsrevenum6 is not set | |
| 3019 | + | # CONFIG_PACKAGE_thc-ipv6-dos-new-ip6 is not set | |
| 3020 | + | # CONFIG_PACKAGE_thc-ipv6-dump-router6 is not set | |
| 3021 | + | # CONFIG_PACKAGE_thc-ipv6-exploit6 is not set | |
| 3022 | + | # CONFIG_PACKAGE_thc-ipv6-fake-advertise6 is not set | |
| 3023 | + | # CONFIG_PACKAGE_thc-ipv6-fake-dhcps6 is not set | |
| 3024 | + | # CONFIG_PACKAGE_thc-ipv6-fake-dns6d is not set | |
| 3025 | + | # CONFIG_PACKAGE_thc-ipv6-fake-dnsupdate6 is not set | |
| 3026 | + | # CONFIG_PACKAGE_thc-ipv6-fake-mipv6 is not set | |
| 3027 | + | # CONFIG_PACKAGE_thc-ipv6-fake-mld26 is not set | |
| 3028 | + | # CONFIG_PACKAGE_thc-ipv6-fake-mld6 is not set | |
| 3029 | + | # CONFIG_PACKAGE_thc-ipv6-fake-mldrouter6 is not set | |
| 3030 | + | # CONFIG_PACKAGE_thc-ipv6-fake-router26 is not set | |
| 3031 | + | # CONFIG_PACKAGE_thc-ipv6-fake-router6 is not set | |
| 3032 | + | # CONFIG_PACKAGE_thc-ipv6-fake-solicitate6 is not set | |
| 3033 | + | # CONFIG_PACKAGE_thc-ipv6-flood-advertise6 is not set | |
| 3034 | + | # CONFIG_PACKAGE_thc-ipv6-flood-dhcpc6 is not set | |
| 3035 | + | # CONFIG_PACKAGE_thc-ipv6-flood-mld26 is not set | |
| 3036 | + | # CONFIG_PACKAGE_thc-ipv6-flood-mld6 is not set | |
| 3037 | + | # CONFIG_PACKAGE_thc-ipv6-flood-mldrouter6 is not set | |
| 3038 | + | # CONFIG_PACKAGE_thc-ipv6-flood-router26 is not set | |
| 3039 | + | # CONFIG_PACKAGE_thc-ipv6-flood-router6 is not set | |
| 3040 | + | # CONFIG_PACKAGE_thc-ipv6-flood-solicitate6 is not set | |
| 3041 | + | # CONFIG_PACKAGE_thc-ipv6-fragmentation6 is not set | |
| 3042 | + | # CONFIG_PACKAGE_thc-ipv6-fuzz-ip6 is not set | |
| 3043 | + | # CONFIG_PACKAGE_thc-ipv6-implementation6 is not set | |
| 3044 | + | # CONFIG_PACKAGE_thc-ipv6-implementation6d is not set | |
| 3045 | + | # CONFIG_PACKAGE_thc-ipv6-inverse-lookup6 is not set | |
| 3046 | + | # CONFIG_PACKAGE_thc-ipv6-kill-router6 is not set | |
| 3047 | + | # CONFIG_PACKAGE_thc-ipv6-ndpexhaust6 is not set | |
| 3048 | + | # CONFIG_PACKAGE_thc-ipv6-node-query6 is not set | |
| 3049 | + | # CONFIG_PACKAGE_thc-ipv6-parasite6 is not set | |
| 3050 | + | # CONFIG_PACKAGE_thc-ipv6-passive-discovery6 is not set | |
| 3051 | + | # CONFIG_PACKAGE_thc-ipv6-randicmp6 is not set | |
| 3052 | + | # CONFIG_PACKAGE_thc-ipv6-redir6 is not set | |
| 3053 | + | # CONFIG_PACKAGE_thc-ipv6-rsmurf6 is not set | |
| 3054 | + | # CONFIG_PACKAGE_thc-ipv6-sendpees6 is not set | |
| 3055 | + | # CONFIG_PACKAGE_thc-ipv6-sendpeesmp6 is not set | |
| 3056 | + | # CONFIG_PACKAGE_thc-ipv6-smurf6 is not set | |
| 3057 | + | # CONFIG_PACKAGE_thc-ipv6-thcping6 is not set | |
| 3058 | + | # CONFIG_PACKAGE_thc-ipv6-toobig6 is not set | |
| 3059 | + | # CONFIG_PACKAGE_thc-ipv6-trace6 is not set | |
| 3060 | + | ||
| 3061 | + | # | |
| 3062 | + | # Telephony | |
| 3063 | + | # | |
| 3064 | + | # CONFIG_PACKAGE_asterisk11 is not set | |
| 3065 | + | # CONFIG_PACKAGE_asterisk18 is not set | |
| 3066 | + | # CONFIG_PACKAGE_baresip is not set | |
| 3067 | + | # CONFIG_PACKAGE_freeswitch is not set | |
| 3068 | + | # CONFIG_PACKAGE_kamailio is not set | |
| 3069 | + | # CONFIG_PACKAGE_kamailio3 is not set | |
| 3070 | + | # CONFIG_PACKAGE_kamailio4 is not set | |
| 3071 | + | # CONFIG_PACKAGE_miax is not set | |
| 3072 | + | # CONFIG_PACKAGE_pcapsipdump is not set | |
| 3073 | + | # CONFIG_PACKAGE_restund is not set | |
| 3074 | + | # CONFIG_PACKAGE_rtpproxy is not set | |
| 3075 | + | # CONFIG_PACKAGE_sipp is not set | |
| 3076 | + | # CONFIG_PACKAGE_siproxd is not set | |
| 3077 | + | # CONFIG_PACKAGE_sipsak is not set | |
| 3078 | + | # CONFIG_PACKAGE_smap is not set | |
| 3079 | + | # CONFIG_PACKAGE_smap-to-devinfo is not set | |
| 3080 | + | # CONFIG_PACKAGE_yate is not set | |
| 3081 | + | ||
| 3082 | + | # | |
| 3083 | + | # Time Synchronization | |
| 3084 | + | # | |
| 3085 | + | # CONFIG_PACKAGE_chrony is not set | |
| 3086 | + | # CONFIG_PACKAGE_htpdate is not set | |
| 3087 | + | # CONFIG_PACKAGE_ntp-keygen is not set | |
| 3088 | + | # CONFIG_PACKAGE_ntp-keygen-ssl is not set | |
| 3089 | + | # CONFIG_PACKAGE_ntp-utils is not set | |
| 3090 | + | # CONFIG_PACKAGE_ntpclient is not set | |
| 3091 | + | # CONFIG_PACKAGE_ntpd is not set | |
| 3092 | + | # CONFIG_PACKAGE_ntpd-ssl is not set | |
| 3093 | + | # CONFIG_PACKAGE_ntpdate is not set | |
| 3094 | + | # CONFIG_PACKAGE_openntpd is not set | |
| 3095 | + | # CONFIG_PACKAGE_ptpd is not set | |
| 3096 | + | ||
| 3097 | + | # | |
| 3098 | + | # VPN | |
| 3099 | + | # | |
| 3100 | + | # CONFIG_PACKAGE_chaosvpn is not set | |
| 3101 | + | # CONFIG_PACKAGE_etherpuppet is not set | |
| 3102 | + | # CONFIG_PACKAGE_frickin is not set | |
| 3103 | + | # CONFIG_PACKAGE_ipsec-tools is not set | |
| 3104 | + | # CONFIG_PACKAGE_isakmpd is not set | |
| 3105 | + | # CONFIG_PACKAGE_l2tpd is not set | |
| 3106 | + | # CONFIG_PACKAGE_l2tpns is not set | |
| 3107 | + | # CONFIG_PACKAGE_matrixtunnel is not set | |
| 3108 | + | # CONFIG_PACKAGE_n2n is not set | |
| 3109 | + | # CONFIG_PACKAGE_openconnect is not set | |
| 3110 | + | # CONFIG_PACKAGE_openl2tp-full is not set | |
| 3111 | + | # CONFIG_PACKAGE_openl2tp-mini is not set | |
| 3112 | + | # CONFIG_PACKAGE_opennhrp is not set | |
| 3113 | + | # CONFIG_PACKAGE_openswan is not set | |
| 3114 | + | # CONFIG_PACKAGE_openvpn-easy-rsa is not set | |
| 3115 | + | # CONFIG_PACKAGE_openvpn-nossl is not set | |
| 3116 | + | # CONFIG_PACKAGE_openvpn-openssl is not set | |
| 3117 | + | # CONFIG_PACKAGE_openvpn-polarssl is not set | |
| 3118 | + | # CONFIG_PACKAGE_peervpn is not set | |
| 3119 | + | # CONFIG_PACKAGE_pptpd is not set | |
| 3120 | + | # CONFIG_PACKAGE_quicktun is not set | |
| 3121 | + | # CONFIG_PACKAGE_ssltunnel is not set | |
| 3122 | + | # CONFIG_PACKAGE_strongswan is not set | |
| 3123 | + | # CONFIG_PACKAGE_strongswan-charon is not set | |
| 3124 | + | # CONFIG_PACKAGE_strongswan-default is not set | |
| 3125 | + | # CONFIG_PACKAGE_strongswan-full is not set | |
| 3126 | + | # CONFIG_PACKAGE_strongswan-libfast is not set | |
| 3127 | + | # CONFIG_PACKAGE_strongswan-minimal is not set | |
| 3128 | + | # CONFIG_PACKAGE_strongswan-mod-addrblock is not set | |
| 3129 | + | # CONFIG_PACKAGE_strongswan-mod-aes is not set | |
| 3130 | + | # CONFIG_PACKAGE_strongswan-mod-af-alg is not set | |
| 3131 | + | # CONFIG_PACKAGE_strongswan-mod-agent is not set | |
| 3132 | + | # CONFIG_PACKAGE_strongswan-mod-attr is not set | |
| 3133 | + | # CONFIG_PACKAGE_strongswan-mod-attr-sql is not set | |
| 3134 | + | # CONFIG_PACKAGE_strongswan-mod-blowfish is not set | |
| 3135 | + | # CONFIG_PACKAGE_strongswan-mod-ccm is not set | |
| 3136 | + | # CONFIG_PACKAGE_strongswan-mod-cmac is not set | |
| 3137 | + | # CONFIG_PACKAGE_strongswan-mod-constraints is not set | |
| 3138 | + | # CONFIG_PACKAGE_strongswan-mod-coupling is not set | |
| 3139 | + | # CONFIG_PACKAGE_strongswan-mod-ctr is not set | |
| 3140 | + | # CONFIG_PACKAGE_strongswan-mod-curl is not set | |
| 3141 | + | # CONFIG_PACKAGE_strongswan-mod-des is not set | |
| 3142 | + | # CONFIG_PACKAGE_strongswan-mod-dhcp is not set | |
| 3143 | + | # CONFIG_PACKAGE_strongswan-mod-dnskey is not set | |
| 3144 | + | # CONFIG_PACKAGE_strongswan-mod-duplicheck is not set | |
| 3145 | + | # CONFIG_PACKAGE_strongswan-mod-eap-identity is not set | |
| 3146 | + | # CONFIG_PACKAGE_strongswan-mod-eap-md5 is not set | |
| 3147 | + | # CONFIG_PACKAGE_strongswan-mod-eap-mschapv2 is not set | |
| 3148 | + | # CONFIG_PACKAGE_strongswan-mod-eap-radius is not set | |
| 3149 | + | # CONFIG_PACKAGE_strongswan-mod-farp is not set | |
| 3150 | + | # CONFIG_PACKAGE_strongswan-mod-fips-prf is not set | |
| 3151 | + | # CONFIG_PACKAGE_strongswan-mod-gcm is not set | |
| 3152 | + | # CONFIG_PACKAGE_strongswan-mod-gcrypt is not set | |
| 3153 | + | # CONFIG_PACKAGE_strongswan-mod-gmp is not set | |
| 3154 | + | # CONFIG_PACKAGE_strongswan-mod-ha is not set | |
| 3155 | + | # CONFIG_PACKAGE_strongswan-mod-hmac is not set | |
| 3156 | + | # CONFIG_PACKAGE_strongswan-mod-kernel-klips is not set | |
| 3157 | + | # CONFIG_PACKAGE_strongswan-mod-kernel-libipsec is not set | |
| 3158 | + | # CONFIG_PACKAGE_strongswan-mod-kernel-netlink is not set | |
| 3159 | + | # CONFIG_PACKAGE_strongswan-mod-kernel-pfkey is not set | |
| 3160 | + | # CONFIG_PACKAGE_strongswan-mod-kernel-pfroute is not set | |
| 3161 | + | # CONFIG_PACKAGE_strongswan-mod-ldap is not set | |
| 3162 | + | # CONFIG_PACKAGE_strongswan-mod-led is not set | |
| 3163 | + | # CONFIG_PACKAGE_strongswan-mod-load-tester is not set | |
| 3164 | + | # CONFIG_PACKAGE_strongswan-mod-md4 is not set | |
| 3165 | + | # CONFIG_PACKAGE_strongswan-mod-md5 is not set | |
| 3166 | + | # CONFIG_PACKAGE_strongswan-mod-mysql is not set | |
| 3167 | + | # CONFIG_PACKAGE_strongswan-mod-nonce is not set | |
| 3168 | + | # CONFIG_PACKAGE_strongswan-mod-openssl is not set | |
| 3169 | + | # CONFIG_PACKAGE_strongswan-mod-padlock is not set | |
| 3170 | + | # CONFIG_PACKAGE_strongswan-mod-pem is not set | |
| 3171 | + | # CONFIG_PACKAGE_strongswan-mod-pgp is not set | |
| 3172 | + | # CONFIG_PACKAGE_strongswan-mod-pkcs1 is not set | |
| 3173 | + | # CONFIG_PACKAGE_strongswan-mod-pkcs11 is not set | |
| 3174 | + | # CONFIG_PACKAGE_strongswan-mod-pkcs8 is not set | |
| 3175 | + | # CONFIG_PACKAGE_strongswan-mod-pubkey is not set | |
| 3176 | + | # CONFIG_PACKAGE_strongswan-mod-random is not set | |
| 3177 | + | # CONFIG_PACKAGE_strongswan-mod-resolve is not set | |
| 3178 | + | # CONFIG_PACKAGE_strongswan-mod-revocation is not set | |
| 3179 | + | # CONFIG_PACKAGE_strongswan-mod-sha1 is not set | |
| 3180 | + | # CONFIG_PACKAGE_strongswan-mod-sha2 is not set | |
| 3181 | + | # CONFIG_PACKAGE_strongswan-mod-smp is not set | |
| 3182 | + | # CONFIG_PACKAGE_strongswan-mod-socket-default is not set | |
| 3183 | + | # CONFIG_PACKAGE_strongswan-mod-socket-dynamic is not set | |
| 3184 | + | # CONFIG_PACKAGE_strongswan-mod-sql is not set | |
| 3185 | + | # CONFIG_PACKAGE_strongswan-mod-sqlite is not set | |
| 3186 | + | # CONFIG_PACKAGE_strongswan-mod-stroke is not set | |
| 3187 | + | # CONFIG_PACKAGE_strongswan-mod-test-vectors is not set | |
| 3188 | + | # CONFIG_PACKAGE_strongswan-mod-uci is not set | |
| 3189 | + | # CONFIG_PACKAGE_strongswan-mod-unity is not set | |
| 3190 | + | # CONFIG_PACKAGE_strongswan-mod-updown is not set | |
| 3191 | + | # CONFIG_PACKAGE_strongswan-mod-whitelist is not set | |
| 3192 | + | # CONFIG_PACKAGE_strongswan-mod-x509 is not set | |
| 3193 | + | # CONFIG_PACKAGE_strongswan-mod-xauth-eap is not set | |
| 3194 | + | # CONFIG_PACKAGE_strongswan-mod-xauth-generic is not set | |
| 3195 | + | # CONFIG_PACKAGE_strongswan-mod-xcbc is not set | |
| 3196 | + | # CONFIG_PACKAGE_strongswan-utils is not set | |
| 3197 | + | # CONFIG_PACKAGE_tinc is not set | |
| 3198 | + | # CONFIG_PACKAGE_uanytun is not set | |
| 3199 | + | # CONFIG_PACKAGE_uanytun-nocrypt is not set | |
| 3200 | + | # CONFIG_PACKAGE_uanytun-sslcrypt is not set | |
| 3201 | + | # CONFIG_PACKAGE_vpnc is not set | |
| 3202 | + | # CONFIG_PACKAGE_vpnc-scripts is not set | |
| 3203 | + | # CONFIG_PACKAGE_vpzone is not set | |
| 3204 | + | # CONFIG_PACKAGE_vtun is not set | |
| 3205 | + | # CONFIG_PACKAGE_xl2tpd is not set | |
| 3206 | + | ||
| 3207 | + | # | |
| 3208 | + | # Version Control Systems | |
| 3209 | + | # | |
| 3210 | + | # CONFIG_PACKAGE_git is not set | |
| 3211 | + | # CONFIG_PACKAGE_mercurial is not set | |
| 3212 | + | # CONFIG_PACKAGE_subversion-libs is not set | |
| 3213 | + | ||
| 3214 | + | # | |
| 3215 | + | # Web Servers/Proxies | |
| 3216 | + | # | |
| 3217 | + | # CONFIG_PACKAGE_apache is not set | |
| 3218 | + | # CONFIG_PACKAGE_appweb is not set | |
| 3219 | + | # CONFIG_PACKAGE_axhttpd is not set | |
| 3220 | + | # CONFIG_PACKAGE_axtlswrap is not set | |
| 3221 | + | # CONFIG_PACKAGE_crowdcontrol is not set | |
| 3222 | + | # CONFIG_PACKAGE_dansguardian is not set | |
| 3223 | + | # CONFIG_PACKAGE_gatling is not set | |
| 3224 | + | # CONFIG_PACKAGE_haproxy is not set | |
| 3225 | + | # CONFIG_PACKAGE_hiawatha is not set | |
| 3226 | + | # CONFIG_PACKAGE_lighttpd is not set | |
| 3227 | + | # CONFIG_PACKAGE_mini-httpd is not set | |
| 3228 | + | # CONFIG_PACKAGE_mini-httpd-htpasswd is not set | |
| 3229 | + | # CONFIG_PACKAGE_mini-httpd-matrixssl is not set | |
| 3230 | + | # CONFIG_PACKAGE_mini-httpd-openssl is not set | |
| 3231 | + | CONFIG_PACKAGE_nginx=m | |
| 3232 | + | ||
| 3233 | + | # | |
| 3234 | + | # Configuration | |
| 3235 | + | # | |
| 3236 | + | # CONFIG_NGINX_STUB_STATUS is not set | |
| 3237 | + | # CONFIG_NGINX_FLV is not set | |
| 3238 | + | # CONFIG_NGINX_SSL is not set | |
| 3239 | + | # CONFIG_NGINX_DAV is not set | |
| 3240 | + | # CONFIG_NGINX_LUA is not set | |
| 3241 | + | CONFIG_NGINX_PCRE=y | |
| 3242 | + | # CONFIG_NGINX_HTTP_CACHE is not set | |
| 3243 | + | CONFIG_NGINX_HTTP_CHARSET=y | |
| 3244 | + | CONFIG_NGINX_HTTP_GZIP=y | |
| 3245 | + | CONFIG_NGINX_HTTP_SSI=y | |
| 3246 | + | CONFIG_NGINX_HTTP_USERID=y | |
| 3247 | + | CONFIG_NGINX_HTTP_ACCESS=y | |
| 3248 | + | CONFIG_NGINX_HTTP_AUTH_BASIC=y | |
| 3249 | + | CONFIG_NGINX_HTTP_AUTOINDEX=y | |
| 3250 | + | CONFIG_NGINX_HTTP_GEO=y | |
| 3251 | + | CONFIG_NGINX_HTTP_MAP=y | |
| 3252 | + | CONFIG_NGINX_HTTP_SPLIT_CLIENTS=y | |
| 3253 | + | CONFIG_NGINX_HTTP_REFERER=y | |
| 3254 | + | CONFIG_NGINX_HTTP_REWRITE=y | |
| 3255 | + | CONFIG_NGINX_HTTP_PROXY=y | |
| 3256 | + | CONFIG_NGINX_HTTP_FASTCGI=y | |
| 3257 | + | CONFIG_NGINX_HTTP_UWSGI=y | |
| 3258 | + | CONFIG_NGINX_HTTP_SCGI=y | |
| 3259 | + | CONFIG_NGINX_HTTP_MEMCACHED=y | |
| 3260 | + | CONFIG_NGINX_HTTP_LIMIT_CONN=y | |
| 3261 | + | CONFIG_NGINX_HTTP_LIMIT_REQ=y | |
| 3262 | + | CONFIG_NGINX_HTTP_EMPTY_GIF=y | |
| 3263 | + | CONFIG_NGINX_HTTP_BROWSER=y | |
| 3264 | + | CONFIG_NGINX_HTTP_UPSTREAM_IP_HASH=y | |
| 3265 | + | # CONFIG_PACKAGE_obfsproxy is not set | |
| 3266 | + | # CONFIG_PACKAGE_pdnsd is not set | |
| 3267 | + | # CONFIG_PACKAGE_pepsal is not set | |
| 3268 | + | # CONFIG_PACKAGE_polipo is not set | |
| 3269 | + | # CONFIG_PACKAGE_privoxy is not set | |
| 3270 | + | # CONFIG_PACKAGE_redsocks is not set | |
| 3271 | + | # CONFIG_PACKAGE_seeks is not set | |
| 3272 | + | # CONFIG_PACKAGE_sockd is not set | |
| 3273 | + | # CONFIG_PACKAGE_socksify is not set | |
| 3274 | + | # CONFIG_PACKAGE_spawn-fcgi is not set | |
| 3275 | + | # CONFIG_PACKAGE_squid is not set | |
| 3276 | + | # CONFIG_PACKAGE_srelay is not set | |
| 3277 | + | # CONFIG_PACKAGE_tinyproxy is not set | |
| 3278 | + | # CONFIG_PACKAGE_transocks is not set | |
| 3279 | + | # CONFIG_PACKAGE_tsocks is not set | |
| 3280 | + | # CONFIG_PACKAGE_uhttpd is not set | |
| 3281 | + | # CONFIG_PACKAGE_uhttpd_debug is not set | |
| 3282 | + | # CONFIG_PACKAGE_wccpd is not set | |
| 3283 | + | ||
| 3284 | + | # | |
| 3285 | + | # dial-in/up | |
| 3286 | + | # | |
| 3287 | + | # CONFIG_PACKAGE_rp-l2tpd is not set | |
| 3288 | + | # CONFIG_PACKAGE_rp-pppoe-relay is not set | |
| 3289 | + | # CONFIG_PACKAGE_rp-pppoe-server is not set | |
| 3290 | + | # CONFIG_PACKAGE_rp-pppoe-sniff is not set | |
| 3291 | + | ||
| 3292 | + | # | |
| 3293 | + | # firmware | |
| 3294 | + | # | |
| 3295 | + | # CONFIG_PACKAGE_speedtouch-usb-firmware is not set | |
| 3296 | + | ||
| 3297 | + | # | |
| 3298 | + | # miredo: Teredo (IPv6 tunneling over UDP through NAT) | |
| 3299 | + | # | |
| 3300 | + | # CONFIG_PACKAGE_miredo-client is not set | |
| 3301 | + | # CONFIG_PACKAGE_miredo-common is not set | |
| 3302 | + | # CONFIG_PACKAGE_miredo-server is not set | |
| 3303 | + | ||
| 3304 | + | # | |
| 3305 | + | # wide-dhcpv6 | |
| 3306 | + | # | |
| 3307 | + | # CONFIG_PACKAGE_wide-dhcpv6-client is not set | |
| 3308 | + | # CONFIG_PACKAGE_wide-dhcpv6-control is not set | |
| 3309 | + | # CONFIG_PACKAGE_wide-dhcpv6-relay is not set | |
| 3310 | + | # CONFIG_PACKAGE_wide-dhcpv6-server is not set | |
| 3311 | + | ||
| 3312 | + | # | |
| 3313 | + | # wireless | |
| 3314 | + | # | |
| 3315 | + | # CONFIG_PACKAGE_aircrack-ng is not set | |
| 3316 | + | # CONFIG_PACKAGE_aircrack-ptw is not set | |
| 3317 | + | # CONFIG_PACKAGE_airpwn is not set | |
| 3318 | + | # CONFIG_PACKAGE_horst is not set | |
| 3319 | + | # CONFIG_PACKAGE_karma is not set | |
| 3320 | + | # CONFIG_PACKAGE_kismet-client is not set | |
| 3321 | + | # CONFIG_PACKAGE_kismet-drone is not set | |
| 3322 | + | # CONFIG_PACKAGE_kismet-server is not set | |
| 3323 | + | # CONFIG_PACKAGE_mdk3 is not set | |
| 3324 | + | # CONFIG_PACKAGE_reaver is not set | |
| 3325 | + | # CONFIG_PACKAGE_snort-wireless is not set | |
| 3326 | + | # CONFIG_PACKAGE_snort-wireless-mysql is not set | |
| 3327 | + | # CONFIG_PACKAGE_snort-wireless-pgsql is not set | |
| 3328 | + | # CONFIG_PACKAGE_wavemon is not set | |
| 3329 | + | # CONFIG_PACKAGE_xsupplicant is not set | |
| 3330 | + | # CONFIG_PACKAGE_6in4 is not set | |
| 3331 | + | # CONFIG_PACKAGE_6rd is not set | |
| 3332 | + | # CONFIG_PACKAGE_6relayd is not set | |
| 3333 | + | # CONFIG_PACKAGE_6to4 is not set | |
| 3334 | + | # CONFIG_PACKAGE_6tunnel is not set | |
| 3335 | + | # CONFIG_PACKAGE_aiccu is not set | |
| 3336 | + | # CONFIG_PACKAGE_aoetools is not set | |
| 3337 | + | # CONFIG_PACKAGE_apf is not set | |
| 3338 | + | # CONFIG_PACKAGE_aprx is not set | |
| 3339 | + | # CONFIG_PACKAGE_arpd is not set | |
| 3340 | + | # CONFIG_PACKAGE_arpwatch is not set | |
| 3341 | + | # CONFIG_PACKAGE_authsae is not set | |
| 3342 | + | # CONFIG_PACKAGE_bing is not set | |
| 3343 | + | # CONFIG_PACKAGE_bmon is not set | |
| 3344 | + | # CONFIG_PACKAGE_bwm is not set | |
| 3345 | + | # CONFIG_PACKAGE_bwping is not set | |
| 3346 | + | # CONFIG_PACKAGE_cdp-tools is not set | |
| 3347 | + | # CONFIG_PACKAGE_chat is not set | |
| 3348 | + | # CONFIG_PACKAGE_cifsmount is not set | |
| 3349 | + | # CONFIG_PACKAGE_crda is not set | |
| 3350 | + | # CONFIG_PACKAGE_cutter is not set | |
| 3351 | + | # CONFIG_PACKAGE_daemonlogger is not set | |
| 3352 | + | # CONFIG_PACKAGE_darkstat is not set | |
| 3353 | + | # CONFIG_PACKAGE_dhcp6-client is not set | |
| 3354 | + | # CONFIG_PACKAGE_dhcp6-server is not set | |
| 3355 | + | # CONFIG_PACKAGE_dibbler-client is not set | |
| 3356 | + | # CONFIG_PACKAGE_dibbler-relay is not set | |
| 3357 | + | # CONFIG_PACKAGE_dibbler-requestor is not set | |
| 3358 | + | # CONFIG_PACKAGE_dibbler-server is not set | |
| 3359 | + | # CONFIG_PACKAGE_ditg is not set | |
| 3360 | + | # CONFIG_PACKAGE_dmapd is not set | |
| 3361 | + | # CONFIG_PACKAGE_dns2tcp is not set | |
| 3362 | + | # CONFIG_PACKAGE_dns2tcpd is not set | |
| 3363 | + | # CONFIG_PACKAGE_ds-lite is not set | |
| 3364 | + | # CONFIG_PACKAGE_dsniff is not set | |
| 3365 | + | # CONFIG_PACKAGE_e169-stats is not set | |
| 3366 | + | # CONFIG_PACKAGE_elinks is not set | |
| 3367 | + | # CONFIG_PACKAGE_etherwake is not set | |
| 3368 | + | # CONFIG_PACKAGE_ethtool is not set | |
| 3369 | + | # CONFIG_PACKAGE_ettercap is not set | |
| 3370 | + | # CONFIG_PACKAGE_faifa is not set | |
| 3371 | + | # CONFIG_PACKAGE_fakeidentd is not set | |
| 3372 | + | # CONFIG_PACKAGE_flow-tools is not set | |
| 3373 | + | # CONFIG_PACKAGE_fping is not set | |
| 3374 | + | # CONFIG_PACKAGE_fprobe is not set | |
| 3375 | + | # CONFIG_PACKAGE_fprobe-ulog is not set | |
| 3376 | + | # CONFIG_PACKAGE_gpsd is not set | |
| 3377 | + | # CONFIG_PACKAGE_gpsd-clients is not set | |
| 3378 | + | # CONFIG_PACKAGE_gw6c is not set | |
| 3379 | + | # CONFIG_PACKAGE_hostapd is not set | |
| 3380 | + | # CONFIG_PACKAGE_hostapd-common is not set | |
| 3381 | + | # CONFIG_PACKAGE_hostapd-common-old is not set | |
| 3382 | + | # CONFIG_PACKAGE_hostapd-mini is not set | |
| 3383 | + | # CONFIG_PACKAGE_hpavcfg is not set | |
| 3384 | + | # CONFIG_PACKAGE_hping3 is not set | |
| 3385 | + | # CONFIG_PACKAGE_httping is not set | |
| 3386 | + | # CONFIG_PACKAGE_httping-nossl is not set | |
| 3387 | + | # CONFIG_PACKAGE_ifenslave is not set | |
| 3388 | + | # CONFIG_PACKAGE_ifstat is not set | |
| 3389 | + | # CONFIG_PACKAGE_iftop is not set | |
| 3390 | + | # CONFIG_PACKAGE_ipcad is not set | |
| 3391 | + | # CONFIG_PACKAGE_iperf is not set | |
| 3392 | + | # CONFIG_PACKAGE_iperf-mt is not set | |
| 3393 | + | # CONFIG_PACKAGE_ipset is not set | |
| 3394 | + | # CONFIG_PACKAGE_ipset-dns is not set | |
| 3395 | + | # CONFIG_PACKAGE_iptraf is not set | |
| 3396 | + | # CONFIG_PACKAGE_iputils-arping is not set | |
| 3397 | + | # CONFIG_PACKAGE_iputils-clockdiff is not set | |
| 3398 | + | # CONFIG_PACKAGE_iputils-ping is not set | |
| 3399 | + | # CONFIG_PACKAGE_iputils-ping6 is not set | |
| 3400 | + | # CONFIG_PACKAGE_iputils-tftpd is not set | |
| 3401 | + | # CONFIG_PACKAGE_iputils-tracepath is not set | |
| 3402 | + | # CONFIG_PACKAGE_iputils-tracepath6 is not set | |
| 3403 | + | # CONFIG_PACKAGE_iputils-traceroute6 is not set | |
| 3404 | + | # CONFIG_PACKAGE_ipv6calc is not set | |
| 3405 | + | # CONFIG_PACKAGE_ipv6calc-mini is not set | |
| 3406 | + | # CONFIG_PACKAGE_ipv6log is not set | |
| 3407 | + | # CONFIG_PACKAGE_ipv6log-mini is not set | |
| 3408 | + | # CONFIG_PACKAGE_iw is not set | |
| 3409 | + | # CONFIG_PACKAGE_jtg is not set | |
| 3410 | + | # CONFIG_PACKAGE_keepalived is not set | |
| 3411 | + | # CONFIG_PACKAGE_keynote is not set | |
| 3412 | + | # CONFIG_PACKAGE_krb5-client is not set | |
| 3413 | + | # CONFIG_PACKAGE_krb5-libs is not set | |
| 3414 | + | # CONFIG_PACKAGE_krb5-server is not set | |
| 3415 | + | # CONFIG_PACKAGE_l2tpv3tun is not set | |
| 3416 | + | # CONFIG_PACKAGE_lft is not set | |
| 3417 | + | # CONFIG_PACKAGE_lispd is not set | |
| 3418 | + | # CONFIG_PACKAGE_lsm is not set | |
| 3419 | + | # CONFIG_PACKAGE_mac-to-devinfo is not set | |
| 3420 | + | # CONFIG_PACKAGE_madwimax is not set | |
| 3421 | + | # CONFIG_PACKAGE_memcached is not set | |
| 3422 | + | # CONFIG_PACKAGE_mgen is not set | |
| 3423 | + | # CONFIG_PACKAGE_mii-tool is not set | |
| 3424 | + | # CONFIG_PACKAGE_mini-snmpd is not set | |
| 3425 | + | # CONFIG_PACKAGE_mosquitto is not set | |
| 3426 | + | # CONFIG_PACKAGE_mosquitto-client is not set | |
| 3427 | + | # CONFIG_PACKAGE_mosquitto-client-nossl is not set | |
| 3428 | + | # CONFIG_PACKAGE_mosquitto-nossl is not set | |
| 3429 | + | # CONFIG_PACKAGE_mrtg is not set | |
| 3430 | + | # CONFIG_PACKAGE_mtr is not set | |
| 3431 | + | # CONFIG_PACKAGE_multiwan is not set | |
| 3432 | + | # CONFIG_PACKAGE_mvprelay is not set | |
| 3433 | + | # CONFIG_PACKAGE_nbd is not set | |
| 3434 | + | # CONFIG_PACKAGE_nbtscan is not set | |
| 3435 | + | # CONFIG_PACKAGE_net-tools-arp is not set | |
| 3436 | + | # CONFIG_PACKAGE_net-tools-hostname is not set | |
| 3437 | + | # CONFIG_PACKAGE_net-tools-ifconfig is not set | |
| 3438 | + | # CONFIG_PACKAGE_net-tools-ipmaddr is not set | |
| 3439 | + | # CONFIG_PACKAGE_net-tools-iptunnel is not set | |
| 3440 | + | # CONFIG_PACKAGE_net-tools-mii-tool is not set | |
| 3441 | + | # CONFIG_PACKAGE_net-tools-nameif is not set | |
| 3442 | + | # CONFIG_PACKAGE_net-tools-netstat is not set | |
| 3443 | + | # CONFIG_PACKAGE_net-tools-plipconfig is not set | |
| 3444 | + | # CONFIG_PACKAGE_net-tools-rarp is not set | |
| 3445 | + | # CONFIG_PACKAGE_net-tools-slattach is not set | |
| 3446 | + | # CONFIG_PACKAGE_netcat is not set | |
| 3447 | + | # CONFIG_PACKAGE_netdiscover is not set | |
| 3448 | + | # CONFIG_PACKAGE_netdiscover-to-devinfo is not set | |
| 3449 | + | # CONFIG_PACKAGE_netio is not set | |
| 3450 | + | # CONFIG_PACKAGE_netperf is not set | |
| 3451 | + | # CONFIG_PACKAGE_netpipe is not set | |
| 3452 | + | # CONFIG_PACKAGE_netstat-nat is not set | |
| 3453 | + | # CONFIG_PACKAGE_ngrep is not set | |
| 3454 | + | # CONFIG_PACKAGE_noping is not set | |
| 3455 | + | # CONFIG_PACKAGE_nuttcp is not set | |
| 3456 | + | # CONFIG_PACKAGE_nuttcp-xinetd is not set | |
| 3457 | + | CONFIG_PACKAGE_odhcp6c=y | |
| 3458 | + | CONFIG_PACKAGE_odhcp6c_ext_prefix_class=0 | |
| 3459 | + | CONFIG_PACKAGE_odhcp6c_ext_cer_id=0 | |
| 3460 | + | CONFIG_PACKAGE_odhcpd=y | |
| 3461 | + | CONFIG_PACKAGE_odhcpd_ext_prefix_class=0 | |
| 3462 | + | CONFIG_PACKAGE_odhcpd_ext_cer_id=0 | |
| 3463 | + | # CONFIG_PACKAGE_oidentd is not set | |
| 3464 | + | # CONFIG_PACKAGE_openldap-server is not set | |
| 3465 | + | # CONFIG_PACKAGE_openrrcp is not set | |
| 3466 | + | # CONFIG_PACKAGE_openslp is not set | |
| 3467 | + | # CONFIG_PACKAGE_oping is not set | |
| 3468 | + | # CONFIG_PACKAGE_paris-traceroute is not set | |
| 3469 | + | # CONFIG_PACKAGE_pen is not set | |
| 3470 | + | # CONFIG_PACKAGE_portmap is not set | |
| 3471 | + | CONFIG_PACKAGE_ppp=y | |
| 3472 | + | # CONFIG_PACKAGE_ppp-mod-pppoa is not set | |
| 3473 | + | CONFIG_PACKAGE_ppp-mod-pppoe=y | |
| 3474 | + | # CONFIG_PACKAGE_ppp-mod-pppol2tp is not set | |
| 3475 | + | # CONFIG_PACKAGE_ppp-mod-pptp is not set | |
| 3476 | + | # CONFIG_PACKAGE_ppp-mod-radius is not set | |
| 3477 | + | # CONFIG_PACKAGE_ppp-multilink is not set | |
| 3478 | + | # CONFIG_PACKAGE_pppdump is not set | |
| 3479 | + | # CONFIG_PACKAGE_pppstats is not set | |
| 3480 | + | # CONFIG_PACKAGE_ptrtd is not set | |
| 3481 | + | # CONFIG_PACKAGE_pyload is not set | |
| 3482 | + | # CONFIG_PACKAGE_pyrit is not set | |
| 3483 | + | # CONFIG_PACKAGE_qolyester is not set | |
| 3484 | + | # CONFIG_PACKAGE_raddump is not set | |
| 3485 | + | # CONFIG_PACKAGE_radiusclient-ng is not set | |
| 3486 | + | # CONFIG_PACKAGE_radsecproxy is not set | |
| 3487 | + | # CONFIG_PACKAGE_radvd is not set | |
| 3488 | + | # CONFIG_PACKAGE_radvdump is not set | |
| 3489 | + | # CONFIG_PACKAGE_remserial is not set | |
| 3490 | + | # CONFIG_PACKAGE_rrs is not set | |
| 3491 | + | # CONFIG_PACKAGE_rrs-nossl is not set | |
| 3492 | + | # CONFIG_PACKAGE_rssileds is not set | |
| 3493 | + | # CONFIG_PACKAGE_samba36-client is not set | |
| 3494 | + | # CONFIG_PACKAGE_samba36-server is not set | |
| 3495 | + | # CONFIG_PACKAGE_scdp is not set | |
| 3496 | + | # CONFIG_PACKAGE_sctp is not set | |
| 3497 | + | # CONFIG_PACKAGE_send is not set | |
| 3498 | + | # CONFIG_PACKAGE_ser2net is not set | |
| 3499 | + | # CONFIG_PACKAGE_serialoverip is not set | |
| 3500 | + | # CONFIG_PACKAGE_shat is not set | |
| 3501 | + | # CONFIG_PACKAGE_slurm is not set | |
| 3502 | + | # CONFIG_PACKAGE_smtptrapd is not set | |
| 3503 | + | # CONFIG_PACKAGE_snmp-utils is not set | |
| 3504 | + | # CONFIG_PACKAGE_snmpd is not set | |
| 3505 | + | # CONFIG_PACKAGE_snmpd-static is not set | |
| 3506 | + | # CONFIG_PACKAGE_socat is not set | |
| 3507 | + | # CONFIG_PACKAGE_softflowd is not set | |
| 3508 | + | # CONFIG_PACKAGE_soloscli is not set | |
| 3509 | + | # CONFIG_PACKAGE_sscep is not set | |
| 3510 | + | # CONFIG_PACKAGE_sslcat is not set | |
| 3511 | + | # CONFIG_PACKAGE_sslsniff is not set | |
| 3512 | + | # CONFIG_PACKAGE_sslstrip is not set | |
| 3513 | + | # CONFIG_PACKAGE_stun-client is not set | |
| 3514 | + | # CONFIG_PACKAGE_stund is not set | |
| 3515 | + | # CONFIG_PACKAGE_stunnel is not set | |
| 3516 | + | # CONFIG_PACKAGE_synce-dccm is not set | |
| 3517 | + | # CONFIG_PACKAGE_tayga is not set | |
| 3518 | + | # CONFIG_PACKAGE_tcpdump is not set | |
| 3519 | + | # CONFIG_PACKAGE_tcpdump-mini is not set | |
| 3520 | + | # CONFIG_PACKAGE_tcptraceroute is not set | |
| 3521 | + | # CONFIG_PACKAGE_tctool is not set | |
| 3522 | + | # CONFIG_PACKAGE_tor is not set | |
| 3523 | + | # CONFIG_PACKAGE_tor-alpha is not set | |
| 3524 | + | # CONFIG_PACKAGE_tor-alpha-fw-helper is not set | |
| 3525 | + | # CONFIG_PACKAGE_tor-alpha-geoip is not set | |
| 3526 | + | # CONFIG_PACKAGE_tor-fw-helper is not set | |
| 3527 | + | # CONFIG_PACKAGE_tor-geoip is not set | |
| 3528 | + | # CONFIG_PACKAGE_totd is not set | |
| 3529 | + | # CONFIG_PACKAGE_tspc is not set | |
| 3530 | + | # CONFIG_PACKAGE_tstat is not set | |
| 3531 | + | # CONFIG_PACKAGE_ttcp is not set | |
| 3532 | + | # CONFIG_PACKAGE_tunslip6 is not set | |
| 3533 | + | # CONFIG_PACKAGE_ucarp is not set | |
| 3534 | + | # CONFIG_PACKAGE_ucspi-tcp is not set | |
| 3535 | + | # CONFIG_PACKAGE_udpcast is not set | |
| 3536 | + | # CONFIG_PACKAGE_udpxy is not set | |
| 3537 | + | # CONFIG_PACKAGE_ulogd is not set | |
| 3538 | + | # CONFIG_PACKAGE_uob-nomad is not set | |
| 3539 | + | # CONFIG_PACKAGE_usbip is not set | |
| 3540 | + | # CONFIG_PACKAGE_vblade is not set | |
| 3541 | + | # CONFIG_PACKAGE_veth is not set | |
| 3542 | + | # CONFIG_PACKAGE_vgp is not set | |
| 3543 | + | # CONFIG_PACKAGE_vnc-reflector is not set | |
| 3544 | + | # CONFIG_PACKAGE_vncrepeater is not set | |
| 3545 | + | # CONFIG_PACKAGE_vnstat is not set | |
| 3546 | + | # CONFIG_PACKAGE_wdiag is not set | |
| 3547 | + | # CONFIG_PACKAGE_whob is not set | |
| 3548 | + | # CONFIG_PACKAGE_wiviz is not set | |
| 3549 | + | # CONFIG_PACKAGE_wol is not set | |
| 3550 | + | # CONFIG_PACKAGE_wpa-supplicant is not set | |
| 3551 | + | CONFIG_WPA_MSG_MIN_PRIORITY=3 | |
| 3552 | + | # CONFIG_DRIVER_WEXT_SUPPORT is not set | |
| 3553 | + | # CONFIG_DRIVER_11N_SUPPORT is not set | |
| 3554 | + | # CONFIG_PACKAGE_wpa-supplicant-mini is not set | |
| 3555 | + | # CONFIG_PACKAGE_wpa-supplicant-p2p is not set | |
| 3556 | + | # CONFIG_PACKAGE_wpad is not set | |
| 3557 | + | # CONFIG_PACKAGE_wpad-mini is not set | |
| 3558 | + | # CONFIG_PACKAGE_wprobe-export is not set | |
| 3559 | + | # CONFIG_PACKAGE_wprobe-util is not set | |
| 3560 | + | # CONFIG_PACKAGE_wshaper is not set | |
| 3561 | + | # CONFIG_PACKAGE_xinetd is not set | |
| 3562 | + | ||
| 3563 | + | # | |
| 3564 | + | # Sound | |
| 3565 | + | # | |
| 3566 | + | ||
| 3567 | + | # | |
| 3568 | + | # cmus | |
| 3569 | + | # | |
| 3570 | + | # CONFIG_PACKAGE_cmus is not set | |
| 3571 | + | # CONFIG_PACKAGE_cmus-plugin-oss is not set | |
| 3572 | + | # CONFIG_PACKAGE_cmus-plugin-pulse is not set | |
| 3573 | + | # CONFIG_PACKAGE_empcd is not set | |
| 3574 | + | # CONFIG_PACKAGE_faad2 is not set | |
| 3575 | + | # CONFIG_PACKAGE_flite is not set | |
| 3576 | + | # CONFIG_PACKAGE_ices is not set | |
| 3577 | + | # CONFIG_PACKAGE_lame is not set | |
| 3578 | + | # CONFIG_PACKAGE_lame-lib is not set | |
| 3579 | + | # CONFIG_PACKAGE_listener is not set | |
| 3580 | + | # CONFIG_PACKAGE_madplay is not set | |
| 3581 | + | # CONFIG_PACKAGE_mpc is not set | |
| 3582 | + | # CONFIG_PACKAGE_mpd-mini is not set | |
| 3583 | + | # CONFIG_PACKAGE_mpdas is not set | |
| 3584 | + | # CONFIG_PACKAGE_mt-daapd is not set | |
| 3585 | + | # CONFIG_PACKAGE_pianobar is not set | |
| 3586 | + | # CONFIG_PACKAGE_pulseaudio-daemon is not set | |
| 3587 | + | # CONFIG_PACKAGE_pulseaudio-daemon-avahi is not set | |
| 3588 | + | # CONFIG_PACKAGE_scmpc is not set | |
| 3589 | + | # CONFIG_PACKAGE_shell-fm is not set | |
| 3590 | + | # CONFIG_PACKAGE_sox is not set | |
| 3591 | + | ||
| 3592 | + | # | |
| 3593 | + | # Utilities | |
| 3594 | + | # | |
| 3595 | + | ||
| 3596 | + | # | |
| 3597 | + | # Boot Loaders | |
| 3598 | + | # | |
| 3599 | + | CONFIG_PACKAGE_grub2=y | |
| 3600 | + | ||
| 3601 | + | # | |
| 3602 | + | # CPU tools | |
| 3603 | + | # | |
| 3604 | + | # CONFIG_PACKAGE_msr-tools is not set | |
| 3605 | + | ||
| 3606 | + | # | |
| 3607 | + | # Editors | |
| 3608 | + | # | |
| 3609 | + | # CONFIG_PACKAGE_joe is not set | |
| 3610 | + | # CONFIG_PACKAGE_mg is not set | |
| 3611 | + | # CONFIG_PACKAGE_nano is not set | |
| 3612 | + | # CONFIG_PACKAGE_vim is not set | |
| 3613 | + | # CONFIG_PACKAGE_vim-full is not set | |
| 3614 | + | # CONFIG_PACKAGE_vim-help is not set | |
| 3615 | + | # CONFIG_PACKAGE_vim-runtime is not set | |
| 3616 | + | # CONFIG_PACKAGE_zile is not set | |
| 3617 | + | ||
| 3618 | + | # | |
| 3619 | + | # Filesystem | |
| 3620 | + | # | |
| 3621 | + | # CONFIG_PACKAGE_badblocks is not set | |
| 3622 | + | # CONFIG_PACKAGE_btrfs-progs is not set | |
| 3623 | + | # CONFIG_PACKAGE_disktype is not set | |
| 3624 | + | # CONFIG_PACKAGE_dosfsck is not set | |
| 3625 | + | # CONFIG_PACKAGE_dosfslabel is not set | |
| 3626 | + | # CONFIG_PACKAGE_e2fsprogs is not set | |
| 3627 | + | # CONFIG_PACKAGE_fuse-utils is not set | |
| 3628 | + | # CONFIG_PACKAGE_gadgetfs-test-bulk is not set | |
| 3629 | + | # CONFIG_PACKAGE_gadgetfs-test-isoc is not set | |
| 3630 | + | # CONFIG_PACKAGE_mkdosfs is not set | |
| 3631 | + | # CONFIG_PACKAGE_nfs-utils is not set | |
| 3632 | + | # CONFIG_PACKAGE_ntfs-3g is not set | |
| 3633 | + | # CONFIG_PACKAGE_ntfs-3g-low is not set | |
| 3634 | + | # CONFIG_PACKAGE_ntfs-3g-utils is not set | |
| 3635 | + | # CONFIG_PACKAGE_ntfsprogs is not set | |
| 3636 | + | # CONFIG_PACKAGE_ntfsprogs_ntfs-3g is not set | |
| 3637 | + | # CONFIG_PACKAGE_owfs is not set | |
| 3638 | + | # CONFIG_PACKAGE_owshell is not set | |
| 3639 | + | # CONFIG_PACKAGE_reiserfsprogs is not set | |
| 3640 | + | # CONFIG_PACKAGE_resize2fs is not set | |
| 3641 | + | # CONFIG_PACKAGE_sysfsutils is not set | |
| 3642 | + | # CONFIG_PACKAGE_tune2fs is not set | |
| 3643 | + | # CONFIG_PACKAGE_xfs-fsck is not set | |
| 3644 | + | # CONFIG_PACKAGE_xfs-growfs is not set | |
| 3645 | + | # CONFIG_PACKAGE_xfs-mkfs is not set | |
| 3646 | + | ||
| 3647 | + | # | |
| 3648 | + | # RTKLIB Suite | |
| 3649 | + | # | |
| 3650 | + | # CONFIG_PACKAGE_convbin is not set | |
| 3651 | + | # CONFIG_PACKAGE_pos2kml is not set | |
| 3652 | + | # CONFIG_PACKAGE_rnx2rtkp is not set | |
| 3653 | + | # CONFIG_PACKAGE_rtkrcv is not set | |
| 3654 | + | # CONFIG_PACKAGE_str2str is not set | |
| 3655 | + | ||
| 3656 | + | # | |
| 3657 | + | # SSL | |
| 3658 | + | # | |
| 3659 | + | # CONFIG_PACKAGE_certtool is not set | |
| 3660 | + | # CONFIG_PACKAGE_gnutls-utils is not set | |
| 3661 | + | # CONFIG_PACKAGE_polarssl-progs is not set | |
| 3662 | + | ||
| 3663 | + | # | |
| 3664 | + | # Sound | |
| 3665 | + | # | |
| 3666 | + | # CONFIG_PACKAGE_liblo-utils is not set | |
| 3667 | + | ||
| 3668 | + | # | |
| 3669 | + | # Terminal | |
| 3670 | + | # | |
| 3671 | + | # CONFIG_PACKAGE_agetty is not set | |
| 3672 | + | # CONFIG_PACKAGE_microcom is not set | |
| 3673 | + | # CONFIG_PACKAGE_minicom is not set | |
| 3674 | + | # CONFIG_PACKAGE_picocom is not set | |
| 3675 | + | # CONFIG_PACKAGE_script-utils is not set | |
| 3676 | + | # CONFIG_PACKAGE_setserial is not set | |
| 3677 | + | # CONFIG_PACKAGE_setterm is not set | |
| 3678 | + | # CONFIG_PACKAGE_wall is not set | |
| 3679 | + | ||
| 3680 | + | # | |
| 3681 | + | # backup | |
| 3682 | + | # | |
| 3683 | + | # CONFIG_PACKAGE_boxbackup is not set | |
| 3684 | + | # CONFIG_PACKAGE_rdiff-backup is not set | |
| 3685 | + | # CONFIG_PACKAGE_rsnapshot is not set | |
| 3686 | + | ||
| 3687 | + | # | |
| 3688 | + | # compression | |
| 3689 | + | # | |
| 3690 | + | # CONFIG_PACKAGE_libzip-utils is not set | |
| 3691 | + | # CONFIG_PACKAGE_unrar is not set | |
| 3692 | + | # CONFIG_PACKAGE_unzip is not set | |
| 3693 | + | # CONFIG_PACKAGE_zip is not set | |
| 3694 | + | ||
| 3695 | + | # | |
| 3696 | + | # database | |
| 3697 | + | # | |
| 3698 | + | # CONFIG_PACKAGE_mysql-server is not set | |
| 3699 | + | # CONFIG_PACKAGE_pgsql-cli is not set | |
| 3700 | + | # CONFIG_PACKAGE_pgsql-server is not set | |
| 3701 | + | # CONFIG_PACKAGE_sqlite2-cli is not set | |
| 3702 | + | # CONFIG_PACKAGE_sqlite3-cli is not set | |
| 3703 | + | # CONFIG_PACKAGE_unixodbc-tools is not set | |
| 3704 | + | ||
| 3705 | + | # | |
| 3706 | + | # disc | |
| 3707 | + | # | |
| 3708 | + | # CONFIG_PACKAGE_blkid is not set | |
| 3709 | + | # CONFIG_PACKAGE_cfdisk is not set | |
| 3710 | + | # CONFIG_PACKAGE_devio is not set | |
| 3711 | + | # CONFIG_PACKAGE_fdisk is not set | |
| 3712 | + | # CONFIG_PACKAGE_findfs is not set | |
| 3713 | + | # CONFIG_PACKAGE_hd-idle is not set | |
| 3714 | + | # CONFIG_PACKAGE_hdparm is not set | |
| 3715 | + | # CONFIG_PACKAGE_lsblk is not set | |
| 3716 | + | # CONFIG_PACKAGE_lvm2 is not set | |
| 3717 | + | # CONFIG_PACKAGE_partx-utils is not set | |
| 3718 | + | # CONFIG_PACKAGE_sdparm is not set | |
| 3719 | + | # CONFIG_PACKAGE_sfdisk is not set | |
| 3720 | + | # CONFIG_PACKAGE_swap-utils is not set | |
| 3721 | + | # CONFIG_PACKAGE_wipefs is not set | |
| 3722 | + | ||
| 3723 | + | # | |
| 3724 | + | # filemanager | |
| 3725 | + | # | |
| 3726 | + | # CONFIG_PACKAGE_deco is not set | |
| 3727 | + | # CONFIG_PACKAGE_mc is not set | |
| 3728 | + | ||
| 3729 | + | # | |
| 3730 | + | # zoneinfo | |
| 3731 | + | # | |
| 3732 | + | # CONFIG_PACKAGE_zoneinfo-africa is not set | |
| 3733 | + | # CONFIG_PACKAGE_zoneinfo-asia is not set | |
| 3734 | + | # CONFIG_PACKAGE_zoneinfo-atlantic is not set | |
| 3735 | + | # CONFIG_PACKAGE_zoneinfo-australia-nz is not set | |
| 3736 | + | # CONFIG_PACKAGE_zoneinfo-core is not set | |
| 3737 | + | # CONFIG_PACKAGE_zoneinfo-europe is not set | |
| 3738 | + | # CONFIG_PACKAGE_zoneinfo-india is not set | |
| 3739 | + | # CONFIG_PACKAGE_zoneinfo-middleeast is not set | |
| 3740 | + | # CONFIG_PACKAGE_zoneinfo-northamerica is not set | |
| 3741 | + | # CONFIG_PACKAGE_zoneinfo-pacific is not set | |
| 3742 | + | # CONFIG_PACKAGE_zoneinfo-poles is not set | |
| 3743 | + | # CONFIG_PACKAGE_zoneinfo-simple is not set | |
| 3744 | + | # CONFIG_PACKAGE_zoneinfo-southamerica is not set | |
| 3745 | + | # CONFIG_PACKAGE_acpid is not set | |
| 3746 | + | # CONFIG_PACKAGE_alsa-utils is not set | |
| 3747 | + | # CONFIG_PACKAGE_alsa-utils-seq is not set | |
| 3748 | + | # CONFIG_PACKAGE_alsa-utils-tests is not set | |
| 3749 | + | # CONFIG_PACKAGE_anyremote is not set | |
| 3750 | + | # CONFIG_PACKAGE_ap51-flash is not set | |
| 3751 | + | # CONFIG_PACKAGE_apcupsd is not set | |
| 3752 | + | # CONFIG_PACKAGE_at is not set | |
| 3753 | + | # CONFIG_PACKAGE_avrdude is not set | |
| 3754 | + | # CONFIG_PACKAGE_avrusbboot is not set | |
| 3755 | + | # CONFIG_PACKAGE_bandwidthd is not set | |
| 3756 | + | # CONFIG_PACKAGE_bash is not set | |
| 3757 | + | # CONFIG_PACKAGE_bash-completion is not set | |
| 3758 | + | # CONFIG_PACKAGE_bc is not set | |
| 3759 | + | # CONFIG_PACKAGE_bluelog is not set | |
| 3760 | + | # CONFIG_PACKAGE_bluez-hcidump is not set | |
| 3761 | + | # CONFIG_PACKAGE_bluez-utils is not set | |
| 3762 | + | # CONFIG_PACKAGE_boblight-client is not set | |
| 3763 | + | # CONFIG_PACKAGE_boblight-daemon is not set | |
| 3764 | + | # CONFIG_PACKAGE_bonniexx is not set | |
| 3765 | + | # CONFIG_PACKAGE_bsdiff is not set | |
| 3766 | + | # CONFIG_PACKAGE_byobu is not set | |
| 3767 | + | # CONFIG_PACKAGE_bzip2 is not set | |
| 3768 | + | # CONFIG_PACKAGE_cal is not set | |
| 3769 | + | # CONFIG_PACKAGE_calcurse is not set | |
| 3770 | + | # CONFIG_PACKAGE_calvaria is not set | |
| 3771 | + | # CONFIG_PACKAGE_canutils is not set | |
| 3772 | + | # CONFIG_PACKAGE_ccrypt is not set | |
| 3773 | + | # CONFIG_PACKAGE_cdparanoia is not set | |
| 3774 | + | # CONFIG_PACKAGE_cksfv is not set | |
| 3775 | + | # CONFIG_PACKAGE_clish is not set | |
| 3776 | + | # CONFIG_PACKAGE_cmdpad is not set | |
| 3777 | + | # CONFIG_PACKAGE_collectd is not set | |
| 3778 | + | # CONFIG_PACKAGE_comgt is not set | |
| 3779 | + | # CONFIG_PACKAGE_coreutils is not set | |
| 3780 | + | # CONFIG_PACKAGE_cpusage is not set | |
| 3781 | + | # CONFIG_PACKAGE_crypto-tools is not set | |
| 3782 | + | # CONFIG_PACKAGE_cryptsetup is not set | |
| 3783 | + | # CONFIG_PACKAGE_cryptsetup-openssl is not set | |
| 3784 | + | # CONFIG_PACKAGE_daemontools is not set | |
| 3785 | + | # CONFIG_PACKAGE_dbus is not set | |
| 3786 | + | # CONFIG_PACKAGE_devmem2 is not set | |
| 3787 | + | # CONFIG_PACKAGE_dfu-util is not set | |
| 3788 | + | # CONFIG_PACKAGE_dialog is not set | |
| 3789 | + | # CONFIG_PACKAGE_digitemp is not set | |
| 3790 | + | # CONFIG_PACKAGE_digitemp-usb is not set | |
| 3791 | + | # CONFIG_PACKAGE_dir300-flash is not set | |
| 3792 | + | # CONFIG_PACKAGE_dmesg is not set | |
| 3793 | + | # CONFIG_PACKAGE_dmidecode is not set | |
| 3794 | + | # CONFIG_PACKAGE_dropbearconvert is not set | |
| 3795 | + | # CONFIG_PACKAGE_dstat is not set | |
| 3796 | + | # CONFIG_PACKAGE_dt is not set | |
| 3797 | + | # CONFIG_PACKAGE_dtach is not set | |
| 3798 | + | # CONFIG_PACKAGE_dump1090 is not set | |
| 3799 | + | # CONFIG_PACKAGE_empty is not set | |
| 3800 | + | # CONFIG_PACKAGE_event_test is not set | |
| 3801 | + | # CONFIG_PACKAGE_fancontroled is not set | |
| 3802 | + | # CONFIG_PACKAGE_fbtest is not set | |
| 3803 | + | # CONFIG_PACKAGE_fconfig is not set | |
| 3804 | + | # CONFIG_PACKAGE_file is not set | |
| 3805 | + | # CONFIG_PACKAGE_firmwarehotplug is not set | |
| 3806 | + | # CONFIG_PACKAGE_flashrom is not set | |
| 3807 | + | # CONFIG_PACKAGE_flock is not set | |
| 3808 | + | # CONFIG_PACKAGE_fortune-mod is not set | |
| 3809 | + | # CONFIG_PACKAGE_fowsr is not set | |
| 3810 | + | # CONFIG_PACKAGE_freecwmp-curl is not set | |
| 3811 | + | # CONFIG_PACKAGE_freecwmp-zstream is not set | |
| 3812 | + | # CONFIG_PACKAGE_fxload is not set | |
| 3813 | + | # CONFIG_PACKAGE_gawk is not set | |
| 3814 | + | # CONFIG_PACKAGE_getopt is not set | |
| 3815 | + | # CONFIG_PACKAGE_gnokii is not set | |
| 3816 | + | # CONFIG_PACKAGE_gnupg is not set | |
| 3817 | + | # CONFIG_PACKAGE_gnuplot is not set | |
| 3818 | + | # CONFIG_PACKAGE_grep is not set | |
| 3819 | + | # CONFIG_PACKAGE_grub2-editenv is not set | |
| 3820 | + | # CONFIG_PACKAGE_gsm-utils is not set | |
| 3821 | + | # CONFIG_PACKAGE_gzip is not set | |
| 3822 | + | # CONFIG_PACKAGE_haserl is not set | |
| 3823 | + | # CONFIG_PACKAGE_haveged is not set | |
| 3824 | + | # CONFIG_PACKAGE_heyu is not set | |
| 3825 | + | # CONFIG_PACKAGE_hplip is not set | |
| 3826 | + | # CONFIG_PACKAGE_huaweiaktbbo is not set | |
| 3827 | + | # CONFIG_PACKAGE_hwclock is not set | |
| 3828 | + | # CONFIG_PACKAGE_i2c-tools is not set | |
| 3829 | + | # CONFIG_PACKAGE_iconv is not set | |
| 3830 | + | # CONFIG_PACKAGE_iioutils is not set | |
| 3831 | + | # CONFIG_PACKAGE_ink is not set | |
| 3832 | + | # CONFIG_PACKAGE_input-utils is not set | |
| 3833 | + | # CONFIG_PACKAGE_io is not set | |
| 3834 | + | # CONFIG_PACKAGE_ipmitool is not set | |
| 3835 | + | # CONFIG_PACKAGE_iwcap is not set | |
| 3836 | + | # CONFIG_PACKAGE_iwinfo is not set | |
| 3837 | + | # CONFIG_PACKAGE_jpeg-tools is not set | |
| 3838 | + | CONFIG_PACKAGE_jshn=y | |
| 3839 | + | # CONFIG_PACKAGE_kexec-tools is not set | |
| 3840 | + | # CONFIG_PACKAGE_klish is not set | |
| 3841 | + | # CONFIG_PACKAGE_kmemtrace-user is not set | |
| 3842 | + | # CONFIG_PACKAGE_ksymoops is not set | |
| 3843 | + | # CONFIG_PACKAGE_lcd4linux-custom is not set | |
| 3844 | + | CONFIG_PACKAGE_lcd4linux-full=m | |
| 3845 | + | # CONFIG_PACKAGE_lcdproc is not set | |
| 3846 | + | # CONFIG_PACKAGE_ldconfig is not set | |
| 3847 | + | # CONFIG_PACKAGE_ldd is not set | |
| 3848 | + | # CONFIG_PACKAGE_less is not set | |
| 3849 | + | # CONFIG_PACKAGE_less-wide is not set | |
| 3850 | + | # CONFIG_PACKAGE_libfreefare-examples is not set | |
| 3851 | + | # CONFIG_PACKAGE_libhavege is not set | |
| 3852 | + | # CONFIG_PACKAGE_libimobiledevice-utils is not set | |
| 3853 | + | CONFIG_PACKAGE_libjson-script=y | |
| 3854 | + | # CONFIG_PACKAGE_libnfc-bin is not set | |
| 3855 | + | # CONFIG_PACKAGE_libnfc-examples is not set | |
| 3856 | + | # CONFIG_PACKAGE_libplist-utils is not set | |
| 3857 | + | # CONFIG_PACKAGE_lirc is not set | |
| 3858 | + | # CONFIG_PACKAGE_lm-sensors is not set | |
| 3859 | + | # CONFIG_PACKAGE_lm-sensors-detect is not set | |
| 3860 | + | # CONFIG_PACKAGE_lmbench is not set | |
| 3861 | + | # CONFIG_PACKAGE_logger is not set | |
| 3862 | + | # CONFIG_PACKAGE_logrotate is not set | |
| 3863 | + | # CONFIG_PACKAGE_look is not set | |
| 3864 | + | # CONFIG_PACKAGE_losetup is not set | |
| 3865 | + | # CONFIG_PACKAGE_lrzsz is not set | |
| 3866 | + | # CONFIG_PACKAGE_lsof is not set | |
| 3867 | + | # CONFIG_PACKAGE_lxc is not set | |
| 3868 | + | # CONFIG_PACKAGE_maccalc is not set | |
| 3869 | + | # CONFIG_PACKAGE_macchanger is not set | |
| 3870 | + | # CONFIG_PACKAGE_mbus-serial is not set | |
| 3871 | + | # CONFIG_PACKAGE_mbus-tcp is not set | |
| 3872 | + | # CONFIG_PACKAGE_mcookie is not set | |
| 3873 | + | # CONFIG_PACKAGE_md5deep is not set | |
| 3874 | + | # CONFIG_PACKAGE_mdadm is not set | |
| 3875 | + | # CONFIG_PACKAGE_memtester is not set | |
| 3876 | + | # CONFIG_PACKAGE_mgetty is not set | |
| 3877 | + | # CONFIG_PACKAGE_mosh-client is not set | |
| 3878 | + | # CONFIG_PACKAGE_mosh-server is not set | |
| 3879 | + | # CONFIG_PACKAGE_mount-utils is not set | |
| 3880 | + | # CONFIG_PACKAGE_mountd is not set | |
| 3881 | + | # CONFIG_PACKAGE_mtd-utils is not set | |
| 3882 | + | # CONFIG_PACKAGE_namei is not set | |
| 3883 | + | # CONFIG_PACKAGE_nprobe is not set | |
| 3884 | + | # CONFIG_PACKAGE_nut is not set | |
| 3885 | + | # CONFIG_PACKAGE_nvramtool is not set | |
| 3886 | + | # CONFIG_PACKAGE_ocf-crypto-headers is not set | |
| 3887 | + | # CONFIG_PACKAGE_open-plc-utils is not set | |
| 3888 | + | # CONFIG_PACKAGE_open2300 is not set | |
| 3889 | + | # CONFIG_PACKAGE_openldap-utils is not set | |
| 3890 | + | # CONFIG_PACKAGE_openssl-util is not set | |
| 3891 | + | # CONFIG_PACKAGE_owipcalc is not set | |
| 3892 | + | # CONFIG_PACKAGE_oww is not set | |
| 3893 | + | # CONFIG_PACKAGE_pciutils is not set | |
| 3894 | + | # CONFIG_PACKAGE_pcmciautils is not set | |
| 3895 | + | # CONFIG_PACKAGE_pcscd is not set | |
| 3896 | + | # CONFIG_PACKAGE_pipacs is not set | |
| 3897 | + | # CONFIG_PACKAGE_powertop is not set | |
| 3898 | + | # CONFIG_PACKAGE_procps is not set | |
| 3899 | + | # CONFIG_PACKAGE_psmisc is not set | |
| 3900 | + | # CONFIG_PACKAGE_psplash is not set | |
| 3901 | + | # CONFIG_PACKAGE_pv is not set | |
| 3902 | + | # CONFIG_PACKAGE_pwcrypt is not set | |
| 3903 | + | # CONFIG_PACKAGE_pwgen is not set | |
| 3904 | + | # CONFIG_PACKAGE_px5g is not set | |
| 3905 | + | # CONFIG_PACKAGE_px5g-standalone is not set | |
| 3906 | + | # CONFIG_PACKAGE_rcs is not set | |
| 3907 | + | # CONFIG_PACKAGE_remind is not set | |
| 3908 | + | # CONFIG_PACKAGE_rename is not set | |
| 3909 | + | # CONFIG_PACKAGE_restorefactory is not set | |
| 3910 | + | # CONFIG_PACKAGE_rng-tools is not set | |
| 3911 | + | # CONFIG_PACKAGE_robocfg is not set | |
| 3912 | + | # CONFIG_PACKAGE_rrdcgi is not set | |
| 3913 | + | # CONFIG_PACKAGE_rrdcgi1 is not set | |
| 3914 | + | # CONFIG_PACKAGE_rrdcollect10 is not set | |
| 3915 | + | # CONFIG_PACKAGE_rrdcollect12 is not set | |
| 3916 | + | # CONFIG_PACKAGE_rrdtool is not set | |
| 3917 | + | # CONFIG_PACKAGE_rrdtool1 is not set | |
| 3918 | + | # CONFIG_PACKAGE_rsyncrypto is not set | |
| 3919 | + | # CONFIG_PACKAGE_rtl-sdr is not set | |
| 3920 | + | # CONFIG_PACKAGE_sane-backends is not set | |
| 3921 | + | # CONFIG_PACKAGE_sane-frontends is not set | |
| 3922 | + | # CONFIG_PACKAGE_schedtool is not set | |
| 3923 | + | # CONFIG_PACKAGE_scponly is not set | |
| 3924 | + | # CONFIG_PACKAGE_screen is not set | |
| 3925 | + | # CONFIG_PACKAGE_sed is not set | |
| 3926 | + | # CONFIG_PACKAGE_sg3-utils is not set | |
| 3927 | + | # CONFIG_PACKAGE_shadow is not set | |
| 3928 | + | # CONFIG_PACKAGE_shadow-chage is not set | |
| 3929 | + | # CONFIG_PACKAGE_shadow-common is not set | |
| 3930 | + | # CONFIG_PACKAGE_shadow-groupadd is not set | |
| 3931 | + | # CONFIG_PACKAGE_shadow-groupdel is not set | |
| 3932 | + | # CONFIG_PACKAGE_shadow-groupmod is not set | |
| 3933 | + | # CONFIG_PACKAGE_shadow-groups is not set | |
| 3934 | + | # CONFIG_PACKAGE_shadow-passwd is not set | |
| 3935 | + | # CONFIG_PACKAGE_shadow-su is not set | |
| 3936 | + | # CONFIG_PACKAGE_shadow-useradd is not set | |
| 3937 | + | # CONFIG_PACKAGE_shadow-userdel is not set | |
| 3938 | + | # CONFIG_PACKAGE_shadow-usermod is not set | |
| 3939 | + | # CONFIG_PACKAGE_sispmctl is not set | |
| 3940 | + | # CONFIG_PACKAGE_smartd is not set | |
| 3941 | + | # CONFIG_PACKAGE_smartmontools is not set | |
| 3942 | + | # CONFIG_PACKAGE_spidev-test is not set | |
| 3943 | + | # CONFIG_PACKAGE_squashfs-tools-mksquashfs is not set | |
| 3944 | + | # CONFIG_PACKAGE_squashfs-tools-unsquashfs is not set | |
| 3945 | + | # CONFIG_PACKAGE_ssldump is not set | |
| 3946 | + | # CONFIG_PACKAGE_stm32flash is not set | |
| 3947 | + | # CONFIG_PACKAGE_strace is not set | |
| 3948 | + | # CONFIG_PACKAGE_stress is not set | |
| 3949 | + | # CONFIG_PACKAGE_sysstat is not set | |
| 3950 | + | # CONFIG_PACKAGE_tar is not set | |
| 3951 | + | # CONFIG_PACKAGE_taskwarrior is not set | |
| 3952 | + | # CONFIG_PACKAGE_tcpser is not set | |
| 3953 | + | # CONFIG_PACKAGE_tcsh is not set | |
| 3954 | + | # CONFIG_PACKAGE_tesseract is not set | |
| 3955 | + | # CONFIG_PACKAGE_testusb is not set | |
| 3956 | + | # CONFIG_PACKAGE_tiff-utils is not set | |
| 3957 | + | # CONFIG_PACKAGE_time is not set | |
| 3958 | + | # CONFIG_PACKAGE_tmux is not set | |
| 3959 | + | # CONFIG_PACKAGE_triggerhappy is not set | |
| 3960 | + | # CONFIG_PACKAGE_ubi-utils is not set | |
| 3961 | + | # CONFIG_PACKAGE_uboot-envtools is not set | |
| 3962 | + | # CONFIG_PACKAGE_upx is not set | |
| 3963 | + | # CONFIG_PACKAGE_usb-modeswitch is not set | |
| 3964 | + | # CONFIG_PACKAGE_usbmuxd is not set | |
| 3965 | + | # CONFIG_PACKAGE_usbreset is not set | |
| 3966 | + | # CONFIG_PACKAGE_usbutils is not set | |
| 3967 | + | # CONFIG_PACKAGE_uuidd is not set | |
| 3968 | + | # CONFIG_PACKAGE_uuidgen is not set | |
| 3969 | + | # CONFIG_PACKAGE_v4l-utils is not set | |
| 3970 | + | # CONFIG_PACKAGE_watchcat is not set | |
| 3971 | + | # CONFIG_PACKAGE_wattsup is not set | |
| 3972 | + | # CONFIG_PACKAGE_whereis is not set | |
| 3973 | + | # CONFIG_PACKAGE_whiptail is not set | |
| 3974 | + | # CONFIG_PACKAGE_wifitoggle is not set | |
| 3975 | + | # CONFIG_PACKAGE_wminput is not set | |
| 3976 | + | # CONFIG_PACKAGE_wview is not set | |
| 3977 | + | # CONFIG_PACKAGE_wx200d is not set | |
| 3978 | + | # CONFIG_PACKAGE_xdelta3 is not set | |
| 3979 | + | # CONFIG_PACKAGE_xsltproc is not set | |
| 3980 | + | # CONFIG_PACKAGE_xxd is not set | |
| 3981 | + | # CONFIG_PACKAGE_xz is not set | |
| 3982 | + | # CONFIG_PACKAGE_zsh is not set | |
| 3983 | + | ||
| 3984 | + | # | |
| 3985 | + | # Video Streaming | |
| 3986 | + | # | |
| 3987 | + | # CONFIG_PACKAGE_openrtsp is not set | |
| 3988 | + | ||
| 3989 | + | # | |
| 3990 | + | # Xorg | |
| 3991 | + | # | |
| 3992 | + | ||
| 3993 | + | # | |
| 3994 | + | # libraries | |
| 3995 | + | # | |
| 3996 | + | # CONFIG_PACKAGE_orbit2 is not set | |
waja revised this gist 11 years ago. Go to revision
1 file changed, 1 insertion
.config(file created)
| @@ -0,0 +1 @@ | |||
| 1 | + | . | |