OpenWrt

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 2  →  ?path2? @ 3
/branches/18.06.1/scripts/slugimage.pl
@@ -40,7 +40,7 @@
use warnings;
 
use Getopt::Long qw(:config no_ignore_case);
use File::Temp qw(tempfile);
use POSIX qw(tmpnam);
 
my($debug) = 0;
my($quiet) = 0;
@@ -993,7 +993,7 @@
# don't touch RedBoot and SysConf anyway. If no Trailer is specified,
# put in one.
if (not defined $redboot and not -e "RedBoot") {
$redboot = tempfile();
$redboot = tmpnam();
open TMP, ">$redboot" or die "Cannot open file $redboot: $!";
push @cleanup, $redboot;
# The RedBoot partition is 256 * 1024 = 262144; the trailer we add
@@ -1006,7 +1006,7 @@
close TMP;
}
if (not defined $sysconf and not -e "SysConf") {
$sysconf = tempfile();
$sysconf = tmpnam();
open TMP, ">$sysconf" or die "Cannot open file $sysconf: $!";
push @cleanup, $sysconf;
# The SysConf partition is 128 * 1024 = 131072
@@ -1014,7 +1014,7 @@
close TMP;
}
if (not defined $trailer and not -e "Trailer") {
$trailer = tempfile();
$trailer = tmpnam();
open TMP, ">$trailer" or die "Cannot open file $trailer: $!";
push @cleanup, $trailer;
for my $i (@sercomm_flash_trailer) {