]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/disk/ide/v2_0/cdl/ide_disk.cdl
Initial revision
[karo-tx-redboot.git] / packages / devs / disk / ide / v2_0 / cdl / ide_disk.cdl
1 # ====================================================================
2 #
3 #      ide_disk.cdl
4 #
5 #      A generic IDE disk driver package.
6 #
7 # ====================================================================
8 #####ECOSGPLCOPYRIGHTBEGIN####
9 ## -------------------------------------------
10 ## This file is part of eCos, the Embedded Configurable Operating System.
11 ## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 Red Hat, Inc.
12 ## Copyright (C) 2004 eCosCentric, Ltd
13 ##
14 ## eCos is free software; you can redistribute it and/or modify it under
15 ## the terms of the GNU General Public License as published by the Free
16 ## Software Foundation; either version 2 or (at your option) any later version.
17 ##
18 ## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
19 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
21 ## for more details.
22 ##
23 ## You should have received a copy of the GNU General Public License along
24 ## with eCos; if not, write to the Free Software Foundation, Inc.,
25 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 ##
27 ## As a special exception, if other files instantiate templates or use macros
28 ## or inline functions from this file, or you compile this file and link it
29 ## with other works to produce a work based on this file, this file does not
30 ## by itself cause the resulting work to be covered by the GNU General Public
31 ## License. However the source code for this file must still be made available
32 ## in accordance with section (3) of the GNU General Public License.
33 ##
34 ## This exception does not invalidate any other reasons why a work based on
35 ## this file might be covered by the GNU General Public License.
36 ##
37 ## -------------------------------------------
38 #####ECOSGPLCOPYRIGHTEND####
39 # ====================================================================
40 ######DESCRIPTIONBEGIN####
41 #
42 # Author(s):      iz
43 # Contributors:
44 # Date:           2004-10-16
45 #
46 #####DESCRIPTIONEND####
47 # ====================================================================
48
49 cdl_package CYGPKG_DEVS_DISK_IDE {
50     display     "Disk driver for generic IDE"
51     
52     parent      CYGPKG_IO_DISK_DEVICES
53     active_if   CYGPKG_IO_DISK
54
55     compile     -library=libextras.a   ide_disk.c
56     
57     cdl_component CYGVAR_DEVS_DISK_IDE_DISK0 {
58         display         "Provide disk 0 device"
59         flavor          bool
60         default_value   1
61         description     "IDE chanel 0:0 disk driver"
62         
63         cdl_option CYGDAT_IO_DISK_IDE_DISK0_NAME {
64             display       "Device name for disk 0 device"
65             flavor        data
66             default_value {"\"/dev/hda/\""}
67         }
68     }
69     
70     cdl_component CYGVAR_DEVS_DISK_IDE_DISK1 {
71      display         "Provide disk 1 device"
72         flavor          bool
73         default_value   0
74         description     "IDE chanel 0:1 disk driver"
75         
76         cdl_option CYGDAT_IO_DISK_IDE_DISK1_NAME {
77             display       "Device name for disk 1 device"
78             flavor        data
79             default_value {"\"/dev/hdb/\""}
80         }
81     }
82     
83     cdl_component CYGVAR_DEVS_DISK_IDE_DISK2 {
84      display         "Provide disk 2 device"
85         flavor          bool
86         default_value   0
87         description     "IDE chanel 1:0 disk driver"
88         
89         cdl_option CYGDAT_IO_DISK_IDE_DISK2_NAME {
90             display       "Device name for disk 2 device"
91             flavor        data
92             default_value {"\"/dev/hdc/\""}
93         }
94     }
95     
96     cdl_component CYGVAR_DEVS_DISK_IDE_DISK3 {
97      display         "Provide disk 3 device"
98         flavor          bool
99         default_value   0
100         description     "IDE chanel 1:1 disk driver"
101         
102         cdl_option CYGDAT_IO_DISK_IDE_DISK3_NAME {
103             display       "Device name for disk 3 device"
104             flavor        data
105             default_value {"\"/dev/hdd/\""}
106         }
107     }
108
109     cdl_option CYGDAT_DEVS_DISK_IDE_SECTOR_SIZE {
110         display       "Disk sector size"
111         flavor        data
112         default_value 512
113         description "
114         This option controls the disk sector size (default=512)"
115      }
116
117     cdl_option CYGSEM_DEVS_DISK_IDE_VMWARE {
118         display       "Work with VMware virtual disks"
119         flavor        bool
120         default_value 0
121         description "
122         This option controls the disk driver behaviour at ide-init"
123      }
124
125 }
126
127 # EOF ide_disk.cdl