On 28 Apr 2013 22:01:17 +0200 "Holger Sebert" <holger.seb...@ruhr-uni-bochum.de> wrote: > Hi, > > I did a quick hack on kbd.c and could make the "<,>,|" key > work. Awesome! Thank you all for your help.
What was the fix? > In the 'bcm' directory some modules refer to 'omap' although > they apparently mean 'port', like this: > > #include "../omap/random.c" > > which should be > > #include "../port/random.c" Files from ../port are automatically picked up so you don't need files in bcm that just include ../port/something. > Furthermore, I noticed that the build system would build _all_ > of the kernel each time I invoke 'mk', even though only little > or nothing has changed. Is this the way it is intended to be? Looks like your source files have a modification time newer than the current time (as seen on your machine). Either manually set date/time on boot (if not connected to the net) or set TIMESYNCARGS=(-n pool.ntp.org) in /rc/bin/termrc.local. Pick a public ntpserver near you instead of pool.ntp.org.