Change wfd major block device to 1 as part of the effort to make wfd's
bootable without a big increase in boot2's size.
This commit is contained in:
parent
2e1e3ab060
commit
186a666128
@ -1,4 +1,4 @@
|
||||
$Id: majors.i386,v 1.25 1998/01/26 06:11:14 julian Exp $
|
||||
$Id: majors.i386,v 1.26 1998/02/13 13:00:02 phk Exp $
|
||||
|
||||
Hopefully, this list will one day be obsoleted by DEVFS, but for now
|
||||
this is the current allocation of device major numbers.
|
||||
@ -14,7 +14,7 @@ The most "complete" version of this will be the one in FreeBSD-current.
|
||||
|
||||
blkdev name comments
|
||||
0 wd ST506 disk controller (with IDE extensions)
|
||||
1 ?? unassigned?
|
||||
1 wfd ATAPI Floppy client of "ata"
|
||||
2 fd floppy disk
|
||||
3 wt QIC-02/36 tape
|
||||
4 sd SCSI "disk" type
|
||||
@ -37,7 +37,6 @@ blkdev name comments
|
||||
21 ccd concatenated disk
|
||||
22 gd Geometry disk.
|
||||
23 worm SCSI "worm type"
|
||||
24 wfd ATAPI Floppy client of "ata"
|
||||
chrdev name comments
|
||||
0 cn console
|
||||
1 ctty /dev/tty
|
||||
|
@ -1,4 +1,4 @@
|
||||
$Id: majors.i386,v 1.25 1998/01/26 06:11:14 julian Exp $
|
||||
$Id: majors.i386,v 1.26 1998/02/13 13:00:02 phk Exp $
|
||||
|
||||
Hopefully, this list will one day be obsoleted by DEVFS, but for now
|
||||
this is the current allocation of device major numbers.
|
||||
@ -14,7 +14,7 @@ The most "complete" version of this will be the one in FreeBSD-current.
|
||||
|
||||
blkdev name comments
|
||||
0 wd ST506 disk controller (with IDE extensions)
|
||||
1 ?? unassigned?
|
||||
1 wfd ATAPI Floppy client of "ata"
|
||||
2 fd floppy disk
|
||||
3 wt QIC-02/36 tape
|
||||
4 sd SCSI "disk" type
|
||||
@ -37,7 +37,6 @@ blkdev name comments
|
||||
21 ccd concatenated disk
|
||||
22 gd Geometry disk.
|
||||
23 worm SCSI "worm type"
|
||||
24 wfd ATAPI Floppy client of "ata"
|
||||
chrdev name comments
|
||||
0 cn console
|
||||
1 ctty /dev/tty
|
||||
|
@ -23,7 +23,7 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: wfd.c,v 1.6 1998/02/01 21:57:49 bde Exp $
|
||||
* $Id: wfd.c,v 1.7 1998/02/09 06:08:44 eivind Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -58,7 +58,7 @@ static d_ioctl_t wfdioctl;
|
||||
static d_strategy_t wfdstrategy;
|
||||
|
||||
#define CDEV_MAJOR 87
|
||||
#define BDEV_MAJOR 24
|
||||
#define BDEV_MAJOR 1
|
||||
static struct cdevsw wfd_cdevsw;
|
||||
static struct bdevsw wfd_bdevsw =
|
||||
{ wfdbopen, wfdbclose, wfdstrategy, wfdioctl,
|
||||
|
@ -23,7 +23,7 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: wfd.c,v 1.6 1998/02/01 21:57:49 bde Exp $
|
||||
* $Id: wfd.c,v 1.7 1998/02/09 06:08:44 eivind Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -58,7 +58,7 @@ static d_ioctl_t wfdioctl;
|
||||
static d_strategy_t wfdstrategy;
|
||||
|
||||
#define CDEV_MAJOR 87
|
||||
#define BDEV_MAJOR 24
|
||||
#define BDEV_MAJOR 1
|
||||
static struct cdevsw wfd_cdevsw;
|
||||
static struct bdevsw wfd_bdevsw =
|
||||
{ wfdbopen, wfdbclose, wfdstrategy, wfdioctl,
|
||||
|
Loading…
Reference in New Issue
Block a user