diff options
author | peter <peter@FreeBSD.org> | 1999-05-09 17:48:23 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-05-09 17:48:23 +0000 |
commit | 5fd0058fc8daf7eb9f164c0da666dc1607efae92 (patch) | |
tree | 3b8fc86b1c41c4d82366a6253e2fc9d5b9143f8b /usr.sbin/config | |
parent | 91e7a75ba8a245b6508c17e2e29521c89ab80489 (diff) | |
download | FreeBSD-src-5fd0058fc8daf7eb9f164c0da666dc1607efae92.zip FreeBSD-src-5fd0058fc8daf7eb9f164c0da666dc1607efae92.tar.gz |
We don't have composite devices here either.
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/config.h | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/usr.sbin/config/config.h b/usr.sbin/config/config.h index f9f2d2c..bc18104 100644 --- a/usr.sbin/config/config.h +++ b/usr.sbin/config/config.h @@ -51,23 +51,7 @@ struct file_list { char *f_depends; /* additional dependancies */ char *f_clean; /* File list to add to clean rule */ char *f_needs; - /* - * Random values: - * swap space parameters for swap areas - * root device, etc. for system specifications - */ - union { - struct { /* when system specification */ - char * fus_rootdev; - } fus; - struct { /* when component dev specification */ - dev_t fup_compdev; - int fup_compinfo; - } fup; - } fun; -#define f_rootdev fun.fus.fus_rootdev -#define f_compdev fun.fup.fup_compdev -#define f_compinfo fun.fup.fup_compinfo + char *f_rootdev; }; /* @@ -189,7 +173,7 @@ extern struct device *dtab; extern char errbuf[80]; extern int yyline; -extern struct file_list *ftab, *conf_list, **confp, *comp_list, **compp; +extern struct file_list *ftab, *conf_list, **confp; extern int profiling; extern int debugging; |