All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ts-calibrate: Always export TSLIB_CALIBFILE env variable
@ 2014-01-31  0:12 Franklin S. Cooper Jr
  2014-01-30 22:49 ` Cooper Jr., Franklin
  2014-01-30 22:54 ` Maupin, Chase
  0 siblings, 2 replies; 6+ messages in thread
From: Franklin S. Cooper Jr @ 2014-01-31  0:12 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Previously TSLIB_CALIBFILE env variable was only being exported if the mmc
  partition was mounted.
* Move the export statement outside of the if statement to insure that this
  important variable is always exported.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-graphics/tslib/ts-calibrate-init/init  |    3 ++-
 .../tslib/ts-calibrate-init_1.0.bb                 |    2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init/init b/meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init/init
index 5d5c0aa..ab19da3 100644
--- a/meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init/init
+++ b/meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init/init
@@ -31,9 +31,10 @@ mount | grep /media/mmcblk0p1 | grep vfat > /dev/null 2>&1
 if [ "$?" = "0" ]
 then
     tsfile=/media/mmcblk0p1/pointercal
-    export TSLIB_CALIBFILE=$tsfile
 fi
 
+export TSLIB_CALIBFILE=$tsfile
+
 if [ ! -f $tsfile ] ; then
     echo -n "Calibrating touchscreen (first time only)"
     ts_calibrate
diff --git a/meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init_1.0.bb b/meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init_1.0.bb
index dde5c42..0915941 100644
--- a/meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init_1.0.bb
+++ b/meta-arago-extras/recipes-graphics/tslib/ts-calibrate-init_1.0.bb
@@ -6,7 +6,7 @@ RDEPENDS_${PN} += "tslib"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://init;beginline=2;endline=11;md5=4b2e3b15f01cf63d2cb7988afdcc6c60"
 
-PR = "r2"
+PR = "r3"
 
 S = "${WORKDIR}"
 
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-01-31 23:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-31  0:12 [PATCH] ts-calibrate: Always export TSLIB_CALIBFILE env variable Franklin S. Cooper Jr
2014-01-30 22:49 ` Cooper Jr., Franklin
2014-01-30 22:54 ` Maupin, Chase
2014-01-30 23:01   ` Cooper Jr., Franklin
2014-01-31 14:47     ` Maupin, Chase
2014-01-31 23:18       ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.