From 24a7b2b06786d4d14ea1f5b5cf2ffb3430a2fb0e Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Sun, 2 Aug 2009 00:26:52 +0200 Subject: change all 'depends' lines to 'depends on' ones This is only a formal change, the semantics stay exactly the same. But linux-2.6's mconf forces this nowadays, so stay compatible. --- target/Config.in | 2 +- target/linux/config/Config.in.block | 14 +++--- target/linux/config/Config.in.bluetooth | 24 +++++----- target/linux/config/Config.in.fs | 4 +- target/linux/config/Config.in.fsnet | 2 +- target/linux/config/Config.in.ipvs | 8 ++-- target/linux/config/Config.in.lib | 2 +- target/linux/config/Config.in.multimedia | 12 ++--- target/linux/config/Config.in.netfilter | 44 +++++++++--------- target/linux/config/Config.in.network | 12 ++--- target/linux/config/Config.in.nls | 76 ++++++++++++++++---------------- target/linux/config/Config.in.pcmcia | 4 +- target/linux/config/Config.in.sched | 20 ++++----- target/linux/config/Config.in.usb | 44 +++++++++--------- 14 files changed, 134 insertions(+), 134 deletions(-) (limited to 'target') diff --git a/target/Config.in b/target/Config.in index b2c29d0d0..aa5814df1 100644 --- a/target/Config.in +++ b/target/Config.in @@ -310,7 +310,7 @@ source "target/linux/config/Config.in.kernel" choice prompt "Target C library" -depends ! ADK_NATIVE +depends on ! ADK_NATIVE config ADK_TARGET_LIB_UCLIBC bool "uClibc embedded C library" help diff --git a/target/linux/config/Config.in.block b/target/linux/config/Config.in.block index 1c9f0aa49..5ceacf608 100644 --- a/target/linux/config/Config.in.block +++ b/target/linux/config/Config.in.block @@ -157,8 +157,8 @@ config ADK_KPACKAGE_KMOD_SCSI config ADK_KPACKAGE_KMOD_BLK_DEV_SD prompt "kmod-scsi-disk.................... SCSI disk support" - depends !ADK_KERNEL_SCSI - depends ADK_KPACKAGE_KMOD_SCSI + depends on !ADK_KERNEL_SCSI + depends on ADK_KPACKAGE_KMOD_SCSI tristate help If you want to use SCSI hard disks, Fibre Channel disks, @@ -170,8 +170,8 @@ config ADK_KPACKAGE_KMOD_BLK_DEV_SD config ADK_KPACKAGE_KMOD_BLK_DEV_SR prompt "kmod-scsi-cdrom................... SCSI CDROM support" - depends !ADK_KERNEL_SCSI - depends ADK_KPACKAGE_KMOD_SCSI + depends on !ADK_KERNEL_SCSI + depends on ADK_KPACKAGE_KMOD_SCSI tristate help If you want to use a SCSI or FireWire CD-ROM under Linux, @@ -188,19 +188,19 @@ config ADK_KPACKAGE_KMOD_BLK_DEV_MD config ADK_KPACKAGE_KMOD_MD_RAID0 prompt "kmod-md-raid0..................... RAID0 support" tristate - depends ADK_KPACKAGE_KMOD_BLK_DEV_MD + depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD help config ADK_KPACKAGE_KMOD_MD_RAID1 prompt "kmod-md-raid1..................... RAID1 support" tristate - depends ADK_KPACKAGE_KMOD_BLK_DEV_MD + depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD help config ADK_KPACKAGE_KMOD_MD_RAID456 prompt "kmod-md-raid456................... RAID456 support" tristate - depends ADK_KPACKAGE_KMOD_BLK_DEV_MD + depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD help config ADK_KPACKAGE_KMOD_BLK_DEV_DM diff --git a/target/linux/config/Config.in.bluetooth b/target/linux/config/Config.in.bluetooth index 7d868ace5..7342a0f52 100644 --- a/target/linux/config/Config.in.bluetooth +++ b/target/linux/config/Config.in.bluetooth @@ -25,7 +25,7 @@ config ADK_KPACKAGE_KMOD_BT_L2CAP prompt "kmod-bluetooth-l2cap.............. L2CAP protocol support" tristate default n - depends ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT help L2CAP (Logical Link Control and Adaptation Protocol) provides connection oriented and connection-less data transport. L2CAP @@ -36,7 +36,7 @@ config ADK_KPACKAGE_KMOD_BT_SCO prompt "kmod-bluetooth-sco................ SCO links support" tristate default n - depends ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT help SCO link provides voice transport over Bluetooth. SCO support is required for voice applications like Headset and Audio. @@ -45,8 +45,8 @@ config ADK_KPACKAGE_KMOD_BT_RFCOMM prompt "kmod-bluetooth-rfcomm............. RFCOMM protocol support" tristate default n - depends ADK_KPACKAGE_KMOD_BT - depends ADK_KPACKAGE_KMOD_BT_L2CAP + depends on ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT_L2CAP help RFCOMM provides connection oriented stream transport. RFCOMM support is required for Dialup Networking, OBEX and other Bluetooth @@ -56,8 +56,8 @@ config ADK_KPACKAGE_KMOD_BT_BNEP prompt "kmod-bluetooth-bnep............... BNEP protocol support" tristate default n - depends ADK_KPACKAGE_KMOD_BT - depends ADK_KPACKAGE_KMOD_BT_L2CAP + depends on ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT_L2CAP help BNEP (Bluetooth Network Encapsulation Protocol) is Ethernet emulation layer on top of Bluetooth. BNEP is required for @@ -68,8 +68,8 @@ config ADK_KPACKAGE_KMOD_BT_HIDP tristate default n select ADK_KERNEL_HID - depends ADK_KPACKAGE_KMOD_BT - depends ADK_KPACKAGE_KMOD_BT_L2CAP + depends on ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT_L2CAP help HIDP (Human Interface Device Protocol) is a transport layer for HID reports. HIDP is required for the Bluetooth Human @@ -79,7 +79,7 @@ config ADK_KPACKAGE_KMOD_BT_HCIBTUSB prompt "kmod-bluetooth-hci-usb............ HCI USB driver" tristate default n - depends ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT help Bluetooth HCI USB driver. This driver is required if you want to use Bluetooth devices with @@ -89,7 +89,7 @@ config ADK_KPACKAGE_KMOD_BT_HCIUART prompt "kmod-bluetooth-hci-uart........... HCI UART driver" tristate default n - depends ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT help Bluetooth HCI UART driver. This driver is required if you want to use Bluetooth devices with @@ -101,7 +101,7 @@ config ADK_KPACKAGE_KMOD_BT_HCIBCM203X prompt "kmod-bluetooth-hci-bcm203x........ HCI BCM203x USB driver" tristate default n - depends ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT help Bluetooth HCI BCM203x USB driver. This driver provides the firmware loading mechanism for the Broadcom @@ -111,7 +111,7 @@ config ADK_KPACKAGE_KMOD_BT_HCIBPA10X prompt "kmod-bluetooth-hci-bpa10x......... HCI BPA10x USB driver" tristate default n - depends ADK_KPACKAGE_KMOD_BT + depends on ADK_KPACKAGE_KMOD_BT help Bluetooth HCI BPA10x USB driver. This driver provides support for the Digianswer BPA 100/105 Bluetooth diff --git a/target/linux/config/Config.in.fs b/target/linux/config/Config.in.fs index 020025f95..5b96e96ce 100644 --- a/target/linux/config/Config.in.fs +++ b/target/linux/config/Config.in.fs @@ -21,8 +21,8 @@ config ADK_KPACKAGE_KMOD_EXT2_FS prompt "kmod-fs-ext2...................... EXT2 filesystem support" tristate default n - depends !ADK_TARGET_ROOTFS_EXT2_CF - depends !ADK_KERNEL_EXT2_FS + depends on !ADK_TARGET_ROOTFS_EXT2_CF + depends on !ADK_KERNEL_EXT2_FS help Ext2 is a standard Linux file system for hard disks. diff --git a/target/linux/config/Config.in.fsnet b/target/linux/config/Config.in.fsnet index 3cb37e52f..78c21d52c 100644 --- a/target/linux/config/Config.in.fsnet +++ b/target/linux/config/Config.in.fsnet @@ -94,7 +94,7 @@ config ADK_KPACKAGE_KMOD_NFSD default n select ADK_KPACKAGE_KMOD_EXPORTFS select ADK_KERNEL_NFSD_V3 - depends ADK_KPACKAGE_KMOD_NFS_FS + depends on ADK_KPACKAGE_KMOD_NFS_FS help If you want your Linux box to act as an NFS *server*, so that other computers on your local network which support NFS can access certain diff --git a/target/linux/config/Config.in.ipvs b/target/linux/config/Config.in.ipvs index cec68d6cf..1a5fbd063 100644 --- a/target/linux/config/Config.in.ipvs +++ b/target/linux/config/Config.in.ipvs @@ -10,10 +10,10 @@ config ADK_KERNEL_IP_VS_DEBUG prompt "enable debugging support" boolean default n - depends ADK_KPACKAGE_KMOD_IP_VS + depends on ADK_KPACKAGE_KMOD_IP_VS menu "IPVS transport protocol load balancing support" - depends ADK_KPACKAGE_KMOD_IP_VS + depends on ADK_KPACKAGE_KMOD_IP_VS config ADK_KERNEL_IP_VS_PROTO_TCP prompt "TCP load balancing support" @@ -50,7 +50,7 @@ config ADK_KERNEL_IP_VS_PROTO_AH endmenu menu "IPVS Scheduler" - depends ADK_KPACKAGE_KMOD_IP_VS + depends on ADK_KPACKAGE_KMOD_IP_VS config ADK_KPACKAGE_KMOD_IP_VS_RR prompt "kmod-ip-vs-rr......................... round-robin" @@ -105,7 +105,7 @@ config ADK_KPACKAGE_KMOD_IP_VS_NQ endmenu menu "IPVS application helper" - depends ADK_KPACKAGE_KMOD_IP_VS + depends on ADK_KPACKAGE_KMOD_IP_VS config ADK_KPACKAGE_KMOD_IP_VS_FTP prompt "kmod-ip-vs-ftp........................ FTP protocol" diff --git a/target/linux/config/Config.in.lib b/target/linux/config/Config.in.lib index e7b223c43..0f8847010 100644 --- a/target/linux/config/Config.in.lib +++ b/target/linux/config/Config.in.lib @@ -17,7 +17,7 @@ config ADK_KPACKAGE_KMOD_CRC_ITU_T config ADK_KPACKAGE_KMOD_CRC32 prompt "kmod-crc32.......................... provide CRC32 library functions" tristate - depends ! ADK_KERNEL_CRC32 + depends on ! ADK_KERNEL_CRC32 default n help diff --git a/target/linux/config/Config.in.multimedia b/target/linux/config/Config.in.multimedia index 88ee9e00c..d485d31ec 100644 --- a/target/linux/config/Config.in.multimedia +++ b/target/linux/config/Config.in.multimedia @@ -39,7 +39,7 @@ config ADK_KPACKAGE_KMOD_SND config ADK_KPACKAGE_KMOD_SND_OSSEMUL prompt "kmod-sound-alsa-oss-emul........ ALSA OSS Emulation" - depends ADK_KPACKAGE_KMOD_SND + depends on ADK_KPACKAGE_KMOD_SND select ADK_KERNEL_SND_MIXER_OSS select ADK_KERNEL_SND_PCM_OSS tristate @@ -49,7 +49,7 @@ config ADK_KPACKAGE_KMOD_SND_OSSEMUL config ADK_KPACKAGE_KMOD_SND_AC97_CODEC prompt "kmod-sound-alsa-ac97-codec..... ALSA AC97 codec" - depends ADK_KPACKAGE_KMOD_SND + depends on ADK_KPACKAGE_KMOD_SND tristate default n help @@ -57,7 +57,7 @@ config ADK_KPACKAGE_KMOD_SND_AC97_CODEC config ADK_KPACKAGE_KMOD_SND_VIA82XX prompt "kmod-sound-alsa-via82xx........ ALSA VIA82XX driver" - depends ADK_KPACKAGE_KMOD_SND + depends on ADK_KPACKAGE_KMOD_SND select ADK_KPACKAGE_KMOD_SND_AC97_CODEC tristate default n @@ -66,7 +66,7 @@ config ADK_KPACKAGE_KMOD_SND_VIA82XX config ADK_KPACKAGE_KMOD_SND_CS5535AUDIO prompt "kmod-sound-alsa-cs5535......... ALSA AMD CS5535 driver (ALIX1C)" - depends ADK_KPACKAGE_KMOD_SND + depends on ADK_KPACKAGE_KMOD_SND select ADK_KPACKAGE_KMOD_SND_AC97_CODEC depends on ADK_LINUX_X86_ALIX1C tristate @@ -97,7 +97,7 @@ config ADK_KPACKAGE_KMOD_VIDEO_V4L1 prompt "................................ Enable Video For Linux API 1 (DEPRECATED)" boolean default n - depends ADK_KPACKAGE_KMOD_VIDEO_DEV + depends on ADK_KPACKAGE_KMOD_VIDEO_DEV help Enables a compatibility API used by most V4L2 devices to allow its usage with legacy applications that supports only V4L1 api. @@ -105,7 +105,7 @@ config ADK_KPACKAGE_KMOD_VIDEO_V4L1 config ADK_KPACKAGE_KMOD_USB_PWC prompt "kmod-usb-pwc.................... Kernel driver for USB Philips Cameras" tristate - depends ADK_KPACKAGE_KMOD_USB + depends on ADK_KPACKAGE_KMOD_USB default n help diff --git a/target/linux/config/Config.in.netfilter b/target/linux/config/Config.in.netfilter index 48db426ef..a4dc9b7c7 100644 --- a/target/linux/config/Config.in.netfilter +++ b/target/linux/config/Config.in.netfilter @@ -199,7 +199,7 @@ config ADK_KPACKAGE_KMOD_NF_CONNTRACK_IPV4 config ADK_KPACKAGE_KMOD_IP_NF_CT_ACCT bool 'Connection tracking flow accounting' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK help If this option is enabled, the connection tracking code will keep per-flow packet and byte counters. @@ -209,7 +209,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_CT_ACCT config ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK_MARK bool 'Connection mark tracking support' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK select ADK_KERNEL_IP_NF_MATCH_CONNMARK help This option enables support for connection marks, used by the @@ -219,7 +219,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK_MARK config ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK_SECMARK bool 'Connection tracking security mark support' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK #FIXME select NETWORK_SECMARK help This option enables security markings to be applied to @@ -230,7 +230,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK_SECMARK config ADK_KPACKAGE_KMOD_IP_NF_FTP tristate 'FTP protocol support' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK help Tracking FTP connections is problematic: special helpers are required for tracking them, and doing masquerading and other forms @@ -238,7 +238,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_FTP config ADK_KPACKAGE_KMOD_IP_NF_IRC tristate 'IRC protocol support' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK help There is a commonly-used extension to IRC called Direct Client-to-Client Protocol (DCC). This enables users to send @@ -251,7 +251,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_IRC config ADK_KPACKAGE_KMOD_IP_NF_NETBIOS_NS tristate 'NetBIOS name service protocol support (EXPERIMENTAL)' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK help NetBIOS name service requests are sent as broadcast messages from an unprivileged port and responded to with unicast messages to the @@ -268,7 +268,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_NETBIOS_NS config ADK_KPACKAGE_KMOD_IP_NF_TFTP tristate 'TFTP protocol support' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK help TFTP connection tracking helper, this is required depending on how restrictive your ruleset is. @@ -277,7 +277,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_TFTP config ADK_KPACKAGE_KMOD_IP_NF_AMANDA tristate 'Amanda backup protocol support' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK #FIXME TEXTSEARCH && TEXTSEARCH_KMP help If you are running the Amanda backup package @@ -289,7 +289,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_AMANDA config ADK_KPACKAGE_KMOD_IP_NF_PPTP tristate 'PPTP protocol support' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK help This module adds support for PPTP (Point to Point Tunnelling Protocol, RFC2637) connection tracking and NAT. @@ -303,7 +303,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_PPTP config ADK_KPACKAGE_KMOD_IP_NF_H323 tristate 'H.323 protocol support (EXPERIMENTAL)' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK help H.323 is a VoIP signalling protocol from ITU-T. As one of the most important VoIP protocols, it is widely used by voice hardware and @@ -320,7 +320,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_H323 config ADK_KPACKAGE_KMOD_IP_NF_SIP tristate 'SIP protocol support (EXPERIMENTAL)' - depends ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK + depends on ADK_KPACKAGE_KMOD_IP_NF_CONNTRACK help SIP is an application-layer control protocol that can establish, modify, and terminate multimedia sessions (conferences) such as @@ -340,7 +340,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_IPTABLES config ADK_KPACKAGE_KMOD_IP_NF_FILTER tristate 'Packet Filtering' - depends ADK_KPACKAGE_KMOD_IP_NF_IPTABLES + depends on ADK_KPACKAGE_KMOD_IP_NF_IPTABLES help Packet filtering defines a table `filter', which has a series of rules for simple packet filtering at local input, forwarding and @@ -348,7 +348,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_FILTER config ADK_KPACKAGE_KMOD_NF_NAT tristate 'Full NAT' - depends ADK_KPACKAGE_KMOD_IP_NF_IPTABLES + depends on ADK_KPACKAGE_KMOD_IP_NF_IPTABLES help The Full NAT option allows masquerading, port forwarding and other forms of full Network Address Port Translation. It is controlled by @@ -356,7 +356,7 @@ config ADK_KPACKAGE_KMOD_NF_NAT config ADK_KPACKAGE_KMOD_IP_NF_TARGET_MASQUERADE tristate 'MASQUERADE target support' - depends ADK_KPACKAGE_KMOD_NF_NAT + depends on ADK_KPACKAGE_KMOD_NF_NAT help Masquerading is a special case of NAT: all outgoing connections are changed to seem to come from a particular interface's address, and @@ -366,7 +366,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_TARGET_MASQUERADE config ADK_KPACKAGE_KMOD_IP_NF_TARGET_REJECT tristate 'REJECT target support' - depends ADK_KPACKAGE_KMOD_IP_NF_FILTER + depends on ADK_KPACKAGE_KMOD_IP_NF_FILTER help The REJECT target allows a filtering rule to specify that an ICMP error should be issued in response to an incoming packet, rather @@ -374,14 +374,14 @@ config ADK_KPACKAGE_KMOD_IP_NF_TARGET_REJECT config ADK_KPACKAGE_KMOD_IP_NF_TARGET_LOG tristate 'LOG target support' - depends ADK_KPACKAGE_KMOD_IP_NF_FILTER + depends on ADK_KPACKAGE_KMOD_IP_NF_FILTER help This option adds a `LOG' target, which allows you to create rules in any iptables table which records the packet header to the syslog. config ADK_KPACKAGE_KMOD_IP_NF_TARGET_ULOG tristate 'ULOG target support (ipv4 only)' - depends ADK_KPACKAGE_KMOD_IP_NF_FILTER + depends on ADK_KPACKAGE_KMOD_IP_NF_FILTER help This option enables the old IPv4-only "ipt_ULOG" implementation which has been obsoleted by the new "nfnetlink_log" code (see @@ -397,7 +397,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_TARGET_ULOG config ADK_KPACKAGE_KMOD_IP_NF_TARGET_REDIRECT tristate 'REDIRECT target support' - depends ADK_KPACKAGE_KMOD_IP_NF_NAT + depends on ADK_KPACKAGE_KMOD_IP_NF_NAT help REDIRECT is a special case of NAT: all incoming connections are mapped onto the incoming interface's address, causing the packets to @@ -406,7 +406,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_TARGET_REDIRECT config ADK_KPACKAGE_KMOD_IP_NF_TARGET_NETMAP tristate 'NETMAP target support' - depends ADK_KPACKAGE_KMOD_IP_NF_NAT + depends on ADK_KPACKAGE_KMOD_IP_NF_NAT help NETMAP is an implementation of static 1:1 NAT mapping of network addresses. It maps the network address part, while keeping the host @@ -415,14 +415,14 @@ config ADK_KPACKAGE_KMOD_IP_NF_TARGET_NETMAP config ADK_KPACKAGE_KMOD_IP_NF_TARGET_SAME tristate 'SAME target support' - depends ADK_KPACKAGE_KMOD_IP_NF_NAT + depends on ADK_KPACKAGE_KMOD_IP_NF_NAT help This option adds a `SAME' target, which works like the standard SNAT target, but attempts to give clients the same IP for all connections. config ADK_KPACKAGE_KMOD_IP_NF_MANGLE tristate 'Packet mangling' - depends ADK_KPACKAGE_KMOD_IP_NF_IPTABLES + depends on ADK_KPACKAGE_KMOD_IP_NF_IPTABLES help This option adds a `mangle' table to iptables: see the man page for iptables(8). This table is used for various packet alterations @@ -430,7 +430,7 @@ config ADK_KPACKAGE_KMOD_IP_NF_MANGLE config ADK_KPACKAGE_KMOD_IP_NF_TARGET_ECN tristate 'ECN target support' - depends ADK_KPACKAGE_KMOD_IP_NF_MANGLE + depends on ADK_KPACKAGE_KMOD_IP_NF_MANGLE help This option adds a `ECN' target, which can be used in the iptables mangle table. diff --git a/target/linux/config/Config.in.network b/target/linux/config/Config.in.network index 195006c51..05bd03137 100644 --- a/target/linux/config/Config.in.network +++ b/target/linux/config/Config.in.network @@ -108,7 +108,7 @@ config ADK_KPACKAGE_KMOD_NET_IPIP config ADK_KPACKAGE_KMOD_NET_IPGRE prompt "kmod-net-ipgre.................... GRE tunnels over IP" tristate - #depends ADK_KPACKAGE_KMOD_NET_IPGRE_BROADCAST + #depends on ADK_KPACKAGE_KMOD_NET_IPGRE_BROADCAST default n help Tunneling means encapsulating data of one protocol type within @@ -124,7 +124,7 @@ config ADK_KPACKAGE_KMOD_NET_IPGRE config ADK_KPACKAGE_KMOD_IPV6 prompt "kmod-ipv6......................... IPv6 support" tristate - depends ADK_IPV6 + depends on ADK_IPV6 default n help This is complemental support for the IP version 6. @@ -139,7 +139,7 @@ config ADK_KPACKAGE_KMOD_IPV6 config ADK_KPACKAGE_KMOD_IPV6_SIT prompt "kmod-ipv6-sit..................... IPv6-in-IPv4 tunnel (SIT driver)" tristate - depends ADK_IPV6 + depends on ADK_IPV6 select ADK_KPACKAGE_KMOD_INET_TUNNEL default n help @@ -182,7 +182,7 @@ config ADK_KPACKAGE_KMOD_PPP_MPPE prompt "kmod-ppp-mppe................... PPP MPPE/MPPC module" tristate default n - depends ADK_KPACKAGE_KMOD_PPP + depends on ADK_KPACKAGE_KMOD_PPP select ADK_KERNEL_CRYPTO select ADK_KPACKAGE_KMOD_CRYPTO_ARC4 select ADK_KPACKAGE_KMOD_CRYPTO_SHA1 @@ -198,7 +198,7 @@ config ADK_KPACKAGE_KMOD_PPP_MPPE # prompt "kmod-pppoatm.................... PPPoA (PPP over ATM) kernel support" # tristate # default n -# depends ADK_KPACKAGE_KMOD_PPP +# depends on ADK_KPACKAGE_KMOD_PPP # select ADK_KPACKAGE_KMOD_ATM # help # Support for PPP over ATM @@ -207,7 +207,7 @@ config ADK_KPACKAGE_KMOD_PPPOE prompt "kmod-pppoe...................... PPPoE (PPP over Ethernet) kernel support" tristate default n - depends ADK_KPACKAGE_KMOD_PPP + depends on ADK_KPACKAGE_KMOD_PPP help Support for PPP over Ethernet diff --git a/target/linux/config/Config.in.nls b/target/linux/config/Config.in.nls index e656fe7f9..657103f74 100644 --- a/target/linux/config/Config.in.nls +++ b/target/linux/config/Config.in.nls @@ -18,7 +18,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_437 prompt "kmod-nls-codepage-437........... Codepage 437 (United States, Canada)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored @@ -33,7 +33,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_737 prompt "kmod-nls-codepage-737........... Codepage 737 (Greek)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored @@ -48,7 +48,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_775 prompt "kmod-nls-codepage-775........... Codepage 775 (Baltic Rim)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored @@ -64,7 +64,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_850 prompt "kmod-nls-codepage-850........... Codepage 850 (Western European Languages)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -81,7 +81,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_852 prompt "kmod-nls-codepage-852........... Codepage 852 (Eastern European Languages)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -99,7 +99,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_855 prompt "kmod-nls-codepage-855........... Codepage 855 (Cyrillic)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -113,7 +113,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_857 prompt "kmod-nls-codepage-857........... Codepage 857 (Turkish)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -127,7 +127,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_860 prompt "kmod-nls-codepage-860........... Codepage 860 (Portuguese)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -141,7 +141,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_861 prompt "kmod-nls-codepage-861........... Codepage 861 (Icelandic)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -155,7 +155,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_862 prompt "kmod-nls-codepage-862........... Codepage 862 (Hebrew)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -169,7 +169,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_863 prompt "kmod-nls-codepage-863........... Codepage 863 (French Canadian)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -184,7 +184,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_864 prompt "kmod-nls-codepage-864........... Codepage 864 (Arabic)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -198,7 +198,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_865 prompt "kmod-nls-codepage-865........... Codepage 865 (Norwegian, Danish)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -213,7 +213,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_866 prompt "kmod-nls-codepage-866........... Codepage 866 (Cyrillic/Russian)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -228,7 +228,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_869 prompt "kmod-nls-codepage-869........... Codepage 869 (Greek)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -242,7 +242,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_874 prompt "kmod-nls-codepage-874........... Codepage 874 (Thai)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -256,7 +256,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_932 prompt "kmod-nls-codepage-932........... Codepage 932 (Japanese)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -272,7 +272,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_936 prompt "kmod-nls-codepage-936........... Codepage 936 (Simplified Chinese)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -287,7 +287,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_949 prompt "kmod-nls-codepage-949........... Codepage 949 (Korean)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -301,7 +301,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_950 prompt "kmod-nls-codepage-950........... Codepage 950 (Traditional Chinese)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -316,7 +316,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_1250 prompt "kmod-nls-codepage-1250.......... Codepage 1250 (Slavic/Central European)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CDROMs @@ -330,7 +330,7 @@ config ADK_KPACKAGE_KMOD_NLS_CODEPAGE_1251 prompt "kmod-nls-codepage-1251.......... Codepage 1251 (Bulgarian, Belarusian)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help The Microsoft FAT file system family can deal with filenames in native language character sets. These character sets are stored in @@ -345,7 +345,7 @@ config ADK_KPACKAGE_KMOD_NLS_ASCII prompt "kmod-nls-ascii.................. ASCII (United States)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help An ASCII NLS module is needed if you want to override the DEFAULT NLS with this very basic charset and don't want any @@ -355,7 +355,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_1 prompt "kmod-nls-iso8859-1.............. NLS ISO 8859-1 (Latin-1; Western European Languages)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -370,7 +370,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_2 prompt "kmod-nls-iso8859-2.............. NLS ISO 8859-2 (Latin-2; Central European Languages)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -384,7 +384,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_3 prompt "kmod-nls-iso8859-3.............. NLS ISO 8859-3 (Latin-3; Esperanto, Galician, Maltese, Turkish)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -397,7 +397,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_4 prompt "kmod-nls-iso8859-4.............. NLS ISO 8859-4 (Latin-4; old Baltic charset)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -410,7 +410,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_5 prompt "kmod-nls-iso8859-5.............. NLS ISO 8859-5 (Cyrillic)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -424,7 +424,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_6 prompt "kmod-nls-iso8859-6.............. NLS ISO 8859-6 (Arabic)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -436,7 +436,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_7 prompt "kmod-nls-iso8859-7.............. NLS ISO 8859-7 (Greek)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -448,7 +448,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_8 prompt "kmod-nls-iso8859-8.............. NLS ISO 8859-8 (Hebrew)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -460,7 +460,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_9 prompt "kmod-nls-iso8859-9.............. NLS ISO 8859-9 (Latin-5; Turkish)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -473,7 +473,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_13 prompt "kmod-nls-iso8859-13............. NLS ISO 8859-13 (Latin-7; Baltic Rim)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -486,7 +486,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_14 prompt "kmod-nls-iso8859-14............. NLS ISO 8859-14 (Latin-8; Celtic)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -500,7 +500,7 @@ config ADK_KPACKAGE_KMOD_NLS_ISO8859_15 prompt "kmod-nls-iso8859-15............. NLS ISO 8859-15 (Latin-9; Western European Languages with Euro)" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -519,7 +519,7 @@ config ADK_KPACKAGE_KMOD_NLS_KOI8_R prompt "kmod-nls-koi8-r................. NLS KOI8-R (Cryllic for Russian and Bulgarian" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -531,7 +531,7 @@ config ADK_KPACKAGE_KMOD_NLS_KOI8_U prompt "kmod-nls-koi8-u................. NLS KOI8-U (Cyrillic for Russian, Bulgarian and Ukrainian" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs @@ -543,7 +543,7 @@ config ADK_KPACKAGE_KMOD_NLS_UTF8 prompt "kmod-nls-utf8................... NLS UTF8" tristate default n - depends ADK_KPACKAGE_KMOD_NLS + depends on ADK_KPACKAGE_KMOD_NLS help If you want to display filenames with native language characters from the Microsoft FAT file system family or from JOLIET CD-ROMs diff --git a/target/linux/config/Config.in.pcmcia b/target/linux/config/Config.in.pcmcia index f06ad0783..385ede11b 100644 --- a/target/linux/config/Config.in.pcmcia +++ b/target/linux/config/Config.in.pcmcia @@ -12,14 +12,14 @@ config ADK_KPACKAGE_KMOD_PCCARD config ADK_KPACKAGE_KMOD_PCMCIA prompt "kmod-pcmcia....................... 16-bit PCMCIA support" tristate - depends ADK_KPACKAGE_KMOD_PCCARD + depends on ADK_KPACKAGE_KMOD_PCCARD select ADK_KERNEL_CRC32 default n config ADK_KPACKAGE_KMOD_YENTA prompt "kmod-cardbus...................... 32-bit CardBus support" tristate - depends ADK_KPACKAGE_KMOD_PCCARD + depends on ADK_KPACKAGE_KMOD_PCCARD select ADK_KERNEL_CARDBUS default n diff --git a/target/linux/config/Config.in.sched b/target/linux/config/Config.in.sched index c5a992ba4..808b00e41 100644 --- a/target/linux/config/Config.in.sched +++ b/target/linux/config/Config.in.sched @@ -92,7 +92,7 @@ config ADK_KPACKAGE_KMOD_NET_SCH_HFSC config ADK_KPACKAGE_KMOD_NET_SCH_ATM prompt "kmod-sched-atm.................... ATM Virtual Circuits (ATM)" tristate - depends ADK_KPACKAGE_KMOD_ATM + depends on ADK_KPACKAGE_KMOD_ATM select ADK_KERNEL_NET_SCHED default n help @@ -248,7 +248,7 @@ config ADK_KPACKAGE_KMOD_NET_CLS_U32_PERF prompt ".................................. Performance counters support" bool select ADK_KERNEL_NET_CLS - depends ADK_KPACKAGE_KMOD_NET_CLS_U32 + depends on ADK_KPACKAGE_KMOD_NET_CLS_U32 default n help Say Y here to make u32 gather additional statistics useful for @@ -258,8 +258,8 @@ config ADK_KPACKAGE_KMOD_NET_CLS_U32_MARK prompt ".................................. Netfilter marks support" bool select ADK_KERNEL_NET_CLS - depends ADK_KPACKAGE_KMOD_NET_CLS_U32 - depends ADK_KPACKAGE_KMOD_NET_CLS_FW + depends on ADK_KPACKAGE_KMOD_NET_CLS_U32 + depends on ADK_KPACKAGE_KMOD_NET_CLS_FW default n help Say Y here to be able to use netfilter marks as u32 key. @@ -276,7 +276,7 @@ config ADK_KPACKAGE_KMOD_NET_CLS_POLICE prompt "kmod-act-police................... Traffic Policing" tristate select ADK_KERNEL_NET_CLS_ACT - depends ADK_LINUX_2_4 + depends on ADK_LINUX_2_4 default n help Say Y here if you want to do traffic policing, i.e. strict @@ -287,7 +287,7 @@ config ADK_KPACKAGE_KMOD_NET_ACT_POLICE prompt "kmod-act-police................... Traffic Policing" tristate select ADK_KERNEL_NET_CLS_ACT - depends ADK_LINUX_2_6 + depends on ADK_LINUX_2_6 default n help Say Y here if you want to do traffic policing, i.e. strict @@ -298,7 +298,7 @@ config ADK_KPACKAGE_KMOD_NET_ACT_GACT prompt "kmod-act-gact..................... Generic actions" tristate select ADK_KERNEL_NET_CLS_ACT - depends ADK_LINUX_2_6 + depends on ADK_LINUX_2_6 default n help Say Y here to take generic actions such as dropping and @@ -308,7 +308,7 @@ config ADK_KPACKAGE_KMOD_NET_ACT_MIRRED prompt "kmod-act-mirred................... Redirecting and Mirroring" tristate select ADK_KERNEL_NET_CLS_ACT - depends ADK_LINUX_2_6 + depends on ADK_LINUX_2_6 default n help Say Y here to allow packets to be mirrored or redirected to @@ -319,7 +319,7 @@ config ADK_KPACKAGE_KMOD_NET_ACT_IPT tristate select ADK_KERNEL_NET_CLS_ACT select ADK_KPACKAGE_KMOD_IP_NF_IPTABLES - depends ADK_LINUX_2_6 + depends on ADK_LINUX_2_6 default n help Say Y here to be able to invoke iptables targets after successful @@ -329,7 +329,7 @@ config ADK_KPACKAGE_KMOD_NET_ACT_PEDIT prompt "kmod-act-pedit.................... Packet Editing" tristate select ADK_KERNEL_NET_CLS_ACT - depends ADK_LINUX_2_6 + depends on ADK_LINUX_2_6 default n help Say Y here if you want to mangle the content of packets. diff --git a/target/linux/config/Config.in.usb b/target/linux/config/Config.in.usb index b3dfa9cbd..2efab411b 100644 --- a/target/linux/config/Config.in.usb +++ b/target/linux/config/Config.in.usb @@ -50,8 +50,8 @@ config ADK_KPACKAGE_KMOD_USB config ADK_KPACKAGE_KMOD_USB_UHCI_HCD prompt "kmod-usb-uhci................... Support for UHCI controllers" tristate - depends ADK_KPACKAGE_KMOD_USB - depends !ADK_LINUX_CRIS_FOXBOARD + depends on ADK_KPACKAGE_KMOD_USB + depends on !ADK_LINUX_CRIS_FOXBOARD select ADK_PACKAGE_KMOD_USB_CONTROLLER help The Universal Host Controller Interface is a standard by Intel for @@ -68,8 +68,8 @@ config ADK_KPACKAGE_KMOD_USB_OHCI_HCD tristate default y if ADK_LINUX_X86_ALIX1C default n - depends !ADK_LINUX_CRIS_FOXBOARD - depends ADK_KPACKAGE_KMOD_USB + depends on !ADK_LINUX_CRIS_FOXBOARD + depends on ADK_KPACKAGE_KMOD_USB select ADK_PACKAGE_KMOD_USB_CONTROLLER help The Open Host Controller Interface (OHCI) is a standard for accessing @@ -85,7 +85,7 @@ config ADK_KPACKAGE_KMOD_USB_ISP116X_HCD prompt "kmod-usb-isp116x................ ISP116X HCD support" tristate default n - depends !ADK_LINUX_CRIS_FOXBOARD + depends on !ADK_LINUX_CRIS_FOXBOARD depends on ADK_KPACKAGE_KMOD_USB select ADK_PACKAGE_KMOD_USB_CONTROLLER help @@ -98,7 +98,7 @@ config ADK_KPACKAGE_KMOD_USB_SL811_HCD prompt "kmod-usb-sl811.................. SL811HS HCD support" tristate default n - depends !ADK_LINUX_CRIS_FOXBOARD + depends on !ADK_LINUX_CRIS_FOXBOARD depends on ADK_KPACKAGE_KMOD_USB select ADK_PACKAGE_KMOD_USB_CONTROLLER help @@ -111,10 +111,10 @@ config ADK_KPACKAGE_KMOD_USB_SL811_HCD config ADK_KPACKAGE_KMOD_USB_EHCI_HCD prompt "kmod-usb-ehci................... Support for USB 2.0 controllers" tristate - depends !ADK_LINUX_CRIS_FOXBOARD + depends on !ADK_LINUX_CRIS_FOXBOARD default y if ADK_LINUX_X86_ALIX1C default n - depends ADK_KPACKAGE_KMOD_USB + depends on ADK_KPACKAGE_KMOD_USB select ADK_PACKAGE_KMOD_USB_CONTROLLER help The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0 @@ -145,25 +145,25 @@ config ADK_KPACKAGE_KMOD_USB_ACM prompt "kmod-usb-acm...................... Support for USB modems/isdn controllers" tristate default n - depends ADK_PACKAGE_KMOD_USB_CONTROLLER + depends on ADK_PACKAGE_KMOD_USB_CONTROLLER config ADK_KPACKAGE_KMOD_USB_PEGASUS prompt "kmod-usb-pegasus.................. Support for USB Pegasus" tristate default n - depends ADK_PACKAGE_KMOD_USB_CONTROLLER + depends on ADK_PACKAGE_KMOD_USB_CONTROLLER config ADK_KPACKAGE_KMOD_USB_PRINTER prompt "kmod-usb-printer.................. Support for USB printers" tristate default n - depends ADK_PACKAGE_KMOD_USB_CONTROLLER + depends on ADK_PACKAGE_KMOD_USB_CONTROLLER config ADK_KPACKAGE_KMOD_USB_SERIAL prompt "kmod-usb-serial................... Support for USB-to-serial converters" tristate default n - depends ADK_PACKAGE_KMOD_USB_CONTROLLER + depends on ADK_PACKAGE_KMOD_USB_CONTROLLER help Say Y here if you have a USB device that provides normal serial ports, or acts like a serial device, and you want to connect it to @@ -178,7 +178,7 @@ config ADK_KPACKAGE_KMOD_USB_SERIAL_BELKIN prompt "kmod-usb-serial-belkin.......... Support for Belkin USB-to-serial converters" tristate default n - depends ADK_KPACKAGE_KMOD_USB_SERIAL + depends on ADK_KPACKAGE_KMOD_USB_SERIAL help Say Y here if you want to use a Belkin USB Serial single port adaptor (F5U103 is one of the model numbers) or the Peracom single @@ -188,7 +188,7 @@ config ADK_KPACKAGE_KMOD_USB_SERIAL_FTDI_SIO prompt "kmod-usb-serial-ftdi............ Support for FTDI USB-to-serial converter" tristate default n - depends ADK_KPACKAGE_KMOD_USB_SERIAL + depends on ADK_KPACKAGE_KMOD_USB_SERIAL help Say Y here if you want to use a FTDI SIO single port USB to serial converter device. The implementation I have is called the USC-1000. @@ -201,7 +201,7 @@ config ADK_KPACKAGE_KMOD_USB_SERIAL_MCT_U232 prompt "kmod-usb-serial-mct-u232........ Support for Magic Control Technology USB-to-Serial converters" tristate default n - depends ADK_KPACKAGE_KMOD_USB_SERIAL + depends on ADK_KPACKAGE_KMOD_USB_SERIAL help Say Y here if you want to use a USB Serial single port adapter from Magic Control Technology Corp. (U232 is one of the model numbers). @@ -213,7 +213,7 @@ config ADK_KPACKAGE_KMOD_USB_SERIAL_PL2303 prompt "kmod-usb-serial-pl2303.......... Support for Prolific PL2303 USB-to-Serial converters" tristate default n - depends ADK_KPACKAGE_KMOD_USB_SERIAL + depends on ADK_KPACKAGE_KMOD_USB_SERIAL help Say Y here if you want to use the PL2303 USB Serial single port adapter from Prolific. @@ -222,7 +222,7 @@ config ADK_KPACKAGE_KMOD_USB_SERIAL_VISOR prompt "kmod-usb-serial-visor........... Support for Handspring Visor / Palm m50x / Sony Clie Driver" tristate default n - depends ADK_KPACKAGE_KMOD_USB_SERIAL + depends on ADK_KPACKAGE_KMOD_USB_SERIAL help Say Y here if you want to connect to your HandSpring Visor, Palm m500 or m505 through its USB docking station. See @@ -233,7 +233,7 @@ config ADK_KPACKAGE_KMOD_USB_STORAGE prompt "kmod-usb-storage.................. Support for USB storage devices" tristate default n - depends ADK_PACKAGE_KMOD_USB_CONTROLLER + depends on ADK_PACKAGE_KMOD_USB_CONTROLLER select ADK_KPACKAGE_KMOD_SCSI if !ADK_KERNEL_SCSI select ADK_KPACKAGE_KMOD_BLK_DEV_SD if !ADK_KERNEL_SCSI @@ -241,24 +241,24 @@ config ADK_KPACKAGE_KMOD_USB_ATM prompt "kmod-usb-atm...................... Support for USB ATM devices" tristate default n - depends ADK_PACKAGE_KMOD_USB_CONTROLLER + depends on ADK_PACKAGE_KMOD_USB_CONTROLLER config ADK_KPACKAGE_KMOD_USB_ATM_SPEEDTOUCH prompt "kmod-usb-atm-speedtouch......... Support for USB Speedtouch ADSL modem" tristate default n - depends ADK_KPACKAGE_KMOD_USB_ATM + depends on ADK_KPACKAGE_KMOD_USB_ATM config ADK_KPACKAGE_KMOD_USB_USBNET prompt "kmod-usb-usbnet................... Multi-purpose USB Networking Framework" tristate default n - depends ADK_PACKAGE_KMOD_USB_CONTROLLER + depends on ADK_PACKAGE_KMOD_USB_CONTROLLER config ADK_KPACKAGE_KMOD_USB_SISUSBVGA prompt "kmod-usb-svga..................... USB 2.0 SVGA dongle support (Net2280/SiS315)" tristate default n - depends ADK_PACKAGE_KMOD_USB_CONTROLLER + depends on ADK_PACKAGE_KMOD_USB_CONTROLLER endmenu -- cgit v1.2.3 From 04c8f363dfad7629a123fbb9410fdb089e38240a Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Sun, 2 Aug 2009 00:29:20 +0200 Subject: There is something wrong around this select to ADK_BROKEN linux-2.6's mconf complains about a circular dependency, this fixes the problem the fast way. Needs more investigation, so keep it there in commented form. --- target/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target') diff --git a/target/Config.in b/target/Config.in index aa5814df1..da40e1b36 100644 --- a/target/Config.in +++ b/target/Config.in @@ -245,7 +245,7 @@ config ADK_LINUX_MIPS64EL_QEMU config ADK_LINUX_CRIS_QEMU bool "cris" select ADK_qemu_cris - select ADK_BROKEN +# select ADK_BROKEN help Qemu support for CRISv32 architecture. -- cgit v1.2.3