From 3a1053b29e5fb8109463259ee9dff3d8f4e4be5b Mon Sep 17 00:00:00 2001 From: pancake Date: Sun, 14 Dec 2008 03:05:19 +0100 Subject: * Oops missing up * Added fixups for make install/deinstall * HAVE_GUI is now enabled by default * New 'stop' button for goxf GUI * Fix lil bug in squeue.c * Initial .desktop icon for freedesktop environments (GNOME) --- src/Makefile | 2 +- src/flash.c | 7 +++++++ src/fpid.c | 12 ++++++++---- src/gui/gui.gtkaml | 30 +++++++++++++----------------- src/main.c | 2 +- src/main.h | 1 + src/qmode.c | 2 +- 7 files changed, 32 insertions(+), 24 deletions(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index e8dbffa..2e8990d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -5,7 +5,7 @@ OBJ+=squeue/squeue.o BIN=0xFFFF #LIBS=`${HAVE_USB} && echo -- '-lusb'` LIBS=`if [ "${HAVE_USB}" = 1 ]; then echo '-lusb'; fi` -CFLAGS+=-DVERSION=\"${VERSION}\" -Wall -g -I . +CFLAGS+=-DVERSION=\"${VERSION}\" -Wall -I . CFLAGS+=-pedantic -std=c99 -DHAVE_USB=${HAVE_USB} USBOBJ=../libusb/error.o ../libusb/usb.o ../libusb/descriptors.o USBOBJ+=../libusb/linux.o ## XXX not portable diff --git a/src/flash.c b/src/flash.c index 94c7f29..43c79bb 100644 --- a/src/flash.c +++ b/src/flash.c @@ -96,6 +96,13 @@ void flash_image(const char *filename, const char *piece, const char *version) printf("Piece type: %s\n", piece); } + if (piece != NULL) { + if (!strcmp(piece, "fiasco")) { + fiasco_flash(filename); + return; + } + } + if (version) vlen = strlen(version)+1; diff --git a/src/fpid.c b/src/fpid.c index c2340f8..f36b758 100644 --- a/src/fpid.c +++ b/src/fpid.c @@ -48,7 +48,6 @@ const char *fpid_file(const char *filename) FILE *fd; char buf[512]; unsigned char *b = (unsigned char *)&buf; - char *piece = NULL; long size; // 2nd : +0x34 = 2NDAPE @@ -80,10 +79,15 @@ const char *fpid_file(const char *filename) if (!memcmp(b+0x14, "X-LOADER", 8)) return pieces[PIECE_XLOADER]; else - if (!memcmp(b+0x0c, "NOLOXldr", 8)) // TODO: this is xloader800, not valid on 770? + if (!memcmp(b+0x0c, "NOLOXldr", 8)) return pieces[PIECE_XLOADER]; else - if (!memcmp(b+0x00, "\x00\x00\xa0\xe1\x00\x00\xa0\xe1", 8)) + if (!memcmp(b+4,"NOLOXldr",8)) + // TODO: this is xloader800, not valid on 770? + return pieces[PIECE_2ND]; + else + if (!memcmp(b+0x00, "\x00\x00\xa0\xe1\x00\x00\xa0\xe1", 8) + || (!memcmp(b, "\x21\x01\x01", 3))) return pieces[PIECE_KERNEL]; else // JFFS2 MAGIC @@ -94,5 +98,5 @@ const char *fpid_file(const char *filename) return pieces[PIECE_ROOTFS]; } - return piece; + return NULL; } diff --git a/src/gui/gui.gtkaml b/src/gui/gui.gtkaml index 43ba5ca..e5c9e97 100644 --- a/src/gui/gui.gtkaml +++ b/src/gui/gui.gtkaml @@ -12,8 +12,8 @@ xmlns:SQueues="SQueues" xmlns:class="http://gtkaml.org/0.2" class:name="MainWindow" - title="0xFFFF GUI" - delete-event="{OnWindow1DeleteEvent}"> + title="0xFFFF GUI"> + @@ -32,6 +32,7 @@ + @@ -58,6 +59,7 @@