 009293c52e
			
		
	
	009293c52e
	
	
	
		
			
			Functional Changes ---------- ------- - make 'imply' not impose any restrictions: allow symbols implied by y to become m - change "modules" from sub-option to first-level attribute Bugfixes -------- - nconf: fix core dump when searching in empty menu - nconf: stop endless search loops - xconfig: fix content of the main widget - xconfig: fix support for the split view mode Other Changes ----- ------- - highlight xconfig 'comment' lines with '***' - xconfig: navigate menus on hyperlinks - xconfig: drop support for Qt4 - improve host ncurses detection Update the 'option modules' usage to just 'modules' in Config.in. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
		
			
				
	
	
		
			41 lines
		
	
	
		
			668 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			668 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| #
 | |
| # Copyright (C) 2006-2013 OpenWrt.org
 | |
| 
 | |
| mainmenu "OpenWrt Configuration"
 | |
| 
 | |
| config MODULES
 | |
| 	modules
 | |
| 	bool
 | |
| 	default y
 | |
| 
 | |
| config HAVE_DOT_CONFIG
 | |
| 	bool
 | |
| 	default y
 | |
| 
 | |
| HOST_OS := $(shell, uname)
 | |
| 
 | |
| config HOST_OS_LINUX
 | |
| 	def_bool $(shell, ./config/check-uname.sh Linux)
 | |
| 
 | |
| config HOST_OS_MACOS
 | |
| 	def_bool $(shell, ./config/check-uname.sh Darwin)
 | |
| 
 | |
| source "target/Config.in"
 | |
| 
 | |
| source "config/Config-images.in"
 | |
| 
 | |
| source "config/Config-build.in"
 | |
| 
 | |
| source "config/Config-devel.in"
 | |
| 
 | |
| source "toolchain/Config.in"
 | |
| 
 | |
| source "target/imagebuilder/Config.in"
 | |
| 
 | |
| source "target/sdk/Config.in"
 | |
| 
 | |
| source "target/toolchain/Config.in"
 | |
| 
 | |
| source "tmp/.config-package.in"
 |