69 lines
2.2 KiB
Bash
Executable File
69 lines
2.2 KiB
Bash
Executable File
#! /nix/store/r4vxljid3iq94jp7qvd639sps0fscwy3-bash-5.2-p15/bin/bash
|
|
|
|
set -e
|
|
|
|
export PATH=/nix/store/c5xwy0rllg4lcw61mh20glairjz7ibv4-qemu-8.0.4/bin/:$PATH
|
|
|
|
NIX_DISK_IMAGE=$(readlink -f "${NIX_DISK_IMAGE:-./visionfive-nix.qcow2}")
|
|
|
|
if ! test -e "$NIX_DISK_IMAGE"; then
|
|
qemu-img create -f qcow2 "$NIX_DISK_IMAGE" 1024M
|
|
fi
|
|
|
|
echo "NIX_DISK_IMAGE = $NIX_DISK_IMAGE"
|
|
|
|
# Create a directory for storing temporary data of the running VM.
|
|
if [ -z "$TMPDIR" ] || [ -z "$USE_TMPDIR" ]; then
|
|
TMPDIR=$(mktemp -d nix-vm.XXXXXXXXXX --tmpdir)
|
|
fi
|
|
|
|
|
|
|
|
# Create a directory for exchanging data with the VM.
|
|
mkdir -p "$TMPDIR/xchg"
|
|
|
|
system=$(readlink -f ./current-system)
|
|
echo $system
|
|
sleep 1
|
|
|
|
|
|
cd "$TMPDIR"
|
|
|
|
|
|
#QEMU_KERNEL_PARAMS="boot.debug1devices"
|
|
#QEMU_KERNEL_PARAMS="boot.trace boot.debug1"
|
|
|
|
|
|
# Start QEMU.
|
|
exec qemu-system-riscv64 \
|
|
-name visionfive-nix \
|
|
-m 1024 \
|
|
-smp 1 \
|
|
-nographic \
|
|
-machine virt \
|
|
-device virtio-rng-pci \
|
|
-netdev user,id=net0,hostfwd=tcp::60022-:22 -device virtio-net-device,netdev=net0 \
|
|
-virtfs local,path=/nix/store,security_model=none,mount_tag=nix-store \
|
|
-virtfs local,path="${SHARED_DIR:-$TMPDIR/xchg}",security_model=none,mount_tag=shared \
|
|
-virtfs local,path="$TMPDIR"/xchg,security_model=none,mount_tag=xchg \
|
|
-device virtio-keyboard \
|
|
-drive "file=$NIX_DISK_IMAGE,if=none,id=hd0" \
|
|
-device virtio-blk-device,drive=hd0 \
|
|
-kernel $system/kernel \
|
|
-initrd $system/initrd \
|
|
-append "$(cat $system/kernel-params) init=$system/init regInfo=/nix/store/x3zpwfbk2wkiisxhgi7zwsfwbdfxk0w1-closure-info-riscv64-unknown-linux-gnu/registration console=ttyS0,115200n8 loglevel=7 $QEMU_KERNEL_PARAMS" \
|
|
$QEMU_OPTS \
|
|
"$@"
|
|
|
|
# -drive "file=$NIX_DISK_IMAGE,if=virtio,id=hd0" \
|
|
# -hda "$NIX_DISK_IMAGE" \
|
|
#-net nic,model=virtio,macaddr=16:da:11:b4:44:c9 -net user \
|
|
# -net nic,netdev=user.0,model=virtio -netdev user,id=user.0,"$QEMU_NET_OPTS" \
|
|
#console=tty0
|
|
#console=ttyS0,115200n8
|
|
#
|
|
# -fsdev local,id=fsdev1,path=/nix/store,security_model=none \
|
|
# -device virtio-9p-pci,fsdev=fsdev1,mount_tag=store,bus=pcie.1 \
|
|
#
|
|
# -drive cache=writeback,file="$NIX_DISK_IMAGE",id=drive1,if=none,index=1,werror=report -device virtio-blk-pci,drive=drive1 \
|