Tweak gnome-shell so that gdm does not fall back to an US qwerty keyboard

layout

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@22057 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Pierre Labastie 2019-08-27 08:16:44 +00:00
parent 9434e9a213
commit f6da3b9096
2 changed files with 27 additions and 2 deletions

View File

@ -138,7 +138,7 @@ cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DWITH_KRB5=OFF \
-DENABLE_INTROSPECTION=ON \
-DENABLE_GTK_DOC=OFF \
-DWITH_SYSTEMDSYSTEMUNITDIR= \
-DWITH_SYSTEMDUSERUNITDIR=no \
.. &&
make</userinput></screen>
@ -214,6 +214,12 @@ make</userinput></screen>
href="../../xincludes/gtk-doc-rebuild.xml"/>
-->
<para revision="sysv">
<parameter>-DWITHSYSTEMDUSERUNITDIR=no</parameter>: This switch
disables installing the systemd units, which are not used for a Sysv
build.
</para>
<note>
<para>
To enable many of the optional dependencies, review the information

View File

@ -123,7 +123,15 @@
following commands:
</para>
<screen><userinput>mkdir build &amp;&amp;
<screen revision="sysv"><userinput>sed -i '/isGreeter/,+2 d' js/ui/status/keyboard.js &amp;&amp;
mkdir build &amp;&amp;
cd build &amp;&amp;
meson --prefix=/usr -Dsystemd=false .. &amp;&amp;
ninja</userinput></screen>
<screen revision="systemd"><userinput>mkdir build &amp;&amp;
cd build &amp;&amp;
meson --prefix=/usr .. &amp;&amp;
@ -141,12 +149,23 @@ ninja</userinput></screen>
<screen role="root"><userinput>ninja install</userinput></screen>
<!-- not needed with -Dsystemd=false
<para revision="sysv">
Finally, remove some systemd units that are unnecessary on SysV.
</para>
<screen role="root" revision="sysv"><userinput>rm -v /usr/lib/systemd/user/gnome-shell*</userinput></screen>
-->
</sect2>
<sect2 role="commands" revision="sysv">
<title>Command Explanations</title>
<para>
<command>sed -i ...</command>: This command allows the GDM greeter to
use a keyboard layout taken from the dconf database instead of a default
US qwerty one.
</para>
</sect2>
<sect2 role="content">