Giacomo Travaglini has submitted this change. ( https://gem5-review.googlesource.com/c/public/gem5/+/27951 )

Change subject: configs: Add --semi-path option to baremetal.py
......................................................................

configs: Add --semi-path option to baremetal.py

This is to make it possible to configure the semihosting
root directory via commandline.

Change-Id: If5167abc19eb8d78db37ebc854c336fe778a8a6f
Signed-off-by: Giacomo Travaglini <giacomo.travagl...@arm.com>
Reviewed-by: Adrian Herrera <adrian.herr...@arm.com>
Reviewed-by: Ciro Santilli <ciro.santi...@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/27951
Tested-by: kokoro <noreply+kok...@google.com>
---
M configs/example/arm/baremetal.py
1 file changed, 5 insertions(+), 0 deletions(-)

Approvals:
  Ciro Santilli: Looks good to me, approved
  Giacomo Travaglini: Looks good to me, approved
  kokoro: Regressions pass



diff --git a/configs/example/arm/baremetal.py b/configs/example/arm/baremetal.py
index 87e8952..36928ec 100644
--- a/configs/example/arm/baremetal.py
+++ b/configs/example/arm/baremetal.py
@@ -110,6 +110,7 @@
             stdin=args.semi_stdin,
             stdout=args.semi_stdout,
             stderr=args.semi_stderr,
+            files_root_dir=args.semi_path,
             cmd_line = " ".join([ args.kernel ] + args.args)
         )

@@ -223,6 +224,10 @@
     parser.add_argument("--semi-stderr", type=str, default="stderr",
                         help="Standard error for semihosting " \
                         "(default: gem5's stderr)")
+    parser.add_argument('--semi-path', type=str,
+                        default="",
+                        help=('Search path for files to be loaded through '
+                              'Arm Semihosting'))
     parser.add_argument("args", default=[], nargs="*",
                         help="Semihosting arguments to pass to benchmark")
     parser.add_argument("-P", "--param", action="append", default=[],

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/27951
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: If5167abc19eb8d78db37ebc854c336fe778a8a6f
Gerrit-Change-Number: 27951
Gerrit-PatchSet: 2
Gerrit-Owner: Giacomo Travaglini <giacomo.travagl...@arm.com>
Gerrit-Reviewer: Adrian Herrera <adrian.herr...@arm.com>
Gerrit-Reviewer: Ciro Santilli <ciro.santi...@arm.com>
Gerrit-Reviewer: Giacomo Travaglini <giacomo.travagl...@arm.com>
Gerrit-Reviewer: kokoro <noreply+kok...@google.com>
Gerrit-MessageType: merged
_______________________________________________
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to