mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 23:42:49 +02:00
d6a7552aad
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
12 lines
225 B
Perl
Executable File
12 lines
225 B
Perl
Executable File
#!/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;
|