summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2024-07-23 14:38:29 +0200
committerAndreas Fankhauser hiddenalpha.ch2024-07-23 14:38:29 +0200
commit5bc48ac5358927a459c0ff4e3a306ba35b6926b8 (patch)
tree298678f9096f8b4d258f16ce1a3bb5fd7ca9ff27 /doc
parent4e7c168b9e7a564b876fde1c907e505ab8b5fde6 (diff)
downloadUnspecifiedGarbage-5bc48ac5358927a459c0ff4e3a306ba35b6926b8.zip
UnspecifiedGarbage-5bc48ac5358927a459c0ff4e3a306ba35b6926b8.tar.gz
(PaisaSlimPkg) stuff
Diffstat (limited to 'doc')
-rw-r--r--doc/note/qemu/qemu.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/note/qemu/qemu.txt b/doc/note/qemu/qemu.txt
index c22eb15..21926f8 100644
--- a/doc/note/qemu/qemu.txt
+++ b/doc/note/qemu/qemu.txt
@@ -63,7 +63,7 @@ qemu-system-x86_64 \
`# Isolated Network with samba access to host` \
-netdev 'user,id=n2,ipv6=off,restrict=y,guestfwd=tcp:10.0.2.9:139-cmd:ncat 127.0.0.1 139,guestfwd=tcp:10.0.2.9:445-cmd:ncat 127.0.0.1 445' -device e1000,netdev=n2 \
`# 10.0.2.x network with host redirect` \
- -netdev user,id=n0,ipv6=off,hostfwd=tcp:127.0.0.1:${SSH_PORT:-2222}-:22 -device e1000,netdev=n0 \
+ -netdev user,id=n0,ipv6=off,hostfwd=tcp:127.0.0.1:${SSH_PORT?}-:22 -device e1000,netdev=n0 \
`# socket mcast shared network adapter` \
-netdev socket,id=n1,mcast=230.0.0.1:1234 -device e1000,netdev=n1 \
`# USB pass-through by port or device. Use 'lsusb -t' or 'lsusb' to find IDs` \
@@ -179,11 +179,11 @@ qemu-system-aarch64 -nodefaults \
-machine type=raspi3b -cpu cortex-a53 -smp 4 -m 1G \
-kernel kernel8.img -dtb bcm2710-rpi-3-b.dtb -sd "${QCOW2_NAME?}" \
-device usb-net,netdev=net0 \
- -netdev user,id=net0,hostfwd=tcp:127.0.0.1:${SSH_PORT:-2222}-:22 \
+ -netdev user,id=net0,hostfwd=tcp:127.0.0.1:${SSH_PORT?}-:22 \
-append "console=ttyAMA0,115200 root=PARTUUID=fb33757d-02 rootfstype=ext4 rootwait" \
-no-reboot -nographic \
-ssh -oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null -oUser=user "-p${SSH_PORT:-2222}" 127.0.0.1
+ssh -oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null -oUser=user "-p${SSH_PORT?}" 127.0.0.1
## Shared host directory via CIFS/SMB