omap3530/beagle_drivers/medstaticrd/medstaticrd.mmp
author Mike Kinghan <mikek@symbian.org>
Wed, 17 Nov 2010 10:47:26 +0000
changeset 109 c61e54f48ab5
parent 46 78c240f59c9d
permissions -rw-r--r--
Fix for Bug 3955 - #includes must not use absolute pathnames
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     1
/*
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     2
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     3
* All rights reserved.
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     4
* This component and the accompanying materials are made available
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     5
* under the terms of the License "Eclipse Public License v1.0"
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     6
* which accompanies this distribution, and is available
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     8
*
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
     9
* Initial Contributors:
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    11
*
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    12
* Contributors:
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    13
* Gareth Long - Symbian Foundation
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    14
*
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    15
* Description:
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    16
*
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    17
*/
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    18
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    19
#include "beagle/variant.mmh"
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    20
#include "kernel/kern_ext.mmh"
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    21
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    22
TARGET			VariantTarget(medstaticrd,pdd)
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    23
TARGETTYPE		pdd
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    24
//TARGETTYPE		kext
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    25
ROMTARGET		staticrd.dll
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    26
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    27
systeminclude		+/include/drivers
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    28
SYMBIAN_BASE_SYSTEMINCLUDE(drivers)
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    29
SYSTEMINCLUDE	AsspNKernIncludePath
109
c61e54f48ab5 Fix for Bug 3955 - #includes must not use absolute pathnames
Mike Kinghan <mikek@symbian.org>
parents: 46
diff changeset
    30
USERINCLUDE ../../beagleboard/inc
46
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    31
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    32
SOURCEPATH		.
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    33
SOURCE			beagle_medstaticrd.cpp
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    34
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    35
//LIBRARY			ekern.lib
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    36
//LIBRARY			AsspTarget(PlatformLib)
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    37
LIBRARY			elocd.lib
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    38
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    39
//NOEXPORTLIBRARY
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    40
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    41
//DEFFILE			../e32/~/empty.def
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    42
//DEFFILE			./~/exkey.def
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    43
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    44
//NOSTRICTDEF
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    45
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    46
epocallowdlldata
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    47
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    48
UID				0x100039cf 0x100000db
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    49
VENDORID        0x70000001
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    50
78c240f59c9d Changes for full working UI on 3.0.0 including Gareth's "persistent" RAM drives
Tom Pritchard <tomp@symbian.org>
parents:
diff changeset
    51
CAPABILITY		all