debian/canfestival-peak.postinst
changeset 579 3126da40d469
parent 533 4d50417dab22
--- a/debian/canfestival-peak.postinst	Mon Jul 27 09:18:04 2009 +0200
+++ b/debian/canfestival-peak.postinst	Mon Jul 27 09:25:14 2009 +0200
@@ -5,31 +5,23 @@
 
 set -e
 
-# summary of how this script can be called:
-#        * <postinst> `configure' <most-recently-configured-version>
-#        * <old-postinst> `abort-upgrade' <new version>
-#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-#          <new-version>
-#        * <postinst> `abort-remove'
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
 DLL_LIST=
 CF_CONFIG=/usr/share/CanFestival-3/objdictgen/canfestival_config.py
 CF_CONFIG_TEMP=/usr/share/CanFestival-3/objdictgen/canfestival_config_ori.py
+
 case "$1" in
     configure)
     ldconfig
-    cd /usr/lib
-    DLL_LIST=
-	FILES=
+    
+	# Find canfestival driver library in /usr/lib
+	cd /usr/lib
 	for file in libcanfestival_can*
 	do
 		DLL_LIST="'$file',""$DLL_LIST"
 	done
+	
+	# copy template config and add the DLL_LIST 
+	# do this to display available canfestival plugin list choice in beremiz
 	cat $CF_CONFIG_TEMP > $CF_CONFIG
 	echo "DLL_LIST=[$DLL_LIST]" >> $CF_CONFIG
 	;;