diff options
author | pancake <pancake@dazo> | 2007-06-02 02:23:58 +0200 |
---|---|---|
committer | pancake <pancake@dazo> | 2007-06-02 02:23:58 +0200 |
commit | f299486ef9ee5531ebee567211eb7861ae7a93bf (patch) | |
tree | 78d1b86880660f49b10bc9dca7bfc075af985236 /src/Makefile | |
parent | 1515b7c7c12097db8c713194217d57477074c6ac (diff) | |
download | 0xFFFF-f299486ef9ee5531ebee567211eb7861ae7a93bf.tar.bz2 |
* Covardly copy the nanddump() function from the mtd-utils to fix dump functionality
- The new function works like the old rf_extract one, no parameters has
changed.
- Now a complete dump/restore will be possible.
- Check for badblocks while copying data
- Shows information about the partition
* Better use of query_error_message() for debugging
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 71c8396..c495117 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,7 +2,7 @@ VERSION=0.2 OBJ=main.o fiasco.o hexdump.o dump.o flash.o OBJ+=hash.o fpid.o query.o pieces.o utils.o devices.o BIN=0xFFFF -CFLAGS+=-DVERSION=\"${VERSION}\" -Wall -g +CFLAGS+=-DVERSION=\"${VERSION}\" -Wall -g -I . all: ${OBJ} ${CC} ${LDFLAGS} -o ${BIN} ${OBJ} -lusb |