aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/common/devopen.c
Commit message (Collapse)AuthorAgeFilesLines
* Show info about net devices in loader's 'lsdev' command. While there fix style.Rafal Jaworowski2008-09-031-20/+21
| | | | Notes: svn path=/head/; revision=182731
* o Make sure to clear f->f_devdata if d_dev->dv_open() fails. ItMarcel Moolenaar2006-11-021-13/+18
| | | | | | | | would otherwise cause devclose() to free() the memory again. o Refactor devopen() so that it's more readable. Notes: svn path=/head/; revision=163891
* Use __FBSDID().David E. O'Brien2003-08-251-2/+2
| | | | | | | Also some minor style cleanups. Notes: svn path=/head/; revision=119483
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* * Add old UFS compatibility code to alpha/boot1.Doug Rabson1998-09-261-2/+2
| | | | | | | | | * Fix a raft of warnings, printf and otherwise. * Allocate the correct amount in mod_searchmodule to prevent an overflow. * Fix the makefiles so they work outside my home directory (oops). Notes: svn path=/head/; revision=39673
* This is the new unified bootstrap, sometimes known previously as theMike Smith1998-08-211-0/+61
'three-stage' bootstrap. There are a number of caveats with the code in its current state: - The i386 bootstrap only supports booting from a floppy. - The kernel and kld do not yet know how to deal with the extended information and module summary passed in. - PnP-based autodetection and demand loading of modules is not implemented. - i386 ELF kernel loading is not ready yet. - The i386 bootstrap is loaded via an ugly blockmap. On the alpha, both net- and disk-booting (SRM console machines only) is supported. No blockmaps are used by this code. Obtained from: Parts from the NetBSD/i386 standalone bootstrap. Notes: svn path=/cvs2svn/branches/MSMITH/; revision=38465