mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
Work-in-progress towards a cross-platform ipodpatcher which will edit the firmware partition directly, incorporating the ipod_fw.c functionality. Tested successfully on win32 and Linux but it only lists the contents of the firmware partition at the moment - no actual reading or writing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11748 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8a55822ae3
commit
4b7e1e0945
5 changed files with 618 additions and 172 deletions
|
|
@ -1,8 +1,11 @@
|
|||
all: ipodpatcher.exe
|
||||
all: ipodpatcher
|
||||
|
||||
ipodpatcher.exe: ipodpatcher.c
|
||||
i586-mingw32msvc-gcc -Wall -o ipodpatcher.exe ipodpatcher.c
|
||||
ipodpatcher: ipodpatcher.c ipodio-posix.c parttypes.h
|
||||
gcc -Wall -o ipodpatcher ipodpatcher.c ipodio-posix.c
|
||||
|
||||
ipodpatcher.exe: ipodpatcher.c ipodio-win32.c parttypes.h
|
||||
i586-mingw32msvc-gcc -Wall -o ipodpatcher.exe ipodpatcher.c ipodio-win32.c
|
||||
i586-mingw32msvc-strip ipodpatcher.exe
|
||||
|
||||
clean:
|
||||
rm -f ipodpatcher.exe *~
|
||||
rm -f ipodpatcher.exe ipodpatcher *~
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue