Difference between revisions of "/boot/"
From GhostBSD Wiki
Line 1: | Line 1: | ||
{{Welcome}} | {{Welcome}} | ||
+ | |||
+ | ==Introduction== | ||
+ | |||
+ | The directory /boot/ contains all important programs and configuration files used during operating system bootstrap. | ||
+ | |||
+ | ==Content== | ||
{|class="wikitable" style="width:96.5%;background:#FFFFFF; border:2px solid #008000;text-align:left;padding: 10px" | {|class="wikitable" style="width:96.5%;background:#FFFFFF; border:2px solid #008000;text-align:left;padding: 10px" | ||
− | |||
|- | |- | ||
! scope="col" style="width: 100px;"|'''Directory''' | ! scope="col" style="width: 100px;"|'''Directory''' | ||
Line 32: | Line 37: | ||
|- | |- | ||
|overlays/ | |overlays/ | ||
− | |Compiled flattened device tree (FDT) overlays; see [https://www.freebsd.org/cgi/man.cgi?query=fdt&sektion=4&apropos=0&manpath=FreeBSD+12.1-RELEASE+and+Ports fdt(4)] and [https://www.freebsd.org/cgi/man.cgi?query=dtc&sektion=1&apropos=0&manpath=FreeBSD+12.1-RELEASE+and+Ports dtc(1)] | + | |Compiled flattened device tree (FDT) overlays; see [https://www.freebsd.org/cgi/man.cgi?query=fdt&sektion=4&apropos=0&manpath=FreeBSD+12.1-RELEASE+and+Ports fdt(4)] and [https://www.freebsd.org/cgi/man.cgi?query=dtc&sektion=1&apropos=0&manpath=FreeBSD+12.1-RELEASE+and+Ports dtc(1)] - not on GhostBSD |
|- | |- | ||
|zfs/ | |zfs/ | ||
Line 40: | Line 45: | ||
|} | |} | ||
− | |||
− | |||
− | |||
Revision as of 07:37, 30 January 2020
Welcome to /boot/. |
Introduction
The directory /boot/ contains all important programs and configuration files used during operating system bootstrap.
Content
Directory | Description |
---|---|
defaults/ | default bootstrapping configuration files; see loader.conf(5) |
file: /boot/defaults/loader.conf | default settings -- do not change this file. |
file: /boot/loader.conf | user defined settings |
file: /boot/loader.conf.local | machine-specific settings for sites with a common loader.conf.
|
dtb/ | Compiled flattened device tree (FDT) files; see fdt(4) and dtc(1) |
firmware/ | loadable kernel modules containing binary firmware for hardware that needs firmware downloaded to it to function |
kernel/ | pure kernel executable (the operating system loaded into memory at boot time) and kernel modules |
modules/ | third-party loadable kernel modules; see kldstat(8) |
overlays/ | Compiled flattened device tree (FDT) overlays; see fdt(4) and dtc(1) - not on GhostBSD |
zfs/ | zfs(8) zpool cache files |
Back to Directory Structure |