> Hello, > > My Yeeloong 8101B has a QWERTY keyboard, but I've set /etc/kbdtype to "fr" > to have my usual French AZERTY layout. It works fine, except in the > installer. (I don't mind using QWERTY, but if there's my usual layout I'd > rather use it.) > > If I boot bsd.rd, I'm asked for a keyboard layout (whether I'm choosing > to Install or Upgrade). But it has no effect: if I type "fr", I still > have the default QWERTY layout. Things work fine on my usual amd64/i386 > systems when I do this. > > If I go to the Shell > # kbd fr > has no effect > > and > # kbd -l > returns nothing.
Good catch! This is caused by missing /dev/wskbd* nodes on the bsd.rd filesystem. The following diff ought to fix this. Index: MAKEDEV.md =================================================================== RCS file: /cvs/src/etc/etc.loongson/MAKEDEV.md,v retrieving revision 1.16 diff -u -p -r1.16 MAKEDEV.md --- MAKEDEV.md 5 Jan 2014 01:16:52 -0000 1.16 +++ MAKEDEV.md 1 Mar 2014 11:27:14 -0000 @@ -111,3 +111,4 @@ target(ramd, pty, 0)dnl target(ramd, bio)dnl target(ramd, diskmap)dnl target(ramd, random)dnl +target(ramd, wskbd, 0, 1, 2)dnl
