Skip to content
Snippets Groups Projects
Commit 6a89c2b2 authored by John Hodge's avatar John Hodge
Browse files

USB Testing

parent ff15cff4
No related merge requests found
......@@ -53,6 +53,7 @@ MODULES += Display/BochsGA
MODULES += Interfaces/UDI
MODULES += Input/PS2KbMouse
MODULES += x86/ISADMA x86/VGAText
MODULES += USB/Core
endif
ifeq ($(ARCHDIR),x86_64)
......@@ -62,8 +63,13 @@ MODULES += Display/BochsGA
MODULES += Interfaces/UDI
MODULES += Input/PS2KbMouse
MODULES += x86/ISADMA x86/VGAText
MODULES += USB/Core
endif
ifeq ($(ARCHDIR),armv7)
MODULES += Input/PS2KbMouse
endif
MODULES += IPStack # So the other modules are loaded before it
DYNMODS := USB/Core
#DYNMODS := USB/Core
#DYNMODS += Filesystems/InitRD
......@@ -9,7 +9,10 @@ QEMU_PARAMS=$QEMU_PARAMS" -hda AcessHDD.img"
QEMU_PARAMS=$QEMU_PARAMS" -vga std"
QEMU_PARAMS=$QEMU_PARAMS" -smp 2"
QEMU_PARAMS=$QEMU_PARAMS" -net nic"
QEMU_PARAMS=$QEMU_PARAMS" -usb"
QEMU_PARAMS=$QEMU_PARAMS" -drive id=test_usb_image,file=USB_Test_Image.img,if=none"
QEMU_PARAMS=$QEMU_PARAMS" -device usb-storage,drive=test_usb_image"
_NETTYPE="user"
while [ $# -ne 0 ]; do
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment