mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
kmod: link to openssl
This commit is contained in:
parent
ab8c166cbb
commit
f5923aa8b4
@ -1557,7 +1557,7 @@
|
|||||||
<segtitle>&dependencies;</segtitle>
|
<segtitle>&dependencies;</segtitle>
|
||||||
<seglistitem>
|
<seglistitem>
|
||||||
<seg>Bash, Binutils, Bison, Coreutils, Flex, GCC, Gettext, Glibc,
|
<seg>Bash, Binutils, Bison, Coreutils, Flex, GCC, Gettext, Glibc,
|
||||||
Gzip, Make, Pkg-config, Sed, Xz, and Zlib</seg>
|
Gzip, Make, OpenSSL, Pkg-config, Sed, Xz, and Zlib</seg>
|
||||||
</seglistitem>
|
</seglistitem>
|
||||||
</segmentedlist>
|
</segmentedlist>
|
||||||
|
|
||||||
@ -2332,7 +2332,7 @@
|
|||||||
<segmentedlist id="openssl-before">
|
<segmentedlist id="openssl-before">
|
||||||
<segtitle>&before;</segtitle>
|
<segtitle>&before;</segtitle>
|
||||||
<seglistitem>
|
<seglistitem>
|
||||||
<seg>Coreutils and Linux</seg>
|
<seg>Coreutils, Kmod, and Linux</seg>
|
||||||
</seglistitem>
|
</seglistitem>
|
||||||
</segmentedlist>
|
</segmentedlist>
|
||||||
|
|
||||||
|
@ -42,6 +42,10 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>2022-02-04</para>
|
<para>2022-02-04</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>[xry111] - Move OpenSSL before Kmod and enable OpenSSL
|
||||||
|
for Kmod build.</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>[xry111] - Update to gdbm-1.23. Fixes
|
<para>[xry111] - Update to gdbm-1.23. Fixes
|
||||||
<ulink url="&lfs-ticket-root;5000">#5000</ulink>.</para>
|
<ulink url="&lfs-ticket-root;5000">#5000</ulink>.</para>
|
||||||
|
@ -58,10 +58,10 @@
|
|||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="intltool.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="intltool.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="autoconf.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="autoconf.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="automake.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="automake.xml"/>
|
||||||
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="openssl.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="kmod.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="kmod.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libelf.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libelf.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libffi.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libffi.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="openssl.xml"/>
|
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ninja.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ninja.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="meson.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="meson.xml"/>
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
|
|
||||||
<screen><userinput remap="configure">./configure --prefix=/usr \
|
<screen><userinput remap="configure">./configure --prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
|
--with-openssl \
|
||||||
--with-xz \
|
--with-xz \
|
||||||
--with-zstd \
|
--with-zstd \
|
||||||
--with-zlib</userinput></screen>
|
--with-zlib</userinput></screen>
|
||||||
@ -53,7 +54,21 @@
|
|||||||
<title>The meaning of the configure options:</title>
|
<title>The meaning of the configure options:</title>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><parameter>--with-xz, --with-zlib, --with-zstd</parameter></term>
|
<term>
|
||||||
|
<parameter>--with-openssl</parameter>
|
||||||
|
</term>
|
||||||
|
<listitem>
|
||||||
|
<para>This option enables Kmod to handle PKCS7 signatures for
|
||||||
|
kernel modules.</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>
|
||||||
|
<parameter>--with-xz</parameter>,
|
||||||
|
<parameter>--with-zlib</parameter>, and
|
||||||
|
<parameter>--with-zstd</parameter>
|
||||||
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>These options enable Kmod to handle compressed kernel modules.</para>
|
<para>These options enable Kmod to handle compressed kernel modules.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
Loading…
Reference in New Issue
Block a user