summaryrefslogtreecommitdiffstats
path: root/Documentation/boards/emulated.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/boards/emulated.rst')
-rw-r--r--Documentation/boards/emulated.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/boards/emulated.rst b/Documentation/boards/emulated.rst
index 584883d6ef..a67533613e 100644
--- a/Documentation/boards/emulated.rst
+++ b/Documentation/boards/emulated.rst
@@ -56,20 +56,20 @@ The script can also be used with a precompiled barebox tree::
export KBUILD_OUTPUT=build
# run a barebox image built outside tuxmake on an ARM virt machine
- ARCH=arm ./test/emulate.pl virt@vexpress_defconfig --no-tuxmake
+ ARCH=arm ./test/emulate.pl virt@multi_v7_defconfig --no-tuxmake
# run tests instead of starting emulator interactively
- ARCH=arm ./test/emulate.pl virt@vexpress_defconfig --no-tuxmake --test
+ ARCH=arm ./test/emulate.pl virt@multi_v7_defconfig --no-tuxmake --test
``emulate.pl`` also has some knowledge on paravirtualized devices::
# Run target and pass a block device (here /dev/virtioblk0)
- ARCH=riscv ./test/emulate.pl --blk=rootfs.ext4 virt64_defconfig
+ ARCH=riscv ./test/emulate.pl --blk=rootfs.ext4 rv64i_defconfig
Needed command line options can be passed directly to the
emulator/``pytest`` as well by placing them behind ``--``::
# appends -device ? to the command line. Add -n to see the final result
- ARCH=riscv ./test/emulate.pl virt64_defconfig -- -device ?
+ ARCH=riscv ./test/emulate.pl rv64i_defconfig -- -device ?
For a complete listing of options run ``./test/emulate.pl -h``.