summaryrefslogtreecommitdiffstats
path: root/package/tslib
Commit message (Collapse)AuthorAgeFilesLines
* tslib: fix github tarball to use commit idSpenser Gilliland2013-06-061-1/+1
| | | | | Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix package headers to comply with coding styleAlexandre Belloni2013-06-061-0/+1
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: correct option textPeter Korsgaard2013-04-111-1/+1
| | | | | | Option text should only be the package name, descriptions go in help text. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: bump versionYegor Yefremov2013-04-111-1/+1
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: fix license infoLuca Ceresoli2013-01-151-1/+1
| | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: add license infoStephan Hoffmann2012-12-101-0/+3
| | | | | | [Peter: Change to LGPL as pointed out by Arnout] Signed-off-by: Stephan Hoffmann <sho@relinux.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Download packages from github in tar.gz format instead git format.Marek Belisko2012-10-081-2/+2
| | | | | | | | | | | | | | | | | | Verified way how to get packages from github by version or sha1 (it's enough to use first 7 characters from SHA1): 1. by sha1 FOO_VERSION = 1234567 FOO_SITE = http://github.com/user/package/tarball/branch 2. by version FOO_VERSION = v1.0 FOO_SITE = http://github.com/user/package/tarball/$(FOO_VERSION) Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: remove useless arguments from AUTOTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: drop redundant configure optionsPeter Korsgaard2011-09-171-7/+2
| | | | | | And cleanup while we're at it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: remove --{enable,disable}-{shared,static} from autotools packagesThomas Petazzoni2011-06-121-1/+0
| | | | | | | | Now that those values are passed at the autotools infrastructure level, there's no need for every package to pass inconsistent values. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: bump versionLuca Ceresoli2011-04-041-1/+1
| | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: Enable raw module in ts.confDaniel Nyström2010-12-221-0/+14
| | | | | | | | | | | | | | By default there is no module activated in ts.conf. According to the ts.conf previously attached in the tslib package dir (which was never installed) the default module of choice was the raw module. This patch enables the raw module in the ts.conf file in the tslib source tree, which will be installed in the target. Signed-off-by: Daniel Nyström <daniel.nystrom@timeterminal.se> Acked-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: bump version to current git headDaniel Nyström2010-12-228-180/+2
| | | | | | | | | | | Due to missing official releases, fetch directly from GitHub repository. Many bugfixes since 1.0 and all previous patches in Buildroot are either applied or obsoleted. Signed-off-by: Daniel Nyström <daniel.nystrom@timeterminal.se> Acked-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: needs libtool patchPeter Korsgaard2010-11-051-1/+1
| | | | | | | Otherwise it fails with 'cannot install to a directory not ending in /usr/lib/ts'. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: fix plugin linkingLuca Ceresoli2010-05-011-0/+48
| | | | | | | | | Fixes error: "Couldnt load module pthres" and similar. Original patch: svn://svn.berlios.de/tslib/trunk@56. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: fix use of open()Luca Ceresoli2010-04-231-0/+53
| | | | | | | | | | Fixes error: "open with O_CREAT in second argument needs 3 arguments". Original patch: svn://svn.berlios.de/tslib/trunk/tslib r72. [Peter: pull original patch for proper attribution] Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-2/+0
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: convert to Makefile.autotools.in formatPeter Korsgaard2009-02-182-100/+12
| | | | | Patch by Sven Neumann <s.neumann@phase-zero.de> Closes #61.
* tslib: doesn't use C++, so don't require it in the configure scriptPeter Korsgaard2009-02-181-0/+17
|
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-1/+1
|
* tslib: add dependency to hsot-autoconf and host-automakeHans-Christian Egtvedt2008-12-041-2/+2
| | | | | | Tslib uses autoconf and automake during configure section, make sure it is available before building tslib.
* tslib: use more robust $@ when touching target instead of explisit nameHans-Christian Egtvedt2008-12-041-3/+3
|
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-1/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* Ensure tslib uses config.* from buildrootUlf Samuelsson2008-07-051-2/+3
|
* tslib: fix inputattach patch typosPeter Korsgaard2008-06-031-2/+2
| | | | | | | Patch by Markus Heidelberg. tslib should be changed to use inputattach from the input-tools package instead though.
* buildroot: additional -clean target fixesPeter Korsgaard2008-04-011-3/+2
| | | | Patch by Hebbar.
* patch to replace legacy bzero with memset in tslibJohn Voltz2008-03-121-0/+11
|
* patches for tslibJohn Voltz2008-03-062-0/+22
|
* add ts_test utilityIvan Kuten2007-12-111-0/+2
|
* - just use the strip binary to avoid confusing libtool (quotes)Bernhard Reutner-Fischer2007-10-011-5/+5
| | | | - use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
* - global whitespace trimmingBernhard Reutner-Fischer2007-08-221-3/+3
|
* - sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer2007-08-211-1/+1
| | | | toolchain/*/*.mk */Makefile.in -l)
* Remove switches if sstrip is runUlf Samuelsson2007-08-211-5/+5
|
* Add tslib packageUlf Samuelsson2007-08-124-0/+858