add updates from whiterussian to head

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1626 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Felix Fietkau
2005-08-13 12:38:47 +00:00
parent 378eac3bc1
commit 3b3dfb3385
5 changed files with 89 additions and 20 deletions

View File

@@ -76,7 +76,7 @@ void usage(void) __attribute__ (( __noreturn__ ));
void usage(void)
{
fprintf(stderr, "Usage: addpattern [-i trxfile] [-o binfile] [-p pattern] [-g] [-b] [-v v#.#.#] [-{0|1|2}]\n");
fprintf(stderr, "Usage: addpattern [-i trxfile] [-o binfile] [-p pattern] [-g] [-b] [-v v#.#.#] [-{0|1|2|4}]\n");
exit(EXIT_FAILURE);
}
@@ -136,6 +136,11 @@ int main(int argc, char **argv)
hdr->flags |= SUPPORT_INTEL_FLASH;
hdr->flags |= SUPPORT_5325E_SWITCH;
break;
case '4':
/* V4 firmware sets the flags to 0x1f */
hdr->hw_ver = 1;
hdr->flags = 0x1f;
break;
default:
usage();