summaryrefslogtreecommitdiffstats
path: root/target/linux/rdc/image/mkimg_sitecom.pl
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-18 23:35:21 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-18 23:35:21 +0000
commitd6a7552aad4537d1dc32c5e92c5159d7211372c2 (patch)
tree3e3aee7b257d4ccfc367abca5545f742bcedd89a /target/linux/rdc/image/mkimg_sitecom.pl
parentf87759a667c77a1afbe1393d2de60666c0337e37 (diff)
[rdc] rework board detection
Rework board detection, separate board specific code into its own file. As a result we also change the way rdc images are generated. Support for board which required binary tools, like AMIT are dropped. Patch by Bernhard Loos. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20294 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/rdc/image/mkimg_sitecom.pl')
-rwxr-xr-xtarget/linux/rdc/image/mkimg_sitecom.pl6
1 files changed, 0 insertions, 6 deletions
diff --git a/target/linux/rdc/image/mkimg_sitecom.pl b/target/linux/rdc/image/mkimg_sitecom.pl
index 4dd4a398c..cfd5e652f 100755
--- a/target/linux/rdc/image/mkimg_sitecom.pl
+++ b/target/linux/rdc/image/mkimg_sitecom.pl
@@ -1,17 +1,11 @@
#!/usr/bin/perl
-$bzimgsize = -s @ARGV[0];
-$padding = 4 - ($bzimgsize + 2) % 4;
-if ($padding == 4) {
- $padding = 0; }
open (bzimg, @ARGV[0]);
while (<bzimg>) { $i .= $_; }
-$i .= "\0"x$padding;
$i .= pack "v", -(unpack "%v*", $i);
print "CSYS";
print pack("V", length($i));
print pack("V", 0);
-#-s @ARGV[1]
print "WRRM";
print pack("V", length($i));
print $i;