mirror of
https://github.com/pygos/build.git
synced 2024-11-04 19:27:09 +01:00
c16ff53c14
The initial ram disk does that for us (with the propper permissions in the case of Qemu). Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
24 lines
647 B
Bash
Executable file
24 lines
647 B
Bash
Executable file
#!/bin/sh
|
|
|
|
SCRIPTDIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd -P)
|
|
|
|
BOOT="$SCRIPTDIR/bootfs"
|
|
OVERLAY="$SCRIPTDIR/overlay"
|
|
|
|
KERNEL=$(cat "$BOOT/kernel.txt")
|
|
CMDLINE=$(cat "$BOOT/cmdline.txt")
|
|
|
|
RAM="256M"
|
|
MAC0="52:54:00:12:34:56"
|
|
|
|
mkdir -p ${OVERLAY}
|
|
|
|
qemu-system-x86_64 \
|
|
-drive "file=fat:rw:$BOOT,readonly=off,format=raw,if=virtio" \
|
|
-m "$RAM" -accel kvm -cpu host \
|
|
-vga virtio -display sdl \
|
|
-netdev user,id=netdev0 \
|
|
-device virtio-net-pci,netdev=netdev0,mac="$MAC0" \
|
|
-fsdev "local,id=overlay,path=$OVERLAY,security_model=mapped" \
|
|
-device "virtio-9p-pci,fsdev=overlay,mount_tag=overlay" \
|
|
-kernel "$BOOT/$KERNEL" -append "$CMDLINE"
|