1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-02-23 23:44:42 +02:00

12 lines
225 B
Perl
Raw Normal View History

#!/usr/bin/perl
open (bzimg, @ARGV[0]);
while (<bzimg>) { $i .= $_; }
$i .= pack "v", -(unpack "%v*", $i);
print "CSYS";
print pack("V", length($i));
print pack("V", 0);
print "WRRM";
print pack("V", length($i));
print $i;