summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.booting.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.booting.md b/README.booting.md
index 0f96a138..a632d7f9 100644
--- a/README.booting.md
+++ b/README.booting.md
@@ -5,10 +5,22 @@ AMD Xilinx Devices support different boot modes such as JTAG, SD, eMMC, QSPI etc
5## Booting Images with QEMU 5## Booting Images with QEMU
6 6
7Once images are built, you can simulate the image using QEMU emulator. 7Once images are built, you can simulate the image using QEMU emulator.
8
9> **Note:** Use `slirp` option if you don't have sudo permissions and tap devices
10 are enabled on your build host.
11
12* Without slirp
8``` 13```
9$ MACHINE=<target_mahcine_name> runqemu nographic 14$ MACHINE=<target_mahcine_name> runqemu nographic
10``` 15```
11 16
17* With slirp
18```
19$ MACHINE=<target_mahcine_name> runqemu nographic slirp
20```
21
22> **Note:** To terminate qemu, usually the command is ctrl-a x
23
12## Booting Images with Hardware 24## Booting Images with Hardware
13 25
14Follow booting instructions [README](docs) for more details. 26Follow booting instructions [README](docs) for more details.