2009-08-28 14:40:44 +08:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# Output a version.c file that includes information about the current build
|
|
|
|
# Normally a couple of lines of bash would be enough (see openpcd project, original firmware by Harald Welte and Milosch Meriac)
|
|
|
|
# but this will, at least in theory, also work on Windows with our current compile environment.
|
|
|
|
# -- Henryk Plötz <henryk@ploetzli.ch> 2009-09-28
|
|
|
|
|
|
|
|
my $main_dir = shift;
|
|
|
|
|
|
|
|
# Clear environment locale so that svn will not use localized strings
|
|
|
|
$ENV{'LC_ALL'} = "C";
|
|
|
|
$ENV{'LANG'} = "C";
|
|
|
|
|
|
|
|
my $svnversion = 0;
|
|
|
|
my $present = 0;
|
|
|
|
my $clean = 2;
|
|
|
|
my @compiletime = gmtime();
|
|
|
|
|
|
|
|
# Strategy one: call svn info and extract last changed revision, call svn status and look for ^M
|
|
|
|
if(open(SVNINFO, "svn info $main_dir|")) {
|
|
|
|
while(<SVNINFO>) {
|
|
|
|
if (/^Last Changed Rev: (.*)/) {
|
|
|
|
$present = 1;
|
|
|
|
$svnversion = $1;
|
|
|
|
## last; # Do not abort here, since SVN tends to complain about a Broken pipe
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(SVNINFO);
|
2010-02-21 05:56:46 +08:00
|
|
|
|
2009-08-28 14:40:44 +08:00
|
|
|
if(open(SVNSTATUS, "svn status $main_dir|")) {
|
|
|
|
$clean = 1;
|
|
|
|
while(<SVNSTATUS>) {
|
|
|
|
if(/^M/) {
|
|
|
|
$clean = 0;
|
|
|
|
## last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(SVNINFO);
|
|
|
|
}
|
2010-02-21 05:56:46 +08:00
|
|
|
|
2009-08-28 14:40:44 +08:00
|
|
|
} else {
|
2010-02-21 05:56:46 +08:00
|
|
|
# Strategy two: look for .svn/entries. The third line should be "dir", the fourth line should contain
|
2009-09-02 06:56:07 +08:00
|
|
|
# the currently checked out revision, the eleventh line should contain the last changed revision.
|
2009-08-28 14:40:44 +08:00
|
|
|
# revision.
|
|
|
|
if(open(ENTRIES, "$main_dir/.svn/entries")) {
|
|
|
|
my $i = 1;
|
|
|
|
while(<ENTRIES>) {
|
|
|
|
last if($i == 3 and !/^dir/);
|
2009-09-02 06:56:07 +08:00
|
|
|
if($i == 11 and /^([0-9]*)/) {
|
2009-08-28 14:40:44 +08:00
|
|
|
$present = 1;
|
|
|
|
$svnversion = $1;
|
|
|
|
}
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$compiletime[4] += 1;
|
|
|
|
$compiletime[5] += 1900;
|
|
|
|
my $ctime = sprintf("%6\$04i-%5\$02i-%4\$02i %3\$02i:%2\$02i:%1\$02i", @compiletime);
|
|
|
|
|
|
|
|
print <<EOF
|
2010-02-21 05:56:46 +08:00
|
|
|
#include "proxmark3.h"
|
2009-08-28 14:40:44 +08:00
|
|
|
/* Generated file, do not edit */
|
2010-02-26 22:02:27 +08:00
|
|
|
const struct version_information __attribute__((section(".version_information"))) version_information = {
|
2009-08-28 14:40:44 +08:00
|
|
|
VERSION_INFORMATION_MAGIC,
|
|
|
|
1,
|
|
|
|
$present,
|
|
|
|
$clean,
|
|
|
|
"svn $svnversion",
|
|
|
|
"$ctime",
|
|
|
|
};
|
|
|
|
EOF
|