Skip to content

Commit 1ba6db2

Browse files
committed
Rename nucleoFlasher to massStorageCopy
Harden massStorageCopy to avoid issue. Create a linux 32 bits version. Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 4963647 commit 1ba6db2

16 files changed

+116
-278
lines changed

linux/massStorageCopy

7.87 KB
Binary file not shown.

linux/nucleoFlasher/nucleoFlasher

-8.91 KB
Binary file not shown.

linux/nucleoFlasher/nucleoFlasher.c

-69
This file was deleted.

linux64/massStorageCopy

13.3 KB
Binary file not shown.

linux64/nucleoFlasher/nucleoFlasher

-8.91 KB
Binary file not shown.

linux64/nucleoFlasher/nucleoFlasher.c

-69
This file was deleted.
File renamed without changes.

nucleoFlasher/nucleoFlasher

-8.91 KB
Binary file not shown.

nucleoFlasher/nucleoFlasher.c

-69
This file was deleted.

nucleoFlasher/nucleoFlasherMacOsX

-8.76 KB
Binary file not shown.

nucleoFlasher/nucleoFlasherMacOsX.c

-69
This file was deleted.

src/massStorageCopy/Makefile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
all: massStorageCopy32 massStorageCopy
2+
3+
4+
massStorageCopy32: massStorageCopy32.o
5+
gcc -m32 -o $@ $<
6+
7+
massStorageCopy32.o: massStorageCopy.c
8+
gcc -m32 -c $<
9+
mv massStorageCopy.o massStorageCopy32.o
10+
11+
massStorageCopy: massStorageCopy.o
12+
gcc -o $@ $<
13+
14+
massStorageCopy.o: massStorageCopy.c
15+
gcc -c $<
16+
17+
clean:
18+
rm -f *.o massStorageCopy massStorageCopy32
19+
20+
install:
21+
mv massStorageCopy ../../linux64/
22+
mv massStorageCopy32 ../../linux/massStorageCopy
File renamed without changes.

src/massStorageCopy/massStorageCopy.c

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
2+
#include <stdio.h>
3+
#include <string.h>
4+
#include <stdlib.h>
5+
#include <mntent.h>
6+
#include <unistd.h>
7+
8+
void usage(char *name)
9+
{
10+
printf("Usage: %s [-I <filepath>] [-O <mountpoint> ]\n\n", name);
11+
printf("Mandatory options:\n");
12+
printf("\t-I: filepath binary to copy\n");
13+
printf("\t-O: mountpoint destination name\n");
14+
}
15+
16+
int main(int argc, char *argv[])
17+
{
18+
int c, i;
19+
int ret = 0;
20+
int device_found = 0;
21+
char input_path[256] = "";
22+
char output_dev[256] = "";
23+
char output_path[256] = "";
24+
char cmd[512] = "";
25+
struct mntent *ent = NULL;
26+
FILE *aFile = NULL;
27+
28+
opterr = 0;
29+
30+
while ((c = getopt (argc, argv, "I:O:")) != -1)
31+
switch (c)
32+
{
33+
case 'I':
34+
strcpy(input_path, optarg);
35+
break;
36+
case 'O':
37+
strcpy(output_dev, optarg);
38+
break;
39+
case '?':
40+
if ((optopt == 'I') || (optopt == 'O'))
41+
fprintf (stderr, "Option -%c requires an argument.\n", optopt);
42+
else if (isprint (optopt))
43+
fprintf (stderr, "Unknown option `-%c'.\n", optopt);
44+
else
45+
fprintf (stderr,
46+
"Unknown option character `\\x%x'.\n",
47+
optopt);
48+
usage(argv[0]);
49+
return 1;
50+
default:
51+
abort ();
52+
}
53+
54+
if (strlen(input_path) && strlen(output_dev))
55+
{
56+
//get the mounted devives list
57+
aFile = setmntent("/proc/mounts", "r");
58+
if (aFile == NULL) {
59+
perror("setmntent");
60+
exit(1);
61+
}
62+
63+
//now lets read the path of the device
64+
while (NULL != (ent = getmntent(aFile))) {
65+
if (strstr(ent->mnt_dir, output_dev)) {
66+
sprintf(output_path, "%s", ent->mnt_dir);
67+
device_found = 1;
68+
}
69+
}
70+
71+
endmntent(aFile);
72+
73+
if(device_found) {
74+
printf("copying %s to %s\n", input_path, output_path);
75+
76+
sprintf(cmd, "scp %s %s", input_path, output_path);
77+
system(cmd);
78+
79+
} else {
80+
printf("%s not found. please ensure the device is correctly connected\n",
81+
output_dev);
82+
ret = -1;
83+
}
84+
}
85+
else
86+
{
87+
printf("Missing argument\n");
88+
usage(argv[0]);
89+
}
90+
91+
return ret;
92+
}

0 commit comments

Comments
 (0)