boot-options 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* -*- auto-fill -*- */
  2. Device File System (devfs) Boot Options
  3. Richard Gooch <rgooch@atnf.csiro.au>
  4. 18-AUG-2001
  5. When CONFIG_DEVFS_DEBUG is enabled, you can pass several boot options
  6. to the kernel to debug devfs. The boot options are prefixed by
  7. "devfs=", and are separated by commas. Spaces are not allowed. The
  8. syntax looks like this:
  9. devfs=<option1>,<option2>,<option3>
  10. and so on. For example, if you wanted to turn on debugging for module
  11. load requests and device registration, you would do:
  12. devfs=dmod,dreg
  13. You may prefix "no" to any option. This will invert the option.
  14. Debugging Options
  15. =================
  16. These requires CONFIG_DEVFS_DEBUG to be enabled.
  17. Note that all debugging options have 'd' as the first character. By
  18. default all options are off. All debugging output is sent to the
  19. kernel logs. The debugging options do not take effect until the devfs
  20. version message appears (just prior to the root filesystem being
  21. mounted).
  22. These are the options:
  23. dmod print module load requests to <request_module>
  24. dreg print device register requests to <devfs_register>
  25. dunreg print device unregister requests to <devfs_unregister>
  26. dchange print device change requests to <devfs_set_flags>
  27. dilookup print inode lookup requests
  28. diget print VFS inode allocations
  29. diunlink print inode unlinks
  30. dichange print inode changes
  31. dimknod print calls to mknod(2)
  32. dall some debugging turned on
  33. Other Options
  34. =============
  35. These control the default behaviour of devfs. The options are:
  36. mount mount devfs onto /dev at boot time
  37. only disable non-devfs device nodes for devfs-capable drivers