diff options
author | Anton Kling <anton@kling.gg> | 2024-02-19 19:19:43 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-02-19 19:19:43 +0100 |
commit | a85eacdd2406fede4d6ff5cb130b1758978cabb3 (patch) | |
tree | 1e7ea908f37c39e26633d2638b23045fcc231ede /meta | |
parent | 239e33019117f4ab59dd26550d7969e45c290166 (diff) |
Kernel: Change timing for context switches
Diffstat (limited to 'meta')
-rwxr-xr-x | meta/run.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/run.sh b/meta/run.sh index 6cf1787..9231f14 100755 --- a/meta/run.sh +++ b/meta/run.sh @@ -2,7 +2,8 @@ scriptdir="$(dirname "$0")" cd "$scriptdir" cd .. -qemu-system-i386 -netdev user,id=n0,hostfwd=tcp: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 +#qemu-system-i386 -netdev user,id=n0,hostfwd=tcp: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 +qemu-system-i386 -netdev user,id=n0,hostfwd=tcp:127.0.0.1:6001-:6000 -device rtl8139,netdev=n0 -object filter-dump,id=id,netdev=n0,file=./logs/netout -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 |