Change method of configuration generation
The existing method of managing configuration files gets unweildy. Changing individual lines in text files gets difficult without manual organization. Switch to a method of configuration generation that's inspired from the method used inside Red Hat. Each configuration option gets its own file which are then combined to form the configuration files. This makes confirming what's actually enabled much easier.
This commit is contained in:
		
							parent
							
								
									fe324f6990
								
							
						
					
					
						commit
						1b7eeb8019
					
				
							
								
								
									
										91
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										91
									
								
								Makefile
									
									
									
									
									
								
							| @ -10,9 +10,7 @@ help: | ||||
| 	@echo "Try fedpkg $@ or something like that" | ||||
| 	@exit 1 | ||||
| 
 | ||||
| include Makefile.config | ||||
| 
 | ||||
| prep: | ||||
| prep: config-files | ||||
| 	fedpkg -v prep | ||||
| 
 | ||||
| noarch: | ||||
| @ -25,91 +23,22 @@ local: | ||||
| extremedebug: | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_PAGEALLOC is not set/CONFIG_DEBUG_PAGEALLOC=y/' config-nodebug | ||||
| 
 | ||||
| config-files: | ||||
| 	@./build_configs.sh | ||||
| 
 | ||||
| debug: | ||||
| 	@perl -pi -e 's/# CONFIG_LOCK_STAT is not set/CONFIG_LOCK_STAT=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_STACK_USAGE is not set/CONFIG_DEBUG_STACK_USAGE=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_SLAB is not set/CONFIG_DEBUG_SLAB=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_MUTEXES is not set/CONFIG_DEBUG_MUTEXES=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_RT_MUTEXES is not set/CONFIG_DEBUG_RT_MUTEXES=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_LOCK_ALLOC is not set/CONFIG_DEBUG_LOCK_ALLOC=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_LOCK_TORTURE_TEST is not set/CONFIG_LOCK_TORTURE_TEST=m/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_PROVE_LOCKING is not set/CONFIG_PROVE_LOCKING=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_PROVE_RCU is not set/CONFIG_PROVE_RCU=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_SPINLOCK is not set/CONFIG_DEBUG_SPINLOCK=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_VM is not set/CONFIG_DEBUG_VM=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_VM_PGFLAGS is not set/CONFIG_DEBUG_VM_PGFLAGS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_FAULT_INJECTION is not set/CONFIG_FAULT_INJECTION=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_FAILSLAB is not set/CONFIG_FAILSLAB=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_FAIL_PAGE_ALLOC is not set/CONFIG_FAIL_PAGE_ALLOC=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_FAIL_IO_TIMEOUT is not set/CONFIG_FAIL_IO_TIMEOUT=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_FAIL_MAKE_REQUEST is not set/CONFIG_FAIL_MAKE_REQUEST=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_FAIL_MMC_REQUEST is not set/CONFIG_FAIL_MMC_REQUEST=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_FAULT_INJECTION_DEBUG_FS is not set/CONFIG_FAULT_INJECTION_DEBUG_FS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set/CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_SG is not set/CONFIG_DEBUG_SG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_PI_LIST is not set/CONFIG_DEBUG_PI_LIST=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS is not set/CONFIG_DEBUG_OBJECTS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS_FREE is not set/CONFIG_DEBUG_OBJECTS_FREE=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS_TIMERS is not set/CONFIG_DEBUG_OBJECTS_TIMERS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS_WORK is not set/CONFIG_DEBUG_OBJECTS_WORK=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set/CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set/CONFIG_DEBUG_OBJECTS_RCU_HEAD=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_X86_PTDUMP is not set/CONFIG_X86_PTDUMP=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_ARM64_PTDUMP is not set/CONFIG_ARM64_PTDUMP=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_EFI_PGT_DUMP is not set/CONFIG_EFI_PGT_DUMP=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_CAN_DEBUG_DEVICES is not set/CONFIG_CAN_DEBUG_DEVICES=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_MODULE_FORCE_UNLOAD is not set/CONFIG_MODULE_FORCE_UNLOAD=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_NOTIFIERS is not set/CONFIG_DEBUG_NOTIFIERS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DMA_API_DEBUG is not set/CONFIG_DMA_API_DEBUG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_PM_TEST_SUSPEND is not set/CONFIG_PM_TEST_SUSPEND=y/' config-generic | ||||
| 	@perl -pi -e 's/# CONFIG_PM_ADVANCED_DEBUG is not set/CONFIG_PM_ADVANCED_DEBUG=y/' config-generic | ||||
| 	@perl -pi -e 's/# CONFIG_B43_DEBUG is not set/CONFIG_B43_DEBUG=y/' config-generic | ||||
| 	@perl -pi -e 's/# CONFIG_B43LEGACY_DEBUG is not set/CONFIG_B43LEGACY_DEBUG=y/' config-generic | ||||
| 	@perl -pi -e 's/# CONFIG_MMIOTRACE is not set/CONFIG_MMIOTRACE=y/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_STRIP_ASM_SYMS=y/# CONFIG_STRIP_ASM_SYMS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_CREDENTIALS is not set/CONFIG_DEBUG_CREDENTIALS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set/CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_ACPI_DEBUG is not set/CONFIG_ACPI_DEBUG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_EXT4_DEBUG is not set/CONFIG_EXT4_DEBUG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_PERF_USE_VMALLOC is not set/CONFIG_DEBUG_PERF_USE_VMALLOC=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_JBD2_DEBUG is not set/CONFIG_JBD2_DEBUG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_NFSD_FAULT_INJECTION is not set/CONFIG_NFSD_FAULT_INJECTION=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_BLK_CGROUP is not set/CONFIG_DEBUG_BLK_CGROUP=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DRBD_FAULT_INJECTION is not set/CONFIG_DRBD_FAULT_INJECTION=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_ATH_DEBUG is not set/CONFIG_ATH_DEBUG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_CARL9170_DEBUGFS is not set/CONFIG_CARL9170_DEBUGFS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_IWLWIFI_DEVICE_TRACING is not set/CONFIG_IWLWIFI_DEVICE_TRACING=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DMADEVICES_DEBUG is not set/CONFIG_DMADEVICES_DEBUG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_CEPH_LIB_PRETTYDEBUG is not set/CONFIG_CEPH_LIB_PRETTYDEBUG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_QUOTA_DEBUG is not set/CONFIG_QUOTA_DEBUG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_KGDB_KDB is not set/CONFIG_KGDB_KDB=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_KDB_KEYBOARD is not set/CONFIG_KDB_KEYBOARD=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_CPU_NOTIFIER_ERROR_INJECT is not set/CONFIG_CPU_NOTIFIER_ERROR_INJECT=m/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_PER_CPU_MAPS is not set/CONFIG_DEBUG_PER_CPU_MAPS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_TEST_LIST_SORT is not set/CONFIG_TEST_LIST_SORT=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_ATOMIC_SLEEP is not set/CONFIG_DEBUG_ATOMIC_SLEEP=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DETECT_HUNG_TASK is not set/CONFIG_DETECT_HUNG_TASK=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_WQ_WATCHDOG is not set/CONFIG_WQ_WATCHDOG=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set/CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_DEBUG_KMEMLEAK is not set/CONFIG_DEBUG_KMEMLEAK=y/' config-nodebug | ||||
| 
 | ||||
| 	@# just in case we're going from extremedebug -> debug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_PAGEALLOC=y/# CONFIG_DEBUG_PAGEALLOC is not set/' config-nodebug | ||||
| 
 | ||||
| 	@perl -pi -e 's/# CONFIG_MAXSMP is not set/CONFIG_MAXSMP=y/' config-x86-generic | ||||
| 
 | ||||
| 	@perl -pi -e 's/^%define debugbuildsenabled 1/%define debugbuildsenabled 0/' kernel.spec | ||||
| 	@rpmdev-bumpspec -c "Reenable debugging options." kernel.spec | ||||
| 
 | ||||
| nodebuginfo: | ||||
| 	@perl -pi -e 's/^%define with_debuginfo %\{\?_without_debuginfo: 0\} %\{\?\!_without_debuginfo: 1\}/%define with_debuginfo %\{\?_without_debuginfo: 0\} %\{\?\!_without_debuginfo: 0\}/' kernel.spec | ||||
| nodebug: release | ||||
| 	@perl -pi -e 's/^%define debugbuildsenabled 1/%define debugbuildsenabled 0/' kernel.spec | ||||
| release: config-release | ||||
| release: | ||||
| 	@perl -pi -e 's/^%define debugbuildsenabled 0/%define debugbuildsenabled 1/' kernel.spec | ||||
| 	@rpmdev-bumpspec -c "Disable debugging options." kernel.spec | ||||
| 
 | ||||
| include Makefile.release | ||||
| nodebuginfo: | ||||
| 	@perl -pi -e 's/^%define with_debuginfo %\{\?_without_debuginfo: 0\} %\{\?\!_without_debuginfo: 1\}/%define with_debuginfo %\{\?_without_debuginfo: 0\} %\{\?\!_without_debuginfo: 0\}/' kernel.spec | ||||
| 
 | ||||
| nodebug: release | ||||
| 	@perl -pi -e 's/^%define debugbuildsenabled 1/%define debugbuildsenabled 0/' kernel.spec | ||||
| 
 | ||||
| ifeq ($(MAKECMDGOALS),me a sandwich) | ||||
| .PHONY: me a sandwich | ||||
|  | ||||
							
								
								
									
										129
									
								
								Makefile.config
									
									
									
									
									
								
							
							
						
						
									
										129
									
								
								Makefile.config
									
									
									
									
									
								
							| @ -1,129 +0,0 @@ | ||||
| # Make rules for configuration files.
 | ||||
| #
 | ||||
| # $Id$
 | ||||
| 
 | ||||
| CFG		= kernel-$(VERSION) | ||||
| 
 | ||||
| CONFIGFILES	= \
 | ||||
| 	$(CFG)-i686.config $(CFG)-i686-debug.config \
 | ||||
| 	$(CFG)-i686-PAE.config $(CFG)-i686-PAEdebug.config \
 | ||||
| 	$(CFG)-x86_64.config $(CFG)-x86_64-debug.config \
 | ||||
| 	$(CFG)-s390x.config \
 | ||||
| 	$(CFG)-armv7hl.config $(CFG)-armv7hl-lpae.config \
 | ||||
| 	$(CFG)-aarch64.config \
 | ||||
| 	$(CFG)-ppc64.config $(CFG)-ppc64p7.config $(CFG)-ppc64-debug.config \
 | ||||
| 	$(CFG)-ppc64le.config $(CFG)-ppc64le-debug.config | ||||
| 
 | ||||
| PLATFORMS	= x86 x86_64 powerpc s390x arm arm64 | ||||
| TEMPFILES	= $(addprefix temp-, $(addsuffix -generic, $(PLATFORMS))) | ||||
| 
 | ||||
| configs: $(CONFIGFILES) | ||||
| 	@rm -f kernel-*-config | ||||
| 	@rm -f $(TEMPFILES) | ||||
| 	@rm -f temp-generic temp-*-generic temp-*-generic-tmp | ||||
| 
 | ||||
| # Augment the clean target to clean up our own cruft
 | ||||
| clean :: | ||||
| 	@rm -fv $(CONFIGFILES) $(TEMPFILES) temp-generic kernel-$(VERSION)*config | ||||
| 
 | ||||
| temp-generic: config-generic config-nodebug | ||||
| 	cat $^ > temp-generic | ||||
| 
 | ||||
| temp-debug-generic: config-generic config-debug | ||||
| 	cat $^ > temp-debug-generic | ||||
| 
 | ||||
| temp-no-extra-generic: config-no-extra temp-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| temp-arm-generic: config-arm-generic temp-no-extra-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| temp-armv7-generic: config-armv7-generic temp-arm-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| temp-armv7: config-armv7 temp-armv7-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| temp-armv7-lpae: config-armv7-lpae temp-armv7-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| temp-arm-debug-generic: temp-arm-generic temp-debug-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| temp-arm64: config-arm64 temp-arm-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| temp-arm64-debug: config-arm64 temp-arm-debug-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| temp-x86-32: config-x86-32-generic config-x86-generic | ||||
| 	perl merge.pl $^  > $@ | ||||
| 
 | ||||
| temp-x86-32-generic: temp-x86-32 temp-generic | ||||
| 	perl merge.pl $^  > $@ | ||||
| 
 | ||||
| temp-x86-debug-generic: temp-x86-32 temp-debug-generic | ||||
| 	perl merge.pl $^  > $@ | ||||
| 
 | ||||
| temp-x86-64: config-x86_64-generic config-x86-generic | ||||
| 	perl merge.pl $^  > $@ | ||||
| 
 | ||||
| temp-x86_64-generic: temp-x86-64 temp-generic | ||||
| 	perl merge.pl $^  > $@ | ||||
| 
 | ||||
| temp-x86_64-debug-generic: temp-x86-64 temp-debug-generic | ||||
| 	perl merge.pl $^  > $@ | ||||
| 
 | ||||
| temp-powerpc64-generic: config-powerpc64-generic temp-generic | ||||
| 	perl merge.pl $^  > $@ | ||||
| 
 | ||||
| temp-powerpc64-debug-generic: config-powerpc64-generic temp-debug-generic | ||||
| 	perl merge.pl $^  > $@ | ||||
| 
 | ||||
| temp-s390-generic: config-s390x temp-generic | ||||
| 	perl merge.pl $^ > $@ | ||||
| 
 | ||||
| $(CFG)-i686-PAE.config: config-i686-PAE temp-x86-32-generic | ||||
| 	perl merge.pl $^ i386 > $@ | ||||
| 
 | ||||
| $(CFG)-i686-PAEdebug.config: config-i686-PAE temp-x86-debug-generic | ||||
| 	perl merge.pl $^ i386 > $@ | ||||
| 
 | ||||
| $(CFG)-i686.config: /dev/null temp-x86-32-generic | ||||
| 	perl merge.pl $^ i386 > $@ | ||||
| 
 | ||||
| $(CFG)-i686-debug.config: /dev/null temp-x86-debug-generic | ||||
| 	perl merge.pl $^ i386 > $@ | ||||
| 
 | ||||
| $(CFG)-x86_64.config: /dev/null temp-x86_64-generic | ||||
| 	perl merge.pl $^ x86_64 > $@ | ||||
| 
 | ||||
| $(CFG)-x86_64-debug.config: /dev/null temp-x86_64-debug-generic | ||||
| 	perl merge.pl $^ x86_64 > $@ | ||||
| 
 | ||||
| $(CFG)-ppc64.config: config-powerpc64 temp-powerpc64-generic | ||||
| 	perl merge.pl $^ powerpc > $@ | ||||
| 
 | ||||
| $(CFG)-ppc64-debug.config: config-powerpc64 temp-powerpc64-debug-generic | ||||
| 	perl merge.pl $^ powerpc > $@ | ||||
| 
 | ||||
| $(CFG)-ppc64p7.config: config-powerpc64p7 temp-powerpc64-generic | ||||
| 	perl merge.pl $^ powerpc > $@ | ||||
| 
 | ||||
| $(CFG)-ppc64le.config: config-powerpc64le temp-powerpc64-generic | ||||
| 	perl merge.pl $^ powerpc > $@ | ||||
| 
 | ||||
| $(CFG)-ppc64le-debug.config: config-powerpc64le temp-powerpc64-debug-generic | ||||
| 	perl merge.pl $^ powerpc > $@ | ||||
| 
 | ||||
| $(CFG)-s390x.config: config-s390x temp-s390-generic | ||||
| 	perl merge.pl $^ s390 > $@ | ||||
| 
 | ||||
| $(CFG)-armv7hl.config: /dev/null temp-armv7 | ||||
| 	perl merge.pl $^ arm > $@ | ||||
| 
 | ||||
| $(CFG)-armv7hl-lpae.config: /dev/null temp-armv7-lpae | ||||
| 	perl merge.pl $^ arm > $@ | ||||
| 
 | ||||
| $(CFG)-aarch64.config: /dev/null temp-arm64 | ||||
| 	perl merge.pl $^ arm64 > $@ | ||||
| @ -1,84 +0,0 @@ | ||||
| # Make rules for configuration files.
 | ||||
| #
 | ||||
| # $Id$
 | ||||
| 
 | ||||
| # This file contains only entries that change the config files.
 | ||||
| # Anything that changes kernel.spec itself should go in the main Makefile.
 | ||||
| 
 | ||||
| config-release: | ||||
| 	@perl -pi -e 's/CONFIG_LOCK_STAT=y/# CONFIG_LOCK_STAT is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_STACK_USAGE=y/# CONFIG_DEBUG_STACK_USAGE is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_SLAB=y/# CONFIG_DEBUG_SLAB is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_MUTEXES=y/# CONFIG_DEBUG_MUTEXES is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_RT_MUTEXES=y/# CONFIG_DEBUG_RT_MUTEXES is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_LOCK_ALLOC=y/# CONFIG_DEBUG_LOCK_ALLOC is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_LOCK_TORTURE_TEST=m/# CONFIG_LOCK_TORTURE_TEST is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_PROVE_LOCKING=y/# CONFIG_PROVE_LOCKING is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_PROVE_RCU=y/# CONFIG_PROVE_RCU is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_SPINLOCK=y/# CONFIG_DEBUG_SPINLOCK is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_VM=y/# CONFIG_DEBUG_VM is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_VM_PGFLAGS=y/# CONFIG_DEBUG_VM_PGFLAGS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_FAULT_INJECTION=y/# CONFIG_FAULT_INJECTION is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_FAILSLAB=y/# CONFIG_FAILSLAB is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_FAIL_PAGE_ALLOC=y/# CONFIG_FAIL_PAGE_ALLOC is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_FAIL_IO_TIMEOUT=y/# CONFIG_FAIL_IO_TIMEOUT is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_FAIL_MAKE_REQUEST=y/# CONFIG_FAIL_MAKE_REQUEST is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_FAIL_MMC_REQUEST=y/# CONFIG_FAIL_MMC_REQUEST is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_FAULT_INJECTION_DEBUG_FS=y/# CONFIG_FAULT_INJECTION_DEBUG_FS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y/# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_SG=y/# CONFIG_DEBUG_SG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_PI_LIST=y/# CONFIG_DEBUG_PI_LIST is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_OBJECTS=y/# CONFIG_DEBUG_OBJECTS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_OBJECTS_FREE=y/# CONFIG_DEBUG_OBJECTS_FREE is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_OBJECTS_TIMERS=y/# CONFIG_DEBUG_OBJECTS_TIMERS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_OBJECTS_WORK=y/# CONFIG_DEBUG_OBJECTS_WORK is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y/# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_OBJECTS_RCU_HEAD=y/# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_ARM64_PTDUMP=y/# CONFIG_ARM64_PTDUMP is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_EFI_PGT_DUMP=y/# CONFIG_EFI_PGT_DUMP is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_CAN_DEBUG_DEVICES=y/# CONFIG_CAN_DEBUG_DEVICES is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_MODULE_FORCE_UNLOAD=y/# CONFIG_MODULE_FORCE_UNLOAD is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_NOTIFIERS=y/# CONFIG_DEBUG_NOTIFIERS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DMA_API_DEBUG=y/# CONFIG_DMA_API_DEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_PM_TEST_SUSPEND=y/# CONFIG_PM_TEST_SUSPEND is not set/' config-generic | ||||
| 	@perl -pi -e 's/CONFIG_PM_ADVANCED_DEBUG=y/# CONFIG_PM_ADVANCED_DEBUG is not set/' config-generic | ||||
| 	@perl -pi -e 's/CONFIG_B43_DEBUG=y/# CONFIG_B43_DEBUG is not set/' config-generic | ||||
| 	@perl -pi -e 's/CONFIG_B43LEGACY_DEBUG=y/# CONFIG_B43LEGACY_DEBUG is not set/' config-generic | ||||
| 	@perl -pi -e 's/CONFIG_MMIOTRACE=y/# CONFIG_MMIOTRACE is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/# CONFIG_STRIP_ASM_SYMS is not set/CONFIG_STRIP_ASM_SYMS=y/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_CREDENTIALS=y/# CONFIG_DEBUG_CREDENTIALS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y/# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_ACPI_DEBUG=y/# CONFIG_ACPI_DEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_EXT4_DEBUG=y/# CONFIG_EXT4_DEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_PERF_USE_VMALLOC=y/# CONFIG_DEBUG_PERF_USE_VMALLOC is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_JBD2_DEBUG=y/# CONFIG_JBD2_DEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_NFSD_FAULT_INJECTION=y/# CONFIG_NFSD_FAULT_INJECTION is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_BLK_CGROUP=y/# CONFIG_DEBUG_BLK_CGROUP is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DRBD_FAULT_INJECTION=y/# CONFIG_DRBD_FAULT_INJECTION is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_ATH_DEBUG=y/# CONFIG_ATH_DEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_CARL9170_DEBUGFS=y/# CONFIG_CARL9170_DEBUGFS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_IWLWIFI_DEVICE_TRACING=y/# CONFIG_IWLWIFI_DEVICE_TRACING is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DMADEVICES_DEBUG=y/# CONFIG_DMADEVICES_DEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_CEPH_LIB_PRETTYDEBUG=y/# CONFIG_CEPH_LIB_PRETTYDEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_QUOTA_DEBUG=y/# CONFIG_QUOTA_DEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_CPU_NOTIFIER_ERROR_INJECT=m/# CONFIG_CPU_NOTIFIER_ERROR_INJECT is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_PER_CPU_MAPS=y/# CONFIG_DEBUG_PER_CPU_MAPS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_PERCPU_TEST=m/# CONFIG_PERCPU_TEST is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_TEST_LIST_SORT=y/# CONFIG_TEST_LIST_SORT is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_TEST_STRING_HELPERS=m/# CONFIG_TEST_STRING_HELPERS is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_ATOMIC_SLEEP=y/# CONFIG_DEBUG_ATOMIC_SLEEP is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DETECT_HUNG_TASK=y/# CONFIG_DETECT_HUNG_TASK is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_WQ_WATCHDOG=y/# CONFIG_WQ_WATCHDOG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y/# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_KMEMLEAK=y/# CONFIG_DEBUG_KMEMLEAK is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_MAC80211_MESSAGE_TRACING=y/# CONFIG_MAC80211_MESSAGE_TRACING is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_XFS_WARN=y/# CONFIG_XFS_WARN is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_EDAC_DEBUG=y/# CONFIG_EDAC_DEBUG is not set/' config-nodebug | ||||
| 	@perl -pi -e 's/CONFIG_RTLWIFI_DEBUG=y/# CONFIG_RTLWIFI_DEBUG is not set/' config-nodebug | ||||
| 
 | ||||
| 	@# Undo anything that make extremedebug might have set | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_PAGEALLOC=y/# CONFIG_DEBUG_PAGEALLOC is not set/' config-debug | ||||
| 	@perl -pi -e 's/CONFIG_DEBUG_PAGEALLOC=y/# CONFIG_DEBUG_PAGEALLOC is not set/' config-nodebug | ||||
| 
 | ||||
| 	@# Change defaults back to sane things. | ||||
| 	@perl -pi -e 's/CONFIG_MAXSMP=y/# CONFIG_MAXSMP is not set/' config-x86-generic | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_60XX_WDT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_60XX_WDT
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_60XX_WDT is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_DEBUGFS
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_DEBUGFS
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_DEBUGFS=y | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_EXT_HDR_DEST
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_EXT_HDR_DEST
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_GHC_EXT_HDR_DEST=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_EXT_HDR_HOP
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_EXT_HDR_HOP
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_GHC_EXT_HDR_HOP=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_ICMPV6
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_ICMPV6
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_GHC_ICMPV6=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_UDP
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_GHC_UDP
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_GHC_UDP=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_NHC=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_DEST
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_DEST
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_NHC_DEST=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_FRAGMENT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_FRAGMENT
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_NHC_FRAGMENT=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_HOP
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_HOP
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_NHC_HOP=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_IPV6
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_IPV6
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_NHC_IPV6=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_MOBILITY
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_MOBILITY
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_NHC_MOBILITY=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_ROUTING
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_ROUTING
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_NHC_ROUTING=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_UDP
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6LOWPAN_NHC_UDP
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6LOWPAN_NHC_UDP=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_6PACK
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_6PACK
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_6PACK=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_8139CP
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_8139CP
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_8139CP=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_8139TOO
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_8139TOO
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_8139TOO=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_8139TOO_8129
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_8139TOO_8129
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_8139TOO_8129=y | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_8139TOO_PIO
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_8139TOO_PIO
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_8139TOO_PIO is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_8139TOO_TUNE_TWISTER
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_8139TOO_TUNE_TWISTER
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_8139TOO_TUNE_TWISTER is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_8139_OLD_RX_RESET
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_8139_OLD_RX_RESET
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_8139_OLD_RX_RESET is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_8723AU_AP_MODE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_8723AU_AP_MODE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_8723AU_AP_MODE is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_8723AU_BT_COEXIST
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_8723AU_BT_COEXIST
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_8723AU_BT_COEXIST is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_9P_FS
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_9P_FS
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_9P_FS=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_9P_FSCACHE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_9P_FSCACHE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_9P_FSCACHE=y | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_9P_FS_POSIX_ACL
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_9P_FS_POSIX_ACL
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_9P_FS_POSIX_ACL=y | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_9P_FS_SECURITY
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_9P_FS_SECURITY
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_9P_FS_SECURITY=y | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_A11Y_BRAILLE_CONSOLE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_A11Y_BRAILLE_CONSOLE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_A11Y_BRAILLE_CONSOLE=y | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AB3100_CORE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AB3100_CORE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AB3100_CORE is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AB3100_OTP
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AB3100_OTP
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AB3100_OTP is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ABX500_CORE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ABX500_CORE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ABX500_CORE is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACCESSIBILITY
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACCESSIBILITY
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_ACCESSIBILITY=y | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACENIC
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACENIC
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_ACENIC=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACENIC_OMIT_TIGON_I
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACENIC_OMIT_TIGON_I
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ACENIC_OMIT_TIGON_I is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACORN_PARTITION
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACORN_PARTITION
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ACORN_PARTITION is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACPI_ALS
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACPI_ALS
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_ACPI_ALS=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACPI_DEBUG
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACPI_DEBUG
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ACPI_DEBUG is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACPI_DEBUGGER
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACPI_DEBUGGER
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ACPI_DEBUGGER is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACPI_NFIT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACPI_NFIT
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ACPI_NFIT is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACPI_PCI_SLOT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACPI_PCI_SLOT
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_ACPI_PCI_SLOT=y | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACQUIRE_WDT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACQUIRE_WDT
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ACQUIRE_WDT is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACT200L_DONGLE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACT200L_DONGLE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_ACT200L_DONGLE=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ACTISYS_DONGLE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ACTISYS_DONGLE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_ACTISYS_DONGLE=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD2S1200
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD2S1200
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD2S1200 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD2S1210
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD2S1210
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD2S1210 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD2S90
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD2S90
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD2S90 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5064
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5064
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5064 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD525X_DPOT
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD525X_DPOT
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD525X_DPOT is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5360
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5360
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5360 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5380
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5380
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5380 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5421
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5421
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5421 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5446
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5446
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5446 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5449
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5449
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5449 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5504
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5504
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5504 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5592R
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5592R
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5592R is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5593R
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5593R
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5593R is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5624R_SPI
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5624R_SPI
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5624R_SPI is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5686
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5686
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5686 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5755
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5755
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5755 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5761
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5761
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5761 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5764
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5764
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5764 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5791
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5791
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5791 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD5933
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD5933
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD5933 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7150
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7150
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7150 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7152
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7152
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7152 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7192
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7192
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7192 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7266
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7266
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7266 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7280
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7280
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7280 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7291
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7291
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7291 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7298
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7298
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7298 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7303
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7303
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7303 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7476
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7476
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7476 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7606
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7606
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7606 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7746
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7746
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7746 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7780
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7780
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7780 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7791
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7791
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7791 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7793
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7793
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7793 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7816
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7816
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7816 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7887
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7887
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7887 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD7923
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD7923
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD7923 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD799X
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD799X
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD799X is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD8366
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD8366
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD8366 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD8801
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD8801
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD8801 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD9523
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD9523
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD9523 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD9832
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD9832
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD9832 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_AD9834
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_AD9834
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_AD9834 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ADAPTEC_STARFIRE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ADAPTEC_STARFIRE
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| CONFIG_ADAPTEC_STARFIRE=m | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ADE7753
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ADE7753
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ADE7753 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ADE7754
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ADE7754
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ADE7754 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ADE7758
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ADE7758
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ADE7758 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ADE7759
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ADE7759
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ADE7759 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ADE7854
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ADE7854
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ADE7854 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ADF4350
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ADF4350
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ADF4350 is not set | ||||
							
								
								
									
										1
									
								
								baseconfig/CONFIG_ADFS_FS
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								baseconfig/CONFIG_ADFS_FS
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| # CONFIG_ADFS_FS is not set | ||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
		Reference in New Issue
	
	Block a user