]>
Commit | Line | Data |
---|---|---|
1 | #include <stdio.h> | |
2 | #include <stdlib.h> | |
3 | #include "proxusb.h" | |
4 | #include "flash.h" | |
5 | ||
6 | unsigned int current_command = CMD_UNKNOWN; | |
7 | ||
8 | extern struct partition partitions[]; | |
9 | ||
10 | static void usage(char **argv) | |
11 | { | |
12 | fprintf(stderr, "Usage: %s areas image [image [image]]\n", argv[0]); | |
13 | fprintf(stderr, " areas is a comma-separated list of areas to flash, with no spaces\n"); | |
14 | fprintf(stderr, " Known areas are:"); | |
15 | ||
16 | for (int i = 0; partitions[i].name != NULL; ++i) { | |
17 | fprintf(stderr, " %s", partitions[i].name); | |
18 | } | |
19 | ||
20 | fprintf(stderr, "\n"); | |
21 | fprintf(stderr, " image is the path to the corresponding image\n\n"); | |
22 | fprintf(stderr, "Example: %s os,fpga path/to/osimage.elf path/to/fpgaimage.elf\n", argv[0]); | |
23 | } | |
24 | ||
25 | int main(int argc, char **argv) | |
26 | { | |
27 | if (argc < 2) { | |
28 | usage(argv); | |
29 | exit(-1); | |
30 | } | |
31 | ||
32 | /* Count area arguments */ | |
33 | int areas = 0, offset=-1, length=0; | |
34 | while (find_next_area(argv[1], &offset, &length)) areas++; | |
35 | ||
36 | if (areas != argc - 2) { | |
37 | usage(argv); | |
38 | exit(-1); | |
39 | } | |
40 | ||
41 | usb_init(); | |
42 | ||
43 | fprintf(stderr,"Waiting for Proxmark to appear on USB... "); | |
44 | while (!OpenProxmark(0)) { sleep(1); } | |
45 | fprintf(stderr,"Found.\n"); | |
46 | ||
47 | do_flash(argv); | |
48 | ||
49 | UsbCommand c = {CMD_HARDWARE_RESET}; | |
50 | SendCommand(&c); | |
51 | ||
52 | CloseProxmark(); | |
53 | ||
54 | fprintf(stderr,"Have a nice day!\n"); | |
55 | ||
56 | return 0; | |
57 | } |