diff options
author | Andreas Kling <kling@serenityos.org> | 2020-09-04 09:59:38 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-04 21:21:41 +0200 |
commit | e834c24eea2ca87e35f4c0f8c9bbdf007d859372 (patch) | |
tree | 602dcc2d8011eccfb75505c9d7b1f5de938a7b6b /Meta | |
parent | 2e01f1f9b9283bf4196a804030e6a536da2a184d (diff) | |
download | serenity-e834c24eea2ca87e35f4c0f8c9bbdf007d859372.zip |
Kernel/USB: Start fleshing out a basic UHCI controller driver :^)
Let's see if we can talk to some USB devices. We will now detect
a UHCI controller if present on the PCI bus.
Diffstat (limited to 'Meta')
-rwxr-xr-x | Meta/run.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Meta/run.sh b/Meta/run.sh index 90ddf3804c..2bcee755db 100755 --- a/Meta/run.sh +++ b/Meta/run.sh @@ -39,6 +39,7 @@ $SERENITY_EXTRA_QEMU_ARGS -device VGA,vgamem_mb=64 -drive file=${SERENITY_DISK_IMAGE},format=raw,index=0,media=disk -device ich9-ahci +-usb -debugcon stdio -soundhw pcspk -soundhw sb16 @@ -55,6 +56,7 @@ $SERENITY_EXTRA_QEMU_ARGS -device piix3-ide -drive file=${SERENITY_DISK_IMAGE},id=disk,if=none -device ide-hd,bus=ide.6,drive=disk,unit=0 +-usb -debugcon stdio -soundhw pcspk -soundhw sb16 |