Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions board/common/image/image-readme/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Depending on how your Linux installation is set up, the following may
require being run with superuser privileges, i.e., you may need to
repend the command with 'sudo'.

$ ./qemu.sh
$ ./qemu/run.sh

You should now see the Infix init system booting up. When the final
"Please press Enter to activate this console." is shown, press Enter
Expand Down Expand Up @@ -75,13 +75,13 @@ interface, which requires the following extra package:

We can now enter the configuration:

$ ./qemu.sh -c
$ ./qemu/run.sh -c

Go down to *Networking*, select *TAP*, now you can change the *Number of
TAPs*, e.g. to 10. Exit and save the configuration, then you can start
Qemu again:

./qemu.sh
$ ./qemu/run.sh

> Make sure to do a factory reset from the CLI, otherwise you will be
> stuck with that single interface from before.
Expand Down
6 changes: 3 additions & 3 deletions board/common/qemu/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
#
# and then call this script with:
#
# ./qemu.sh -c
# ./run.sh -c
#
# To bring up a menuconfig dialog. Select `Exit` and save the changes.
# For more help, see:_
#
# ./qemu.sh -h
# ./run.sh -h
#
# shellcheck disable=SC3037

Expand All @@ -40,7 +40,7 @@ usage()
echo " Also, qemu.cfg has QEMU_APPEND which can affect this."
echo
echo "Example:"
echo " qemu.sh -- finit.debug"
echo " $prognm -- finit.debug"
echo "___________________________________________________________________"
echo "Note: 'kconfig-frontends' package (Debian/Ubuntu) must be installed"
echo " for -c to work: sudo apt install kconfig-frontents"
Expand Down
8 changes: 4 additions & 4 deletions doc/virtual.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ QEMU
> relevant Qemu packages are pulled in as well. This trick, installing
> [virt-manager][virt], helps set up Qemu networking on your system.

A virtualized Infix x86_64 instance can easily be launched from a Linux
system, with [Qemu][] installed, by issuing:
A virtualized Infix x86_64 instance can be launched from a Linux system,
with [Qemu][] installed, by issuing:

```
$ ./qemu.sh
$ ./qemu/run.sh
...
```

Expand All @@ -35,7 +35,7 @@ $ make run
```

To change settings, e.g. networking, <kbd>make run-menuconfig</kbd>, or
from a pre-built Infix release tarball, using <kbd>./qemu.sh -c</kbd>
from a pre-built Infix release tarball, using <kbd>./qemu/run.sh -c</kbd>

The Infix test suite is built around Qemu and [Qeneth][qeth], see:

Expand Down