os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/tools/scripts/EditHeaderIby.pl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #!perl
     2 
     3 # Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     4 # All rights reserved.
     5 # This component and the accompanying materials are made available
     6 # under the terms of "Eclipse Public License v1.0"
     7 # which accompanies this distribution, and is available
     8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 #
    10 # Initial Contributors:
    11 # Nokia Corporation - initial contribution.
    12 #
    13 # Contributors:
    14 #
    15 # Description:
    16 #
    17 
    18 use strict;
    19 my $target = "\\epoc32\\rom\\include\\header.iby";
    20 
    21 # Read header.iby to see if it has already been modified.
    22 my @lines = ();
    23 open(FH, $target) or die "Fail to open $target $!\n";
    24 while(<FH>)
    25 {
    26   push(@lines, $_);
    27   if (/rom_image\s+2\s+rofs2/i)
    28   {
    29 	close(FH);
    30 	exit(0);
    31   }
    32 }
    33 close(FH);
    34 
    35 chmod(0666, $target);
    36 open(FH, ">$target") or die "Fail to open $target for write $!\n";
    37 
    38 foreach (@lines)
    39 {
    40   print FH $_;
    41   if (/rom_image\s+1\s+rofs\b/i)
    42   {
    43 	print FH "rom_image 2 rofs2 size=1000000 non-xip compress\n";
    44   }
    45 }
    46 close(FH);