File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -575,7 +575,7 @@ Path resolution is similar to --baremetal.
575
575
parser .add_argument (
576
576
'--userland-before' , default = defaults ['userland_before' ],
577
577
help = '''\
578
- Pass these Krguments to the QEMU user mode CLI before the program to execute.
578
+ Pass these arguments to the QEMU user mode CLI before the program to execute.
579
579
This is required with --userland since arguments that come at the end are interpreted
580
580
as command line arguments to that executable.
581
581
'''
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -eux
3
3
for emulator in --qemu --gem5; do
4
+ # Userland.
5
+ # TODO make work.
6
+ # ./run --arch x86_64 --background --userland add "$emulator" --wait-gdb &
7
+ # ./run-gdb --arch x86_64 --userland add "$emulator" --test "$@"
8
+ # wait
9
+
10
+ # Baremetal.
4
11
./run --arch arm --background --baremetal add " $emulator " --wait-gdb &
5
12
./run-gdb --arch arm --baremetal add " $emulator " --test " $@ "
6
13
wait
Original file line number Diff line number Diff line change
1
+ ../ baremetal / add .py
You can’t perform that action at this time.
0 commit comments