diff options
author | Daniel R. Carvalho <odanrc@yahoo.com.br> | 2019-05-01 22:53:29 +0200 |
---|---|---|
committer | Daniel Carvalho <odanrc@yahoo.com.br> | 2019-05-02 06:40:15 +0000 |
commit | 308a06c1d7ec5370e2f2f3a872951e9cac6fd65f (patch) | |
tree | 62868b19a7222853915ce4c09334a2b6270eb7e9 /tests/configs/x86_generic.py | |
parent | 12eab3e7a639265250c072133e1665e796b07c5b (diff) | |
download | gem5-308a06c1d7ec5370e2f2f3a872951e9cac6fd65f.tar.xz |
tests: Add missing kernels to system creation
Change 149c1fc2d070a8ce073263880ecf2ccf7535e569 removed the
default value of the kernels, and fs tests rely on those.
Change-Id: I6d83420af5881ab59c2d223a9915f363dd8a1c69
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18528
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'tests/configs/x86_generic.py')
-rw-r--r-- | tests/configs/x86_generic.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/configs/x86_generic.py b/tests/configs/x86_generic.py index 53c046a58..e280fc59c 100644 --- a/tests/configs/x86_generic.py +++ b/tests/configs/x86_generic.py @@ -41,7 +41,7 @@ from m5.objects import * from m5.proxy import * m5.util.addToPath('../configs/') from common.Benchmarks import SysConfig -from common import FSConfig +from common import FSConfig, SysPaths from common.Caches import * from base_config import * @@ -60,6 +60,7 @@ class LinuxX86SystemBuilder(object): system = FSConfig.makeLinuxX86System(self.mem_mode, numCPUs=self.num_cpus, mdesc=mdesc) + system.kernel = SysPaths.binary('x86_64-vmlinux-2.6.22.9') self.init_system(system) return system |