Could this keyboard mapping problem be causing the infinite loop in the
installer menu?
Alexandre S. Bencz
+55 {15} 991-707-384
On 16/04/2020 18:36, John Paul Adrian Glaubitz wrote:
On 4/16/20 11:31 PM, John Paul Adrian Glaubitz wrote:
On 4/16/20 11:17 PM, Laurent Vivier wrote:
Alexandre is using graphical interface rather than serial port and I
think once the keyboard-configuration package is installed and
configured the keyboard is broken because, as I reported previously, it
doesn't use the good keycode map. macintosh_old is for old kernels that
use a non-standard keycode map, we should use now "macintosh" keycode map.
I would have to dig into the source code first. I have commit access
for that repository, but there are tons of instances of "macintosh_old"
in the Code.
Do you know whether this change is sufficient?
diff --git a/debian/keyboard-configuration.config
b/debian/keyboard-configuration.config
index 3229728..b2b37bc 100644
--- a/debian/keyboard-configuration.config
+++ b/debian/keyboard-configuration.config
@@ -429,7 +429,7 @@ case "$arch" in
model_priority=medium
;;
m68k/mac)
- XKBMODEL=macintosh_old
+ XKBMODEL=macintosh
model_priority=medium
;;
m68k/sun*)
Looking at debian/rules, it seems the package could need a lot
of clean-up.
Adrian