diff options
author | Martin Mares <mj@ucw.cz> | 1998-12-06 17:40:42 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-12-06 17:40:42 +0000 |
commit | 980ffedbb04bf3beedf147fc7dfed40cdbf968aa (patch) | |
tree | 075cadebb6c03fe359f77f51dc11d5e06d66f95f /sysdep/unix/krt.Y | |
parent | 0846203e896d8ab009217968e391b5e13ea3c4c6 (diff) |
Kernel syncer is now configurable. It will probably need some more
options, but at least basic tuning is possible now.
Diffstat (limited to 'sysdep/unix/krt.Y')
-rw-r--r-- | sysdep/unix/krt.Y | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sysdep/unix/krt.Y b/sysdep/unix/krt.Y new file mode 100644 index 00000000..d4dd0824 --- /dev/null +++ b/sysdep/unix/krt.Y @@ -0,0 +1,34 @@ +/* + * BIRD -- UNIX Kernel Syncer Configuration + * + * (c) 1998 Martin Mares <mj@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +CF_HDR + +#include "lib/krt.h" + +CF_DECLS + +CF_KEYWORDS(KERNEL) + +CF_GRAMMAR + +/* Kernel protocol */ + +CF_ADDTO(proto, kern_proto '}') + +kern_proto_start: proto_start KERNEL { + if (!(this_proto = cf_krt_proto)) cf_error("Kernel protocol already defined"); + cf_krt_proto = NULL; + } + ; + +CF_ADDTO(kern_proto, kern_proto_start '{') +CF_ADDTO(kern_proto, kern_proto proto_item ';') + +CF_CODE + +CF_END |