comparison packages/devs/eth/arm/edb7xxx/current/cdl/edb7xxx_eth_drivers.cdl @ 82:6736c52df507 ecos-sw-2000-04-14

Merge from eCos master repository on 2000-04-14-13:35:46-BST
author jlarmour
date Tue, 18 Apr 2000 21:51:55 +0000
parents
children 95f3e12a6327
comparison
equal deleted inserted replaced
81:89fef2181d7d 82:6736c52df507
1 # ====================================================================
2 #
3 # edb7xxx_eth_drivers.cdl
4 #
5 # Ethernet drivers - platform dependent support for Cirrus Logic
6 # EDB7xxx family of development boards
7 #
8 # ====================================================================
9 #####COPYRIGHTBEGIN####
10 #
11 # -------------------------------------------
12 # The contents of this file are subject to the Red Hat eCos Public License
13 # Version 1.1 (the "License"); you may not use this file except in
14 # compliance with the License. You may obtain a copy of the License at
15 # http://www.redhat.com/
16 #
17 # Software distributed under the License is distributed on an "AS IS"
18 # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
19 # License for the specific language governing rights and limitations under
20 # the License.
21 #
22 # The Original Code is eCos - Embedded Configurable Operating System,
23 # released September 30, 1998.
24 #
25 # The Initial Developer of the Original Code is Red Hat.
26 # Portions created by Red Hat are
27 # Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
28 # All Rights Reserved.
29 # -------------------------------------------
30 #
31 #####COPYRIGHTEND####
32 # ====================================================================
33 ######DESCRIPTIONBEGIN####
34 #
35 # Author(s): gthomas
36 # Original data: gthomas
37 # Contributors:
38 # Date: 2000-01-25
39 #
40 #####DESCRIPTIONEND####
41 #
42 # ====================================================================
43
44 cdl_package CYGPKG_DEVS_ETH_ARM_EDB7XXX {
45 display "Cirrus Logic ethernet driver"
46
47 parent CYGPKG_NET_ETH_DRIVERS
48 active_if CYGPKG_NET_ETH_DRIVERS
49 active_if CYGPKG_HAL_ARM_EDB7XXX
50
51 implements CYGHWR_NET_DRIVERS
52 implements CYGHWR_NET_DRIVER_ETH0
53 include_dir .
54 # include_files ; # none _exported_ whatsoever
55 description "Ethernet driver for Cirrus Logic EDB7xxx boards."
56 compile -library=libextras.a if_edb7xxx.c
57
58 cdl_component CYGPKG_DEVS_ETH_ARM_EDB7XXX_OPTIONS {
59 display "Cirrus Logic ethernet driver build options"
60 flavor none
61 no_define
62
63 cdl_option CYGPKG_DEVS_ETH_ARM_EDB7XXX_CFLAGS_ADD {
64 display "Additional compiler flags"
65 flavor data
66 no_define
67 default_value { "-D_KERNEL -D__ECOS" }
68 description "
69 This option modifies the set of compiler flags for
70 building the Cirrus Logic ethernet driver package.
71 These flags are used in addition
72 to the set of global flags."
73 }
74 }
75 }
76