diff options
author | imp <imp@FreeBSD.org> | 1999-12-06 04:21:50 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1999-12-06 04:21:50 +0000 |
commit | 5851b69ff706eaa8e3a487bdfbbf3fe0177ed46a (patch) | |
tree | 069a696b850378750e5e26272197e4e03323590a /UPDATING | |
parent | 9cbefa7e7a5f490b1f8620bb98cfdae1ca15d6d4 (diff) | |
download | FreeBSD-src-5851b69ff706eaa8e3a487bdfbbf3fe0177ed46a.zip FreeBSD-src-5851b69ff706eaa8e3a487bdfbbf3fe0177ed46a.tar.gz |
bad144 elimination
bdev removal and its required actions (MAKEDEV)
sd -> da
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 36 |
1 files changed, 34 insertions, 2 deletions
@@ -4,8 +4,40 @@ This file is maintained by imp@village.org. Please send new entries directly to him. See end of file for further details. 19991205: - /dev needs updating, copy MAKEDEV from src/etc to /dev and - run it to recreate all diskdevices. + Raw devices are going away. You will need to update your /dev + tree with a fresh copy of MAKEDEV for things to always work in + the future. fsck is unable to cope with dirty file systems + after this change, so it may work for you or it may not. + + MAKEDEV should be copied from src/etc/MAKEDEV to /dev before + starting the following: + + For N in the list of disks + MAKEDEV N # eg wd0 + for M in the list of slices + MAKEDEV NsMa # eg wd0s1a + + *** All uses of block devices must be converted to char devices. + *** Likely the only thing impacted is dumpdev in /etc/rc.conf + +19991204: + Support for the old 'sd' device names has been removed in + favor of 'da'. Please update your /etc/fstab, /etc/rc.conf + and any other places you might have sd names cached. + Generally these changes are as simple as s=/dev/sd=/dev/da=g, + but be careful to make sure that things are really that + simple. You may also need to create /dev entries for the da + devices as well. + + MAKEDEV should be copied from src/etc/MAKEDEV to /dev before + starting the following: + + For N in the list of da disks on your system + MAKEDEV daN + for M in the list of slices + MAKEDEV daNsMa +19991203: + BAD144 support has been removed. Cope or replace the hardware. 19991126: MFS_ROOT and MFS_ROOT_SIZE are gone, replaced by MD_ROOT and |