http://code.google.com/p/ftpii/source/detail?r=303
Modified:
/branches/0.0.22/Makefile
/branches/0.0.22/README.txt
/branches/0.0.22/hbc/meta.xml
/branches/0.0.22/source/ftpii.c
=======================================
--- /branches/0.0.22/Makefile Fri Feb 26 22:31:01 2010
+++ /branches/0.0.22/Makefile Sat Aug 21 23:57:15 2010
@@ -11,7 +11,7 @@
BUILD = build
CFLAGS = -g -O2 -Wall $(MACHDEP) $(INCLUDE)
-LDFLAGS = -L$(LIBOGC_LIB) -lntfs -lseeprom -lotp -lisfs -lnandimg -lfst
-lwod -liso -ldi -lwiiuse -lbte -lfat -logc -lm -g $(MACHDEP)
-Wl,-Map,$(notdir $@).map,--section-start,.init=0x80a00000
+LDFLAGS = -L$(LIBOGC_LIB) -liospatch -lntfs -lseeprom -lotp -lisfs
-lnandimg -lfst -lwod -liso -ldi -lwiiuse -lbte -lfat -logc -lm -g
$(MACHDEP) -Wl,-Map,$(notdir $@).map,--section-start,.init=0x80a00000
PRELOADER_LDFLAGS = -L$(LIBOGC_LIB) -logc -g $(MACHDEP) -Wl,-Map,$(notdir
$@).map
ifneq ($(BUILD),$(notdir $(CURDIR)))
=======================================
--- /branches/0.0.22/README.txt Fri Feb 26 22:31:01 2010
+++ /branches/0.0.22/README.txt Sat Aug 21 23:57:15 2010
@@ -33,6 +33,7 @@
For subversion changes since 0.0.6, see
http://code.google.com/p/ftpii/source/list
+20100822 0.0.22 Attempt to patch more DVD and ISFS functionality into IOS
at runtime.
20100227 0.0.21 Added NTFS filesystem support (libntfs). (thanks
shareese/rodries/dimok!)
Added SEEPROM filesystem support at /seeprom (libseeprom).
Fixed active-mode transfers. (thanks closms!)
=======================================
--- /branches/0.0.22/hbc/meta.xml Fri Feb 26 22:35:32 2010
+++ /branches/0.0.22/hbc/meta.xml Sat Aug 21 23:57:15 2010
@@ -2,8 +2,8 @@
<app version="1">
<name>ftpii</name>
<coder>joedj</coder>
- <version>0.0.21</version>
- <release_date>20100227170000</release_date>
+ <version>0.0.22</version>
+ <release_date>20100822170000</release_date>
<short_description>An FTP server</short_description>
<long_description>ftpii is an FTP server.
@@ -13,5 +13,5 @@
To specify a password remotely, use the SITE PASSWD and SITE NOPASSWD
commands.
A working DVDx installation is required for the DVD
features.</long_description>
-
+ <no_ios_reload />
</app>
=======================================
--- /branches/0.0.22/source/ftpii.c Fri Feb 26 22:31:01 2010
+++ /branches/0.0.22/source/ftpii.c Sat Aug 21 23:57:15 2010
@@ -24,6 +24,7 @@
*/
#include <di/di.h>
+#include <iospatch/iospatch.h>
#include <network.h>
#include <ogc/lwp_watchdog.h>
#include <string.h>
@@ -59,8 +60,8 @@
}
static void initialise_ftpii() {
- initialise_video();
DI_Init();
+ IOSPATCH_Apply();
initialise_video();
PAD_Init();
WPAD_Init();