Talk:Tslib: Difference between revisions
From ArmadeusWiki
(move device creation) |
(Move installation part in discussion) |
||
Line 1: | Line 1: | ||
==Installation== | |||
===Preliminaries checks=== | |||
{{Warning| | |||
This part '''is required''' on: Ubuntu 6.04, KUbuntu 6.10 or more <br> | |||
This part is normaly '''not required''' on following distribution: KUbuntu 9.04 | |||
}} | |||
* Be sure to have '''libtool''' package installed (tested with 1.5.22-4 & 1.5.24-1 versions). <br>Otherwise you will have following errors: | |||
configure.ac:25: error: possibly undefined macro: AC_DISABLE_STATIC | |||
If this token and others are legitimate, please use m4_pattern_allow. | |||
See the Autoconf documentation. | |||
configure.ac:26: error: possibly undefined macro: AC_ENABLE_SHARED | |||
configure.ac:27: error: possibly undefined macro: AC_LIBTOOL_DLOPEN | |||
configure.ac:28: error: possibly undefined macro: AC_PROG_LIBTOOL | |||
* Be sure to have '''automake-1.6 or higher''' package installed (tested with 1.7 version -> working, 1.9.6 -> not working & 1.10 -> working !). <br> After automake package installation don't forget to update your ''/etc/alternatives/automake'' and ''/etc/alternatives/aclocal'' symlinks (tested on Ubuntu). | |||
<pre class="host"> | |||
$ sudo ln -sf /usr/bin/automake-1.7 /etc/alternatives/automake | |||
$ sudo ln -sf /usr/bin/aclocal-1.7 /etc/alternatives/aclocal | |||
--> | |||
lrwxrwxrwx 1 root root 20 2007-06-27 21:43 /etc/alternatives/aclocal -> /usr/bin/aclocal-1.7 | |||
lrwxrwxrwx 1 root root 21 2007-06-27 21:39 /etc/alternatives/automake -> /usr/bin/automake-1.7 | |||
</pre> | |||
{{Warning| | |||
The following part '''is MANDATORY''': | |||
}} | |||
* In Buildroot, if you don't have configured the C++ cross-compiler yet (done in default configuration), then: | |||
<pre class="host"> | |||
$ make menuconfig | |||
</pre> | |||
<pre class="config"> | |||
Toolchain Options ---> | |||
[*] Build/install c++ compiler and libstdc++? | |||
[*] Build/install a shared libgcc? | |||
</pre> | |||
===Config=== | |||
* After all these checks, activate libts package in Buildroot configuration: | |||
$ make menuconfig | |||
[[Image:Menuconfig_package.png]]<br><br> | |||
[[Image:Menuconfig_package_graphics.png]]<br> | |||
$ make | |||
* Or compile it directly (won't update your rootfs JFFS2/UBIFS image): | |||
$ make tslib | |||
===Device file creation (if not already existing)=== | ===Device file creation (if not already existing)=== | ||
* ''/dev/input/event0'' is created from the infos got from: | * ''/dev/input/event0'' is created from the infos got from: |
Latest revision as of 15:21, 6 July 2011
Installation
Preliminaries checks
![]() |
Warning:
This part is required on: Ubuntu 6.04, KUbuntu 6.10 or more |
- Be sure to have libtool package installed (tested with 1.5.22-4 & 1.5.24-1 versions).
Otherwise you will have following errors:
configure.ac:25: error: possibly undefined macro: AC_DISABLE_STATIC If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:26: error: possibly undefined macro: AC_ENABLE_SHARED configure.ac:27: error: possibly undefined macro: AC_LIBTOOL_DLOPEN configure.ac:28: error: possibly undefined macro: AC_PROG_LIBTOOL
- Be sure to have automake-1.6 or higher package installed (tested with 1.7 version -> working, 1.9.6 -> not working & 1.10 -> working !).
After automake package installation don't forget to update your /etc/alternatives/automake and /etc/alternatives/aclocal symlinks (tested on Ubuntu).
$ sudo ln -sf /usr/bin/automake-1.7 /etc/alternatives/automake $ sudo ln -sf /usr/bin/aclocal-1.7 /etc/alternatives/aclocal --> lrwxrwxrwx 1 root root 20 2007-06-27 21:43 /etc/alternatives/aclocal -> /usr/bin/aclocal-1.7 lrwxrwxrwx 1 root root 21 2007-06-27 21:39 /etc/alternatives/automake -> /usr/bin/automake-1.7
- In Buildroot, if you don't have configured the C++ cross-compiler yet (done in default configuration), then:
$ make menuconfig
Toolchain Options ---> [*] Build/install c++ compiler and libstdc++? [*] Build/install a shared libgcc?
Config
- After all these checks, activate libts package in Buildroot configuration:
$ make menuconfig
$ make
- Or compile it directly (won't update your rootfs JFFS2/UBIFS image):
$ make tslib
Device file creation (if not already existing)
- /dev/input/event0 is created from the infos got from:
# cat /sys/class/input/event0/dev 13:64 # mkdir /dev/input # cd /dev/input/ # mknod event0 c 13 64 # ls -al drwxr-xr-x 2 root root 0 Jan 1 00:39 . drwxr-xr-x 5 root root 0 Jan 1 00:39 .. crw-r--r-- 1 root root 13, 64 Jan 1 00:39 event0 #