Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the magic way of configuring NFS backed swap. | phk | 2003-08-15 | 1 | -2/+0 |
| | | | | | | | | | | | | | This code dates back to the very first diskless support on FreeBSD, back when swapon(8) couldn't simply be run on a NFS backed file. Suggested replacement command sequence on the client: dd if=/dev/zero of=/swapfile bs=1k count=1 oseek=100000 swapon /swapfile rm -f /swapfile For whatever value of 100000 you want. | ||||
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -1/+3 |
| | |||||
* | SMP locking for ifnet list. | hsu | 2002-12-22 | 1 | -1/+5 |
| | |||||
* | Moved nfs_diskless setup code from autoconf.c to nfsclient/nfs_diskless.c | jake | 2002-09-22 | 1 | -0/+232 |
so that it is MI. Allow nfs_mountroot to return an error if the nfs_diskless struct is not valid, rather than panicing later on. Call nfs_setup_diskless() from nfs_mountroot if NFS_ROOT is defined, like bootpc_init(). Removed legacy root mount support for sparc64, and enabled NFS_ROOT by default. |