- fixed to compile with devkitppc r42-1 and libogc 2.4.0

- updated libcustomfat to libfat v1.2.0/1.1.5
This commit is contained in:
Fledge68 2023-05-26 15:16:24 -05:00
parent 07a44551f9
commit 04b06e438d
5 changed files with 7 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 MiB

After

Width:  |  Height:  |  Size: 4.4 MiB

View File

@ -3,8 +3,8 @@
#define _LIBFAT_MAJOR_ 1
#define _LIBFAT_MINOR_ 1
#define _LIBFAT_PATCH_ 1
#define _LIBFAT_PATCH_ 5
#define _LIBFAT_STRING "libFAT Release 1.1.1"
#define _LIBFAT_STRING "libFAT Release 1.1.5"
#endif // __LIBFATVERSION_H__

Binary file not shown.

View File

@ -37,7 +37,7 @@ INCLUDES :=
#---------------------------------------------------------------------------------
MACHDEP := -mno-eabi -mno-sdata -mcpu=750
CFLAGS := -Wall -W -O1 -ffreestanding -std=gnu99 -Wstrict-aliasing=2 $(MACHDEP) $(INCLUDE)
LDFLAGS := -nostartfiles -nostdlib $(MACHDEP)
LDFLAGS := -nostartfiles -nostdlib $(MACHDEP) -Wl,--no-warn-rwx-segments
#---------------------------------------------------------------------------------
# move loader to another location - THANKS CREDIAR - 0x81330000 for HBC

View File

@ -62,6 +62,10 @@ static const devoptab_t gecko_out = {
NULL, // device rmdir_r
NULL, // lstat_r
NULL, // utimes_r
NULL, // fpathconf_r
NULL, // pathconf_r
NULL, // symlink_r
NULL, // readlink_r
};
static void USBGeckoOutput()