mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
02581b1603
... rather than abusing the generic tsapp. Per discussion in https://github.com/gokrazy/gokrazy/pull/275 It also means we can remove stuff we don't need, like ntp or randomd. Updates #13038 Change-Id: Iccf579c354bd3b5025d05fa1128e32f1d5bde4e4 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
22 lines
958 B
Bash
Executable File
22 lines
958 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Type 'C-a c' to enter monitor; q to quit."
|
|
|
|
set -eux
|
|
qemu-system-x86_64 -M microvm,isa-serial=off \
|
|
-m 1G \
|
|
-nodefaults -no-user-config -nographic \
|
|
-kernel $HOME/src/github.com/tailscale/gokrazy-kernel/vmlinuz \
|
|
-append "console=hvc0 root=PARTUUID=60c24cc1-f3f9-427a-8199-76baa2d60001/PARTNROFF=1 ro init=/gokrazy/init panic=10 oops=panic pci=off nousb tsc=unstable clocksource=hpet tailscale-tta=1 tailscaled.env=TS_DEBUG_RAW_DISCO=1" \
|
|
-drive id=blk0,file=$HOME/src/tailscale.com/gokrazy/natlabapp.img,format=raw \
|
|
-device virtio-blk-device,drive=blk0 \
|
|
-device virtio-rng-device \
|
|
-netdev stream,id=net0,addr.type=unix,addr.path=/tmp/qemu.sock \
|
|
-device virtio-serial-device \
|
|
-device virtio-net-device,netdev=net0,mac=52:cc:cc:cc:cc:01 \
|
|
-chardev stdio,id=virtiocon0,mux=on \
|
|
-device virtconsole,chardev=virtiocon0 \
|
|
-mon chardev=virtiocon0,mode=readline \
|
|
-audio none
|
|
|