mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
add pspboot support, cleanup in ar7 board support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1611 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -50,6 +50,7 @@
|
||||
|
||||
#define CODE_ID "U2ND" /* from code_pattern.h */
|
||||
#define CODE_PATTERN "W54S" /* from code_pattern.h */
|
||||
#define PBOT_PATTERN "PBOT"
|
||||
|
||||
#define CYBERTAN_VERSION "v3.37.2" /* from cyutils.h */
|
||||
|
||||
@@ -75,7 +76,7 @@ void usage(void) __attribute__ (( __noreturn__ ));
|
||||
|
||||
void usage(void)
|
||||
{
|
||||
fprintf(stderr, "Usage: addpattern [-i trxfile] [-o binfile] [-p pattern] [-g] [-v v#.#.#] [-{0|1|2}]\n");
|
||||
fprintf(stderr, "Usage: addpattern [-i trxfile] [-o binfile] [-p pattern] [-g] [-b] [-v v#.#.#] [-{0|1|2}]\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
@@ -88,8 +89,10 @@ int main(int argc, char **argv)
|
||||
char *ifn = NULL;
|
||||
char *ofn = NULL;
|
||||
char *pattern = CODE_PATTERN;
|
||||
char *pbotpat = PBOT_PATTERN;
|
||||
char *version = CYBERTAN_VERSION;
|
||||
int gflag = 0;
|
||||
int pbotflag = 0;
|
||||
int c;
|
||||
int v0, v1, v2;
|
||||
size_t off, n;
|
||||
@@ -101,7 +104,7 @@ int main(int argc, char **argv)
|
||||
hdr = (struct code_header *) buf;
|
||||
memset(hdr, 0, sizeof(struct code_header));
|
||||
|
||||
while ((c = getopt(argc, argv, "i:o:p:gv:012")) != -1) {
|
||||
while ((c = getopt(argc, argv, "i:o:p:gbv:012")) != -1) {
|
||||
switch (c) {
|
||||
case 'i':
|
||||
ifn = optarg;
|
||||
@@ -115,6 +118,9 @@ int main(int argc, char **argv)
|
||||
case 'g':
|
||||
gflag = 1;
|
||||
break;
|
||||
case 'b':
|
||||
pbotflag = 1;
|
||||
break;
|
||||
case 'v': /* extension to allow setting version */
|
||||
version = optarg;
|
||||
break;
|
||||
@@ -169,6 +175,8 @@ int main(int argc, char **argv)
|
||||
}
|
||||
|
||||
memcpy(&hdr->magic, pattern, 4);
|
||||
if (pbotflag)
|
||||
memcpy(&hdr->res1, pbotpat, 4);
|
||||
hdr->fwdate[0] = ptm->tm_year % 100;
|
||||
hdr->fwdate[1] = ptm->tm_mon + 1;
|
||||
hdr->fwdate[2] = ptm->tm_mday;
|
||||
|
||||
Reference in New Issue
Block a user