File tree 2 files changed +1
-8
lines changed
2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ include ../common/Makefile.common
3
3
BINS = bootrom.bin fullimage.bin proxmark3_recovery.bin
4
4
5
5
all : $(BINS )
6
- # %: ../bootrom/% ../armsrc/% $(BINS)
7
- # clean: %: ../bootrom/% ../armsrc/%
8
- # rm *.bin
9
6
10
7
bootrom.bin : ../bootrom/obj/bootrom.elf
11
8
$(OBJCOPY ) --gap-fill=0xff --pad-to 0x00102000 -O binary $^ $@
@@ -15,7 +12,6 @@ fullimage.bin: ../armsrc/obj/fullimage.elf
15
12
16
13
proxmark3_recovery.bin : bootrom.bin fullimage.bin
17
14
cat bootrom.bin fullimage.bin > $@
18
- chmod 755 $@
19
15
20
16
clean :
21
17
rm -f $(BINS )
Original file line number Diff line number Diff line change 11
11
$ENV {' LANG' } = " C" ;
12
12
13
13
my $svnversion = 0;
14
- my $present = 0;
15
14
my $clean = 2;
16
15
my @compiletime = gmtime ();
17
16
18
17
# Strategy one: call svn info and extract last changed revision, call svn status and look for ^M
19
18
if (open (SVNINFO, " svn info $main_dir |" )) {
20
19
while (<SVNINFO>) {
21
20
if (/ ^Last Changed Rev: (.*)/ ) {
22
- $present = 1;
23
21
$svnversion = $1 ;
24
22
# # last; # Do not abort here, since SVN tends to complain about a Broken pipe
25
23
}
46
44
while (<ENTRIES>) {
47
45
last if ($i == 3 and !/^dir/);
48
46
if ($i == 11 and /^([0-9]*)/) {
49
- $present = 1;
50
47
$svnversion = $1 ;
51
48
}
52
49
$i ++;
65
62
const struct version_information __attribute__((section(".version_information"))) version_information = {
66
63
VERSION_INFORMATION_MAGIC,
67
64
1,
68
- $present ,
65
+ 1 ,
69
66
$clean ,
70
67
"svn $svnversion ",
71
68
"$ctime ",
You can’t perform that action at this time.
0 commit comments