sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: @echo off sl@0: sl@0: if "%1"=="-h" goto help sl@0: sl@0: if "%1"=="" (set srcdat=%EPOCROOT%epoc32\data\config\features.dat) else (set srcdat=%1) sl@0: sl@0: echo Attempting to copy "%srcdat%" into both Emulator Z: drives... sl@0: sl@0: copy /Y %srcdat% %EPOCROOT%epoc32\release\winscw\urel\z\private\10205054\features.dat sl@0: copy /Y %srcdat% %EPOCROOT%epoc32\release\winscw\udeb\z\private\10205054\features.dat sl@0: echo Done. sl@0: sl@0: goto end sl@0: sl@0: :help sl@0: echo on sl@0: @echo . sl@0: @echo Installs the specified features.dat file into the FeatMgr emulator Z: sl@0: @echo directories. If no filename is supplied it attempts to install the one sl@0: @echo from epoc32/data/config create by the romkit component features command. sl@0: @echo . sl@0: @echo usage: "fmcopydat [-h] []" sl@0: @echo example: "fmcopydat features.dat" sl@0: @echo . sl@0: sl@0: :end