Changeset 889d6c4


Ignore:
Timestamp:
08/21/2022 05:50:54 PM (20 months ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/soup3, xry111/xf86-video-removal
Children:
72f9881e
Parents:
7f17762
Message:

Fix mkinitramfs script

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r7f17762 r889d6c4  
    4343    -->
    4444    <listitem>
     45      <para>August 21th, 2022</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[thomas] - Fix mkinitramfs script to include missing files. Fixes
     49          <ulink url="&blfs-ticket-root;16929">#16929</ulink>.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
    4554      <para>August 20th, 2022</para>
    4655      <itemizedlist>
  • postlfs/filesystems/initramfs.xml

    r7f17762 r889d6c4  
    247247# Install the kernel modules if requested
    248248if [ -n "$KERNEL_VERSION" ]; then
    249   find                                                                        \
     249  find \
    250250     /usr/lib/modules/$KERNEL_VERSION/kernel/{crypto,fs,lib}                      \
    251      /usr/lib/modules/$KERNEL_VERSION/kernel/drivers/{block,ata,md,firewire}      \
     251     /usr/lib/modules/$KERNEL_VERSION/kernel/drivers/{block,ata,nvme,md,firewire} \
    252252     /usr/lib/modules/$KERNEL_VERSION/kernel/drivers/{scsi,message,pcmcia,virtio} \
    253253     /usr/lib/modules/$KERNEL_VERSION/kernel/drivers/usb/{host,storage}           \
    254254     -type f 2&gt; /dev/null | cpio --make-directories -p --quiet $WDIR
    255255
    256   cp /usr/lib/modules/$KERNEL_VERSION/modules.{builtin,order}                     \
     256  cp /usr/lib/modules/$KERNEL_VERSION/modules.{builtin,order} \
    257257            $WDIR/usr/lib/modules/$KERNEL_VERSION
     258  if [ -f /usr/lib/modules/$KERNEL_VERSION/modules.builtin.modinfo ]; then
     259    cp /usr/lib/modules/$KERNEL_VERSION/modules.builtin.modinfo \
     260            $WDIR/usr/lib/modules/$KERNEL_VERSION
     261  fi
    258262
    259263  depmod -b $WDIR $KERNEL_VERSION
Note: See TracChangeset for help on using the changeset viewer.