1
0
Fork 0
forked from len0rd/rockbox

Firmware update utility for the Gigabeat S and probably other MTP devices. Based on libmtp's sendfile.c example, tweaked by Maurus Cuelenaere and me to send firmware files.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15755 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nicolas Pennequin 2007-11-22 18:07:40 +00:00
parent f7e2ecee15
commit 3e2c51d82c
3 changed files with 148 additions and 0 deletions

11
utils/MTP/Makefile Normal file
View file

@ -0,0 +1,11 @@
CFLAGS = -Wall
LIBS = -lmtp
OUTPUT = sendfirm
all: $(OUTPUT)
$(OUTPUT): sendfirm.c
gcc $(CFLAGS) $(LIBS) -o $(OUTPUT) sendfirm.c
clean:
rm -f $(OUTPUT)