#
088cc7d2 |
| 08-Jun-2024 |
Alexander Ziaee <concussious@runbox.com> |
man filesystems: fix more xrefs after move to s4
Fixes: 1a720cbec513 Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/1282
|
Revision tags: release/14.1.0 |
|
#
bb411657 |
| 20-Mar-2024 |
Jose Luis Duran <jlduran@gmail.com> |
rc.initdiskless: Disable soft-updates in mdmfs (again)
Re-apply the -S switch to disable soft-updates in memory disks (commit 8b1292ac5219). This might be beneficial when tmpfs(5) is not present in
rc.initdiskless: Disable soft-updates in mdmfs (again)
Re-apply the -S switch to disable soft-updates in memory disks (commit 8b1292ac5219). This might be beneficial when tmpfs(5) is not present in the kernel, as this can cause mdmfs(8)'s auto keyword to fallback to using md(4).
PR: 85558 MFC after: 1 week Reviewed by: imp, emaste, brooks Differential Revision: https://reviews.freebsd.org/D43242
show more ...
|
Revision tags: release/13.3.0 |
|
#
a04ca1c2 |
| 31-Dec-2023 |
Jose Luis Duran <jlduran@gmail.com> |
rc.initdiskless: Remove bogus plus sign
Reviewed by: imp, dab Fixes: Fixes: 93b7818226cf ("libexec/rc/rc.initdiskless: make tar's path flexible") Differential Revision: https://reviews.freebsd.org/
rc.initdiskless: Remove bogus plus sign
Reviewed by: imp, dab Fixes: Fixes: 93b7818226cf ("libexec/rc/rc.initdiskless: make tar's path flexible") Differential Revision: https://reviews.freebsd.org/D43241
show more ...
|
#
93b78182 |
| 24-Nov-2023 |
Cheng Cui <cc@FreeBSD.org> |
libexec/rc/rc.initdiskless: make tar's path flexible
Summary: PR: 274977 Reviewed by: rgrimes,imp Approved by: rgrimes MFC after: 1 month
|
Revision tags: release/14.0.0 |
|
#
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
Revision tags: release/13.2.0 |
|
#
30985d19 |
| 19-Jan-2023 |
Gordon Bergling <gbe@FreeBSD.org> |
rc.initdiskless: Fix a typo in a comment
- s/attemping/attempting/
MFC after:5 days
|
Revision tags: release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0 |
|
#
7648bc9f |
| 13-May-2019 |
Alan Somers <asomers@FreeBSD.org> |
MFHead @347527
Sponsored by: The FreeBSD Foundation
|
#
26e8ed62 |
| 26-Apr-2019 |
Lev A. Serebryakov <lev@FreeBSD.org> |
Make mdmfs verbose if diskless boot is verbose.
Approved by: ian@ Differential Revision: D17104
|
Revision tags: release/12.0.0 |
|
#
c6879c6c |
| 23-Oct-2018 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r339015 through r339669.
|
#
707a657c |
| 20-Oct-2018 |
Eugene Grosbein <eugen@FreeBSD.org> |
rc.initdiskless: fix commentary grammar after r339465
MFC after: 1 month
|
#
b4d24263 |
| 20-Oct-2018 |
Eugene Grosbein <eugen@FreeBSD.org> |
rc.initdiskless: add support for auxiliary NVRAM.
Currently, rc.inidiskless assumes that local system configuration changes are kept in some mountable file system. For example, nanobsd uses dedicate
rc.initdiskless: add support for auxiliary NVRAM.
Currently, rc.inidiskless assumes that local system configuration changes are kept in some mountable file system. For example, nanobsd uses dedicated partition mounted as /cfg for this.
However, small embedded devices like MIPS routers may have no enough flash space to keep full-blown file system but have only one or couple small flash blocks to keep persistent local configuration overrides.
This change extends rc.initdiskless and introduces ability to run auxiliary command /conf/T/M/extract that is supposed to extract configuration overrides from such local storage.
For example, the command /conf/default/etc/extract may contain something like:
cd "$1" && bsdcpio --quiet -idu < /dev/map/cfg
bsdcpio command extracts compressed archive from the storage to /etc assuming the storage is exposed by the kernel as /dev/map/cfg to userland.
PR: 204215 MFC after: 1 month
show more ...
|
#
0696600c |
| 17-Oct-2018 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
Move the rc framework out of sbin/init into libexec/rc.
The reasons for this are forward looking to pkgbase: * /sbin/init is a special binary; try not to replace it with every package update bec
Move the rc framework out of sbin/init into libexec/rc.
The reasons for this are forward looking to pkgbase: * /sbin/init is a special binary; try not to replace it with every package update because an rc script was touched. (a follow-up commit will make init its own package) * having rc in its own place will allow more easy replacement of the rc framework with alternatives, such as openrc.
Discussed with: brd (during BSDCam), kmoore Requested by: cem, bz PR: 231522 Approved by: re (gjb)
show more ...
|