os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/EditHeaderIby.pl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/EditHeaderIby.pl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,46 @@
     1.4 +#!perl
     1.5 +
     1.6 +# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.7 +# All rights reserved.
     1.8 +# This component and the accompanying materials are made available
     1.9 +# under the terms of "Eclipse Public License v1.0"
    1.10 +# which accompanies this distribution, and is available
    1.11 +# at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.12 +#
    1.13 +# Initial Contributors:
    1.14 +# Nokia Corporation - initial contribution.
    1.15 +#
    1.16 +# Contributors:
    1.17 +#
    1.18 +# Description:
    1.19 +#
    1.20 +
    1.21 +use strict;
    1.22 +my $target = "\\epoc32\\rom\\include\\header.iby";
    1.23 +
    1.24 +# Read header.iby to see if it has already been modified.
    1.25 +my @lines = ();
    1.26 +open(FH, $target) or die "Fail to open $target $!\n";
    1.27 +while(<FH>)
    1.28 +{
    1.29 +  push(@lines, $_);
    1.30 +  if (/rom_image\s+2\s+rofs2/i)
    1.31 +  {
    1.32 +	close(FH);
    1.33 +	exit(0);
    1.34 +  }
    1.35 +}
    1.36 +close(FH);
    1.37 +
    1.38 +chmod(0666, $target);
    1.39 +open(FH, ">$target") or die "Fail to open $target for write $!\n";
    1.40 +
    1.41 +foreach (@lines)
    1.42 +{
    1.43 +  print FH $_;
    1.44 +  if (/rom_image\s+1\s+rofs\b/i)
    1.45 +  {
    1.46 +	print FH "rom_image 2 rofs2 size=1000000 non-xip compress\n";
    1.47 +  }
    1.48 +}
    1.49 +close(FH);