stdlib: Remove 'exit_on_work_items' from boards' constructor

This has been moved to the `set_kernel_disk_workload` function, and is
set to True by default.

Change-Id: I9df2fa2946dd942b5011f05b948542097310352e
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/52223
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
This commit is contained in:
Bobby R. Bruce
2021-10-28 14:49:34 -07:00
parent 4307d8b73f
commit e4cff7b5ca
9 changed files with 7 additions and 18 deletions

View File

@@ -192,7 +192,6 @@ motherboard = X86Board(
processor=processor,
memory=memory,
cache_hierarchy=cache_hierarchy,
exit_on_work_items=True,
)
# Set the Full System workload.

View File

@@ -175,7 +175,6 @@ motherboard = X86Board(
processor=processor,
memory=memory,
cache_hierarchy=cache_hierarchy,
exit_on_work_items=True,
)
kernal_args = motherboard.get_default_kernel_args() + [args.kernel_args]

View File

@@ -211,7 +211,6 @@ board = X86Board(
processor=processor,
memory=memory,
cache_hierarchy=cache_hierarchy,
exit_on_work_items=True,
)
# The command to run.

View File

@@ -182,7 +182,6 @@ motherboard = X86Board(
processor=processor,
memory=memory,
cache_hierarchy=cache_hierarchy,
exit_on_work_items=True,
)
kernal_args = motherboard.get_default_kernel_args()