aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-05-04 22:47:00 +0200
committerKarel Kočí <cynerd@email.cz>2015-05-04 22:47:00 +0200
commit9a1f3ff8fbff9dd418242eefa7aa69dfd38609c5 (patch)
treea4a6a4275ba17f7820d1c0e2f973250f93a69a27 /conf.py
parent873c7efe496cfd2398b750a616781a5234ae3c6b (diff)
downloadlinux-conf-perf-9a1f3ff8fbff9dd418242eefa7aa69dfd38609c5.tar.gz
linux-conf-perf-9a1f3ff8fbff9dd418242eefa7aa69dfd38609c5.tar.bz2
linux-conf-perf-9a1f3ff8fbff9dd418242eefa7aa69dfd38609c5.zip
Add some configuration options and clean write_conf
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/conf.py b/conf.py
index cb59c1c..b07265c 100644
--- a/conf.py
+++ b/conf.py
@@ -1,5 +1,4 @@
import os
-from exceptions import MissingFile
# Global configs
SRCARCH = 'x86' # Kernel architecture
@@ -7,15 +6,18 @@ ARCH = SRCARCH
linux_make_args = ['-j8']
novaboot_args = ['--qemu=qemu-system-x86_64']
-minisat_args = ['-verb=2']
+minisat_args = []
# Programs output show/hide
parse_kconfig_output = False
-minisat_output = True
+minisat_output = False
kernel_config_output = True
-kernel_make_output = False
-boot_output = False
+kernel_make_output = True
+boot_output = True
-step_by_step = True
+step_by_step = False # Executes only single step and exits.
+single_loop = False # Executes only one loop and exits.
+only_config = True # Executes only to configuration phase. Building and booting phases are skipped.
+ignore_misconfig = False
#######################################
# Path settings
dot_confmk = '.conf.mk'