boot-options

来自「讲述linux的初始化过程」· 代码 · 共 68 行

TXT
68
字号
/* -*- auto-fill -*-                                                         */		Device File System (devfs) Boot Options		Richard Gooch <rgooch@atnf.csiro.au>			      30-APR-2000When CONFIG_DEVFS_DEBUG is enabled, you can pass several boot optionsto the kernel to debug devfs. The boot options are prefixed by"devfs=", and are separated by commas. Spaces are not allowed. Thesyntax looks like this:devfs=<option1>,<option2>,<option3>and so on. For example, if you wanted to turn on debugging for moduleload requests and device registration, you would do:devfs=dmod,dregDebugging Options=================These requires CONFIG_DEVFS_DEBUG to be enabled.Note that all debugging options have 'd' as the first character. Bydefault all options are off. All debugging output is sent to thekernel logs. The debugging options do not take effect until the devfsversion message appears (just prior to the root filesystem beingmounted).These are the options:dmod		print module load requests to <request_module>dreg		print device register requests to <devfs_register>dunreg		print device unregister requests to <devfs_unregister>dchange		print device change requests to <devfs_set_flags>dilookup	print inode lookup requestsdiread		print inode readsdiunlink	print inode unlinksdiwrite		print inode writesdimknod		print calls to mknod(2)dall		some debugging turned onOther Options=============These control the default behaviour of devfs. The options are:show		show unregistered devices by defaultmount		mount devfs onto /dev at boot timenomount		do not mount devfs onto /dev at boot timeonly		disable non-devfs device nodes for devfs-capable drivers

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?