equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // etherpkt.drv User side Ethernet protocol driver |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 */ |
|
21 |
|
22 |
|
23 TARGET etherpkt.drv |
|
24 TARGETTYPE DLL |
|
25 |
|
26 // speed optimisations |
|
27 #ifdef MARM_ARMV5 |
|
28 // ALWAYS_BUILD_AS_ARM |
|
29 OPTION ARMCC -O3 -Otime |
|
30 #endif |
|
31 |
|
32 UID 0x1000053f 0x10009b6f |
|
33 VENDORID 0x70000001 |
|
34 |
|
35 #include <comms-infras/commsdebugutility.mmh> |
|
36 |
|
37 SOURCEPATH ../EtherPkt |
|
38 SOURCE CardDll.cpp CardCtl.cpp CardIo.cpp |
|
39 |
|
40 SOURCEPATH ../log |
|
41 SOURCE eth_log.cpp |
|
42 |
|
43 USERINCLUDE ../EtherPkt |
|
44 USERINCLUDE ../EthInt |
|
45 USERINCLUDE ../INC |
|
46 OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
|
47 |
|
48 LIBRARY euser.lib |
|
49 LIBRARY mbufmgr.lib |
|
50 LIBRARY esock.lib |
|
51 LIBRARY ethint.lib |
|
52 LIBRARY esocksvr.lib |
|
53 #if !defined(WINS) |
|
54 LIBRARY efsrv.lib |
|
55 #endif |
|
56 |
|
57 START WINS |
|
58 BASEADDRESS 0x7ff30000 |
|
59 END |
|
60 |
|
61 CAPABILITY CommDD PowerMgmt ReadDeviceData WriteDeviceData TrustedUI ProtServ NetworkControl NetworkServices LocalServices ReadUserData WriteUserData |
|
62 |
|
63 UNPAGED |
|
64 |
|
65 SMPSAFE |