os/persistentdata/featuremgmt/featuremgr/tools/datfilehelpers/fmcopydat.cmd
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
@echo off
sl@0
    17
sl@0
    18
if "%1"=="-h" goto help
sl@0
    19
sl@0
    20
if "%1"==""  (set srcdat=%EPOCROOT%epoc32\data\config\features.dat) else (set srcdat=%1)
sl@0
    21
sl@0
    22
echo Attempting to copy "%srcdat%" into both Emulator Z: drives...
sl@0
    23
sl@0
    24
copy /Y %srcdat% %EPOCROOT%epoc32\release\winscw\urel\z\private\10205054\features.dat
sl@0
    25
copy /Y %srcdat% %EPOCROOT%epoc32\release\winscw\udeb\z\private\10205054\features.dat
sl@0
    26
echo Done.
sl@0
    27
sl@0
    28
goto end
sl@0
    29
sl@0
    30
:help
sl@0
    31
echo on
sl@0
    32
@echo . 
sl@0
    33
@echo Installs the specified features.dat file into the FeatMgr emulator Z:
sl@0
    34
@echo directories. If no filename is supplied it attempts to install the one 
sl@0
    35
@echo from epoc32/data/config create by the romkit component features command.
sl@0
    36
@echo .
sl@0
    37
@echo usage: "fmcopydat [-h] [<features.dat filename>]"
sl@0
    38
@echo example: "fmcopydat features.dat"
sl@0
    39
@echo .
sl@0
    40
sl@0
    41
:end