Jump to content

>
Viewing Profile

gibbed

Member Since 31 Mar 2009
Offline Last Active Aug 09 2010 05:11 AM

Posts I've Made

In Topic: USB compatability - help improve CIOS usb support

09 April 2009 - 06:00 AM

QUOTE(shtonkalot @ Apr 8 2009, 03:41 PM) <{POST_SNAPBACK}>
QUOTE(dipswitch @ Apr 9 2009, 07:43 AM) <{POST_SNAPBACK}>
Hey guys, I need a little help. Each USB device I try I get this error...
Could not initialize USB subsystem! (ret = -6)
Anyone know what could be my problem?
I think that is the error returned if CIOS rev9 isn't installed.
Sorry can't really help more than that.
Yes, -6 error is lack of usb2 CIOS installed.

In Topic: Will the coders please fix "Make HBC" in the WBFS tools

02 April 2009 - 08:08 AM

It copies the files icon.png and boot.dol from the directory you executed wbfs from, if they don't exist they won't get copied.

In Topic: USB compatability - help improve CIOS usb support

02 April 2009 - 04:09 AM

As an example, here is my USB information.

Currently NOT working.

http://www.privatepaste.com/4cA0613cMp/download

In Topic: a 'real' wbfs windows port

31 March 2009 - 05:54 PM

QUOTE(dun4cheap @ Mar 31 2009, 09:52 AM) <{POST_SNAPBACK}>
3. The wbfs tool does not handle spaces in filenames ie... your iso file name, make sure it does not consist of spaces. If it does then delete the spaces or put an underscore in place _...
Will work fine if you surround the filename in quotes, eg wbfs_win.exe g add "my super file.iso".

In Topic: Compiling WBFS on Mac OS X

31 March 2009 - 05:43 PM

Apparently DKIOCGETBLOCKCOUNT returns a 64-bit number (long long) not a 32-bit number which is probably why you get a floating point exception.

CODE
long long my_n_sector;
ret = ioctl(fd,DKIOCGETBLOCKCOUNT,&my_n_sector);
*n_sector = (u32)my_n_sector;