From e00406775019b2e139b7f3b4df0666f1230c28da Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 21 Mar 2000 19:25:56 +0000 Subject: [PATCH] Whine at users who still have block devices in /dev, give them until june 1st to fix their system. --- sys/kern/kern_conf.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys/kern/kern_conf.c b/sys/kern/kern_conf.c index d6116f75513..141627c69a7 100644 --- a/sys/kern/kern_conf.c +++ b/sys/kern/kern_conf.c @@ -259,6 +259,7 @@ dev2udev(dev_t x) dev_t udev2dev(udev_t x, int b) { + static int whine; if (x == NOUDEV) return (NODEV); @@ -266,6 +267,10 @@ udev2dev(udev_t x, int b) case 0: return makedev(umajor(x), uminor(x)); case 1: + if (!whine) { + printf("WARNING: run /dev/MAKEDEV to get rid of block devices before 2000-06-01\n"); + whine++; + } return makebdev(umajor(x), uminor(x)); default: Debugger("udev2dev(...,X)");