Kyle Roarty has uploaded this change for review. (
https://gem5-review.googlesource.com/c/public/gem5/+/32655 )
Change subject: configs: Use proper keywordargs for RedirectPath in apu_se
......................................................................
configs: Use proper keywordargs for RedirectPath in apu_se
RedirectPath uses app_path and host_paths instead of src and dests.
This patch fixes that in apu_se.
The patch also changes the formatting for those lines, as simply
replacing dests with host_paths put the lines over the 80 char limit.
Change-Id: If7e4c41f2f52bc3d5aa26465c786294f9b68f8d3
---
M configs/example/apu_se.py
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/configs/example/apu_se.py b/configs/example/apu_se.py
index 25c148e..d8246ec 100644
--- a/configs/example/apu_se.py
+++ b/configs/example/apu_se.py
@@ -614,12 +614,12 @@
########################## Start simulation ########################
-redirect_paths = [RedirectPath(src = "/proc",
- dests = ["%s/fs/proc" % m5.options.outdir]),
- RedirectPath(src = "/sys",
- dests = ["%s/fs/sys" % m5.options.outdir]),
- RedirectPath(src = "/tmp",
- dests = ["%s/fs/tmp" % m5.options.outdir])]
+redirect_paths = [RedirectPath(app_path = "/proc", host_paths = \
+ ["%s/fs/proc" % m5.options.outdir]),
+ RedirectPath(app_path = "/sys", host_paths = \
+ ["%s/fs/sys" % m5.options.outdir]),
+ RedirectPath(app_path = "/tmp", host_paths = \
+ ["%s/fs/tmp" % m5.options.outdir])]
system.redirect_paths = redirect_paths
--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/32655
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: If7e4c41f2f52bc3d5aa26465c786294f9b68f8d3
Gerrit-Change-Number: 32655
Gerrit-PatchSet: 1
Gerrit-Owner: Kyle Roarty <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s