| 1 | menu "Target Root Filesystem"
|
|---|
| 2 |
|
|---|
| 3 | config BR2_TARGET_ROOTFS_SQUASHFS_LZMA
|
|---|
| 4 | bool "Production images with read-only root filesystem"
|
|---|
| 5 | default y
|
|---|
| 6 | help
|
|---|
| 7 | Build firmware images with a
|
|---|
| 8 | read-only and highly compressed (squashfs with lzma
|
|---|
| 9 | compression) root filesystem
|
|---|
| 10 |
|
|---|
| 11 | config BR2_TARGET_ROOTFS_JFFS2
|
|---|
| 12 | bool "Development images with writable root filesystem"
|
|---|
| 13 | default y
|
|---|
| 14 | help
|
|---|
| 15 | Build firmware images with a
|
|---|
| 16 | writable jffs2 root filesystem.
|
|---|
| 17 |
|
|---|
| 18 | config BR2_TARGET_ROOTFS_TGZ
|
|---|
| 19 | bool "Target root filesystem for Compact flash, NFS, external USB disk"
|
|---|
| 20 | default y
|
|---|
| 21 | help
|
|---|
| 22 | Build a compressed tar archive of the the root filesystem.
|
|---|
| 23 |
|
|---|
| 24 | endmenu
|
|---|
| 25 |
|
|---|
| 26 | menu "Kernel Configuration / Device Support"
|
|---|
| 27 |
|
|---|
| 28 | comment "Device specific configuration"
|
|---|
| 29 |
|
|---|
| 30 | source "target/linux/*-2.[46]/Config.in"
|
|---|
| 31 |
|
|---|
| 32 | comment "Kernel modules"
|
|---|
| 33 |
|
|---|
| 34 | menu "Networking modules"
|
|---|
| 35 |
|
|---|
| 36 | config BR2_PACKAGE_KMOD_ATM
|
|---|
| 37 | prompt "kmod-atm.......................... ATM support"
|
|---|
| 38 | tristate
|
|---|
| 39 | default m
|
|---|
| 40 | help
|
|---|
| 41 | ATM support
|
|---|
| 42 |
|
|---|
| 43 | config BR2_PACKAGE_KMOD_GRE
|
|---|
| 44 | prompt "kmod-gre.......................... GRE tunneling driver"
|
|---|
| 45 | tristate
|
|---|
| 46 | default m
|
|---|
| 47 | help
|
|---|
| 48 | Kernel support for GRE tunnels
|
|---|
| 49 |
|
|---|
| 50 | config BR2_PACKAGE_KMOD_IMQ
|
|---|
| 51 | prompt "kmod-imq.......................... Intermediate Queueing device"
|
|---|
| 52 | tristate
|
|---|
| 53 | default m
|
|---|
| 54 | help
|
|---|
| 55 | Kernel support for the Intermediate Queueing device
|
|---|
| 56 |
|
|---|
| 57 | config BR2_PACKAGE_KMOD_IPIP
|
|---|
| 58 | prompt "kmod-ipip......................... IP in IP encapsulation support"
|
|---|
| 59 | tristate
|
|---|
| 60 | default m
|
|---|
| 61 | help
|
|---|
| 62 | Kernel module for IP in IP encapsulation
|
|---|
| 63 |
|
|---|
| 64 | config BR2_PACKAGE_KMOD_IPV6
|
|---|
| 65 | prompt "kmod-ipv6......................... IPv6 support"
|
|---|
| 66 | tristate
|
|---|
| 67 | default m
|
|---|
| 68 | help
|
|---|
| 69 | Kernel modules for IPv6 protocol support
|
|---|
| 70 |
|
|---|
| 71 | config BR2_PACKAGE_KMOD_PPP
|
|---|
| 72 | prompt "kmod-ppp.......................... PPP support"
|
|---|
| 73 | tristate
|
|---|
| 74 | default m
|
|---|
| 75 | help
|
|---|
| 76 | Kernel support for PPP
|
|---|
| 77 |
|
|---|
| 78 | config BR2_PACKAGE_KMOD_MPPE
|
|---|
| 79 | prompt "kmod-mppe....................... PPP MPPE/MPPC module"
|
|---|
| 80 | tristate
|
|---|
| 81 | default m
|
|---|
| 82 | depends BR2_PACKAGE_KMOD_PPP
|
|---|
| 83 | select BR2_PACKAGE_KMOD_CRYPTO
|
|---|
| 84 | help
|
|---|
| 85 | Support for Microsoft PPP Encryption/Compression
|
|---|
| 86 |
|
|---|
| 87 | config BR2_PACKAGE_KMOD_PPPOATM
|
|---|
| 88 | prompt "kmod-pppoatm.................... PPPoA (PPP over ATM) kernel support"
|
|---|
| 89 | tristate
|
|---|
| 90 | default m
|
|---|
| 91 | depends BR2_PACKAGE_KMOD_PPP
|
|---|
| 92 | select BR2_PACKAGE_KMOD_ATM
|
|---|
| 93 | help
|
|---|
| 94 | Support for PPP over ATM
|
|---|
| 95 |
|
|---|
| 96 | config BR2_PACKAGE_KMOD_PPPOE
|
|---|
| 97 | prompt "kmod-pppoe...................... PPPoE (PPP over Ethernet) kernel support"
|
|---|
| 98 | tristate
|
|---|
| 99 | default m
|
|---|
| 100 | depends BR2_PACKAGE_KMOD_PPP
|
|---|
| 101 | help
|
|---|
| 102 | Support for PPP over Ethernet
|
|---|
| 103 |
|
|---|
| 104 | config BR2_PACKAGE_KMOD_RING
|
|---|
| 105 | prompt "kmod-ring......................... PF Ring"
|
|---|
| 106 | tristate
|
|---|
| 107 | default m
|
|---|
| 108 | help
|
|---|
| 109 | PF Ring
|
|---|
| 110 |
|
|---|
| 111 | config BR2_PACKAGE_KMOD_SCHED
|
|---|
| 112 | prompt "kmod-sched........................ Traffic schedulers"
|
|---|
| 113 | tristate
|
|---|
| 114 | default m
|
|---|
| 115 | help
|
|---|
| 116 | Kernel schedulers for IP traffic
|
|---|
| 117 |
|
|---|
| 118 | config BR2_PACKAGE_KMOD_TUN
|
|---|
| 119 | prompt "kmod-tun.......................... Universal TUN/TAP driver"
|
|---|
| 120 | tristate
|
|---|
| 121 | default m
|
|---|
| 122 | help
|
|---|
| 123 | Kernel support for the TUN/TAP tunneling device
|
|---|
| 124 |
|
|---|
| 125 | endmenu
|
|---|
| 126 |
|
|---|
| 127 | menu "Filtering/Firewalling"
|
|---|
| 128 |
|
|---|
| 129 | config BR2_PACKAGE_KMOD_ARPTABLES
|
|---|
| 130 | prompt "kmod-arptables.................... ARP firewalling support"
|
|---|
| 131 | tristate
|
|---|
| 132 | default m
|
|---|
| 133 | help
|
|---|
| 134 | Kernel modules for ARP firewalling
|
|---|
| 135 |
|
|---|
| 136 | config BR2_PACKAGE_KMOD_EBTABLES
|
|---|
| 137 | prompt "kmod-ebtables..................... Ethernet Bridge firewalling support"
|
|---|
| 138 | tristate
|
|---|
| 139 | default m
|
|---|
| 140 | help
|
|---|
| 141 | Kernel modules for bridge firewalling
|
|---|
| 142 |
|
|---|
| 143 | config BR2_PACKAGE_KMOD_IPTABLES
|
|---|
| 144 | prompt "kmod-iptables..................... Core Netfilter modules for IPv4 firewalling"
|
|---|
| 145 | tristate
|
|---|
| 146 | default y
|
|---|
| 147 | help
|
|---|
| 148 | Kernel modules for IPv4 firewalling
|
|---|
| 149 |
|
|---|
| 150 | config BR2_PACKAGE_KMOD_IPTABLES_EXTRA
|
|---|
| 151 | prompt "kmod-iptables-extra............... Extra Netfilter modules for IPv4 firewalling (meta-package)"
|
|---|
| 152 | tristate
|
|---|
| 153 | default m
|
|---|
| 154 | select BR2_PACKAGE_KMOD_IPT_CONNTRACK
|
|---|
| 155 | select BR2_PACKAGE_KMOD_IPT_FILTER
|
|---|
| 156 | select BR2_PACKAGE_KMOD_IPT_IPOPT
|
|---|
| 157 | select BR2_PACKAGE_KMOD_IPT_IPSEC
|
|---|
| 158 | select BR2_PACKAGE_KMOD_IPT_NAT
|
|---|
| 159 | select BR2_PACKAGE_KMOD_IPT_NAT_EXTRA
|
|---|
| 160 | select BR2_PACKAGE_KMOD_IPT_QUEUE
|
|---|
| 161 | select BR2_PACKAGE_KMOD_IPT_ULOG
|
|---|
| 162 | select BR2_PACKAGE_KMOD_IPT_EXTRA
|
|---|
| 163 | help
|
|---|
| 164 | Extra Netfilter kernel modules for IPv4 firewalling (meta-package)
|
|---|
| 165 |
|
|---|
| 166 | config BR2_PACKAGE_KMOD_IPT_CONNTRACK
|
|---|
| 167 | prompt "kmod-ipt-conntrack................ Netfilter modules for connection tracking"
|
|---|
| 168 | tristate
|
|---|
| 169 | default m
|
|---|
| 170 | help
|
|---|
| 171 | Netfilter (IPv4) kernel modules for connection tracking
|
|---|
| 172 |
|
|---|
| 173 | Includes:
|
|---|
| 174 | * ipt_conntrack
|
|---|
| 175 | * ipt_helper
|
|---|
| 176 | * ipt_connmark/CONNMARK
|
|---|
| 177 |
|
|---|
| 178 | config BR2_PACKAGE_KMOD_IPT_FILTER
|
|---|
| 179 | prompt "kmod-ipt-filter................... Netfilter modules for packet content inspection"
|
|---|
| 180 | tristate
|
|---|
| 181 | default m
|
|---|
| 182 | help
|
|---|
| 183 | Netfilter (IPv4) kernel modules for packet content inspection
|
|---|
| 184 |
|
|---|
| 185 | Includes:
|
|---|
| 186 | * ipt_ipp2p
|
|---|
| 187 | * ipt_layer7
|
|---|
| 188 |
|
|---|
| 189 | config BR2_PACKAGE_KMOD_IPT_IPOPT
|
|---|
| 190 | prompt "kmod-ipt-ipopt.................... Netfilter modules for matching/changing IP packet options"
|
|---|
| 191 | tristate
|
|---|
| 192 | default m
|
|---|
| 193 | help
|
|---|
| 194 | Netfilter (IPv4) kernel modules for matching/changing IP packet options
|
|---|
| 195 |
|
|---|
| 196 | Includes:
|
|---|
| 197 | * ipt_dscp/DSCP
|
|---|
| 198 | * ipt_ecn/ECN
|
|---|
| 199 | * ipt_length
|
|---|
| 200 | * ipt_mac
|
|---|
| 201 | * ipt_tos/TOS
|
|---|
| 202 | * ipt_tcpmms
|
|---|
| 203 | * ipt_ttl/TTL
|
|---|
| 204 | * ipt_unclean
|
|---|
| 205 |
|
|---|
| 206 | config BR2_PACKAGE_KMOD_IPT_IPSEC
|
|---|
| 207 | prompt "kmod-ipt-ipsec.................... Netfilter modules for matching IPsec packets"
|
|---|
| 208 | tristate
|
|---|
| 209 | default m
|
|---|
| 210 | help
|
|---|
| 211 | Netfilter (IPv4) kernel modules for matching IPsec packets
|
|---|
| 212 |
|
|---|
| 213 | Includes:
|
|---|
| 214 | * ipt_ah
|
|---|
| 215 | * ipt_esp
|
|---|
| 216 |
|
|---|
| 217 | config BR2_PACKAGE_KMOD_IPT_NAT
|
|---|
| 218 | prompt "kmod-ipt-nat...................... Netfilter modules for different NAT targets"
|
|---|
| 219 | tristate
|
|---|
| 220 | default m
|
|---|
| 221 | help
|
|---|
| 222 | Netfilter (IPv4) kernel modules for different NAT targets
|
|---|
| 223 |
|
|---|
| 224 | Includes:
|
|---|
| 225 | * ipt_REDIRECT
|
|---|
| 226 |
|
|---|
| 227 | config BR2_PACKAGE_KMOD_IPT_NAT_EXTRA
|
|---|
| 228 | prompt "kmod-ipt-nat-extra................ Extra Netfilter NAT modules for special protocols"
|
|---|
| 229 | tristate
|
|---|
| 230 | default m
|
|---|
| 231 | help
|
|---|
| 232 | Extra Netfilter (IPv4) NAT kernel modules for special protocols
|
|---|
| 233 |
|
|---|
| 234 | Includes:
|
|---|
| 235 | * ip_conntrack_amanda
|
|---|
| 236 | * ip_conntrack_proto_gre
|
|---|
| 237 | * ip_nat_proto_gre
|
|---|
| 238 | * ip_conntrack_pptp
|
|---|
| 239 | * ip_nat_pptp
|
|---|
| 240 | * ip_conntrack_sip
|
|---|
| 241 | * ip_nat_sip
|
|---|
| 242 | * ip_nat_snmp_basic
|
|---|
| 243 | * ip_conntrack_tftp
|
|---|
| 244 |
|
|---|
| 245 | config BR2_PACKAGE_KMOD_IPT_QUEUE
|
|---|
| 246 | prompt "kmod-ipt-queue.................... Netfilter module for user-space packet queueing"
|
|---|
| 247 | tristate
|
|---|
| 248 | default m
|
|---|
| 249 | help
|
|---|
| 250 | Netfilter (IPv4) module for user-space packet queueing
|
|---|
| 251 |
|
|---|
| 252 | Includes:
|
|---|
| 253 | * ipt_QUEUE
|
|---|
| 254 |
|
|---|
| 255 | config BR2_PACKAGE_KMOD_IPT_ULOG
|
|---|
| 256 | prompt "kmod-ipt-ulog..................... Netfilter module for user-space packet logging"
|
|---|
| 257 | tristate
|
|---|
| 258 | default m
|
|---|
| 259 | help
|
|---|
| 260 | Netfilter (IPv4) module for user-space packet logging
|
|---|
| 261 |
|
|---|
| 262 | Includes:
|
|---|
| 263 | * ipt_ULOG
|
|---|
| 264 |
|
|---|
| 265 | config BR2_PACKAGE_KMOD_IPT_EXTRA
|
|---|
| 266 | prompt "kmod-ipt-extra.................... Other extra Netfilter modules"
|
|---|
| 267 | tristate
|
|---|
| 268 | default m
|
|---|
| 269 | help
|
|---|
| 270 | Other extra Netfilter (IPv4) kernel modules
|
|---|
| 271 |
|
|---|
| 272 | Includes:
|
|---|
| 273 | * ipt_limit
|
|---|
| 274 | * ipt_owner
|
|---|
| 275 | * ipt_physdev
|
|---|
| 276 | * ipt_pkttype
|
|---|
| 277 | * ipt_recent
|
|---|
| 278 |
|
|---|
| 279 | config BR2_PACKAGE_KMOD_IP6TABLES
|
|---|
| 280 | prompt "kmod-ip6tables.................... Kernel modules for ip6tables"
|
|---|
| 281 | tristate
|
|---|
| 282 | default m
|
|---|
| 283 | depends BR2_PACKAGE_KMOD_IPV6
|
|---|
| 284 | help
|
|---|
| 285 | IPv6 firewalling support
|
|---|
| 286 |
|
|---|
| 287 | endmenu
|
|---|
| 288 |
|
|---|
| 289 | menu "Block devices support"
|
|---|
| 290 |
|
|---|
| 291 | config BR2_PACKAGE_KMOD_IDE
|
|---|
| 292 | prompt "kmod-ide.......................... IDE support"
|
|---|
| 293 | tristate
|
|---|
| 294 | default m
|
|---|
| 295 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86 || BR2_LINUX_2_4_BRCM || BR2_LINUX_2_6_BRCM
|
|---|
| 296 | help
|
|---|
| 297 | Kernel modules for IDE support
|
|---|
| 298 | useful for usb mass storage devices (e.g. on WL-HDD)
|
|---|
| 299 |
|
|---|
| 300 | Includes:
|
|---|
| 301 | - ide-core
|
|---|
| 302 | - ide-detect
|
|---|
| 303 | - ide-disk
|
|---|
| 304 | - pdc202xx_old
|
|---|
| 305 |
|
|---|
| 306 | config BR2_PACKAGE_KMOD_LOOP
|
|---|
| 307 | prompt "kmod-loop......................... Loop mount support"
|
|---|
| 308 | tristate
|
|---|
| 309 | default m
|
|---|
| 310 | help
|
|---|
| 311 | Kernel module for loop mount support
|
|---|
| 312 |
|
|---|
| 313 | config BR2_PACKAGE_KMOD_NBD
|
|---|
| 314 | prompt "kmod-nbd.......................... Network Block Device"
|
|---|
| 315 | tristate
|
|---|
| 316 | default m
|
|---|
| 317 | help
|
|---|
| 318 | Kernel module for network block device
|
|---|
| 319 |
|
|---|
| 320 | endmenu
|
|---|
| 321 |
|
|---|
| 322 | config BR2_PACKAGE_KMOD_CRYPTO
|
|---|
| 323 | prompt "CryptoAPI modules"
|
|---|
| 324 | tristate
|
|---|
| 325 | default m
|
|---|
| 326 | select BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE
|
|---|
| 327 | help
|
|---|
| 328 | Kernel modules for cryptographic algorithms
|
|---|
| 329 |
|
|---|
| 330 | menu "Filesystems support"
|
|---|
| 331 |
|
|---|
| 332 | config BR2_PACKAGE_KMOD_FS_CIFS
|
|---|
| 333 | prompt "kmod-fs-cifs...................... CIFS support"
|
|---|
| 334 | tristate
|
|---|
| 335 | default m
|
|---|
| 336 | help
|
|---|
| 337 | Kernel modules for CIFS support
|
|---|
| 338 |
|
|---|
| 339 | config BR2_PACKAGE_KMOD_FS_EXT2
|
|---|
| 340 | prompt "kmod-fs-ext2...................... EXT2 filesystem support"
|
|---|
| 341 | tristate
|
|---|
| 342 | default m
|
|---|
| 343 | help
|
|---|
| 344 | Kernel modules for EXT2 filesystem support
|
|---|
| 345 |
|
|---|
| 346 | config BR2_PACKAGE_KMOD_FS_EXT3
|
|---|
| 347 | prompt "kmod-fs-ext3...................... EXT3 filesystem support"
|
|---|
| 348 | tristate
|
|---|
| 349 | default m
|
|---|
| 350 | help
|
|---|
| 351 | Kernel modules for EXT3 filesystem support
|
|---|
| 352 |
|
|---|
| 353 | config BR2_PACKAGE_KMOD_FS_HFSPLUS
|
|---|
| 354 | prompt "kmod-fs-hfsplus................... HFS+ filesystem support"
|
|---|
| 355 | tristate
|
|---|
| 356 | default m
|
|---|
| 357 | help
|
|---|
| 358 | Kernel modules for HFS+ filesystem support
|
|---|
| 359 |
|
|---|
| 360 | config BR2_PACKAGE_KMOD_FS_NFS
|
|---|
| 361 | prompt "kmod-fs-nfs....................... NFS support"
|
|---|
| 362 | tristate
|
|---|
| 363 | default m
|
|---|
| 364 | help
|
|---|
| 365 | Kernel modules for NFS support
|
|---|
| 366 | Includes lockd, nfs and sunrpc
|
|---|
| 367 |
|
|---|
| 368 | config BR2_PACKAGE_KMOD_FS_VFAT
|
|---|
| 369 | prompt "kmod-fs-vfat...................... VFAT filesystem support"
|
|---|
| 370 | tristate
|
|---|
| 371 | default m
|
|---|
| 372 | help
|
|---|
| 373 | Kernel modules for VFAT filesystem support
|
|---|
| 374 | useful for usb mass storage devices
|
|---|
| 375 |
|
|---|
| 376 | config BR2_PACKAGE_KMOD_FS_XFS
|
|---|
| 377 | prompt "kmod-fs-xfs....................... XFS filesystem support"
|
|---|
| 378 | tristate
|
|---|
| 379 | default m
|
|---|
| 380 | help
|
|---|
| 381 | Kernel modules for XFS filesystem support
|
|---|
| 382 |
|
|---|
| 383 | endmenu
|
|---|
| 384 |
|
|---|
| 385 | menu "Multimedia devices support"
|
|---|
| 386 |
|
|---|
| 387 | config BR2_PACKAGE_KMOD_PWC
|
|---|
| 388 | prompt "kmod-pwc.......................... Kernel driver for USB Philips Cameras"
|
|---|
| 389 | tristate
|
|---|
| 390 | depends BR2_PACKAGE_KMOD_USB
|
|---|
| 391 | default m
|
|---|
| 392 |
|
|---|
| 393 | config BR2_PACKAGE_KMOD_SOUNDCORE
|
|---|
| 394 | prompt "kmod-soundcore.................... Soundcard support"
|
|---|
| 395 | tristate
|
|---|
| 396 | default n
|
|---|
| 397 | help
|
|---|
| 398 | Base support for soundcards
|
|---|
| 399 | Requires either USB soundcard support (OSS) or ALSA package to be useful
|
|---|
| 400 |
|
|---|
| 401 | config BR2_PACKAGE_KMOD_VIDEODEV
|
|---|
| 402 | prompt "kmod-videodev..................... Video (For Linux) kernel support"
|
|---|
| 403 | tristate
|
|---|
| 404 | default m
|
|---|
| 405 |
|
|---|
| 406 | endmenu
|
|---|
| 407 |
|
|---|
| 408 | menu "Native Language support"
|
|---|
| 409 |
|
|---|
| 410 | config BR2_PACKAGE_KMOD_NLS_BASE
|
|---|
| 411 | prompt "kmod-nls-base..................... Native Language support"
|
|---|
| 412 | tristate
|
|---|
| 413 | default m
|
|---|
| 414 | help
|
|---|
| 415 | Kernel native language support
|
|---|
| 416 |
|
|---|
| 417 | config BR2_PACKAGE_KMOD_NLS_CP437
|
|---|
| 418 | prompt "kmod-nls-cp437.................. Codepage 437 (United States, Canada)"
|
|---|
| 419 | tristate
|
|---|
| 420 | default m
|
|---|
| 421 | depends BR2_PACKAGE_KMOD_NLS_BASE
|
|---|
| 422 | help
|
|---|
| 423 | Kernel native language support
|
|---|
| 424 |
|
|---|
| 425 | config BR2_PACKAGE_KMOD_NLS_CP850
|
|---|
| 426 | prompt "kmod-nls-cp850.................. Codepage 850 (Europe)"
|
|---|
| 427 | tristate
|
|---|
| 428 | default m
|
|---|
| 429 | depends BR2_PACKAGE_KMOD_NLS_BASE
|
|---|
| 430 | help
|
|---|
| 431 | Kernel native language support
|
|---|
| 432 |
|
|---|
| 433 | config BR2_PACKAGE_KMOD_NLS_ISO8859_1
|
|---|
| 434 | prompt "kmod-nls-iso8859-1.............. NLS ISO 8859-1 (Latin 1; Western European Languages)"
|
|---|
| 435 | tristate
|
|---|
| 436 | default m
|
|---|
| 437 | depends BR2_PACKAGE_KMOD_NLS_BASE
|
|---|
| 438 | help
|
|---|
| 439 | Kernel native language support
|
|---|
| 440 |
|
|---|
| 441 | config BR2_PACKAGE_KMOD_NLS_ISO8859_15
|
|---|
| 442 | prompt "kmod-nls-iso8859-15............. NLS ISO 8859-15 (Latin 15; Western European Languages with Euro)"
|
|---|
| 443 | tristate
|
|---|
| 444 | default m
|
|---|
| 445 | depends BR2_PACKAGE_KMOD_NLS_BASE
|
|---|
| 446 | help
|
|---|
| 447 | Kernel native language support
|
|---|
| 448 |
|
|---|
| 449 | config BR2_PACKAGE_KMOD_NLS_UTF8
|
|---|
| 450 | prompt "kmod-nls-utf8................... NLS UTF8"
|
|---|
| 451 | tristate
|
|---|
| 452 | default m
|
|---|
| 453 | depends BR2_PACKAGE_KMOD_NLS_BASE
|
|---|
| 454 | help
|
|---|
| 455 | Kernel native language support
|
|---|
| 456 |
|
|---|
| 457 | endmenu
|
|---|
| 458 |
|
|---|
| 459 | menu "Network devices support"
|
|---|
| 460 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86
|
|---|
| 461 |
|
|---|
| 462 | config BR2_PACKAGE_KMOD_NET_3C59X
|
|---|
| 463 | prompt "kmod-net-3c59x.................... 3Com 3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" Ethernet kernel support"
|
|---|
| 464 | tristate
|
|---|
| 465 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86
|
|---|
| 466 | default m
|
|---|
| 467 | help
|
|---|
| 468 | This option enables driver support for a large number of 10mbps and
|
|---|
| 469 | 10/100mbps EISA, PCI and PCMCIA 3Com network cards:
|
|---|
| 470 |
|
|---|
| 471 | * "Vortex" (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
|
|---|
| 472 | * "Boomerang" (EtherLink XL 3c900 or 3c905) PCI
|
|---|
| 473 | * "Cyclone" (3c540/3c900/3c905/3c980/3c575/3c656) PCI and Cardbus
|
|---|
| 474 | * "Tornado" (3c905) PCI
|
|---|
| 475 | * "Hurricane" (3c555/3cSOHO) PCI
|
|---|
| 476 |
|
|---|
| 477 | config BR2_PACKAGE_KMOD_NET_8139TOO
|
|---|
| 478 | prompt "kmod-net-8139too.................. RealTek RTL-8139 PCI Fast Ethernet Adapter kernel support"
|
|---|
| 479 | tristate
|
|---|
| 480 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86
|
|---|
| 481 | default m
|
|---|
| 482 | help
|
|---|
| 483 | This is a driver for the Fast Ethernet PCI network cards based on
|
|---|
| 484 | the RTL8139 chips.
|
|---|
| 485 |
|
|---|
| 486 | config BR2_PACKAGE_KMOD_NET_AIRO
|
|---|
| 487 | prompt "kmod-net-airo..................... Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards kernel support"
|
|---|
| 488 | tristate
|
|---|
| 489 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86
|
|---|
| 490 | default m
|
|---|
| 491 | help
|
|---|
| 492 | This is the standard Linux driver to support Cisco/Aironet ISA and
|
|---|
| 493 | PCI 802.11 wireless cards.
|
|---|
| 494 | It supports the new 802.11b cards from Cisco (Cisco 34X, Cisco 35X
|
|---|
| 495 | - with or without encryption) as well as card before the Cisco
|
|---|
| 496 | acquisition (Aironet 4500, Aironet 4800, Aironet 4800B).
|
|---|
| 497 |
|
|---|
| 498 | This driver support both the standard Linux Wireless Extensions
|
|---|
| 499 | and Cisco proprietary API, so both the Linux Wireless Tools and the
|
|---|
| 500 | Cisco Linux utilities can be used to configure the card.
|
|---|
| 501 |
|
|---|
| 502 | config BR2_PACKAGE_KMOD_NET_E100
|
|---|
| 503 | prompt "kmod-net-e100..................... Intel(R) PRO/100+ cards kernel support"
|
|---|
| 504 | tristate
|
|---|
| 505 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86
|
|---|
| 506 | default m
|
|---|
| 507 | help
|
|---|
| 508 | Intel(R) PRO/100+ cards kernel support
|
|---|
| 509 |
|
|---|
| 510 | config BR2_PACKAGE_KMOD_NET_HERMES
|
|---|
| 511 | prompt "kmod-net-hermes................... Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) kernel support"
|
|---|
| 512 | tristate
|
|---|
| 513 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86
|
|---|
| 514 | default m
|
|---|
| 515 | help
|
|---|
| 516 | A driver for 802.11b wireless cards based based on the "Hermes" or
|
|---|
| 517 | Intersil HFA384x (Prism 2) MAC controller. This includes the vast
|
|---|
| 518 | majority of the PCMCIA 802.11b cards (which are nearly all rebadges)
|
|---|
| 519 | - except for the Cisco/Aironet cards. Cards supported include the
|
|---|
| 520 | Apple Airport (not a PCMCIA card), WavelanIEEE/Orinoco,
|
|---|
| 521 | Cabletron/EnteraSys Roamabout, ELSA AirLancer, MELCO Buffalo, Avaya,
|
|---|
| 522 | IBM High Rate Wireless, Farralon Syyline, Samsung MagicLAN, Netgear
|
|---|
| 523 | MA401, LinkSys WPC-11, D-Link DWL-650, 3Com AirConnect, Intel
|
|---|
| 524 | PRO/Wireless, and Symbol Spectrum24 High Rate amongst others.
|
|---|
| 525 |
|
|---|
| 526 | config BR2_PACKAGE_KMOD_NET_HERMES_PCI
|
|---|
| 527 | prompt "kmod-net-hermes-pci............. Intersil Prism 2.5 PCI 802.11b adaptor support"
|
|---|
| 528 | tristate
|
|---|
| 529 | default m
|
|---|
| 530 | depends BR2_PACKAGE_KMOD_NET_HERMES
|
|---|
| 531 | help
|
|---|
| 532 | Enable support for PCI and mini-PCI 802.11b wireless NICs based on
|
|---|
| 533 | the Prism 2.5 chipset. These are true PCI cards, not the 802.11b
|
|---|
| 534 | PCMCIA cards bundled with PCI<->PCMCIA adaptors which are also
|
|---|
| 535 | common. Some of the built-in wireless adaptors in laptops are of
|
|---|
| 536 | this variety.
|
|---|
| 537 |
|
|---|
| 538 | config BR2_PACKAGE_KMOD_NET_HERMES_PLX
|
|---|
| 539 | prompt "kmod-net-hermes-plx............. Hermes in PLX9052 based PCI adaptor (Netgear MA301, etc.) kernel support"
|
|---|
| 540 | tristate
|
|---|
| 541 | default m
|
|---|
| 542 | depends BR2_PACKAGE_KMOD_NET_HERMES
|
|---|
| 543 | help
|
|---|
| 544 | Enable support for PCMCIA cards supported by the "Hermes" (aka
|
|---|
| 545 | orinoco_cs) driver when used in PLX9052 based PCI adaptors. These
|
|---|
| 546 | adaptors are not a full PCMCIA controller but act as a more limited
|
|---|
| 547 | PCI <-> PCMCIA bridge. Several vendors sell such adaptors so that
|
|---|
| 548 | 802.11b PCMCIA cards can be used in desktop machines. The Netgear
|
|---|
| 549 | MA301 is such an adaptor.
|
|---|
| 550 |
|
|---|
| 551 | config BR2_PACKAGE_KMOD_NET_NATSEMI
|
|---|
| 552 | prompt "kmod-net-natsemi.................. National Semiconductor DP8381x series PCI Ethernet kernel support"
|
|---|
| 553 | tristate
|
|---|
| 554 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86
|
|---|
| 555 | default m
|
|---|
| 556 | help
|
|---|
| 557 | This driver is for the National Semiconductor DP83810 series,
|
|---|
| 558 | which is used in cards from PureData, NetGear, Linksys
|
|---|
| 559 | and others, including the 83815 chip.
|
|---|
| 560 |
|
|---|
| 561 | config BR2_PACKAGE_KMOD_NET_PRISM54
|
|---|
| 562 | prompt "kmod-net-prism54.................. Intersil Prism GT/Duette/Indigo PCI/PCMCIA cards kernel support"
|
|---|
| 563 | tristate
|
|---|
| 564 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86 || BR2_LINUX_2_4_BRCM || BR2_LINUX_2_6_BRCM
|
|---|
| 565 | default m
|
|---|
| 566 | help
|
|---|
| 567 | Enable PCI and Cardbus support for the following chipset based cards:
|
|---|
| 568 |
|
|---|
| 569 | * ISL3880 - Prism GT 802.11 b/g
|
|---|
| 570 | * ISL3877 - Prism Indigo 802.11 a
|
|---|
| 571 | * ISL3890 - Prism Duette 802.11 a/b/g
|
|---|
| 572 |
|
|---|
| 573 | For a complete list of supported cards visit <http://prism54.org>.
|
|---|
| 574 | Here is the latest confirmed list of supported cards:
|
|---|
| 575 |
|
|---|
| 576 | * 3com OfficeConnect 11g Cardbus Card aka 3CRWE154G72
|
|---|
| 577 | * Allnet ALL0271 PCI Card
|
|---|
| 578 | * Compex WL54G Cardbus Card
|
|---|
| 579 | * Corega CG-WLCB54GT Cardbus Card
|
|---|
| 580 | * D-Link Air Plus Xtreme G A1 Cardbus Card aka DWL-g650
|
|---|
| 581 | * I-O Data WN-G54/CB Cardbus Card
|
|---|
| 582 | * Kobishi XG-300 aka Z-Com Cardbus Card
|
|---|
| 583 | * Netgear WG511 Cardbus Card
|
|---|
| 584 | * Ovislink WL-5400PCI PCI Card
|
|---|
| 585 | * Peabird WLG-PCI PCI Card
|
|---|
| 586 | * Sitecom WL-100i Cardbus Card
|
|---|
| 587 | * Sitecom WL-110i PCI Card
|
|---|
| 588 | * SMC2802W - EZ Connect g 2.4GHz 54 Mbps Wireless PCI Card
|
|---|
| 589 | * SMC2835W - EZ Connect g 2.4GHz 54 Mbps Wireless Cardbus Card
|
|---|
| 590 | * Z-Com XG-900 PCI Card
|
|---|
| 591 | * Zyxel G-100 Cardbus Card
|
|---|
| 592 |
|
|---|
| 593 | If you enable this, you require a firmware file as well.
|
|---|
| 594 | You will need to copy this to /usr/lib/hotplug/firmware/isl3890.
|
|---|
| 595 | You can get this non-GPL'd firmware file from the Prism54 project page:
|
|---|
| 596 | <http://prism54.org>.
|
|---|
| 597 |
|
|---|
| 598 | Note: You need a motherboard with DMA support to use any of these cards.
|
|---|
| 599 |
|
|---|
| 600 | endmenu
|
|---|
| 601 |
|
|---|
| 602 | menu "PCMCIA/CardBus support"
|
|---|
| 603 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86 || BR2_LINUX_2_4_BRCM || BR2_LINUX_2_6_BRCM
|
|---|
| 604 |
|
|---|
| 605 | config BR2_PACKAGE_KMOD_PCMCIA_CORE
|
|---|
| 606 | prompt "kmod-pcmcia-core.................. PCMCIA/CardBus support"
|
|---|
| 607 | depends BR2_LINUX_PCMCIA_SUPPORT
|
|---|
| 608 | tristate
|
|---|
| 609 | depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86 || BR2_LINUX_2_4_BRCM || BR2_LINUX_2_6_BRCM
|
|---|
| 610 | default m
|
|---|
| 611 |
|
|---|
| 612 | config BR2_PACKAGE_KMOD_PCMCIA_SERIAL
|
|---|
| 613 | prompt "kmod-pcmcia-serial.............. PCMCIA/CardBus serial device support"
|
|---|
| 614 | tristate
|
|---|
| 615 | default m
|
|---|
| 616 | depends BR2_PACKAGE_KMOD_PCMCIA_CORE
|
|---|
| 617 |
|
|---|
| 618 | endmenu
|
|---|
| 619 |
|
|---|
| 620 | menu "USB support"
|
|---|
| 621 |
|
|---|
| 622 | config BR2_PACKAGE_KMOD_USB
|
|---|
| 623 | prompt "kmod-usb-core..................... USB support"
|
|---|
| 624 | tristate
|
|---|
| 625 | default m
|
|---|
| 626 |
|
|---|
| 627 | config BR2_PACKAGE_KMOD_USB_UHCI
|
|---|
| 628 | prompt "kmod-usb-uhci................... Support for UHCI controllers"
|
|---|
| 629 | tristate
|
|---|
| 630 | depends BR2_PACKAGE_KMOD_USB
|
|---|
| 631 | select BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 632 |
|
|---|
| 633 | config BR2_PACKAGE_KMOD_USB_OHCI
|
|---|
| 634 | prompt "kmod-usb-ohci................... Support for OHCI controllers"
|
|---|
| 635 | tristate
|
|---|
| 636 | default m
|
|---|
| 637 | depends BR2_PACKAGE_KMOD_USB
|
|---|
| 638 | select BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 639 |
|
|---|
| 640 | config BR2_PACKAGE_KMOD_USB2
|
|---|
| 641 | prompt "kmod-usb2....................... Support for USB 2.0 controllers"
|
|---|
| 642 | tristate
|
|---|
| 643 | depends BR2_PACKAGE_KMOD_USB
|
|---|
| 644 | select BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 645 |
|
|---|
| 646 | config BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 647 | tristate
|
|---|
| 648 | depends on BR2_PACKAGE_KMOD_USB_UHCI || BR2_PACKAGE_KMOD_USB_OHCI || BR2_PACKAGE_KMOD_USB2
|
|---|
| 649 | default n
|
|---|
| 650 |
|
|---|
| 651 | config BR2_PACKAGE_KMOD_USB_ACM
|
|---|
| 652 | prompt "kmod-usb-acm...................... Support for USB modems/isdn controllers"
|
|---|
| 653 | tristate
|
|---|
| 654 | default m
|
|---|
| 655 | depends BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 656 |
|
|---|
| 657 | config BR2_PACKAGE_KMOD_USB_AUDIO
|
|---|
| 658 | prompt "kmod-usb-audio.................... Support for USB soundcards"
|
|---|
| 659 | tristate
|
|---|
| 660 | default m
|
|---|
| 661 | depends BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 662 | select BR2_PACKAGE_KMOD_SOUNDCORE
|
|---|
| 663 |
|
|---|
| 664 | config BR2_PACKAGE_KMOD_USB_PRINTER
|
|---|
| 665 | prompt "kmod-usb-printer.................. Support for USB printers"
|
|---|
| 666 | tristate
|
|---|
| 667 | default m
|
|---|
| 668 | depends BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 669 |
|
|---|
| 670 | config BR2_PACKAGE_KMOD_USB_SERIAL
|
|---|
| 671 | prompt "kmod-usb-serial................... Support for USB-to-serial converters"
|
|---|
| 672 | tristate
|
|---|
| 673 | default m
|
|---|
| 674 | depends BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 675 |
|
|---|
| 676 | config BR2_PACKAGE_KMOD_USB_SERIAL_BELKIN
|
|---|
| 677 | prompt "kmod-usb-serial-belkin.......... Support for Belkin USB-to-serial converters"
|
|---|
| 678 | tristate
|
|---|
| 679 | default m
|
|---|
| 680 | depends BR2_PACKAGE_KMOD_USB_SERIAL
|
|---|
| 681 |
|
|---|
| 682 | config BR2_PACKAGE_KMOD_USB_SERIAL_FTDI
|
|---|
| 683 | prompt "kmod-usb-serial-ftdi............ Support for FTDI USB-to-serial converterr"
|
|---|
| 684 | tristate
|
|---|
| 685 | default m
|
|---|
| 686 | depends BR2_PACKAGE_KMOD_USB_SERIAL
|
|---|
| 687 |
|
|---|
| 688 | config BR2_PACKAGE_KMOD_USB_SERIAL_MCT_U232
|
|---|
| 689 | prompt "kmod-usb-serial-mct-u232........ Support for Magic Control Technology USB-to-Serial converters"
|
|---|
| 690 | tristate
|
|---|
| 691 | default m
|
|---|
| 692 | depends BR2_PACKAGE_KMOD_USB_SERIAL
|
|---|
| 693 |
|
|---|
| 694 | config BR2_PACKAGE_KMOD_USB_SERIAL_PL2303
|
|---|
| 695 | prompt "kmod-usb-serial-pl2303.......... Support for Prolific PL2303 USB-to-Serial converters"
|
|---|
| 696 | tristate
|
|---|
| 697 | default m
|
|---|
| 698 | depends BR2_PACKAGE_KMOD_USB_SERIAL
|
|---|
| 699 |
|
|---|
| 700 | config BR2_PACKAGE_KMOD_USB_SERIAL_VISOR
|
|---|
| 701 | prompt "kmod-usb-serial-visor........... Support for Handspring Visor / Palm m50x / Sony Clie Driver"
|
|---|
| 702 | tristate
|
|---|
| 703 | default m
|
|---|
| 704 | depends BR2_PACKAGE_KMOD_USB_SERIAL
|
|---|
| 705 |
|
|---|
| 706 | config BR2_PACKAGE_KMOD_USB_STORAGE
|
|---|
| 707 | prompt "kmod-usb-storage.................. Support for USB storage devices"
|
|---|
| 708 | tristate
|
|---|
| 709 | default m
|
|---|
| 710 | depends BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 711 |
|
|---|
| 712 | config BR2_PACKAGE_KMOD_USB_ATM
|
|---|
| 713 | prompt "kmod-usb-atm...................... Support for USB ATM devices"
|
|---|
| 714 | tristate
|
|---|
| 715 | default m
|
|---|
| 716 | depends BR2_PACKAGE_KMOD_USB_CONTROLLER
|
|---|
| 717 |
|
|---|
| 718 | config BR2_PACKAGE_KMOD_USB_ATM_SPEEDTOUCH
|
|---|
| 719 | prompt "kmod-usb-atm-speedtouch......... Support for USB Speedtouch ADSL modem"
|
|---|
| 720 | tristate
|
|---|
| 721 | default m
|
|---|
| 722 | depends BR2_PACKAGE_KMOD_USB_ATM
|
|---|
| 723 |
|
|---|
| 724 | endmenu
|
|---|
| 725 |
|
|---|
| 726 | menu "Misc. devices support"
|
|---|
| 727 |
|
|---|
| 728 | config BR2_PACKAGE_KMOD_AX25
|
|---|
| 729 | prompt "kmod-ax25......................... AX25 support"
|
|---|
| 730 | tristate
|
|---|
| 731 | default m
|
|---|
| 732 | help
|
|---|
| 733 | Kernel modules for AX25 protocol family
|
|---|
| 734 |
|
|---|
| 735 | This package contains both the AX25 layer 2 support (ax25) and AX25 KISS driver (mkiss)
|
|---|
| 736 |
|
|---|
| 737 | config BR2_PACKAGE_KMOD_BLUETOOTH
|
|---|
| 738 | prompt "kmod-bluetooth.................... Bluetooth drivers and network stack"
|
|---|
| 739 | tristate
|
|---|
| 740 | default m
|
|---|
| 741 | help
|
|---|
| 742 | Bluetooth drivers and network stack
|
|---|
| 743 |
|
|---|
| 744 | config BR2_PACKAGE_KMOD_LP
|
|---|
| 745 | prompt "kmod-lp........................... Parallel port and lp support"
|
|---|
| 746 | tristate
|
|---|
| 747 | default m
|
|---|
| 748 | help
|
|---|
| 749 | Kernel modules for line printer and parallel port support
|
|---|
| 750 |
|
|---|
| 751 | config BR2_PACKAGE_KMOD_SOFTDOG
|
|---|
| 752 | prompt "kmod-softdog...................... Software watchdog"
|
|---|
| 753 | tristate
|
|---|
| 754 | default m
|
|---|
| 755 | help
|
|---|
| 756 | Kernel modules for software watchdog driver
|
|---|
| 757 |
|
|---|
| 758 | config BR2_PACKAGE_KMOD_WD1100
|
|---|
| 759 | prompt "kmod-wd1100....................... Soekris net4801 watchdog"
|
|---|
| 760 | tristate
|
|---|
| 761 | default n
|
|---|
| 762 | help
|
|---|
| 763 | Driver for the NatSemi SC1x00 series Watchdog
|
|---|
| 764 | found on Soekris net4801 boards
|
|---|
| 765 |
|
|---|
| 766 | endmenu
|
|---|
| 767 |
|
|---|
| 768 | menu "Additional kernel modules"
|
|---|
| 769 |
|
|---|
| 770 | source "target/linux/package/Config.in"
|
|---|
| 771 |
|
|---|
| 772 | endmenu
|
|---|
| 773 |
|
|---|
| 774 | endmenu
|
|---|