mirror of
https://github.com/torvalds/linux.git
synced 2026-05-05 23:05:25 -04:00
kconfig: rename CONFIG_EMBEDDED to CONFIG_EXPERT
The meaning of CONFIG_EMBEDDED has long since been obsoleted; the option is used to configure any non-standard kernel with a much larger scope than only small devices. This patch renames the option to CONFIG_EXPERT in init/Kconfig and fixes references to the option throughout the kernel. A new CONFIG_EMBEDDED option is added that automatically selects CONFIG_EXPERT when enabled and can be used in the future to isolate options that should only be considered for embedded systems (RISC architectures, SLOB, etc). Calling the option "EXPERT" more accurately represents its intention: only expert users who understand the impact of the configuration changes they are making should enable it. Reviewed-by: Ingo Molnar <mingo@elte.hu> Acked-by: David Woodhouse <david.woodhouse@intel.com> Signed-off-by: David Rientjes <rientjes@google.com> Cc: Greg KH <gregkh@suse.de> Cc: "David S. Miller" <davem@davemloft.net> Cc: Jens Axboe <axboe@kernel.dk> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Robin Holt <holt@sgi.com> Cc: <linux-arch@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
12fcdba1b7
commit
6a108a14fa
@@ -318,7 +318,7 @@ config ACPI_PCI_SLOT
|
||||
the module will be called pci_slot.
|
||||
|
||||
config X86_PM_TIMER
|
||||
bool "Power Management Timer Support" if EMBEDDED
|
||||
bool "Power Management Timer Support" if EXPERT
|
||||
depends on X86
|
||||
default y
|
||||
help
|
||||
|
||||
@@ -783,7 +783,7 @@ config PATA_PCMCIA
|
||||
|
||||
config PATA_PLATFORM
|
||||
tristate "Generic platform device PATA support"
|
||||
depends on EMBEDDED || PPC || HAVE_PATA_PLATFORM
|
||||
depends on EXPERT || PPC || HAVE_PATA_PLATFORM
|
||||
help
|
||||
This option enables support for generic directly connected ATA
|
||||
devices commonly found on embedded systems.
|
||||
|
||||
@@ -70,7 +70,7 @@ config PREVENT_FIRMWARE_BUILD
|
||||
If unsure say Y here.
|
||||
|
||||
config FW_LOADER
|
||||
tristate "Userspace firmware loading support" if EMBEDDED
|
||||
tristate "Userspace firmware loading support" if EXPERT
|
||||
default y
|
||||
---help---
|
||||
This option is provided for the case where no in-kernel-tree modules
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
menu "Character devices"
|
||||
|
||||
config VT
|
||||
bool "Virtual terminal" if EMBEDDED
|
||||
bool "Virtual terminal" if EXPERT
|
||||
depends on !S390
|
||||
select INPUT
|
||||
default y
|
||||
@@ -39,13 +39,13 @@ config VT
|
||||
config CONSOLE_TRANSLATIONS
|
||||
depends on VT
|
||||
default y
|
||||
bool "Enable character translations in console" if EMBEDDED
|
||||
bool "Enable character translations in console" if EXPERT
|
||||
---help---
|
||||
This enables support for font mapping and Unicode translation
|
||||
on virtual consoles.
|
||||
|
||||
config VT_CONSOLE
|
||||
bool "Support for console on virtual terminal" if EMBEDDED
|
||||
bool "Support for console on virtual terminal" if EXPERT
|
||||
depends on VT
|
||||
default y
|
||||
---help---
|
||||
@@ -429,7 +429,7 @@ config SGI_MBCS
|
||||
source "drivers/serial/Kconfig"
|
||||
|
||||
config UNIX98_PTYS
|
||||
bool "Unix98 PTY support" if EMBEDDED
|
||||
bool "Unix98 PTY support" if EXPERT
|
||||
default y
|
||||
---help---
|
||||
A pseudo terminal (PTY) is a software device consisting of two
|
||||
@@ -495,7 +495,7 @@ config LEGACY_PTY_COUNT
|
||||
|
||||
config TTY_PRINTK
|
||||
bool "TTY driver to output user messages via printk"
|
||||
depends on EMBEDDED
|
||||
depends on EXPERT
|
||||
default n
|
||||
---help---
|
||||
If you say Y here, the support for writing user messages (i.e.
|
||||
|
||||
@@ -71,7 +71,7 @@ config CPU_FREQ_DEFAULT_GOV_PERFORMANCE
|
||||
|
||||
config CPU_FREQ_DEFAULT_GOV_POWERSAVE
|
||||
bool "powersave"
|
||||
depends on EMBEDDED
|
||||
depends on EXPERT
|
||||
select CPU_FREQ_GOV_POWERSAVE
|
||||
help
|
||||
Use the CPUFreq governor 'powersave' as default. This sets
|
||||
|
||||
@@ -27,7 +27,7 @@ config EDD_OFF
|
||||
using the kernel parameter 'edd={on|skipmbr|off}'.
|
||||
|
||||
config FIRMWARE_MEMMAP
|
||||
bool "Add firmware-provided memory map to sysfs" if EMBEDDED
|
||||
bool "Add firmware-provided memory map to sysfs" if EXPERT
|
||||
default X86
|
||||
help
|
||||
Add the firmware-provided (unmodified) memory map to /sys/firmware/memmap.
|
||||
|
||||
@@ -23,7 +23,7 @@ config DRM_KMS_HELPER
|
||||
tristate
|
||||
depends on DRM
|
||||
select FB
|
||||
select FRAMEBUFFER_CONSOLE if !EMBEDDED
|
||||
select FRAMEBUFFER_CONSOLE if !EXPERT
|
||||
help
|
||||
FB and CRTC helpers for KMS drivers.
|
||||
|
||||
|
||||
@@ -1533,11 +1533,11 @@ bool drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
|
||||
}
|
||||
EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
|
||||
|
||||
/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EMBEDDED)
|
||||
/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
|
||||
* but the module doesn't depend on any fb console symbols. At least
|
||||
* attempt to load fbcon to avoid leaving the system without a usable console.
|
||||
*/
|
||||
#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EMBEDDED)
|
||||
#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
|
||||
static int __init drm_fb_helper_modinit(void)
|
||||
{
|
||||
const char *name = "fbcon";
|
||||
|
||||
@@ -8,7 +8,7 @@ config DRM_NOUVEAU
|
||||
select FB_CFB_COPYAREA
|
||||
select FB_CFB_IMAGEBLIT
|
||||
select FB
|
||||
select FRAMEBUFFER_CONSOLE if !EMBEDDED
|
||||
select FRAMEBUFFER_CONSOLE if !EXPERT
|
||||
select FB_BACKLIGHT if DRM_NOUVEAU_BACKLIGHT
|
||||
select ACPI_VIDEO if ACPI && X86 && BACKLIGHT_CLASS_DEVICE && VIDEO_OUTPUT_CONTROL && INPUT
|
||||
help
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
config VGA_ARB
|
||||
bool "VGA Arbitration" if EMBEDDED
|
||||
bool "VGA Arbitration" if EXPERT
|
||||
default y
|
||||
depends on PCI
|
||||
help
|
||||
|
||||
@@ -62,9 +62,9 @@ config HID_3M_PCT
|
||||
Support for 3M PCT touch screens.
|
||||
|
||||
config HID_A4TECH
|
||||
tristate "A4 tech mice" if EMBEDDED
|
||||
tristate "A4 tech mice" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for A4 tech X5 and WOP-35 / Trust 450L mice.
|
||||
|
||||
@@ -77,9 +77,9 @@ config HID_ACRUX_FF
|
||||
game controllers.
|
||||
|
||||
config HID_APPLE
|
||||
tristate "Apple {i,Power,Mac}Books" if EMBEDDED
|
||||
tristate "Apple {i,Power,Mac}Books" if EXPERT
|
||||
depends on (USB_HID || BT_HIDP)
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for some Apple devices which less or more break
|
||||
HID specification.
|
||||
@@ -88,9 +88,9 @@ config HID_APPLE
|
||||
MacBooks, MacBook Pros and Apple Aluminum.
|
||||
|
||||
config HID_BELKIN
|
||||
tristate "Belkin Flip KVM and Wireless keyboard" if EMBEDDED
|
||||
tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Belkin Flip KVM and Wireless keyboard.
|
||||
|
||||
@@ -101,16 +101,16 @@ config HID_CANDO
|
||||
Support for Cando dual touch panel.
|
||||
|
||||
config HID_CHERRY
|
||||
tristate "Cherry Cymotion keyboard" if EMBEDDED
|
||||
tristate "Cherry Cymotion keyboard" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Cherry Cymotion keyboard.
|
||||
|
||||
config HID_CHICONY
|
||||
tristate "Chicony Tactical pad" if EMBEDDED
|
||||
tristate "Chicony Tactical pad" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Chicony Tactical pad.
|
||||
|
||||
@@ -130,9 +130,9 @@ config HID_PRODIKEYS
|
||||
and some additional multimedia keys.
|
||||
|
||||
config HID_CYPRESS
|
||||
tristate "Cypress mouse and barcode readers" if EMBEDDED
|
||||
tristate "Cypress mouse and barcode readers" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for cypress mouse and barcode readers.
|
||||
|
||||
@@ -174,16 +174,16 @@ config HID_ELECOM
|
||||
Support for the ELECOM BM084 (bluetooth mouse).
|
||||
|
||||
config HID_EZKEY
|
||||
tristate "Ezkey BTC 8193 keyboard" if EMBEDDED
|
||||
tristate "Ezkey BTC 8193 keyboard" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Ezkey BTC 8193 keyboard.
|
||||
|
||||
config HID_KYE
|
||||
tristate "Kye/Genius Ergo Mouse" if EMBEDDED
|
||||
tristate "Kye/Genius Ergo Mouse" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Kye/Genius Ergo Mouse.
|
||||
|
||||
@@ -212,16 +212,16 @@ config HID_TWINHAN
|
||||
Support for Twinhan IR remote control.
|
||||
|
||||
config HID_KENSINGTON
|
||||
tristate "Kensington Slimblade Trackball" if EMBEDDED
|
||||
tristate "Kensington Slimblade Trackball" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Kensington Slimblade Trackball.
|
||||
|
||||
config HID_LOGITECH
|
||||
tristate "Logitech devices" if EMBEDDED
|
||||
tristate "Logitech devices" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Logitech devices that are not fully compliant with HID standard.
|
||||
|
||||
@@ -276,9 +276,9 @@ config HID_MAGICMOUSE
|
||||
Apple Wireless "Magic" Mouse.
|
||||
|
||||
config HID_MICROSOFT
|
||||
tristate "Microsoft non-fully HID-compliant devices" if EMBEDDED
|
||||
tristate "Microsoft non-fully HID-compliant devices" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Microsoft devices that are not fully compliant with HID standard.
|
||||
|
||||
@@ -289,9 +289,9 @@ config HID_MOSART
|
||||
Support for MosArt dual-touch panels.
|
||||
|
||||
config HID_MONTEREY
|
||||
tristate "Monterey Genius KB29E keyboard" if EMBEDDED
|
||||
tristate "Monterey Genius KB29E keyboard" if EXPERT
|
||||
depends on USB_HID
|
||||
default !EMBEDDED
|
||||
default !EXPERT
|
||||
---help---
|
||||
Support for Monterey Genius KB29E.
|
||||
|
||||
@@ -365,8 +365,8 @@ config HID_PICOLCD
|
||||
- IR
|
||||
|
||||
config HID_PICOLCD_FB
|
||||
bool "Framebuffer support" if EMBEDDED
|
||||
default !EMBEDDED
|
||||
bool "Framebuffer support" if EXPERT
|
||||
default !EXPERT
|
||||
depends on HID_PICOLCD
|
||||
depends on HID_PICOLCD=FB || FB=y
|
||||
select FB_DEFERRED_IO
|
||||
@@ -379,8 +379,8 @@ config HID_PICOLCD_FB
|
||||
frambuffer device.
|
||||
|
||||
config HID_PICOLCD_BACKLIGHT
|
||||
bool "Backlight control" if EMBEDDED
|
||||
default !EMBEDDED
|
||||
bool "Backlight control" if EXPERT
|
||||
default !EXPERT
|
||||
depends on HID_PICOLCD
|
||||
depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
|
||||
---help---
|
||||
@@ -388,16 +388,16 @@ config HID_PICOLCD_BACKLIGHT
|
||||
class.
|
||||
|
||||
config HID_PICOLCD_LCD
|
||||
bool "Contrast control" if EMBEDDED
|
||||
default !EMBEDDED
|
||||
bool "Contrast control" if EXPERT
|
||||
default !EXPERT
|
||||
depends on HID_PICOLCD
|
||||
depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
|
||||
---help---
|
||||
Provide access to PicoLCD's LCD contrast via lcd class.
|
||||
|
||||
config HID_PICOLCD_LEDS
|
||||
bool "GPO via leds class" if EMBEDDED
|
||||
default !EMBEDDED
|
||||
bool "GPO via leds class" if EXPERT
|
||||
default !EXPERT
|
||||
depends on HID_PICOLCD
|
||||
depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
|
||||
---help---
|
||||
|
||||
@@ -45,7 +45,7 @@ config USB_HIDDEV
|
||||
If unsure, say Y.
|
||||
|
||||
menu "USB HID Boot Protocol drivers"
|
||||
depends on USB!=n && USB_HID!=y && EMBEDDED
|
||||
depends on USB!=n && USB_HID!=y && EXPERT
|
||||
|
||||
config USB_KBD
|
||||
tristate "USB HIDBP Keyboard (simple Boot) support"
|
||||
|
||||
@@ -134,7 +134,7 @@ config BLK_DEV_IDECD
|
||||
module will be called ide-cd.
|
||||
|
||||
config BLK_DEV_IDECD_VERBOSE_ERRORS
|
||||
bool "Verbose error logging for IDE/ATAPI CDROM driver" if EMBEDDED
|
||||
bool "Verbose error logging for IDE/ATAPI CDROM driver" if EXPERT
|
||||
depends on BLK_DEV_IDECD
|
||||
default y
|
||||
help
|
||||
|
||||
@@ -7,7 +7,7 @@ config INFINIBAND_MTHCA
|
||||
("Tavor") and the MT25208 PCI Express HCA ("Arbel").
|
||||
|
||||
config INFINIBAND_MTHCA_DEBUG
|
||||
bool "Verbose debugging output" if EMBEDDED
|
||||
bool "Verbose debugging output" if EXPERT
|
||||
depends on INFINIBAND_MTHCA
|
||||
default y
|
||||
---help---
|
||||
|
||||
@@ -24,7 +24,7 @@ config INFINIBAND_IPOIB_CM
|
||||
unless you limit mtu for these destinations to 2044.
|
||||
|
||||
config INFINIBAND_IPOIB_DEBUG
|
||||
bool "IP-over-InfiniBand debugging" if EMBEDDED
|
||||
bool "IP-over-InfiniBand debugging" if EXPERT
|
||||
depends on INFINIBAND_IPOIB
|
||||
default y
|
||||
---help---
|
||||
|
||||
@@ -6,7 +6,7 @@ menu "Input device support"
|
||||
depends on !S390
|
||||
|
||||
config INPUT
|
||||
tristate "Generic input layer (needed for keyboard, mouse, ...)" if EMBEDDED
|
||||
tristate "Generic input layer (needed for keyboard, mouse, ...)" if EXPERT
|
||||
default y
|
||||
help
|
||||
Say Y here if you have any input device (mouse, keyboard, tablet,
|
||||
@@ -67,7 +67,7 @@ config INPUT_SPARSEKMAP
|
||||
comment "Userland interfaces"
|
||||
|
||||
config INPUT_MOUSEDEV
|
||||
tristate "Mouse interface" if EMBEDDED
|
||||
tristate "Mouse interface" if EXPERT
|
||||
default y
|
||||
help
|
||||
Say Y here if you want your mouse to be accessible as char devices
|
||||
@@ -150,7 +150,7 @@ config INPUT_EVBUG
|
||||
module will be called evbug.
|
||||
|
||||
config INPUT_APMPOWER
|
||||
tristate "Input Power Event -> APM Bridge" if EMBEDDED
|
||||
tristate "Input Power Event -> APM Bridge" if EXPERT
|
||||
depends on INPUT && APM_EMULATION
|
||||
help
|
||||
Say Y here if you want suspend key events to trigger a user
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# Input core configuration
|
||||
#
|
||||
menuconfig INPUT_KEYBOARD
|
||||
bool "Keyboards" if EMBEDDED || !X86
|
||||
bool "Keyboards" if EXPERT || !X86
|
||||
default y
|
||||
help
|
||||
Say Y here, and a list of supported keyboards will be displayed.
|
||||
@@ -57,7 +57,7 @@ config KEYBOARD_ATARI
|
||||
module will be called atakbd.
|
||||
|
||||
config KEYBOARD_ATKBD
|
||||
tristate "AT keyboard" if EMBEDDED || !X86
|
||||
tristate "AT keyboard" if EXPERT || !X86
|
||||
default y
|
||||
select SERIO
|
||||
select SERIO_LIBPS2
|
||||
|
||||
@@ -39,7 +39,7 @@ config MOUSE_PS2
|
||||
module will be called psmouse.
|
||||
|
||||
config MOUSE_PS2_ALPS
|
||||
bool "ALPS PS/2 mouse protocol extension" if EMBEDDED
|
||||
bool "ALPS PS/2 mouse protocol extension" if EXPERT
|
||||
default y
|
||||
depends on MOUSE_PS2
|
||||
help
|
||||
@@ -49,7 +49,7 @@ config MOUSE_PS2_ALPS
|
||||
If unsure, say Y.
|
||||
|
||||
config MOUSE_PS2_LOGIPS2PP
|
||||
bool "Logitech PS/2++ mouse protocol extension" if EMBEDDED
|
||||
bool "Logitech PS/2++ mouse protocol extension" if EXPERT
|
||||
default y
|
||||
depends on MOUSE_PS2
|
||||
help
|
||||
@@ -59,7 +59,7 @@ config MOUSE_PS2_LOGIPS2PP
|
||||
If unsure, say Y.
|
||||
|
||||
config MOUSE_PS2_SYNAPTICS
|
||||
bool "Synaptics PS/2 mouse protocol extension" if EMBEDDED
|
||||
bool "Synaptics PS/2 mouse protocol extension" if EXPERT
|
||||
default y
|
||||
depends on MOUSE_PS2
|
||||
help
|
||||
@@ -69,7 +69,7 @@ config MOUSE_PS2_SYNAPTICS
|
||||
If unsure, say Y.
|
||||
|
||||
config MOUSE_PS2_LIFEBOOK
|
||||
bool "Fujitsu Lifebook PS/2 mouse protocol extension" if EMBEDDED
|
||||
bool "Fujitsu Lifebook PS/2 mouse protocol extension" if EXPERT
|
||||
default y
|
||||
depends on MOUSE_PS2 && X86 && DMI
|
||||
help
|
||||
@@ -79,7 +79,7 @@ config MOUSE_PS2_LIFEBOOK
|
||||
If unsure, say Y.
|
||||
|
||||
config MOUSE_PS2_TRACKPOINT
|
||||
bool "IBM Trackpoint PS/2 mouse protocol extension" if EMBEDDED
|
||||
bool "IBM Trackpoint PS/2 mouse protocol extension" if EXPERT
|
||||
default y
|
||||
depends on MOUSE_PS2
|
||||
help
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# Input core configuration
|
||||
#
|
||||
config SERIO
|
||||
tristate "Serial I/O support" if EMBEDDED || !X86
|
||||
tristate "Serial I/O support" if EXPERT || !X86
|
||||
default y
|
||||
help
|
||||
Say Yes here if you have any input device that uses serial I/O to
|
||||
@@ -19,7 +19,7 @@ config SERIO
|
||||
if SERIO
|
||||
|
||||
config SERIO_I8042
|
||||
tristate "i8042 PC Keyboard controller" if EMBEDDED || !X86
|
||||
tristate "i8042 PC Keyboard controller" if EXPERT || !X86
|
||||
default y
|
||||
depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST) && \
|
||||
(!SUPERH || SH_CAYMAN) && !M68K && !BLACKFIN
|
||||
@@ -168,7 +168,7 @@ config SERIO_MACEPS2
|
||||
module will be called maceps2.
|
||||
|
||||
config SERIO_LIBPS2
|
||||
tristate "PS/2 driver library" if EMBEDDED
|
||||
tristate "PS/2 driver library" if EXPERT
|
||||
depends on SERIO_I8042 || SERIO_I8042=n
|
||||
help
|
||||
Say Y here if you are using a driver for device connected
|
||||
|
||||
@@ -540,62 +540,62 @@ config TOUCHSCREEN_MC13783
|
||||
|
||||
config TOUCHSCREEN_USB_EGALAX
|
||||
default y
|
||||
bool "eGalax, eTurboTouch CT-410/510/700 device support" if EMBEDDED
|
||||
bool "eGalax, eTurboTouch CT-410/510/700 device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_PANJIT
|
||||
default y
|
||||
bool "PanJit device support" if EMBEDDED
|
||||
bool "PanJit device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_3M
|
||||
default y
|
||||
bool "3M/Microtouch EX II series device support" if EMBEDDED
|
||||
bool "3M/Microtouch EX II series device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_ITM
|
||||
default y
|
||||
bool "ITM device support" if EMBEDDED
|
||||
bool "ITM device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_ETURBO
|
||||
default y
|
||||
bool "eTurboTouch (non-eGalax compatible) device support" if EMBEDDED
|
||||
bool "eTurboTouch (non-eGalax compatible) device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_GUNZE
|
||||
default y
|
||||
bool "Gunze AHL61 device support" if EMBEDDED
|
||||
bool "Gunze AHL61 device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_DMC_TSC10
|
||||
default y
|
||||
bool "DMC TSC-10/25 device support" if EMBEDDED
|
||||
bool "DMC TSC-10/25 device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_IRTOUCH
|
||||
default y
|
||||
bool "IRTOUCHSYSTEMS/UNITOP device support" if EMBEDDED
|
||||
bool "IRTOUCHSYSTEMS/UNITOP device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_IDEALTEK
|
||||
default y
|
||||
bool "IdealTEK URTC1000 device support" if EMBEDDED
|
||||
bool "IdealTEK URTC1000 device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_GENERAL_TOUCH
|
||||
default y
|
||||
bool "GeneralTouch Touchscreen device support" if EMBEDDED
|
||||
bool "GeneralTouch Touchscreen device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_GOTOP
|
||||
default y
|
||||
bool "GoTop Super_Q2/GogoPen/PenPower tablet device support" if EMBEDDED
|
||||
bool "GoTop Super_Q2/GogoPen/PenPower tablet device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_JASTEC
|
||||
default y
|
||||
bool "JASTEC/DigiTech DTR-02U USB touch controller device support" if EMBEDDED
|
||||
bool "JASTEC/DigiTech DTR-02U USB touch controller device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_E2I
|
||||
@@ -605,17 +605,17 @@ config TOUCHSCREEN_USB_E2I
|
||||
|
||||
config TOUCHSCREEN_USB_ZYTRONIC
|
||||
default y
|
||||
bool "Zytronic controller" if EMBEDDED
|
||||
bool "Zytronic controller" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_ETT_TC45USB
|
||||
default y
|
||||
bool "ET&T USB series TC4UM/TC5UH touchscreen controller support" if EMBEDDED
|
||||
bool "ET&T USB series TC4UM/TC5UH touchscreen controller support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_USB_NEXIO
|
||||
default y
|
||||
bool "NEXIO/iNexio device support" if EMBEDDED
|
||||
bool "NEXIO/iNexio device support" if EXPERT
|
||||
depends on TOUCHSCREEN_USB_COMPOSITE
|
||||
|
||||
config TOUCHSCREEN_TOUCHIT213
|
||||
|
||||
@@ -34,7 +34,7 @@ config MEDIA_TUNER
|
||||
config MEDIA_TUNER_CUSTOMISE
|
||||
bool "Customize analog and hybrid tuner modules to build"
|
||||
depends on MEDIA_TUNER
|
||||
default y if EMBEDDED
|
||||
default y if EXPERT
|
||||
help
|
||||
This allows the user to deselect tuner drivers unnecessary
|
||||
for their hardware from the build. Use this option with care
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
config DVB_FE_CUSTOMISE
|
||||
bool "Customise the frontend modules to build"
|
||||
depends on DVB_CORE
|
||||
default y if EMBEDDED
|
||||
default y if EXPERT
|
||||
help
|
||||
This allows the user to select/deselect frontend drivers for their
|
||||
hardware from the build.
|
||||
|
||||
@@ -78,7 +78,7 @@ config VIDEO_FIXED_MINOR_RANGES
|
||||
|
||||
config VIDEO_HELPER_CHIPS_AUTO
|
||||
bool "Autoselect pertinent encoders/decoders and other helper chips"
|
||||
default y if !EMBEDDED
|
||||
default y if !EXPERT
|
||||
---help---
|
||||
Most video cards may require additional modules to encode or
|
||||
decode audio/video standards. This option will autoselect
|
||||
|
||||
@@ -2864,7 +2864,7 @@ config MLX4_CORE
|
||||
default n
|
||||
|
||||
config MLX4_DEBUG
|
||||
bool "Verbose debugging output" if (MLX4_CORE && EMBEDDED)
|
||||
bool "Verbose debugging output" if (MLX4_CORE && EXPERT)
|
||||
depends on MLX4_CORE
|
||||
default y
|
||||
---help---
|
||||
|
||||
@@ -31,7 +31,7 @@ source "drivers/pci/pcie/aer/Kconfig"
|
||||
# PCI Express ASPM
|
||||
#
|
||||
config PCIEASPM
|
||||
bool "PCI Express ASPM control" if EMBEDDED
|
||||
bool "PCI Express ASPM control" if EXPERT
|
||||
depends on PCI && PCIEPORTBUS
|
||||
default y
|
||||
help
|
||||
|
||||
@@ -69,7 +69,7 @@ comment "PC-card bridges"
|
||||
config YENTA
|
||||
tristate "CardBus yenta-compatible bridge support"
|
||||
depends on PCI
|
||||
select CARDBUS if !EMBEDDED
|
||||
select CARDBUS if !EXPERT
|
||||
select PCCARD_NONSTATIC if PCMCIA != n
|
||||
---help---
|
||||
This option enables support for CardBus host bridges. Virtually
|
||||
@@ -84,27 +84,27 @@ config YENTA
|
||||
|
||||
config YENTA_O2
|
||||
default y
|
||||
bool "Special initialization for O2Micro bridges" if EMBEDDED
|
||||
bool "Special initialization for O2Micro bridges" if EXPERT
|
||||
depends on YENTA
|
||||
|
||||
config YENTA_RICOH
|
||||
default y
|
||||
bool "Special initialization for Ricoh bridges" if EMBEDDED
|
||||
bool "Special initialization for Ricoh bridges" if EXPERT
|
||||
depends on YENTA
|
||||
|
||||
config YENTA_TI
|
||||
default y
|
||||
bool "Special initialization for TI and EnE bridges" if EMBEDDED
|
||||
bool "Special initialization for TI and EnE bridges" if EXPERT
|
||||
depends on YENTA
|
||||
|
||||
config YENTA_ENE_TUNE
|
||||
default y
|
||||
bool "Auto-tune EnE bridges for CB cards" if EMBEDDED
|
||||
bool "Auto-tune EnE bridges for CB cards" if EXPERT
|
||||
depends on YENTA_TI && CARDBUS
|
||||
|
||||
config YENTA_TOSHIBA
|
||||
default y
|
||||
bool "Special initialization for Toshiba ToPIC bridges" if EMBEDDED
|
||||
bool "Special initialization for Toshiba ToPIC bridges" if EXPERT
|
||||
depends on YENTA
|
||||
|
||||
config PD6729
|
||||
|
||||
@@ -81,7 +81,7 @@ config SERIAL_8250_GSC
|
||||
default SERIAL_8250
|
||||
|
||||
config SERIAL_8250_PCI
|
||||
tristate "8250/16550 PCI device support" if EMBEDDED
|
||||
tristate "8250/16550 PCI device support" if EXPERT
|
||||
depends on SERIAL_8250 && PCI
|
||||
default SERIAL_8250
|
||||
help
|
||||
@@ -90,7 +90,7 @@ config SERIAL_8250_PCI
|
||||
Saves about 9K.
|
||||
|
||||
config SERIAL_8250_PNP
|
||||
tristate "8250/16550 PNP device support" if EMBEDDED
|
||||
tristate "8250/16550 PNP device support" if EXPERT
|
||||
depends on SERIAL_8250 && PNP
|
||||
default SERIAL_8250
|
||||
help
|
||||
|
||||
@@ -82,7 +82,7 @@ config SSB_SDIOHOST
|
||||
|
||||
config SSB_SILENT
|
||||
bool "No SSB kernel messages"
|
||||
depends on SSB && EMBEDDED
|
||||
depends on SSB && EXPERT
|
||||
help
|
||||
This option turns off all Sonics Silicon Backplane printks.
|
||||
Note that you won't be able to identify problems, once
|
||||
|
||||
@@ -123,9 +123,9 @@ config USB_OTG
|
||||
|
||||
config USB_OTG_WHITELIST
|
||||
bool "Rely on OTG Targeted Peripherals List"
|
||||
depends on USB_OTG || EMBEDDED
|
||||
depends on USB_OTG || EXPERT
|
||||
default y if USB_OTG
|
||||
default n if EMBEDDED
|
||||
default n if EXPERT
|
||||
help
|
||||
If you say Y here, the "otg_whitelist.h" file will be used as a
|
||||
product whitelist, so USB peripherals not listed there will be
|
||||
@@ -141,7 +141,7 @@ config USB_OTG_WHITELIST
|
||||
|
||||
config USB_OTG_BLACKLIST_HUB
|
||||
bool "Disable external hubs"
|
||||
depends on USB_OTG || EMBEDDED
|
||||
depends on USB_OTG || EXPERT
|
||||
help
|
||||
If you say Y here, then Linux will refuse to enumerate
|
||||
external hubs. OTG hosts are allowed to reduce hardware
|
||||
|
||||
@@ -1227,7 +1227,7 @@ config FB_CARILLO_RANCH
|
||||
|
||||
config FB_INTEL
|
||||
tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
|
||||
depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EMBEDDED
|
||||
depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
|
||||
select FB_MODE_HELPERS
|
||||
select FB_CFB_FILLRECT
|
||||
select FB_CFB_COPYAREA
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
menu "Console display driver support"
|
||||
|
||||
config VGA_CONSOLE
|
||||
bool "VGA text console" if EMBEDDED || !X86
|
||||
bool "VGA text console" if EXPERT || !X86
|
||||
depends on !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && !SUPERH && !BLACKFIN && !AVR32 && !MN10300 && (!ARM || ARCH_FOOTBRIDGE || ARCH_INTEGRATOR || ARCH_NETWINDER)
|
||||
default y
|
||||
help
|
||||
|
||||
Reference in New Issue
Block a user