diff options
| -rw-r--r-- | conf.py | 1 | ||||
| -rw-r--r-- | scripts/initialize.py | 4 | 
2 files changed, 3 insertions, 2 deletions
| @@ -20,6 +20,7 @@ linux_make_args = ['-j8']  # Path settings  linux_sources = pf('linux')  linux_kconfig_head = 'Kconfig' +linux_dot_config = linux_sources + '/.config'  build_folder = pf('build/')  phase_file = build_folder + '/phase' diff --git a/scripts/initialize.py b/scripts/initialize.py index 191d8d1..aca447d 100644 --- a/scripts/initialize.py +++ b/scripts/initialize.py @@ -34,11 +34,11 @@ def gen_requred():  	try:  		os.remove(conf.required_file) -		os.remove(conf.dot_config_file) +		os.remove(conf.dot_config_fragment_file)  	except OSError:  		pass -	shutil.copy(conf.linux_sources + '/.config', conf.dot_config_back_file) +	shutil.copy(conf.linux_dot_config, conf.dot_config_back_file)  	with open(conf.linux_sources + '/.config', 'r') as f:  		with open(conf.required_file, 'w') as freq: | 
