Usb Host + Hid + Tvout Through Autorun.gpu


Q

quasist

Guest
Is there a shell script (that can be used as autorun.gpu) that turns on USB Host (I know that it can be allways set on by standart frontend), USB HID (for USB gamepads) and TV-Out (in pal mode)?
My FirmWare is 2.1.1 (so autorun can be placed in SD root dir)
 
quasist said:
Is there a shell script (that can be used as autorun.gpu) that turns on USB Host (I know that it can be allways set on by standart frontend), USB HID (for USB gamepads) and TV-Out (in pal mode)?
My FirmWare is 2.1.1 (so autorun can be placed in SD root dir)
I am looking for the same thing, but I couldn't find a way to boot properly w/ joystick support yet. Regarding the tvout mode, you can try this, should work fine. It may be possible to add some lines to this script and enable the joystick suport at the same time... (the source code is available).

btw I am using F100 (fw 2.1.2)
 
Last edited by a moderator:
Thanks for source.

I'll search in firmware source from 4.1 for turning on the USB support :-/

There a string in mainmenuapp.cpp
CODE

if(!mod_items[MODI_HID]) system("/sbin/insmod hid");


I hope I'm on a right way ;)

Update:
CODE

insmod input
insmod joydev


(http://www.gp32x.de/board/index.php?showtopic=41610)

CODE

insmod mmsp2_usbh.o
insmod usbcore.o
insmod usb-ohci.o
insmod usb-ohci-mmsp2.o
insmod scsi_mod.o
insmod sd_mod.o
insmod usb-storage.o
insmod input.o
insmod hid.o
insmod keybdev.o
insmod mousedev.o
insmod joydev.o


http://www.gp32x.de/board/index.php?showtopic=42916 <--- looks likes a working solution
 
Last edited by a moderator:
Back
Top