summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/tslib.in6
-rw-r--r--rules/tslib.make6
2 files changed, 9 insertions, 3 deletions
diff --git a/rules/tslib.in b/rules/tslib.in
index 75eee1403..69a48905d 100644
--- a/rules/tslib.in
+++ b/rules/tslib.in
@@ -2,13 +2,19 @@ menuconfig TSLIB
bool
prompt "tslib (touch library) "
select HOST_QTE
+ help
+ FIXME: This item needs to be documented
config TSLIB_TS_CALIBRATE
bool
prompt "Install ts_calibrate on target"
depends on TSLIB
+ help
+ FIXME: This item needs to be documented
config TSLIB_TS_TEST
bool
prompt "Install ts_test on target"
depends on TSLIB
+ help
+ FIXME: This item needs to be documented
diff --git a/rules/tslib.make b/rules/tslib.make
index ab48cce52..da83235d1 100644
--- a/rules/tslib.make
+++ b/rules/tslib.make
@@ -32,7 +32,7 @@ TSLIB_DIR = $(BUILDDIR)/$(TSLIB)
tslib_get: $(STATEDIR)/tslib.get
-$(STATEDIR)/tslib.get: $(TSLIB_SOURCE)
+$(STATEDIR)/tslib.get: $(tslib_get_deps_default)
@$(call targetinfo, $@)
@$(call get_patches, $(TSLIB))
@$(call touch, $@)
@@ -47,7 +47,7 @@ $(TSLIB_SOURCE):
tslib_extract: $(STATEDIR)/tslib.extract
-$(STATEDIR)/tslib.extract: $(tslib_extract_deps)
+$(STATEDIR)/tslib.extract: $(tslib_extract_deps_default)
@$(call targetinfo, $@)
@$(call clean, $(TSLIB_DIR))
@$(call extract, $(TSLIB_SOURCE))
@@ -93,7 +93,7 @@ $(STATEDIR)/tslib.compile: $(tslib_compile_deps_default)
tslib_install: $(STATEDIR)/tslib.install
-$(STATEDIR)/tslib.install: $(STATEDIR)/tslib.compile
+$(STATEDIR)/tslib.install: $(tslib_install_deps_default)
@$(call targetinfo, $@)
@$(call install, TSLIB)
@$(call touch, $@)