diff options
author | Anton Kling <anton@kling.gg> | 2024-02-09 14:08:28 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-02-09 14:08:28 +0100 |
commit | a8ffc46136eb16adc87fb520c724467d1295a854 (patch) | |
tree | 2d1758a4e3c5b6ef8430c5a6b1aca7249ef7a56d /meta | |
parent | 581ac7e072633f68deed5c5d343603c053895907 (diff) |
Kernel/Interrupts: Restructure how interrupts are handeled in the kernel
Now all interrupts go through a common stub which will make certain
signal handlers easier to implement
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 21b8701..6cf1787 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=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 # Sync the sysroot cd ./meta/ mkdir ./mount |