diff options
author | Jan Janssen <medhefgo@web.de> | 2022-06-09 10:07:06 +0200 |
---|---|---|
committer | Jan Janssen <medhefgo@web.de> | 2022-06-09 12:50:13 +0200 |
commit | 23742af5225944b5ed7db4633038b4c025660945 (patch) | |
tree | c0585dd731c1efc31638430e0b5b12d5f4089baa /man/loader.conf.xml | |
parent | boot: Add efi_fnmatch (diff) | |
download | systemd-23742af5225944b5ed7db4633038b4c025660945.tar.xz systemd-23742af5225944b5ed7db4633038b4c025660945.zip |
boot: Drop use of MetaiMatch
A future commit will add support for unicode collation protocol that
allows case folding and comparing strings with locale awareness. But it
only operates on whole strings, so fnmatch cannot use those without a
heavy cost. Instead we just case fold the patterns instead (the IDs we
try to match are already lower case).
Diffstat (limited to 'man/loader.conf.xml')
-rw-r--r-- | man/loader.conf.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/man/loader.conf.xml b/man/loader.conf.xml index 509412ec9d..43a115dcad 100644 --- a/man/loader.conf.xml +++ b/man/loader.conf.xml @@ -110,7 +110,14 @@ </row> </tbody> </tgroup> - </table></listitem> + </table> + + <para>Supported glob wilcard patterns are <literal>?</literal>, <literal>*</literal>, and + <literal>[…]</literal> (including ranges). Note that these patterns use the same syntax as + <citerefentry><refentrytitle>glob</refentrytitle><manvolnum>7</manvolnum></citerefentry>, but do not + support all features. In particular, set negation and named character classes are not supported. The + matching is done case-insensitively on the entry ID (as shown by <command>bootctl + list</command>).</para></listitem> </varlistentry> <varlistentry> |