From c4477844178978ef36a607a911712ed4c9c6904a Mon Sep 17 00:00:00 2001 From: Joshua Hill Date: Thu, 20 May 2010 14:23:54 -0400 Subject: A few minor changes so pod2g will quit yelling at me --- Makefile | 12 +++++++++++- src/libirecovery.c | 9 ++------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 70822cd..8c3f542 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: static +all: @echo "Please choose either macosx, linux, or windows" static: @@ -18,6 +18,16 @@ macosx: windows: gcc -o libirecovery.dll -c src/libirecovery.c -I. -lusb-1.0 -lreadline -shared -fPIC gcc -o irecovery irecovery.c -I. -lirecovery -lreadline + +install: + cp libirecovery.so /usr/local/lib/libirecovery.so + cp include/libirecovery.h /usr/local/include/libirecovery.h + cp irecovery /usr/local/bin/irecovery + +uninstall: + rm -rf /usr/local/lib/libirecovery.so + rm -rf include/libirecovery.h /usr/local/include/libirecovery.h + rm -rf /usr/local/bin/irecovery clean: rm -rf irecovery libirecovery.o libirecovery.so libirecovery.a diff --git a/src/libirecovery.c b/src/libirecovery.c index 18097ee..0be16c6 100644 --- a/src/libirecovery.c +++ b/src/libirecovery.c @@ -332,7 +332,7 @@ irecv_error_t irecv_send_buffer(irecv_device_t* device, unsigned char* buffer, u unsigned int status = 0; for (i = 0; i < packets; i++) { int size = i + 1 < packets ? 0x800 : last; - int bytes = libusb_control_transfer(device->handle, 0x21, 1, i, 0, &buffer[i * 0x800], size, 1000); + int bytes = libusb_control_transfer(device->handle, 0x21, 1, 0, 0, &buffer[i * 0x800], size, 1000); if (bytes != size) { return IRECV_ERROR_USB_UPLOAD; } @@ -350,10 +350,7 @@ irecv_error_t irecv_send_buffer(irecv_device_t* device, unsigned char* buffer, u } - //char command[0x100]; - //memset(command, '\0', 0x100); - //snprintf(command, 0x100, "setenv filesize %d", length); - libusb_control_transfer(device->handle, 0x21, 1, i, 0, buffer, 0, 1000); + libusb_control_transfer(device->handle, 0x21, 1, 0, 0, buffer, 0, 1000); for (i = 0; i < 3; i++) { error = irecv_get_status(device, &status); if(error != IRECV_SUCCESS) { @@ -361,8 +358,6 @@ irecv_error_t irecv_send_buffer(irecv_device_t* device, unsigned char* buffer, u } } - //irecv_send_command(device, command); - return IRECV_SUCCESS; } -- cgit v1.1-32-gdbae