aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf.py1
-rw-r--r--scripts/initialize.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/conf.py b/conf.py
index 495b582..0343e6b 100644
--- a/conf.py
+++ b/conf.py
@@ -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: