Guest User

Untitled

a guest
Jan 22nd, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.43 KB | None | 0 0
  1. makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
  2.  
  3. options         SCHED_ULE               # ULE scheduler
  4. options         PREEMPTION              # Enable kernel thread preemption
  5. options         INET                    # InterNETworking
  6. options         INET6                   # IPv6 communications protocols
  7. options         SCTP                    # Stream Control Transmission Protocol
  8. options         FFS                     # Berkeley Fast Filesystem
  9. options         SOFTUPDATES             # Enable FFS soft updates support
  10. options         UFS_ACL                 # Support for access control lists
  11. options         UFS_DIRHASH             # Improve performance on big directories
  12. options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
  13. options         MD_ROOT                 # MD is a potential root device
  14. options         NFSCLIENT               # Network Filesystem Client
  15. options         NFSSERVER               # Network Filesystem Server
  16. options         NFSLOCKD                # Network Lock Manager
  17. options         NFS_ROOT                # NFS usable as /, requires NFSCLIENT
  18. options         MSDOSFS                 # MSDOS Filesystem
  19. options         CD9660                  # ISO 9660 Filesystem
  20. options         PROCFS                  # Process filesystem (requires PSEUDOFS)
  21. options         PSEUDOFS                # Pseudo-filesystem framework
  22. options         GEOM_PART_GPT           # GUID Partition Tables.
  23. options         GEOM_LABEL              # Provides labelization
  24. options         COMPAT_43TTY            # BSD 4.3 TTY compat (sgtty)
  25. options         COMPAT_FREEBSD32        # Compatible with i386 binaries
  26. options         COMPAT_FREEBSD4         # Compatible with FreeBSD4
  27. options         COMPAT_FREEBSD5         # Compatible with FreeBSD5
  28. options         COMPAT_FREEBSD6         # Compatible with FreeBSD6
  29. options         COMPAT_FREEBSD7         # Compatible with FreeBSD7
  30. options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
  31. options         KTRACE                  # ktrace(1) support
  32. options         STACK                   # stack(9) support
  33. options         SYSVSHM                 # SYSV-style shared memory
  34. options         SYSVMSG                 # SYSV-style message queues
  35. options         SYSVSEM                 # SYSV-style semaphores
  36. options         P1003_1B_SEMAPHORES     # POSIX-style semaphores
  37. options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
  38. options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
  39. options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
  40. options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
  41. options         AUDIT                   # Security event auditing
  42. options         MAC                     # TrustedBSD MAC Framework
  43. options         FLOWTABLE               # per-cpu routing cache
  44. options         KDTRACE_FRAME           # Ensure frames are compiled in
  45. options         KDTRACE_HOOKS           # Kernel DTrace hooks
  46. options         INCLUDE_CONFIG_FILE     # Include this file in kernel
  47. options         SYSCTL_DEBUG
  48. options         KDB                     # Kernel debugger related code
  49. options         KDB_TRACE               # Print a stack trace for a panic
  50. options         DIAGNOSTIC
  51. options         STACK
  52. options         TCPDEBUG
  53. options         NULLFS                  #NULL filesystem
  54. options         AUDIT
Add Comment
Please, Sign In to add comment