diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-12-27 11:43:41 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-12-27 11:43:41 +0100 |
commit | d696cf26e39966fb177317416833f8cc47cc10b6 (patch) | |
tree | 3b4e819401a749412e136a0f21f2d119052de37d | |
parent | bcb69cde55897eba64ee41b83e2d640ac3aabe7d (diff) |
Fix g-i startup
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/local/runsystem | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 28ed6337..62494229 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,8 @@ hurd (20121127-1~0) UNRELEASED; urgency=low flex, and bison build-dependencies. * New upstream patch patches/pfinet_local_port_range.patch to increase number of available local ports. + * Fix g-i by putting console keyboard parameters before mouse parameters, + otherwise it seems the -c option gets lost. -- Samuel Thibault <sthibault@debian.org> Sun, 15 Jul 2012 12:53:39 +0200 diff --git a/debian/local/runsystem b/debian/local/runsystem index b35131af..a59ff716 100755 --- a/debian/local/runsystem +++ b/debian/local/runsystem @@ -63,7 +63,7 @@ then . /etc/default/keyboard [ -z "$XKBLAYOUT" ] || LAYOUT="--keymap $XKBLAYOUT" fi - console -d vga -g -d pc_mouse --repeat=mouse -d pc_kbd --repeat=kbd $LAYOUT -c /dev/vcs & + console -d vga -g -d pc_kbd --repeat=kbd $LAYOUT -d pc_mouse --repeat=mouse -c /dev/vcs & echo $! > /var/run/hurd-console.pid wait echo |