Changeset 8b6d8b6


Ignore:
Timestamp:
11/28/2017 06:10:14 PM (6 years ago)
Author:
Thomas Trepl <thomas@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
47515cfe
Parents:
d3f7318
Message:

Version 2.9.1, fix #10078
Add files to mkinitramfs

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19547 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rd3f7318 r8b6d8b6  
    4343-->
    4444    <listitem>
     45      <para>November 28th, 2017</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[thomas] - Update to nano-2.9.1. Fixes
     49          <ulink url="&blfs-ticket-root;10078">#10078</ulink>.</para>
     50        </listitem>
     51        <listitem>
     52          <para>[thomas] - Add readlink and basename to mkinitramfs.
     53          Required in some udev rules.</para>
     54        </listitem>
     55      </itemizedlist>
     56    </listitem>
     57
     58    <listitem>
    4559      <para>November 27th, 2017</para>
    4660      <itemizedlist>
  • packages.ent

    rd3f7318 r8b6d8b6  
    7171<!ENTITY joe-version                  "4.5">
    7272<!ENTITY juffed-version               "0.10.r71.gc3c1a3f">
    73 <!ENTITY nano-version                 "2.9.0">
     73<!ENTITY nano-version                 "2.9.1">
    7474<!ENTITY vim-version                  "8.0.586">
    7575<!ENTITY vim-majmin                   "80">
  • postlfs/editors/nano.xml

    rd3f7318 r8b6d8b6  
    88  <!ENTITY nano-download-http "https://www.nano-editor.org/dist/v2.9/nano-&nano-version;.tar.xz">
    99  <!ENTITY nano-download-ftp  " ">
    10   <!ENTITY nano-md5sum        "a7f0a70fea21431745aa07ee2c5c8d3a">
     10  <!ENTITY nano-md5sum        "ecb29612c30996d0d1139b47d3a413ba">
    1111  <!ENTITY nano-size          "1.4 MB">
    1212  <!ENTITY nano-buildsize     "17 MB">
     
    167167set suspend</literal></screen>
    168168
    169       <para>You probably want to create the directory
    170         <filename class="directory">$HOME/.local/share/nano</filename>.
    171         This is where <application>Nano</application> will store search
    172         and position log files. Required only if you have either historylog
    173         and/or positionlog enabled. When using those settings in a system-wide
    174         configuration, you may want to update
    175         <filename class="directory">/etc/skel</filename> to make the
    176         directory available for all (new) users.
     169      <para>If you want <application>Nano</application> to store
     170        search and position log files, make sure that the directory
     171        <filename class="directory">$HOME/.local/share</filename> exists.
     172        When using those settings in a system-wide configuration, you
     173        should update <filename class="directory">/etc/skel</filename> to
     174        make the directory available for all (new) users.
    177175      </para>
    178176
  • postlfs/filesystems/initramfs.xml

    rd3f7318 r8b6d8b6  
    9494binfiles="sh cat cp dd killall ls mkdir mknod mount "
    9595binfiles="$binfiles umount sed sleep ln rm uname"
     96binfiles="$binfiles readlink basename"
    9697
    9798# Systemd installs udevadm in /bin. Other udev implementations have it in /sbin
     
    114115
    115116# Create base directory structure
    116 mkdir -p $WDIR/{bin,dev,lib/firmware,run,sbin,sys,proc}
     117mkdir -p $WDIR/{bin,dev,lib/firmware,run,sbin,sys,proc,usr}
    117118mkdir -p $WDIR/etc/{modprobe.d,udev/rules.d}
    118119touch $WDIR/etc/modprobe.d/modprobe.conf
    119120ln -s lib $WDIR/lib64
     121ln -s ../bin $WDIR/usr/bin
    120122
    121123# Create necessary device nodes
     
    154156# Install basic binaries
    155157for f in $binfiles ; do
    156   ldd /bin/$f | sed "s/\t//" | cut -d " " -f1 &gt;&gt; $unsorted
    157   copy $f bin
     158  if [ -e /bin/$f ]; then d="/bin"; else d="/usr/bin"; fi
     159  ldd $d/$f | sed "s/\t//" | cut -d " " -f1 &gt;&gt; $unsorted
     160  copy $d/$f bin
    158161done
    159162
Note: See TracChangeset for help on using the changeset viewer.