diff options
author | Anton Kling <anton@kling.gg> | 2023-11-15 03:38:15 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-15 21:40:13 +0100 |
commit | 6713b6a6c112f0de92c63e349d100fc4bd89138e (patch) | |
tree | 3e767222af4611bb7bc0e624eb4b82a304727ee5 /meta | |
parent | b775d4e1b626f97364994fd0d60faac9e78932bb (diff) |
Meta: Setup a drive over AHCI
Diffstat (limited to 'meta')
-rwxr-xr-x | meta/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/run.sh b/meta/run.sh index 2861a30..2ce65f7 100755 --- a/meta/run.sh +++ b/meta/run.sh @@ -2,7 +2,7 @@ scriptdir="$(dirname "$0")" cd "$scriptdir" cd .. -qemu-system-i386 -enable-kvm -netdev user,id=n0,hostfwd=udp:127.0.0.1:6001-:6000 -device rtl8139,netdev=n0 -object filter-dump,id=id,netdev=n0,file=./logs/netout -d int -no-reboot -no-shutdown -chardev stdio,id=char0,logfile=./logs/serial.log,signal=off -serial chardev:char0 -hda ./meta/ext2.img -m 512M -cdrom ./kernel/myos.iso -s +qemu-system-i386 -netdev user,id=n0,hostfwd=udp:127.0.0.1:6001-:6000 -device rtl8139,netdev=n0 -object filter-dump,id=id,netdev=n0,file=./logs/netout -d int -no-reboot -no-shutdown -chardev stdio,id=char0,logfile=./logs/serial.log,signal=off -serial chardev:char0 -drive id=disk,file=./meta/ext2.img,if=none -device ahci,id=ahci -device ide-hd,drive=disk,bus=ahci.0 -m 512M -cdrom ./kernel/myos.iso -s # Sync the sysroot cd ./meta/ mkdir ./mount |