4 struct file_list
*file
;
13 %token CONFIG_MACHINE_ARCH
14 %token CONFIG_PLATFORM
46 %type
<str
> device_name
51 * Copyright (c) 1988, 1993
52 * The Regents of the University of California. All rights reserved.
54 * Redistribution and use in source and binary forms, with or without
55 * modification, are permitted provided that the following conditions
57 * 1. Redistributions of source code must retain the above copyright
58 * notice, this list of conditions and the following disclaimer.
59 * 2. Redistributions in binary form must reproduce the above copyright
60 * notice, this list of conditions and the following disclaimer in the
61 * documentation and/or other materials provided with the distribution.
62 * 3. All advertising materials mentioning features or use of this software
63 * must display the following acknowledgement:
64 * This product includes software developed by the University of
65 * California, Berkeley and its contributors.
66 * 4. Neither the name of the University nor the names of its contributors
67 * may be used to endorse or promote products derived from this software
68 * without specific prior written permission.
70 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
71 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
72 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
73 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
74 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
75 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
76 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
77 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
78 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
79 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
82 * @(#)config.y 8.1 (Berkeley) 6/6/93
83 * $FreeBSD: src/usr.sbin/config/config.y,v 1.42.2.1 2001/01/23 00:09:32 peter Exp $
84 * $DragonFly: src/usr.sbin/config/config.y,v 1.15 2008/05/01 09:24:42 swildner Exp $
94 static struct device cur
;
95 static struct device
*curp
= 0;
100 struct file_list
*ftab
;
104 static int connect
(char *, int);
105 static void yyerror(const char *s
);
122 Device_spec SEMICOLON
123 = { newdev
(&cur
); } |
124 Config_spec SEMICOLON
132 CONFIG_PLATFORM Save_id
134 if
(platformname
!= NULL
) {
135 errx
(1, "%d: only one platform directive is allowed",
140 CONFIG_MACHINE Save_id
142 if
(machinename
!= NULL
) {
143 errx
(1, "%d: only one machine directive is allowed",
148 CONFIG_MACHINE_ARCH Save_id
150 if
(machinearchname
!= NULL
) {
151 errx
(1, "%d: only one machine_arch directive is allowed",
154 machinearchname
= $2;
160 cp
= malloc
(sizeof
(struct cputype
));
161 bzero
(cp
, sizeof
(*cp
));
163 cp
->cpu_next
= cputype
;
168 MAKEOPTIONS Mkopt_list
175 = { maxusers
= $2; };
178 CONFIG System_id System_parameter_list
179 = { errx
(1,"line %d: root/dump/swap specifications obsolete", yyline
);}
189 op
= malloc
(sizeof
(struct opt
));
190 bzero
(op
, sizeof
(*op
));
191 op
->op_name
= strdup
("KERNEL");
195 op
->op_line
= yyline
+ 1;
199 System_parameter_list:
200 System_parameter_list ID
211 snprintf
(buf
, sizeof
(buf
), "%s%d", $1, $2);
219 snprintf
(buf
, sizeof
(buf
), "%s%d%s", $1, $2, $3);
223 | Save_id NUMBER ID NUMBER
227 snprintf
(buf
, sizeof
(buf
), "%s%d%s%d",
232 | Save_id NUMBER ID NUMBER ID
236 snprintf
(buf
, sizeof
(buf
), "%s%d%s%d%s",
244 Opt_list COMMA Option
254 op
= malloc
(sizeof
(struct opt
));
255 bzero
(op
, sizeof
(*op
));
260 * op->op_line is 1-based; yyline is 0-based but is now 1
261 * larger than when `Save_id' was lexed.
263 op
->op_line
= yyline
;
265 if
(strchr
(op
->op_name
, '=') != NULL
)
266 errx
(1, "line %d: The `=' in options should not be quoted", yyline
);
268 Save_id EQUALS Opt_value
272 op
= malloc
(sizeof
(struct opt
));
273 bzero
(op
, sizeof
(*op
));
277 op
->op_line
= yyline
+ 1;
288 snprintf
(buf
, sizeof
(buf
), "%d", $1);
298 Mkopt_list COMMA Mkoption
304 Save_id EQUALS Opt_value
308 op
= malloc
(sizeof
(struct opt
));
309 bzero
(op
, sizeof
(*op
));
311 op
->op_ownfile
= 0; /* for now */
314 op
->op_line
= yyline
+ 1;
325 = { cur.d_type
= DEVICE
; } |
326 PSEUDO_DEVICE Init_dev Dev
329 cur.d_type
= PSEUDO_DEVICE
;
331 PSEUDO_DEVICE Init_dev Dev NUMBER
334 cur.d_type
= PSEUDO_DEVICE
;
342 cur.d_unit
= UNKNOWN
;
344 Init_dev Dev NUMBER Dev_info
352 = { init_dev
(&cur
); };
369 cur.d_conn
= "nexus";
380 BUS NUMBER
/* device scbus1 at ahc0 bus 1 - twin channel */
381 = { cur.d_bus
= $2; } |
383 = { cur.d_target
= $2; } |
385 = { cur.d_lun
= $2; } |
387 = { cur.d_drive
= $2; } |
389 = { cur.d_irq
= $2; } |
391 = { cur.d_drq
= $2; } |
393 = { cur.d_maddr
= $2; } |
395 = { cur.d_msize
= $2; } |
397 = { cur.d_port
= $2; } |
399 = { cur.d_portn
= $2; } |
401 = { cur.d_flags
= $2; } |
403 = { cur.d_disabled
= 1; }
408 yyerror(const char *s
)
411 errx
(1, "line %d: %s", yyline
+ 1, s
);
415 * add a device to the list of devices
418 newdev
(struct device
*dp
)
420 struct device
*np
, *xp
;
422 if
(dp
->d_unit
>= 0) {
423 for
(xp
= dtab
; xp
!= NULL
; xp
= xp
->d_next
) {
424 if
((xp
->d_unit
== dp
->d_unit
) &&
425 !strcmp
(xp
->d_name
, dp
->d_name
)) {
426 errx
(1, "line %d: already seen device %s%d",
427 yyline
, xp
->d_name
, xp
->d_unit
);
431 np
= malloc
(sizeof
(*np
));
432 bzero
(np
, sizeof
(*np
));
444 * find the pointer to connect to the given device and number.
445 * returns 0 if no such device and prints an error message
448 connect
(char *dev
, int num
)
453 for
(dp
= dtab
; dp
!= NULL
; dp
= dp
->d_next
)
454 if
(!strcmp
(dp
->d_name
, dev
))
457 snprintf
(errbuf
, sizeof
(errbuf
),
458 "no %s's to wildcard", dev
);
464 for
(dp
= dtab
; dp
!= NULL
; dp
= dp
->d_next
) {
465 if
((num
!= dp
->d_unit
) || strcmp
(dev
, dp
->d_name
))
467 if
(dp
->d_type
!= DEVICE
) {
468 snprintf
(errbuf
, sizeof
(errbuf
),
469 "%s connected to non-device", dev
);
475 snprintf
(errbuf
, sizeof
(errbuf
), "%s %d not defined", dev
, num
);
481 init_dev
(struct device
*dp
)
484 dp
->d_name
= "OHNO!!!";
489 dp
->d_bus
= dp
->d_lun
= dp
->d_target
= dp
->d_drive
= dp
->d_unit
=
490 dp
->d_count
= UNKNOWN
;