From c46961d511ce87859e3bdd18ecf42ccd70ca525a Mon Sep 17 00:00:00 2001 From: pancake Date: Sun, 10 Jun 2007 05:41:50 +0200 Subject: * Fix in fpid for proper JFFS2 identification * Add new flag '-c' that makes 0xFFFF run as a shell * Split the connect_via_usb() code from main() * Add console handler for shell like usage of the flasher --- src/fpid.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/fpid.c') diff --git a/src/fpid.c b/src/fpid.c index 93bf205..af2724d 100644 --- a/src/fpid.c +++ b/src/fpid.c @@ -64,7 +64,8 @@ char *fpid_file(char *filename) if (!memcmp(b+0x00, "\x00\x00\xa0\xe1\x00\x00\xa0\xe1", 8)) return pieces[PIECE_KERNEL]; else - if (!memcmp(b+0x00, "\x85\x19\x01\xe0", 4)) { + // JFFS2 MAGIC + if (!memcmp(b+0x00, "\x85\x19", 2)) { //\x01\xe0", 4)) { /*/ is jffs2 */ if (size < 0x300000) return pieces[PIECE_INITFS]; -- cgit v1.2.3