blob: d7f527b8ca2bb5d53b0a2f595b44129b1e810e20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/dash
qemu-system-x86_64 \
-kernel bootfs/vmlinuz-xos \
-hda xos_image.img \
-append "root=/dev/sda2 rw console=ttyS0 raid=noautodetect init=/Programs/Core/busybox_ASH" \
-serial stdio -display none \
-m 256
#qemu-system-x86_64 -drive format=raw,file=xos_image.img -m 128
#qemu-system-x86_64 \
# -kernel bootfs/vmlinuz-xos \
# -hda xos_image.img \
# -append "root=/dev/sda2 rw console=ttyS0 raid=noautodetect init=/Programs/Core/busybox_ASH" \
# -serial stdio -display none \
# -m 256 \
# -vga qxl
|