aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-08-19 17:13:29 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2025-08-19 17:13:29 +0000
commit24df2bc9d99b224768370e02dd87dd5e2641f206 (patch)
tree63ec0d2dd5935d771b86569d657679bd53faaf9b /doc
parentfa0bd6b8859c94d34ec6f7820544a54357d2a3bb (diff)
downloads6-linux-init-24df2bc9d99b224768370e02dd87dd5e2641f206.tar.gz
Prepare for 1.2.0.0. env_store now needs to be read with chomp.
Diffstat (limited to 'doc')
-rw-r--r--doc/index.html14
-rw-r--r--doc/s6-linux-init-maker.html2
-rw-r--r--doc/upgrade.html24
3 files changed, 32 insertions, 8 deletions
diff --git a/doc/index.html b/doc/index.html
index 51081c5..ff653e5 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -73,16 +73,16 @@ kernel command line </li>
<li> A Linux-based system with a standard C development environment </li>
<li> GNU make, version 3.81 or later </li>
<li> <a href="//skarnet.org/software/skalibs/">skalibs</a> version
-2.14.4.0 or later. It's a build-time requirement. It's also a run-time
+2.14.5.0 or later. It's a build-time requirement. It's also a run-time
requirement (for <a href="s6-linux-init-maker.html">s6-linux-init-maker</a>)
as well as a boot-time requirement (i.e. a run-time requirement for the
programs used when you boot a system created with
<a href="s6-linux-init-maker.html">s6-linux-init-maker</a>) if you link
against the shared version of the skalibs library. </li>
<li> <a href="//skarnet.org/software/execline/">execline</a> version
-2.9.7.0 or later. It is a build-time and boot-time requirement. </li>
+2.9.7.1 or later. It is a build-time and boot-time requirement. </li>
<li> <a href="//skarnet.org/software/s6/">s6</a> version
-2.13.2.0 or later. It is a build-time and boot-time requirement. </li>
+2.13.3.0 or later. It is a build-time and boot-time requirement. </li>
</ul>
<p>
@@ -93,10 +93,10 @@ against the shared version of the skalibs library. </li>
<li> If you're using <a href="https://www.musl-libc.org/">musl</a> and
want nsswitch-like functionality:
<a href="//skarnet.org/software/nsss/">nsss</a> version
-0.2.1.0 or later (build-time and boot-time) </li>
+0.2.1.1 or later (build-time and boot-time) </li>
<li> If you want secure utmp functionality:
<a href="//skarnet.org/software/utmps/">utmps</a> version
-0.1.3.0 or later (build-time and boot-time) </li>
+0.1.3.2 or later (build-time and boot-time) </li>
</ul>
<h3> Licensing </h3>
@@ -110,8 +110,8 @@ want nsswitch-like functionality:
<ul>
<li> The current released version of s6-linux-init is
-<a href="s6-linux-init-1.1.3.0.tar.gz">1.1.3.0</a>.
-You can access its checksum <a href="s6-linux-init-1.1.3.0.tar.gz.sha256">here</a>. </li>
+<a href="s6-linux-init-1.2.0.0.tar.gz">1.2.0.0</a>.
+You can access its checksum <a href="s6-linux-init-1.2.0.0.tar.gz.sha256">here</a>. </li>
<li> Alternatively, you can checkout a copy of the
<a href="//git.skarnet.org/cgi-bin/cgit.cgi/s6-linux-init/">s6-linux-init
git repository</a>:
diff --git a/doc/s6-linux-init-maker.html b/doc/s6-linux-init-maker.html
index afbe8cd..fb2880d 100644
--- a/doc/s6-linux-init-maker.html
+++ b/doc/s6-linux-init-maker.html
@@ -249,7 +249,7 @@ needed at a later time; in that case, giving the <tt>-s</tt> option
to <tt>s6-linux-init-maker</tt> makes stage 1 init dump the "kernel" environment
variables into the <em>env_store</em> directory (under a format that is
later readable with
-<a href="//skarnet.org/software/s6/s6-envdir.html">s6-envdir -fn</a>)
+<a href="//skarnet.org/software/s6/s6-envdir.html">s6-envdir -f</a>)
before erasing them. <em>env_store</em> should obviously be
a writable directory, so it should be located under <tt>/run</tt>
(or your chosen tmpfsdir)!
diff --git a/doc/upgrade.html b/doc/upgrade.html
index 265367b..6562cd6 100644
--- a/doc/upgrade.html
+++ b/doc/upgrade.html
@@ -18,6 +18,30 @@
<h1> What has changed in s6-linux-init </h1>
+<h2> in 1.2.0.0 </h2>
+
+<ul>
+ <li> <a href="//skarnet.org/software/skalibs/">skalibs</a>
+dependency bumped to 2.14.5.0. </li>
+ <li> <a href="//skarnet.org/software/nsss/">nsss</a>
+optional dependency bumped to 0.2.1.1. </li>
+ <li> <a href="//skarnet.org/software/utmps/">utmps</a>
+optional dependency bumped to 0.1.3.2. </li>
+ <li> <a href="//skarnet.org/software/execline/">execline</a>
+dependency bumped to 2.9.7.1. </li>
+ <li> <a href="//skarnet.org/software/s6/">s6</a>
+dependency bumped to 2.13.3.0. </li>
+ <li> The format of the envdir created by the <tt>-s</tt> option to
+<a href="s6-linux-init.html">s6-linux-init</a> (and indirectly
+<a href="s6-linux-init-maker.html">s6-linux-init-maker</a>) has
+changed: it is now meant to be read by
+<a href="//skarnet.org/software/s6/s6-envdir.html">s6-envdir -f</a>,
+without the <tt>-n</tt> option. The change should normally not
+impact you, but if you're using the <tt>-s</tt> functionality, be
+aware of it the next time you run
+<a href="s6-linux-init-maker.html">s6-linux-init-maker</a>. </li>
+</ul>
+
<h2> in 1.1.3.0 </h2>
<ul>