summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1995-05-12 19:12:44 +0000
committerwollman <wollman@FreeBSD.org>1995-05-12 19:12:44 +0000
commita0ad6a34d39584cffc7f4f759c9bd29f4f44784a (patch)
treeeaa7433696a4f0560b30ad46dc3fcfe4407b5b94 /usr.sbin/config
parente7f4268dca67a63ab550ce0bc79e14eee95a7ff4 (diff)
downloadFreeBSD-src-a0ad6a34d39584cffc7f4f759c9bd29f4f44784a.zip
FreeBSD-src-a0ad6a34d39584cffc7f4f759c9bd29f4f44784a.tar.gz
Don't automatically default dumps to be on a swap device; if the user
wants dumps, he can either configure it explicitly (`dumps on' whatever) or use the dumpon(8) utility.
Diffstat (limited to 'usr.sbin/config')
-rw-r--r--usr.sbin/config/config.y7
-rw-r--r--usr.sbin/config/mkswapconf.c10
2 files changed, 9 insertions, 8 deletions
diff --git a/usr.sbin/config/config.y b/usr.sbin/config/config.y
index 76e9a50..fb3ede0 100644
--- a/usr.sbin/config/config.y
+++ b/usr.sbin/config/config.y
@@ -1033,12 +1033,9 @@ checksystemspec(fl)
return;
}
/*
- * Default dump device and warn if place is not a
- * swap area.
+ * Warn if dump device is not a swap area.
*/
- if (fl->f_dumpdev == NODEV)
- fl->f_dumpdev = swap->f_swapdev;
- if (fl->f_dumpdev != swap->f_swapdev) {
+ if (fl->f_dumpdev != NODEV && fl->f_dumpdev != swap->f_swapdev) {
struct file_list *p = swap->f_next;
for (; p && p->f_type == SWAPSPEC; p = p->f_next)
diff --git a/usr.sbin/config/mkswapconf.c b/usr.sbin/config/mkswapconf.c
index cbb97c7..002d85e 100644
--- a/usr.sbin/config/mkswapconf.c
+++ b/usr.sbin/config/mkswapconf.c
@@ -97,9 +97,13 @@ do_swap(fl)
fprintf(fp, "dev_t\trootdev = makedev(%d, 0x%08x);\t\t/* %s */\n",
major(fl->f_rootdev), minor(fl->f_rootdev),
devtoname(fl->f_rootdev));
- fprintf(fp, "dev_t\tdumpdev = makedev(%d, 0x%08x);\t\t/* %s */\n",
- major(fl->f_dumpdev), minor(fl->f_dumpdev),
- devtoname(fl->f_dumpdev));
+ if (fl->f_dumpdev != NODEV) {
+ fprintf(fp, "dev_t\tdumpdev = makedev(%d, 0x%08x);\t\t/* %s */\n",
+ major(fl->f_dumpdev), minor(fl->f_dumpdev),
+ devtoname(fl->f_dumpdev));
+ } else {
+ fprintf(fp, "dev_t\tdumpdev = NODEV;\t\t\t/* unconfigured */\n");
+ }
fprintf(fp, "\n");
fprintf(fp, "struct\tswdevt swdevt[] = {\n");
do {
OpenPOWER on IntegriCloud