| | |
| | | sudo umount $SYSROOT/proc
|
| | | sudo umount $SYSROOT/sys
|
| | | sudo umount /mnt
|
| | | |
| | | There's one more fix required, as the libdl.so symlink uses an absolute path |
| | | which doesn't quite work in our setup.
|
| | |
|
| | | sudo rm -rf $SYSROOT/usr/lib/arm-linux-gnueabihf/libdl.so
|
| | | sudo ln -s ../../../lib/arm-linux-gnueabihf/libdl.so.2 $SYSROOT/usr/lib/arm-linux-gnueabihf/libdl.so
|
| | |
|
| | | The final step is compiling SDL itself.
|
| | |
|
| | |
| | |
|
| | | The Text Input API is supported, with translation of scan codes done via the
|
| | | kernel symbol tables. For this to work, SDL needs access to a valid console.
|
| | | If you notice there's no SDL_TEXTINPUT message being emmited, double check that
|
| | | If you notice there's no SDL_TEXTINPUT message being emitted, double check that
|
| | | your app has read access to one of the following:
|
| | |
|
| | | * /proc/self/fd/0
|