diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-27 22:14:41 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-27 22:14:41 +0200 |
commit | 7f3f4ff7944c78f7bc4f5127d0bed64a3ede27b4 (patch) | |
tree | bc48e120f764ec8f6dca7768bb47ef76d7202fd1 | |
parent | 91884a5c2fbf77613a0f1ad1ced7ae8e264d4dfb (diff) | |
download | linux-conf-perf-7f3f4ff7944c78f7bc4f5127d0bed64a3ede27b4.tar.gz linux-conf-perf-7f3f4ff7944c78f7bc4f5127d0bed64a3ede27b4.tar.bz2 linux-conf-perf-7f3f4ff7944c78f7bc4f5127d0bed64a3ede27b4.zip |
Fix missing symbol_map on test launch
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | scripts/test.py | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -41,7 +41,7 @@ mlinux: deflinux: ARCH=$(SRCARCH) $(MAKE) -C linux defconfig -test: $(INITRAM) +test: $(INITRAM) parse_kconfig scripts/test.py run: kconfig_parser write_config $(INITRAM) diff --git a/scripts/test.py b/scripts/test.py index 3d2a2c1..150aa4a 100755 --- a/scripts/test.py +++ b/scripts/test.py @@ -10,6 +10,7 @@ import kernel import boot def test(): + initialize.parse_kconfig() initialize.gen_requred() # Call this to check initial solution iteration.reset() # Reset iteration conf.kernel_make_output = True |