diff options
Diffstat (limited to 'target/linux/x86/image/mkimg_sitecom.pl')
-rwxr-xr-x | target/linux/x86/image/mkimg_sitecom.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/x86/image/mkimg_sitecom.pl b/target/linux/x86/image/mkimg_sitecom.pl new file mode 100755 index 000000000..cfd5e652f --- /dev/null +++ b/target/linux/x86/image/mkimg_sitecom.pl @@ -0,0 +1,11 @@ +#!/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; |