diff options
author | pjd <pjd@FreeBSD.org> | 2004-09-24 09:33:48 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2004-09-24 09:33:48 +0000 |
commit | 8d7ed450e147b4bd6bbad520d7c7431566e24106 (patch) | |
tree | 0fc1ab7fdc1c851da83ce93e3e1c60e1df51e435 /sys/boot | |
parent | db95a4521503b02bb83191d9efc9aa46a8a649bf (diff) | |
download | FreeBSD-src-8d7ed450e147b4bd6bbad520d7c7431566e24106.zip FreeBSD-src-8d7ed450e147b4bd6bbad520d7c7431566e24106.tar.gz |
Document vfs.root.mountdelay value.
Reminded by: ru
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/common/help.common | 7 | ||||
-rw-r--r-- | sys/boot/forth/loader.conf | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/sys/boot/common/help.common b/sys/boot/common/help.common index 6b148c1..617d035 100644 --- a/sys/boot/common/help.common +++ b/sys/boot/common/help.common @@ -285,6 +285,13 @@ value is 1 (default), but this may cause problems with some peripherals. Set to 0 to disable. + set vfs.root.mountdelay=<value> + + Delay root partition mount if there is no required provider. + + value is a maximum number of seconds to wait for provider to + show up (default is 5 seconds). + ################################################################################ # Tshow DShow the values of variables diff --git a/sys/boot/forth/loader.conf b/sys/boot/forth/loader.conf index d5516d9..9460886 100644 --- a/sys/boot/forth/loader.conf +++ b/sys/boot/forth/loader.conf @@ -99,6 +99,8 @@ module_path="/boot/modules" # Set the module search path #net.inet.tcp.tcbhashsize="" # Set the value of TCBHASHSIZE #vfs.root.mountfrom="" # Specify root partition in a way the # kernel understands +#vfs.root.mountdelay="5" # Delay root partition mount if there is no + # required provider #vm.kmem_size="" # Sets the size of kernel memory (bytes) #debug.ktr.cpumask="0xf" # Bitmask of CPUs to enable KTR on #debug.ktr.mask="0x1200" # Bitmask of KTR events to enable |