FreeCalypso > hg > tcs211-c139
view g23m/system/busyb/tools/cfg_gen.pl @ 48:616f63f3e501 default tip
fixed bug in etm_pkt_send() dealing with max-sized packets:
this fix is needed for fc-fsio cpout command to work like it does
with Pirelli's firmware (they must have made the same fix)
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Fri, 13 Nov 2015 19:11:07 +0000 |
parents | 509db1a7b7b8 |
children |
line wrap: on
line source
my $cfg_dir=$ARGV[0]; my $cfg_string= $cfg_file ; my $guard_string; my @files; shift; foreach $define (@ARGV) { $define =~ /^(CFG_)?(.*?)_/; my $file = $2; if (! grep /$file/, @files) { push @files, $file; } } foreach $file (sort @files) { my $cfg_string = "\L$file"; my $cfg_file = "$cfg_dir/$cfg_string.cfg"; my $guard_string = "\U__${file}_CFG__"; # open the file open (CFG,">$cfg_file")||die "can't open $cfg_file \n"; # print guard pattern print CFG "#ifndef $guard_string\n"; print CFG "#define $guard_string\n"; foreach (sort @ARGV) { if (/^(CFG_)?($file)_(.*?)=(.*)/) { print CFG "#define $3 $4\n"; } } # end guard pattern print CFG "#endif /* $guard_string */ \n"; # close the file close CFG; }