mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 19:08:58 +00:00
Whine at users who still have block devices in /dev, give them until
june 1st to fix their system.
This commit is contained in:
parent
19cada7779
commit
e004067750
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58447
@ -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)");
|
||||
|
Loading…
Reference in New Issue
Block a user