Changeset c37e846


Ignore:
Timestamp:
09/11/2022 04:42:58 PM (20 months ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, bdubbs/gcc13, multilib, renodr/libudev-from-systemd, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
7bd0378
Parents:
84e1bb6
git-author:
Pierre Labastie <pierre.labastie@…> (09/11/2022 04:42:26 PM)
git-committer:
Pierre Labastie <pierre.labastie@…> (09/11/2022 04:42:58 PM)
Message:

Replace tabs with spaces

Files:
13 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/lfs/sysconfig/createfiles

    r84e1bb6 rc37e846  
    99#
    1010# Notes       : The syntax of this file is as follows:
    11 #               if type is equal to "file" or "dir"
    12              <filename> <type> <permissions> <user> <group>
    13 #               if type is equal to "dev"
    14              <filename> <type> <permissions> <user> <group> <devtype>
     11#               if type is equal to "file" or "dir"
     12              <filename> <type> <permissions> <user> <group>
     13#               if type is equal to "dev"
     14              <filename> <type> <permissions> <user> <group> <devtype>
    1515#             <major> <minor>
    1616#
    17 #               <filename> is the name of the file which is to be created
    18 #               <type> is either file, dir, or dev.
    19 #                       file creates a new file
    20 #                       dir creates a new directory
    21 #                       dev creates a new device
    22 #               <devtype> is either block, char or pipe
    23 #                       block creates a block device
    24 #                       char creates a character deivce
    25 #                       pipe creates a pipe, this will ignore the <major> and
     17#               <filename> is the name of the file which is to be created
     18#               <type> is either file, dir, or dev.
     19#                       file creates a new file
     20#                       dir creates a new directory
     21#                       dev creates a new device
     22#               <devtype> is either block, char or pipe
     23#                       block creates a block device
     24#                       char creates a character deivce
     25#                       pipe creates a pipe, this will ignore the <major> and
    2626#           <minor> fields
    27 #               <major> and <minor> are the major and minor numbers used for
     27#               <major> and <minor> are the major and minor numbers used for
    2828#     the device.
    2929########################################################################
  • bootscripts/lfs/sysconfig/modules

    r84e1bb6 rc37e846  
    99#
    1010# Notes       : The syntax of this file is as follows:
    11              <module> [<arg1> <arg2> ...]
     11             <module> [<arg1> <arg2> ...]
    1212#
    1313# Each module should be on its own line, and any options that you want
  • chapter03/packages.xml

    r84e1bb6 rc37e846  
    2121    if a newer version (with the vulnerability fixed) should be used.  If
    2222    not, try to download the removed package from a mirror.  Although it's
    23         possible to download an old release from a mirror even if this release
    24         has been removed because of a vulnerability, it's not recommended to
    25         use a release known to be vulnerable for building your system.</para>
     23    possible to download an old release from a mirror even if this release
     24    has been removed because of a vulnerability, it's not recommended to
     25    use a release known to be vulnerable for building your system.</para>
    2626  </note>
    2727
  • chapter04/settingenviron.xml

    r84e1bb6 rc37e846  
    187187     user is finished at the beginning of <xref
    188188     linkend="chapter-chroot-temporary-tools"/>, you can restore
    189         <filename>/etc/bash.bashrc</filename> (if desired).</para>
     189    <filename>/etc/bash.bashrc</filename> (if desired).</para>
    190190
    191191     <para>Note that the LFS Bash package we will build in
  • chapter08/gettext.xml

    r84e1bb6 rc37e846  
    6363          <para>Since bison is not yet installed in /usr, configure hardcodes
    6464          the directory containing translations for the bison program (the
    65           "locale" directory) as /tools/share/locale. Passing this variable
     65          "locale" directory) as /tools/share/locale. Passing this variable
    6666           to make allows overriding the choice made by configure.</para>
    6767        </listitem>
  • chapter08/meson.xml

    r84e1bb6 rc37e846  
    109109
    110110      <varlistentry id="meson">
    111                 <term><command>meson</command></term>
     111        <term><command>meson</command></term>
    112112        <listitem>
    113113          <para>A high productivity build system</para>
  • chapter08/readline.xml

    r84e1bb6 rc37e846  
    6464        <listitem>
    6565          <para>This option tells Readline that it can find the termcap
    66                library functions in the curses library, rather than a separate
    67                termcap library. It allows generating a correct
    68                <filename>readline.pc</filename> file.</para>
     66          library functions in the curses library, rather than a separate
     67          termcap library. It allows generating a correct
     68          <filename>readline.pc</filename> file.</para>
    6969        </listitem>
    7070      </varlistentry>
  • chapter08/vim.xml

    r84e1bb6 rc37e846  
    171171      <filename>*.spl</filename> and optionally, the <filename>*.sug</filename>
    172172      files for your language and character encoding from <ulink
    173       url="ftp://ftp.vim.org/pub/vim/runtime/spell/"/> and save them to
    174       <filename class='directory'>/usr/share/&vim-docdir;/spell/</filename>.</para>
     173        url="https://github.com/vim/vim/tree/master/runtime/spell/"/> and save
     174      them to <filename class='directory'>
     175        /usr/share/&vim-docdir;/spell/</filename>.</para>
    175176
    176177      <para>To use these spell files, some configuration in
  • git-version.sh

    r84e1bb6 rc37e846  
    22
    33if [ "$1" = sysv ]; then
    4         SYSV="INCLUDE"
    5         SYSTEMD="IGNORE "
     4    SYSV="INCLUDE"
     5    SYSTEMD="IGNORE "
    66elif [ "$1" = systemd ]; then
    7         SYSV="IGNORE "
    8         SYSTEMD="INCLUDE"
     7    SYSV="IGNORE "
     8    SYSTEMD="INCLUDE"
    99else
    10         echo You must provide either \"sysv\" or \"systemd\" as argument
    11         exit 1
     10    echo You must provide either \"sysv\" or \"systemd\" as argument
     11    exit 1
    1212fi
    1313
     
    1616
    1717if ! git status > /dev/null; then
    18         # Either it's not a git repository, or git is unavaliable.
    19         # Just workaround.
    20         echo "<![ %sysv; ["                                    >  version.ent
    21         echo "<!ENTITY version           \"unknown\">"         >> version.ent
    22         echo "]]>"                                             >> version.ent
    23         echo "<![ %systemd; ["                                 >> version.ent
    24         echo "<!ENTITY version           \"unknown-systemd\">" >> version.ent
    25         echo "]]>"                                             >> version.ent
    26         echo "<!ENTITY releasedate       \"unknown\">"         >> version.ent
    27         echo "<!ENTITY copyrightdate     \"1999-2022\">"       >> version.ent
    28         exit 0
     18    # Either it's not a git repository, or git is unavaliable.
     19    # Just workaround.
     20    echo "<![ %sysv; ["                                    >  version.ent
     21    echo "<!ENTITY version           \"unknown\">"         >> version.ent
     22    echo "]]>"                                             >> version.ent
     23    echo "<![ %systemd; ["                                 >> version.ent
     24    echo "<!ENTITY version           \"unknown-systemd\">" >> version.ent
     25    echo "]]>"                                             >> version.ent
     26    echo "<!ENTITY releasedate       \"unknown\">"         >> version.ent
     27    echo "<!ENTITY copyrightdate     \"1999-2022\">"       >> version.ent
     28    exit 0
    2929fi
    3030
     
    4040
    4141case $day in
    42         "1" | "21" | "31" ) suffix="st";;
    43         "2" | "22" ) suffix="nd";;
    44         "3" | "23" ) suffix="rd";;
    45         * ) suffix="th";;
     42    "1" | "21" | "31" ) suffix="st";;
     43    "2" | "22" ) suffix="nd";;
     44    "3" | "23" ) suffix="rd";;
     45    * ) suffix="th";;
    4646esac
    4747
     
    5454
    5555if [ "$(git diff HEAD | wc -l)" != "0" ]; then
    56         version="$version+"
    57         versiond="$versiond+"
     56    version="$version+"
     57    versiond="$versiond+"
    5858fi
    5959
  • packages.ent

    r84e1bb6 rc37e846  
    208208<!ENTITY flex-fin-sbu "0.4 SBU">
    209209
    210 <!ENTITY gawk-version "5.1.1">
    211 <!ENTITY gawk-size "3,075 KB">
     210<!ENTITY gawk-version "5.2.0">
     211<!ENTITY gawk-size "3,306 KB">
    212212<!ENTITY gawk-url "&gnu;gawk/gawk-&gawk-version;.tar.xz">
    213 <!ENTITY gawk-md5 "83650aa943ff2fd519b2abedf8506ace">
     213<!ENTITY gawk-md5 "2f724d925873fc82f5e7b1d605ba9a42">
    214214<!ENTITY gawk-home "&gnu-software;gawk/">
    215215<!ENTITY gawk-tmp-du "45 MB">
  • part3intro/generalinstructions.xml

    r84e1bb6 rc37e846  
    8383          <para>Place all the sources and patches in a directory that will be
    8484          accessible from the chroot environment such as
    85           <filename class="directory">/mnt/lfs/sources/</filename>.<!-- Do
     85          <filename class="directory">/mnt/lfs/sources/</filename>.<!-- Do
    8686          <emphasis>not</emphasis> put sources in
    87           <filename class="directory">/mnt/lfs/tools/</filename>. --></para>
     87          <filename class="directory">/mnt/lfs/tools/</filename>. --></para>
    8888        </listitem>
    8989        <listitem>
  • udev-lfs/ChangeLog

    r84e1bb6 rc37e846  
    99     allow build with util-linux in LFS's /tools directory.
    1010
    11 2010-01-26      Matt Burgess <matthew@linuxfromscratch.org>
    12         * 55-lfs.rules: Remove lots of rules that have been merged upstream.
    13         * 61-cdrom.rules: Remove as upstream has a replacement.
    14         * doc/*: Cleanup and rewrite now that the rules are much simpler.
    15 
    16 2009-09-25      Bryan Kadzban <bryan@linuxfromscratch.org>
    17         * 55-lfs.rules: Make the RTC rule (which runs setclock) work for people
    18           that don't use the RTC-class driver -- add another copy of the rule,
    19           using KERNEL=="rtc" instead of SUBSYSTEM=="rtc".  Also move the ACTION
    20           match before the assignment to MODE.
    21 
    22 2009-05-23      Bruce Dubbs <bdubbs@linuxfromscratch.org>
    23         * 55-lfs.rules: Set the rtc by udev upon boot.  Removed aio device from
    24           udev configuration so defaults are used.
    25 
    26 2009-05-16      Bryan Kadzban <bryan@linuxfromscratch.org>
    27         * 55-lfs.rules: Adopt udev permissions for random, urandom, kmsg, and
    28           input devices (including psaux, which probably doesn't exist anymore
    29           anyway).
    30 
    31 2009-05-16      Matt Burgess <matthew@linuxfromscratch.org>
    32         * 55-lfs.rules: Remove the block rule as it was only setting
    33           permissions that Udev will set by default
    34         * 55-lfs.rules: Remove the rfcomm rule as the group it sets is already
    35           included in upstream's rule
    36         * 55-lfs-rules: Remove the tape rules as the group they sets is already
    37           included in upstream's rules
    38 
    39 2009-03-15      Bryan Kadzban <bryan@linuxfromscratch.org>
    40         * 55-lfs.rules: Remove the ISDN-handling rules (replaced with upstream's
    41           version, which has a better match via SUBSYSTEM).
    42         * 55-lfs.rules: Replace "uucp" with "dialout" now that udev has decided
    43           to standardize on a Debian-like setup (uucp is for UUCP daemons to use
    44           for privilege separation; dialout is for users and devices).
     112010-01-26  Matt Burgess <matthew@linuxfromscratch.org>
     12   * 55-lfs.rules: Remove lots of rules that have been merged upstream.
     13   * 61-cdrom.rules: Remove as upstream has a replacement.
     14   * doc/*: Cleanup and rewrite now that the rules are much simpler.
     15
     162009-09-25  Bryan Kadzban <bryan@linuxfromscratch.org>
     17   * 55-lfs.rules: Make the RTC rule (which runs setclock) work for people
     18     that don't use the RTC-class driver -- add another copy of the rule,
     19     using KERNEL=="rtc" instead of SUBSYSTEM=="rtc".  Also move the ACTION
     20     match before the assignment to MODE.
     21
     222009-05-23  Bruce Dubbs <bdubbs@linuxfromscratch.org>
     23   * 55-lfs.rules: Set the rtc by udev upon boot.  Removed aio device from
     24     udev configuration so defaults are used.
     25
     262009-05-16  Bryan Kadzban <bryan@linuxfromscratch.org>
     27   * 55-lfs.rules: Adopt udev permissions for random, urandom, kmsg, and
     28     input devices (including psaux, which probably doesn't exist anymore
     29     anyway).
     30
     312009-05-16  Matt Burgess <matthew@linuxfromscratch.org>
     32   * 55-lfs.rules: Remove the block rule as it was only setting
     33     permissions that Udev will set by default
     34   * 55-lfs.rules: Remove the rfcomm rule as the group it sets is already
     35     included in upstream's rule
     36   * 55-lfs-rules: Remove the tape rules as the group they sets is already
     37     included in upstream's rules
     38
     392009-03-15  Bryan Kadzban <bryan@linuxfromscratch.org>
     40   * 55-lfs.rules: Remove the ISDN-handling rules (replaced with upstream's
     41     version, which has a better match via SUBSYSTEM).
     42   * 55-lfs.rules: Replace "uucp" with "dialout" now that udev has decided
     43     to standardize on a Debian-like setup (uucp is for UUCP daemons to use
     44     for privilege separation; dialout is for users and devices).
    4545
    46462008-12-07  Bruce Dubbs <bdubbs@linuxfromscratch.org>
    47         * 55-lfs.rules: Change one line to use continuation so it does
    48           not overflow the book's width.
     47   * 55-lfs.rules: Change one line to use continuation so it does
     48     not overflow the book's width.
    4949
    50502008-12-07  Bryan Kadzban  <bryan@linuxfromscratch.org>
    51         * 55-lfs.rules: Remove several rules that are either provided by upstream,
    52           or that don't have any effect (there is no /dev/js or /dev/djs according
    53           to devices.txt).
    54         * 55-lfs.rules, 61-cdrom.rules: Replace ACTION=="add" with "add|change"
    55           everywhere, per upstream's general request.
     51   * 55-lfs.rules: Remove several rules that are either provided by upstream,
     52     or that don't have any effect (there is no /dev/js or /dev/djs according
     53     to devices.txt).
     54   * 55-lfs.rules, 61-cdrom.rules: Replace ACTION=="add" with "add|change"
     55     everywhere, per upstream's general request.
    5656
    57572008-11-11  Bryan Kadzban  <bryan@linuxfromscratch.org>
    58         * 55-lfs.rules, 61-cdrom.rules: Fix comments to use the right rule
    59           numbers.  Thanks to Trent Shea for the fix.  Closes #2278.
     58   * 55-lfs.rules, 61-cdrom.rules: Fix comments to use the right rule
     59     numbers.  Thanks to Trent Shea for the fix.  Closes #2278.
    6060
    61612008-10-15  DJ Lucas <dj@linuxfromscratch.org>
    62         * 55-lfs.rules: Override default perms on floppy disk devices provided
    63           by 50-udev-default.rules.  Thanks to Bruce Dubbs for the fix.  Closes
    64           LFS ticket #2076.
     62   * 55-lfs.rules: Override default perms on floppy disk devices provided
     63     by 50-udev-default.rules.  Thanks to Bruce Dubbs for the fix.  Closes
     64     LFS ticket #2076.
    6565
    66662008-05-21  Bryan Kadzban  <bryan@linuxfromscratch.org>
    67         * 81-firmware.rules, doc/81-firmware.txt: Remove.  This rule is
    68           already handled by udev's 50-udev-default.rules file.  The docs
    69           can be added back later if needed.
    70         * Makefile: Don't install the above deleted files.
    71         * 55-lfs.rules: Remove the device-mapper rule, since the upstream
    72           50-udev-default.rules file handles it properly.
     67   * 81-firmware.rules, doc/81-firmware.txt: Remove.  This rule is
     68     already handled by udev's 50-udev-default.rules file.  The docs
     69     can be added back later if needed.
     70   * Makefile: Don't install the above deleted files.
     71   * 55-lfs.rules: Remove the device-mapper rule, since the upstream
     72     50-udev-default.rules file handles it properly.
    7373
    74742008-04-02  Bryan Kadzban  <bryan@linuxfromscratch.org>
    75         * Makefile: Make the package DESTDIR-friendly by installing the docs
    76           into a fixed $(PREFIX)/share/doc/udev-config directory, instead of
    77           trying to figure out what version of udev was just installed.
     75   * Makefile: Make the package DESTDIR-friendly by installing the docs
     76     into a fixed $(PREFIX)/share/doc/udev-config directory, instead of
     77     trying to figure out what version of udev was just installed.
    7878
    79792007-10-30  Bryan Kadzban  <bryan@linuxfromscratch.org>
    80         * 55-lfs.rules: Since the dialout group was renamed to uucp, delete
    81           the rules that override upstream's assignment of the dialout group.
    82           Replace "dialout" with "uucp" on the remaining rules.
     80   * 55-lfs.rules: Since the dialout group was renamed to uucp, delete
     81     the rules that override upstream's assignment of the dialout group.
     82     Replace "dialout" with "uucp" on the remaining rules.
    8383
    84842007-10-29  Bryan Kadzban  <bryan@linuxfromscratch.org>
    85         * 51-lfs.rules: Move to 55-lfs.rules.
    86         * doc/51-lfs.rules: Move to doc/55-lfs.rules.
     85   * 51-lfs.rules: Move to 55-lfs.rules.
     86   * doc/51-lfs.rules: Move to doc/55-lfs.rules.
    8787
    88882007-10-27  Bryan Kadzban  <bryan@linuxfromscratch.org>
    89         * 25-lfs.rules: Some rules in here are duplicates of rules from udev's
    90           new 50-udev-defaults.rules file; remove them. Override permissions
    91           where needed elsewhere (and document overrides in comments).
    92         * 26-modprobe.rules: Provided by udev's 80-drivers.rules and built-in
    93           modaliases for SCSI device-type modules in 2.6.22+ kernels; remove.
    94 
    95         * 25-lfs.rules: Move to 51-lfs.rules.
    96         * 27-firmware.rules: Move to 81-firmware.rules.
    97         * 81-cdrom.rules: Move to 61-cdrom.rules.
    98 
    99         * doc/25-lfs.txt: Rename to 51-lfs.txt.
    100         * doc/26-modprobe.txt: Rename to 80-drivers.txt, and modify to reflect
    101           the upstream rules.
    102         * doc/27-firmware.txt: Rename to 81-firmware.txt.
    103         * doc/81-cdrom.txt: Rename to 61-cdrom.txt.
    104 
    105         * Makefile: Use new filenames.
     89   * 25-lfs.rules: Some rules in here are duplicates of rules from udev's
     90     new 50-udev-defaults.rules file; remove them. Override permissions
     91     where needed elsewhere (and document overrides in comments).
     92   * 26-modprobe.rules: Provided by udev's 80-drivers.rules and built-in
     93     modaliases for SCSI device-type modules in 2.6.22+ kernels; remove.
     94
     95   * 25-lfs.rules: Move to 51-lfs.rules.
     96   * 27-firmware.rules: Move to 81-firmware.rules.
     97   * 81-cdrom.rules: Move to 61-cdrom.rules.
     98
     99   * doc/25-lfs.txt: Rename to 51-lfs.txt.
     100   * doc/26-modprobe.txt: Rename to 80-drivers.txt, and modify to reflect
     101     the upstream rules.
     102   * doc/27-firmware.txt: Rename to 81-firmware.txt.
     103   * doc/81-cdrom.txt: Rename to 61-cdrom.txt.
     104
     105   * Makefile: Use new filenames.
    106106
    1071072007-07-31  Dan Nicholson <dnicholson@linuxfromscratch.org>
    108         * 25-lfs.rules: Changed the usb_device rule tto create /dev/bus/usb
    109           nodes if the usb_device in 2.6.22+ kernels. The rule was also changed
    110           to only trigger on "add" events. This change is not backwards
    111           compatible with older kernels.
     108   * 25-lfs.rules: Changed the usb_device rule tto create /dev/bus/usb
     109     nodes if the usb_device in 2.6.22+ kernels. The rule was also changed
     110     to only trigger on "add" events. This change is not backwards
     111     compatible with older kernels.
    112112
    1131132007-06-12  Dan Nicholson <dnicholson@linuxfromscratch.org>
    114         * 25-lfs.rules: Fix the CPUID nodes from cpu/%n/cpu to cpu/%n/cpuid,
    115           which is what's expected in userspace apps such as x86info.
     114   * 25-lfs.rules: Fix the CPUID nodes from cpu/%n/cpu to cpu/%n/cpuid,
     115     which is what's expected in userspace apps such as x86info.
    116116
    1171172007-06-08  Bryan Kadzban  <bryan@linuxfromscratch.org>
    118         * 25-lfs.rules: Add rules for DVB devices (create nodes in /dev/dvb/)
    119           and floppies (create extra nodes based on CMOS type), copied from
    120           the SuSE rules file.  Thanks to Alexander Patrakov for the bugreport.
    121 
    122 2007-03-04  Matthew Burgess     <matthew@linuxfromscratch.org>
    123         * Makefile: Use `udevd --version' to work out what version of Udev is
    124           installed (requires Udev >= 106)
     118   * 25-lfs.rules: Add rules for DVB devices (create nodes in /dev/dvb/)
     119     and floppies (create extra nodes based on CMOS type), copied from
     120     the SuSE rules file.  Thanks to Alexander Patrakov for the bugreport.
     121
     1222007-03-04  Matthew Burgess <matthew@linuxfromscratch.org>
     123   * Makefile: Use `udevd --version' to work out what version of Udev is
     124     installed (requires Udev >= 106)
    125125
    1261262007-01-02  Bryan Kadzban  <bryan@linuxfromscratch.org>
    127         * 25-lfs.rules: Change CPU devices (cpu, msr, microcode) to be in
    128           /dev/cpu/ and /dev/cpu/N/, to match Documentation/devices.txt.
     127   * 25-lfs.rules: Change CPU devices (cpu, msr, microcode) to be in
     128     /dev/cpu/ and /dev/cpu/N/, to match Documentation/devices.txt.
    129129
    1301302006-10-21  Bryan Kadzban  <bryan@linuxfromscratch.org>
    131         * Makefile: Add a missing backslash in install-extra-doc.
    132 
    133         * 05-udev-early.rules, 60-persistent-input.rules,
    134           60-persistent-storage.rules, 95-udev-late.rules: Remove.  The book
    135           will install these files from udev's etc/udev/rules.d directory
    136           instead.
    137         * Makefile: Don't install these rules files after all.  Also, only
    138           install corresponding docs if requested.
     131   * Makefile: Add a missing backslash in install-extra-doc.
     132
     133   * 05-udev-early.rules, 60-persistent-input.rules,
     134     60-persistent-storage.rules, 95-udev-late.rules: Remove.  The book
     135     will install these files from udev's etc/udev/rules.d directory
     136     instead.
     137   * Makefile: Don't install these rules files after all.  Also, only
     138     install corresponding docs if requested.
    139139
    1401402006-10-20  Bryan Kadzban  <bryan@linuxfromscratch.org>
    141         * Makefile: Added; contains targets to install rules and doc files.
    142           From Dan Nicholson.
     141   * Makefile: Added; contains targets to install rules and doc files.
     142     From Dan Nicholson.
    143143
    1441442006-10-14  Bryan Kadzban  <bryan@linuxfromscratch.org>
    145         * 05-udev-early.rules, 60-persistent-storage.rules: Sync up with
    146           upstream sample rules files (from udev-102), except for one rule
    147           which is more specific in our tarball and should probably be changed
    148           upstream.
    149         * doc/60-persistent-storage.txt: Modify to match the changes.  Also
    150           fix a couple typos.
    151 
    152         * 25-lfs.rules: Remove duplicate rules (ttyS[0-9]* is also matched by
    153           tty[BC...S...][0-9]*, and ttyUSB[0-9]* is in there twice).
    154 
    155         * 25-lfs.rules: Fix Alsa device KERNEL rules.  Udev uses shell-style
    156           glob matching, not regular expressions, so the old rules would match
    157           nonsense device names like hw0asdf and pcmDzxcv.  As long as the first
    158           character after the "fixed" portion was in the list, the rule would
    159           match; it wouldn't apply the same character range to later characters.
    160 
    161         * doc/25-lfs.txt: Add a note on interaction between permissions and
    162           symlinks.
     145   * 05-udev-early.rules, 60-persistent-storage.rules: Sync up with
     146     upstream sample rules files (from udev-102), except for one rule
     147     which is more specific in our tarball and should probably be changed
     148     upstream.
     149   * doc/60-persistent-storage.txt: Modify to match the changes.  Also
     150     fix a couple typos.
     151
     152   * 25-lfs.rules: Remove duplicate rules (ttyS[0-9]* is also matched by
     153     tty[BC...S...][0-9]*, and ttyUSB[0-9]* is in there twice).
     154
     155   * 25-lfs.rules: Fix Alsa device KERNEL rules.  Udev uses shell-style
     156     glob matching, not regular expressions, so the old rules would match
     157     nonsense device names like hw0asdf and pcmDzxcv.  As long as the first
     158     character after the "fixed" portion was in the list, the rule would
     159     match; it wouldn't apply the same character range to later characters.
     160
     161   * doc/25-lfs.txt: Add a note on interaction between permissions and
     162     symlinks.
    163163
    1641642006-10-09  Bryan Kadzban  <bryan@linuxfromscrtach.org>
    165         * 25-lfs.rules: Fix fb[0-9]* device permissions (should use the default
    166           0660).
    167 
    168         * doc/25-lfs.txt: Fix typo: /dev/ptmx is given mode 0666, not 0660.
    169           Also tweak the comment about other TTY devices.
     165   * 25-lfs.rules: Fix fb[0-9]* device permissions (should use the default
     166     0660).
     167
     168   * doc/25-lfs.txt: Fix typo: /dev/ptmx is given mode 0666, not 0660.
     169     Also tweak the comment about other TTY devices.
    170170
    1711712006-10-04  Bryan Kadzban  <bryan@linuxfromscratch.org>
    172         * 05-udev-early.rules: Remove WAIT_FOR_SYSFS="bus" rule.  With kernel
    173           2.6.18, this rule is no longer required.
    174 
    175         * doc/05-udev-early.txt: Update to match.
     172   * 05-udev-early.rules: Remove WAIT_FOR_SYSFS="bus" rule.  With kernel
     173     2.6.18, this rule is no longer required.
     174
     175   * doc/05-udev-early.txt: Update to match.
    176176
    1771772006-09-28  Bryan Kadzban  <bryan@linuxfromscratch.org>
    178         * doc/60-persistent-storage.txt: Explain persistent storage rules, or
    179           at least the parts I understand.  (I don't use DASD or netblock or
    180           several other supported configurations.)
    181 
    182         * doc/81-cdrom.txt: Explain 81-cdrom.rules.
    183 
    184         * doc/95-udev-late.txt: Explain 95-udev-late.rules.  Documentation is
    185           now finished.
     178   * doc/60-persistent-storage.txt: Explain persistent storage rules, or
     179     at least the parts I understand.  (I don't use DASD or netblock or
     180     several other supported configurations.)
     181
     182   * doc/81-cdrom.txt: Explain 81-cdrom.rules.
     183
     184   * doc/95-udev-late.txt: Explain 95-udev-late.rules.  Documentation is
     185     now finished.
    186186
    1871872006-09-26  Bryan Kadzban  <bryan@linuxfromscratch.org>
    188         * doc/60-persistent-input.txt: Explain (in probably too much detail)
    189           60-persistent-input.rules.
     188   * doc/60-persistent-input.txt: Explain (in probably too much detail)
     189     60-persistent-input.rules.
    190190
    1911912006-09-24  Bryan Kadzban  <bryan@linuxfromscratch.org>
    192         * doc/05-udev-early.txt: Rewrap to fit 80 columns.
    193 
    194         * doc/26-modprobe.txt: Explain 26-modprobe.rules, and modaliases.
    195 
    196         * doc/27-firmware.txt: Explain 27-firmware.rules.
     192   * doc/05-udev-early.txt: Rewrap to fit 80 columns.
     193
     194   * doc/26-modprobe.txt: Explain 26-modprobe.rules, and modaliases.
     195
     196   * doc/27-firmware.txt: Explain 27-firmware.rules.
    197197
    1981982006-09-24  Bryan Kadzban  <bryan@linuxfromscratch.org>
    199         * doc/25-lfs.txt: Explain 25-lfs.rules.
    200 
    201         * 25-lfs.rules: Use SYMLINK+= for isdn/capi20 also.
     199   * doc/25-lfs.txt: Explain 25-lfs.rules.
     200
     201   * 25-lfs.rules: Use SYMLINK+= for isdn/capi20 also.
    202202
    2032032006-09-23  Bryan Kadzban  <bryan@linuxfromscratch.org>
    204         * doc: New subdirectory to contain documentation of rules
    205         * doc/README: New file, top-level documentation
    206         * doc/*.txt: New documentation files, one for each rules file.  Only
    207           05-udev-early.txt has anything in it.
     204   * doc: New subdirectory to contain documentation of rules
     205   * doc/README: New file, top-level documentation
     206   * doc/*.txt: New documentation files, one for each rules file.  Only
     207     05-udev-early.txt has anything in it.
    208208
    2092092006-09-23  Bryan Kadzban  <bryan@linuxfromscratch.org>
    210         * 25-lfs.rules: Add "ignore_device" to OPTIONS for DRI devices, instead
    211           of setting NAME to an empty string.  This matches the way we ignore
    212           devmapper / LVM devices.
     210   * 25-lfs.rules: Add "ignore_device" to OPTIONS for DRI devices, instead
     211     of setting NAME to an empty string.  This matches the way we ignore
     212     devmapper / LVM devices.
    213213
    2142142006-09-22  Bryan Kadzban  <bryan@linuxfromscratch.org>
    215         * 60-persistent-input.rules, 95-udev-late.rules: Import from udev-100.
    216           60-persistent-input.rules creates persistent symlinks for input
    217           devices, and 95-udev-late.rules enables udevmonitor.
    218 
    219         * 60-persistent-storage.rules: Replace ATTRS{../removable} with just
    220           ATTRS{removable} on partition devices. Replace ATTRS{removable}
    221           with ATTR{removable} on whole-disk devices.
     215   * 60-persistent-input.rules, 95-udev-late.rules: Import from udev-100.
     216     60-persistent-input.rules creates persistent symlinks for input
     217     devices, and 95-udev-late.rules enables udevmonitor.
     218
     219   * 60-persistent-storage.rules: Replace ATTRS{../removable} with just
     220     ATTRS{removable} on partition devices. Replace ATTRS{removable}
     221     with ATTR{removable} on whole-disk devices.
    222222
    2232232006-09-20  Bryan Kadzban  <bryan@linuxfromscratch.org>
    224         * 05-early.rules: Missed a rule in the last change.  ENV{PHYSDEVBUS}
    225           in the rule that waits for the "bus" symlink should be replaced by
    226           SUBSYSTEMS.
     224   * 05-early.rules: Missed a rule in the last change.  ENV{PHYSDEVBUS}
     225     in the rule that waits for the "bus" symlink should be replaced by
     226     SUBSYSTEMS.
    227227
    2282282006-09-20  Bryan Kadzban  <bryan@linuxfromscratch.org>
    229         * Adapted rules to the new matches used in udev-098 and above (e.g.,
    230           SYSFS becomes ATTRS).  Prevents warnings, and support for the old
    231           matches will be removed eventually.  These rules will not work with
    232           udev-097 and before!
    233         * Fixed several bugs in the rules left over from previous udev
    234           versions (missing commas, overwriting user symlinks using ="..."
    235           instead of +="...", and matching against "*" instead of "?*").
    236 
    237         * Renamed CHANGELOG to ChangeLog, started using pseudo-GNU-format
    238           entries.  (See standards.info; search it for "changelog" to get
    239           the general gist.)
     229   * Adapted rules to the new matches used in udev-098 and above (e.g.,
     230     SYSFS becomes ATTRS).  Prevents warnings, and support for the old
     231     matches will be removed eventually.  These rules will not work with
     232     udev-097 and before!
     233   * Fixed several bugs in the rules left over from previous udev
     234     versions (missing commas, overwriting user symlinks using ="..."
     235     instead of +="...", and matching against "*" instead of "?*").
     236
     237   * Renamed CHANGELOG to ChangeLog, started using pseudo-GNU-format
     238     entries.  (See standards.info; search it for "changelog" to get
     239     the general gist.)
    240240
    241241dnicholson - Jul 14, 2006
    242         * Fixed usbdev PROGRAM so that it works with the BusyBox sh. Thanks
    243           to Anthony Wright.
     242   * Fixed usbdev PROGRAM so that it works with the BusyBox sh. Thanks
     243     to Anthony Wright.
    244244
    245245n/a - Jul 12, 2006
    246         * Added options so temporary nodes are not created with device-mapper
    247         * Adapted cdrom rules to identify CD-ROM drives correctly by adding
    248           SUBSYSTEM=="block" test.
    249         * Added simple 81-cdrom.rules file to set cdrom group ownership
     246   * Added options so temporary nodes are not created with device-mapper
     247   * Adapted cdrom rules to identify CD-ROM drives correctly by adding
     248     SUBSYSTEM=="block" test.
     249   * Added simple 81-cdrom.rules file to set cdrom group ownership
    250250
    251251n/a - Jun 07, 2006
    252         * Removed nvidia rules
    253         * Removed bug reporting rule
    254         * Moved Debian-based persistent CD-ROM rules to contrib
    255         * Adapted firmware rule to udev-093
     252   * Removed nvidia rules
     253   * Removed bug reporting rule
     254   * Moved Debian-based persistent CD-ROM rules to contrib
     255   * Adapted firmware rule to udev-093
    256256
    257257n/a - May 15, 2006
    258         * Part one of 25-lfs.rules rewrite
    259         * Some minor tweaking of the layout
     258   * Part one of 25-lfs.rules rewrite
     259   * Some minor tweaking of the layout
    260260
    261261n/a - May 12, 2006
    262         * Initial import of the udev-config directory.
    263         * Reorganized and modularized the rules files.
    264         * Added explanatory comments
     262   * Initial import of the udev-config directory.
     263   * Reorganized and modularized the rules files.
     264   * Added explanatory comments
  • udev-lfs/contrib/debian/write_cd_aliases

    r84e1bb6 rc37e846  
    108108comment="$ID_MODEL ($ID_PATH)"
    109109
    110                           write_rule "$match" "cdrom$link_num" "$comment"
     110                          write_rule "$match" "cdrom$link_num" "$comment"
    111111[ "$ID_CDROM_CD_RW" ]  && write_rule "$match" "cdrw$link_num"
    112112[ "$ID_CDROM_DVD" ]    && write_rule "$match" "dvd$link_num"
Note: See TracChangeset for help on using the changeset viewer.