| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.config ADK_LINUX_KERNEL_MISC_DEVICES	boolconfig ADK_LINUX_KERNEL_MFD_SYSCON	boolconfig ADK_LINUX_KERNEL_OF	boolconfig ADK_LINUX_KERNEL_COMMON_CLK	boolconfig ADK_LINUX_KERNEL_FIRMWARE_IN_KERNEL	bool 	default y if ADK_LINUX_KERNEL_R8169 && ADK_LINUX_KERNEL_ROOT_NFS	default nconfig ADK_LINUX_KERNEL_EXTRA_FIRMWARE	string	default "rtl8168e-2.fw" if ADK_LINUX_KERNEL_R8169 && ADK_LINUX_KERNEL_ROOT_NFS	default ""config ADK_LINUX_KERNEL_FW_LOADER_USER_HELPER	boolconfig ADK_LINUX_KERNEL_KEYS	boolconfig ADK_LINUX_KERNEL_SBUS	boolconfig ADK_LINUX_KERNEL_FIQ	boolconfig ADK_LINUX_KERNEL_FSL_OTP	bool	depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6  || \		ADK_TARGET_SYSTEM_PHYTEC_IMX6	default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6  || \		ADK_TARGET_SYSTEM_PHYTEC_IMX6	default nconfig ADK_LINUX_KERNEL_IMX_WEIM	bool	depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6  || \		ADK_TARGET_SYSTEM_PHYTEC_IMX6	default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6  || \		ADK_TARGET_SYSTEM_PHYTEC_IMX6	default nconfig ADK_LINUX_KERNEL_INTEL_IOMMU        boolconfig ADK_LINUX_KERNEL_IOMMU_API        boolconfig ADK_LINUX_KERNEL_IOMMU_IOVA        boolconfig ADK_LINUX_KERNEL_DMAR_TABLE        boolmenu "Miscellaneous devices support"source "target/linux/config/Config.in.rtc"source "target/linux/config/Config.in.leds"source "target/linux/config/Config.in.watchdog"source "target/linux/config/Config.in.thermal"source "target/linux/config/Config.in.i2c"source "target/linux/config/Config.in.spi"source "target/linux/config/Config.in.regmap"source "target/linux/config/Config.in.regulator"source "target/linux/config/Config.in.gpio"source "target/linux/config/Config.in.dma"source "target/linux/config/Config.in.lib"config ADK_LINUX_KERNEL_PWM	boolconfig ADK_LINUX_KERNEL_PWM_IMX	bool	select ADK_LINUX_KERNEL_PWM	depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6  || \		ADK_TARGET_SYSTEM_PHYTEC_IMX6	default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6  || \		ADK_TARGET_SYSTEM_PHYTEC_IMX6	default nconfig ADK_LINUX_KERNEL_KEXEC	bool "Add KEXEC syscall"	help	  You need also kexec-tools to benefit from it.	config ADK_LINUX_KERNEL_PARPORT	tristate "Generic parallel port support"	depends on ADK_TARGET_WITH_PP	help	  Kernel module for generic parallel port support.config ADK_LINUX_KERNEL_PARPORT_PC	tristate "PC style parallel port support"	depends on ADK_LINUX_KERNEL_PARPORT	help	  Kernel module for PC style parallel port support.config ADK_LINUX_KERNEL_PLIP	tristate "PLIP (internet over parallel port)"	depends on ADK_LINUX_KERNEL_PARPORT	select ADK_LINUX_KERNEL_PARPORT_PC	help	  PLIP: IPv4 over parallel port, using a Turbo Laplink	  (crossed null-printer) cable. Drivers exist for DOS	  (from Crynwr), Linux 2.x (protocol changed and is no	  longer compatible with Linux 1.x), FreeBSD and MirBSD.	  This will enlarge your kernel by about 8 KiB.config ADK_LINUX_KERNEL_PRINTER	tristate "Line printer support"	depends on ADK_LINUX_KERNEL_PARPORT	select ADK_LINUX_KERNEL_PARPORT_PC	help	  Kernel module for line printer supportconfig ADK_LINUX_KERNEL_PPDEV	tristate "Userland parallel port driver"	depends on ADK_LINUX_KERNEL_PARPORT	select ADK_LINUX_KERNEL_PARPORT_PC	help	  Kernel module for userland parallel port accessconfig ADK_LINUX_KERNEL_FW_LOADER	tristate "Userspace firmware loading support"	depends on !ADK_TARGET_SYSTEM_SHARP_ZAURUS	help	  This may be necessary when using drivers which require	  loading of external firmware files.config ADK_LINUX_KERNEL_EEPROM_93CX6	tristate "93cx6 eeprom support"	depends on ADK_LINUX_KERNEL_MAC80211	select ADK_LINUX_KERNEL_MISC_DEVICESconfig ADK_LINUX_KERNEL_IOMMU_SUPPORT	bool "IOMMU support for Intel"	select ADK_LINUX_KERNEL_PCI_MSI	select ADK_LINUX_KERNEL_INTEL_IOMMU	select ADK_LINUX_KERNEL_IOMMU_API	select ADK_LINUX_KERNEL_IOMMU_IOVA	select ADK_LINUX_KERNEL_DMAR_TABLE	depends on ADK_TARGET_WITH_IOMMU	default y endmenu
 |