Index: ipk/source/emus_kbox_1_01pre24/CONTROL/postinst
===================================================================
--- ipk/source/emus_kbox_1_01pre24/CONTROL/postinst	(revision 5347)
+++ ipk/source/emus_kbox_1_01pre24/CONTROL/postinst	(revision 6663)
@@ -1,19 +1,8 @@
 #!/bin/sh
-TMP=/tmp/.kbox
-PLUGINDIR=/var/emu
+TMP=/tmp/.keys
+PLUGINDIR=/var/keys
+PLUGINDIR=/var/bin
 CONFIGDIR=/var/etc
-if [ ! -e /var/keys/cwshare.cfg ]; then
-	echo "rename cwshare.cfg.kbox -> cwshare.cfg"
-	mv /var/keys/cwshare.cfg.kbox /var/keys/cwshare.cfg
-fi
-if [ ! -e /var/keys/kbox_cfg ]; then
-	echo "rename kbox_cfg.kbox -> kbox_cfg"
-	mv /var/keys/kbox_cfg.kbox /var/keys/kbox_cfg
-fi
-if [ ! -e /var/keys/nwcdcs.cfg ]; then
-	echo "rename nwcdcs.cfg.kbox -> nwcdcs.cfg"
-	mv /var/keys/nwcdcs.cfg.kbox /var/keys/nwcdcs.cfg
-fi
-echo "successful installed"
+echo "successfully installed"
 echo "syncing disk"
 sync
@@ -23,3 +12,31 @@
 	echo new freespace size $FREE kb
 fi
+
+if [ ! -e /var/keys/cwshare.cfg ]; then
+	echo "use ipk config file: cwshare.cfg"
+	echo "rename /var/keys/cwshare.cfg.kbox > /var/keys/cwshare.cfg"
+	mv /var/keys/cwshare.cfg.kbox /var/keys/cwshare.cfg
+else
+	echo "found user config file: cwshare.cfg"
+	echo "skip ipk config file: cwshare.cfg.kbox"
+fi
+
+if [ ! -e /var/keys/kbox_cfg ]; then
+	echo "use ipk config file: kbox_cfg"
+	echo "rename /var/keys/kbox_cfg.kbox > /var/keys/kbox_cfg"
+	mv /var/keys/kbox_cfg.kbox /var/keys/kbox_cfg
+else
+	echo "found user config file: kbox_cfg"
+	echo "skip ipk config file: kbox_cfg.kbox"
+fi
+
+if [ ! -e /var/keys/nwcdcs.cfg ]; then
+	echo "use ipk config file: nwcdcs.cfg"
+	echo "rename /var/keys/nwcdcs.cfg.kbox > /var/keys/nwcdcs.cfg"
+	mv /var/keys/nwcdcs.cfg.kbox /var/keys/nwcdcs.cfg
+else
+	echo "found user config file: nwcdcs.cfg"
+	echo "skip ipk config file: nwcdcs.cfg.kbox"
+fi
+
 exit 0
Index: ipk/source/emus_kbox_1_01pre24/CONTROL/postrm
===================================================================
--- ipk/source/emus_kbox_1_01pre24/CONTROL/postrm	(revision 5347)
+++ ipk/source/emus_kbox_1_01pre24/CONTROL/postrm	(revision 6663)
@@ -1,5 +1,5 @@
 #!/bin/sh
-TMP=/tmp/.kbox
-echo "successful removed"
+TMP=/tmp/.keys
+echo "successfully removed"
 echo "syncing disk"
 sync
@@ -9,3 +9,6 @@
 	echo new freespace size $FREE kb
 fi
+
+sync
+
 exit 0
Index: ipk/source/emus_kbox_1_01pre24/CONTROL/preinst
===================================================================
--- ipk/source/emus_kbox_1_01pre24/CONTROL/preinst	(revision 5347)
+++ ipk/source/emus_kbox_1_01pre24/CONTROL/preinst	(revision 6663)
@@ -1,5 +1,5 @@
 #!/bin/sh
 #
-TMP=/tmp/.skin
+TMP=/tmp/.keys
 echo "syncing disk"
 sync
@@ -21,10 +21,10 @@
 	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | tail -n1`
 	FREE=`expr $SPACE - 100`
-	SIZE=115
-	echo "check freespace"
+	SIZE=122
+	echo "checking freespace"
 	echo packege size $SIZE kb
 	echo freespace size $FREE kb
 	if  [ "$FREE" -lt "$SIZE" ]; then
-		echo "sorry no freespace on device"
+		echo "sorry no freespace left on device"
 		exit 1
 	else
@@ -32,7 +32,7 @@
 	fi
 fi   
-echo "install kbox ..."
+echo "installing kbox and configs..."
 echo "checking OS"
-if  [ `cat /etc/motd | grep AAF | grep M | grep rev | wc -l` -eq 0 ]; then                      
+if  [ `cat /etc/motd | grep AAF | grep M | grep rev | wc -l` -eq 0 ]; then
 	echo ---------------------------
 	echo DONT USE this IPK Package!!
@@ -42,3 +42,5 @@
 	exit 1
 fi
+
+sync
 exit 0
Index: ipk/source/emus_kbox_1_01pre24/CONTROL/prerm
===================================================================
--- ipk/source/emus_kbox_1_01pre24/CONTROL/prerm	(revision 5347)
+++ ipk/source/emus_kbox_1_01pre24/CONTROL/prerm	(revision 6663)
@@ -1,4 +1,4 @@
 #!/bin/sh
-#
+TMP=/tmp/.keys
 echo "syncing disk"
 sync
@@ -8,16 +8,20 @@
 	echo freespace size $FREE kb
 fi
-echo "remove kbox"
+
 if [ ! -e /var/keys/cwshare.cfg.kbox ]; then
-	echo "rename cwshare.cfg -> cwshare.cfg.kbox"
-	mv /var/keys/cwshare.cfg /var/keys/cwshare.cfg.kbox
+	echo "remove ipk cwshare.cfg"
+	rm /var/keys/cwshare.cfg
 fi
+
 if [ ! -e /var/keys/kbox_cfg.kbox ]; then
-	echo "rename kbox_cfg -> kbox_cfg.kbox"
-	mv /var/keys/kbox_cfg /var/keys/kbox_cfg.kbox
+	echo "remove ipk kbox_cfg"
+	rm /var/keys/kbox_cfg
 fi
+
 if [ ! -e /var/keys/nwcdcs.cfg.kbox ]; then
-	echo "rename nwcdcs.cfg -> nwcdcs.cfg.kbox"
-	mv /var/keys/nwcdcs.cfg /var/keys/nwcdcs.cfg.kbox
+	echo "remove ipk nwcdcs.cfg"
+	rm /var/keys/nwcdcs.cfg
 fi
+
+echo "removing kbox and configs"
 exit 0
Index: ipk/source/emus_kbox_1_01pre24/var/keys/cwshare.cfg
===================================================================
--- ipk/source/emus_kbox_1_01pre24/var/keys/cwshare.cfg	(revision 6663)
+++ ipk/source/emus_kbox_1_01pre24/var/keys/cwshare.cfg	(revision 6663)
@@ -0,0 +1,1 @@
+ 
Index: ipk/source/emus_kbox_1_01pre24/var/keys/cwshare.cfg.kbox
===================================================================
--- ipk/source/emus_kbox_1_01pre24/var/keys/cwshare.cfg.kbox	(revision 5347)
+++ 	(revision )
@@ -1,1 +1,0 @@
- 
Index: ipk/source/emus_kbox_1_01pre24/var/keys/kbox_cfg
===================================================================
--- ipk/source/emus_kbox_1_01pre24/var/keys/kbox_cfg	(revision 6663)
+++ ipk/source/emus_kbox_1_01pre24/var/keys/kbox_cfg	(revision 6663)
@@ -0,0 +1,192 @@
+# kbox config file
+
+# Number Of Tuners
+# xx ; xx=00 1 tuner (default)
+# xx ; xx=01 1 tuner
+# xx ; xx=02 2 tuners
+# xx ; xx=03 3 tuners
+N: { 01 }
+
+
+# Trace/Debug
+# xx yz ; xx=00 no konsole output
+# xx yz ; xx=01 konsole output
+# xx yz ; y=0 debug output (don't use)
+# xx yz ; y=1 no debug output
+# xx yz ; z=0 ouput to konsole
+# xx yz ; z=1 output to /var/tmp/debug.txt (not included yet!)
+# xx yz ; z=2 Output to UDP (to capture with gboxt)
+Z: { 01 12 } 192.168.1.11 8024
+
+# Task type (not included yet)
+#    00 **  normal mode gbox mode (no season, use Multicam instead)
+#    01 **  Season Emulation in a Irdeto allcam chid 0602 nonZ
+#    10 **  Season Emulation in a Irdeto allcam chid 1702 nonZ
+#    11 **  Season Emulation in a Irdeto allcam chid 1702 Z
+#    12 **  Season Emulation in a Irdeto allcam chid 1722 Z
+#    13 **  Season Emulation in a Irdeto allcam chid 1762 Z
+#    ** *1  Com port to use for season emulatiom (1 or 2)
+#    ** 0*  Use CTS f�r RST detection
+#    ** 1*  Use DCD f�r RST detection
+#    ** **   9600 = Baudrate to be used (working only on dbox2)
+#W: { 00 00 } 9600
+
+# gbox working mode
+#    00 pure Emu
+#    01 pure SoftCam (when card inside), Emu (when no card inside)
+#    02 pure Net Client
+#    03 Mixed mode !!!!! always use this !!!!!
+G: { 03 }
+
+# Display ECM messages on Konsole
+#    00 don't show any ECM's
+#    01 show only valid ECM's
+#    02 show valid and bad ECM's with complete data display
+C: { 00 }
+
+# Display EMM messages on Konsole
+#    *0 don't show any EMM's
+#    *1 show only valid EMM's
+#    *2 show valid and bad EMM's with complete data display
+#    1* Log any tier change on PW-Nagra-17xx cards into /var/keys/pwupdate.log
+M: { 00 }
+
+# AutoUpdate
+#    00 is ignored (default)
+#    01 enable AU
+#    02 Auto AU !!!!! always use this !!!!!
+A: { 02 }
+
+# Key update
+#    01 update only new keys, default setting
+#    02 update all keys (used for valid PMK checking)
+#U: { 01 }
+
+# Hash pids
+#    00 hash all pids, DO NOT USE THIS OPTION, IT IS ONLY FOR TESTING STUFF
+#    01 hash only pids with implemented algos and available keys !!!!! always use this !!!!!
+H: { 01 }
+
+# Key files folder
+#    00 keyfiles in /var/keys
+#    01 keyfiles in /var/tmp
+T: { 00 }
+
+# On Screen Display for the Multysystemcam on com1/com2
+#    00 No OSD (default)
+#    01 display Smartcard messages in Neutrino
+#    02 display Smartcard messages in Neutrino new nhttpd format
+#    03 display Smartcard messages in Enigma
+#                      mypass (use user=root and pass=mypass for nhttpd)
+O: { 01 } 192.168.1.51
+
+# Logger and NET-mode UDP port Init (not included yet)
+#    00 do not init UDP port
+#    01 Init UDP port for IP, port, UDP
+#L: { 00 } 192.168.1.29 8017
+
+# demux, multicam/comport configuration
+# *x ** ; x = device nummber to be used (0= default)
+# D* ** ; force use of /proc/bus/gtx for cw write operations
+          (in the dbox2 the gbox writes directly the CW's, 00 is the
+           recommended mode ! No drivers are required) use D* ** ONLY if
+           you have Problems. 0* ** should be prefered !!!
+# F* ** ; write CW's in both devices (used for PVR in STB04xxx devices)
+# ** y* ; y=0001b (0x1*) use slot1 as Multicam (only on STB04xxx)
+# ** y* ; y=0010b (0x2*) use slot2 as Multicam (only on STB04xxx)
+# ** y* ; y=0011b (0x3*) use slot1 and slot2 as Multicams (only on STB04xxx)
+# ** *z ; z=0001b (0x*1) use com1 as Multicam
+# ** *z ; z=0010b (0x*2) use com2 as Multicam
+# ** *z ; z=0011b (0x*3) use com1 and com2 as Multicams
+# ** yz ; yz=00110011b (0x33) use slot1+slot2+com1+com2 as Multicams
+# ** *z ; z=0100b (0x*4) invert CTS detection on com1
+# ** *z ; z=1000b (0x*8) invert CTS detection on com2
+# example: yz = 0x0A = 00001010 (use com2 with inverted CTS detection line)
+V: { 00 01 }
+
+# RS232 SSSP mode (not included yet)
+#    x    debug messages, 1=on, 0=off
+#     y   com port to use (0=none, 1=com1, 2=com2)
+#R: { 00 }
+
+# =============================================================================
+# extra options to override default seting in case you expirience Problems,
+# normaly these setings are not required.
+#
+# cpu, api, cw write method (not included yet)
+#
+#     00 auto
+#     01 80X86
+#     02 MPC823
+#     03 IBM STB04xxx
+#     04 SuperH4
+#        00 auto
+#        01 ibm
+#        02 api2
+#        03 api3
+#           00 cw write style = use internal routine (only dbox2)
+#           01 cw write style = CA_SET_DESCR type1 (dbox2, vdr)
+#           02 cw write style = CA_SET_DESCR type2
+#           03 cw write style = CA_SET_DESCR type3
+#           04 cw write style = 16 byte /proc/bus/gtx
+#           05 cw write style = 4096 byte /proc/bus/gtx, cw offset=0x04D0
+#              xx write cw in 1st device with index=xx
+#                 yy write cw in 2nd device with index=yy
+#                      01 means with .index=0 (default)
+#                      02 means with .index=1
+#                      03 means with .index=0 and .index=1
+#                      .. any bitwise combination ...
+#                      FF means with all 8 indexes (0-7)
+#J: { 01 00 00 01 01 }
+
+# Files, folders, devices
+#          folder/device             comment
+#
+#F: { 01 } /var/tmp/pmt.tmp          // pmt file
+#F: { 02 } /var/tmp/emm.info         // key update log file
+#F: { 03 } /var/tmp/ecm.info         // ecm info file
+#F: { 04 } /var/tmp/atack.txt        // atack info file
+#F: { 11 } /var/keys                 // folder for config files
+#F: { 12 } /var/tmp                  // folder for temporary file
+#F: { 13 } /var/tmp                  // folder for keyfiles
+#F: { 21 } /dev/dvb/adapter0/ca0     // ca device
+#F: { 22 } /dev/dvb/adapter0/dvr0    // dvr device
+#F: { 23 } /dev/dvb/adapter0/demux0  // demux device
+#F: { 31 } /dev/dvb/adapter0/ca1     // second ca device to write cw's (recording)
+#F: { 41 } /dev/sci0                 // STB04xxx slot1
+#F: { 42 } /dev/sci1                 // STB04xxx slot1
+#F: { 43 } /dev/tts/0                // rs232 com1
+#F: { 44 } /dev/tts/1                // rs232 com2
+
+# For overclocking freaks, Clocking internal STB04xxx slots with:
+# 1=7.80MHz 2=6.30MHz 3=5.25MHz 4=4.50MHz 5=3.94MHz 6=3.50MHz 7=3.15MHz
+# Irdeto works fine on 7.8MHz, all other fine on 6.30MHz or 5.25MHz
+# The Dream has not a clean clock signal, some cards that are sensitive will
+# refuse to work even on 3.5MHz, thats why 3.15MHz is the default value there.
+# On other STB04xxx recievers the same cards work with 6.30MHz
+#
+#F: { 51 } 02                        // irdeto
+#F: { 52 } 03                        // seca
+#F: { 53 } 03                        // viaccess
+#F: { 54 } 03                        // nagra
+#F: { 55 } 03                        // crypto
+#F: { 57 } 03                        // conax
+#F: { 58 } 03                        // nds
+
+# force a name change of the season or sssp rs232 device
+#F: { 45 } /dev/ttyS1
+
+# set stay alive ping time in seconds (default is 300)
+#F: { A0 } 300
+
+
+# disable direct serial port I/O access on 80x86cpus (win and linux)
+# direct port i/o is used to set unusual Baudrates, if you want to
+# a 3.579MHz card in a 6.000MHz reader etc ...
+#
+# Enabled (A1=0) is the default setting, has always been !!!
+#
+# Disable (set to 1) it ONLY if you have problems with ioperm or you want
+# to use a usb-to-rs232 smartcard reader
+#
+#F: { A1 } 0
Index: ipk/source/emus_kbox_1_01pre24/var/keys/kbox_cfg.kbox
===================================================================
--- ipk/source/emus_kbox_1_01pre24/var/keys/kbox_cfg.kbox	(revision 5347)
+++ 	(revision )
@@ -1,192 +1,0 @@
-# kbox config file
-
-# Number Of Tuners
-# xx ; xx=00 1 tuner (default)
-# xx ; xx=01 1 tuner
-# xx ; xx=02 2 tuners
-# xx ; xx=03 3 tuners
-N: { 01 }
-
-
-# Trace/Debug
-# xx yz ; xx=00 no konsole output
-# xx yz ; xx=01 konsole output
-# xx yz ; y=0 debug output (don't use)
-# xx yz ; y=1 no debug output
-# xx yz ; z=0 ouput to konsole
-# xx yz ; z=1 output to /var/tmp/debug.txt (not included yet!)
-# xx yz ; z=2 Output to UDP (to capture with gboxt)
-Z: { 01 12 } 192.168.1.11 8024
-
-# Task type (not included yet)
-#    00 **  normal mode gbox mode (no season, use Multicam instead)
-#    01 **  Season Emulation in a Irdeto allcam chid 0602 nonZ
-#    10 **  Season Emulation in a Irdeto allcam chid 1702 nonZ
-#    11 **  Season Emulation in a Irdeto allcam chid 1702 Z
-#    12 **  Season Emulation in a Irdeto allcam chid 1722 Z
-#    13 **  Season Emulation in a Irdeto allcam chid 1762 Z
-#    ** *1  Com port to use for season emulatiom (1 or 2)
-#    ** 0*  Use CTS f�r RST detection
-#    ** 1*  Use DCD f�r RST detection
-#    ** **   9600 = Baudrate to be used (working only on dbox2)
-#W: { 00 00 } 9600
-
-# gbox working mode
-#    00 pure Emu
-#    01 pure SoftCam (when card inside), Emu (when no card inside)
-#    02 pure Net Client
-#    03 Mixed mode !!!!! always use this !!!!!
-G: { 03 }
-
-# Display ECM messages on Konsole
-#    00 don't show any ECM's
-#    01 show only valid ECM's
-#    02 show valid and bad ECM's with complete data display
-C: { 00 }
-
-# Display EMM messages on Konsole
-#    *0 don't show any EMM's
-#    *1 show only valid EMM's
-#    *2 show valid and bad EMM's with complete data display
-#    1* Log any tier change on PW-Nagra-17xx cards into /var/keys/pwupdate.log
-M: { 00 }
-
-# AutoUpdate
-#    00 is ignored (default)
-#    01 enable AU
-#    02 Auto AU !!!!! always use this !!!!!
-A: { 02 }
-
-# Key update
-#    01 update only new keys, default setting
-#    02 update all keys (used for valid PMK checking)
-#U: { 01 }
-
-# Hash pids
-#    00 hash all pids, DO NOT USE THIS OPTION, IT IS ONLY FOR TESTING STUFF
-#    01 hash only pids with implemented algos and available keys !!!!! always use this !!!!!
-H: { 01 }
-
-# Key files folder
-#    00 keyfiles in /var/keys
-#    01 keyfiles in /var/tmp
-T: { 00 }
-
-# On Screen Display for the Multysystemcam on com1/com2
-#    00 No OSD (default)
-#    01 display Smartcard messages in Neutrino
-#    02 display Smartcard messages in Neutrino new nhttpd format
-#    03 display Smartcard messages in Enigma
-#                      mypass (use user=root and pass=mypass for nhttpd)
-O: { 01 } 192.168.1.51
-
-# Logger and NET-mode UDP port Init (not included yet)
-#    00 do not init UDP port
-#    01 Init UDP port for IP, port, UDP
-#L: { 00 } 192.168.1.29 8017
-
-# demux, multicam/comport configuration
-# *x ** ; x = device nummber to be used (0= default)
-# D* ** ; force use of /proc/bus/gtx for cw write operations
-          (in the dbox2 the gbox writes directly the CW's, 00 is the
-           recommended mode ! No drivers are required) use D* ** ONLY if
-           you have Problems. 0* ** should be prefered !!!
-# F* ** ; write CW's in both devices (used for PVR in STB04xxx devices)
-# ** y* ; y=0001b (0x1*) use slot1 as Multicam (only on STB04xxx)
-# ** y* ; y=0010b (0x2*) use slot2 as Multicam (only on STB04xxx)
-# ** y* ; y=0011b (0x3*) use slot1 and slot2 as Multicams (only on STB04xxx)
-# ** *z ; z=0001b (0x*1) use com1 as Multicam
-# ** *z ; z=0010b (0x*2) use com2 as Multicam
-# ** *z ; z=0011b (0x*3) use com1 and com2 as Multicams
-# ** yz ; yz=00110011b (0x33) use slot1+slot2+com1+com2 as Multicams
-# ** *z ; z=0100b (0x*4) invert CTS detection on com1
-# ** *z ; z=1000b (0x*8) invert CTS detection on com2
-# example: yz = 0x0A = 00001010 (use com2 with inverted CTS detection line)
-V: { 00 01 }
-
-# RS232 SSSP mode (not included yet)
-#    x    debug messages, 1=on, 0=off
-#     y   com port to use (0=none, 1=com1, 2=com2)
-#R: { 00 }
-
-# =============================================================================
-# extra options to override default seting in case you expirience Problems,
-# normaly these setings are not required.
-#
-# cpu, api, cw write method (not included yet)
-#
-#     00 auto
-#     01 80X86
-#     02 MPC823
-#     03 IBM STB04xxx
-#     04 SuperH4
-#        00 auto
-#        01 ibm
-#        02 api2
-#        03 api3
-#           00 cw write style = use internal routine (only dbox2)
-#           01 cw write style = CA_SET_DESCR type1 (dbox2, vdr)
-#           02 cw write style = CA_SET_DESCR type2
-#           03 cw write style = CA_SET_DESCR type3
-#           04 cw write style = 16 byte /proc/bus/gtx
-#           05 cw write style = 4096 byte /proc/bus/gtx, cw offset=0x04D0
-#              xx write cw in 1st device with index=xx
-#                 yy write cw in 2nd device with index=yy
-#                      01 means with .index=0 (default)
-#                      02 means with .index=1
-#                      03 means with .index=0 and .index=1
-#                      .. any bitwise combination ...
-#                      FF means with all 8 indexes (0-7)
-#J: { 01 00 00 01 01 }
-
-# Files, folders, devices
-#          folder/device             comment
-#
-#F: { 01 } /var/tmp/pmt.tmp          // pmt file
-#F: { 02 } /var/tmp/emm.info         // key update log file
-#F: { 03 } /var/tmp/ecm.info         // ecm info file
-#F: { 04 } /var/tmp/atack.txt        // atack info file
-#F: { 11 } /var/keys                 // folder for config files
-#F: { 12 } /var/tmp                  // folder for temporary file
-#F: { 13 } /var/tmp                  // folder for keyfiles
-#F: { 21 } /dev/dvb/adapter0/ca0     // ca device
-#F: { 22 } /dev/dvb/adapter0/dvr0    // dvr device
-#F: { 23 } /dev/dvb/adapter0/demux0  // demux device
-#F: { 31 } /dev/dvb/adapter0/ca1     // second ca device to write cw's (recording)
-#F: { 41 } /dev/sci0                 // STB04xxx slot1
-#F: { 42 } /dev/sci1                 // STB04xxx slot1
-#F: { 43 } /dev/tts/0                // rs232 com1
-#F: { 44 } /dev/tts/1                // rs232 com2
-
-# For overclocking freaks, Clocking internal STB04xxx slots with:
-# 1=7.80MHz 2=6.30MHz 3=5.25MHz 4=4.50MHz 5=3.94MHz 6=3.50MHz 7=3.15MHz
-# Irdeto works fine on 7.8MHz, all other fine on 6.30MHz or 5.25MHz
-# The Dream has not a clean clock signal, some cards that are sensitive will
-# refuse to work even on 3.5MHz, thats why 3.15MHz is the default value there.
-# On other STB04xxx recievers the same cards work with 6.30MHz
-#
-#F: { 51 } 02                        // irdeto
-#F: { 52 } 03                        // seca
-#F: { 53 } 03                        // viaccess
-#F: { 54 } 03                        // nagra
-#F: { 55 } 03                        // crypto
-#F: { 57 } 03                        // conax
-#F: { 58 } 03                        // nds
-
-# force a name change of the season or sssp rs232 device
-#F: { 45 } /dev/ttyS1
-
-# set stay alive ping time in seconds (default is 300)
-#F: { A0 } 300
-
-
-# disable direct serial port I/O access on 80x86cpus (win and linux)
-# direct port i/o is used to set unusual Baudrates, if you want to
-# a 3.579MHz card in a 6.000MHz reader etc ...
-#
-# Enabled (A1=0) is the default setting, has always been !!!
-#
-# Disable (set to 1) it ONLY if you have problems with ioperm or you want
-# to use a usb-to-rs232 smartcard reader
-#
-#F: { A1 } 0
Index: ipk/source/emus_kbox_1_01pre24/var/keys/nwcdcs.cfg
===================================================================
--- ipk/source/emus_kbox_1_01pre24/var/keys/nwcdcs.cfg	(revision 6663)
+++ ipk/source/emus_kbox_1_01pre24/var/keys/nwcdcs.cfg	(revision 6663)
@@ -0,0 +1,23 @@
+#newcamd sharing configuration
+
+# Options
+#    print infos/errors
+#    |  print Hello
+#    |  |  print ecm/cw
+#    |  |  |  print CW's
+#    |  |  |  |  try to reconnect imidiatly after lost connection
+#    |  |  |  |  |  print on screen
+#    |  |  |  |  |  |  print into debug.txt
+#    |  |  |  |  |  |  |  on callback reconnect after 30 seconds
+#    |  |  |  |  |  |  |  |  on login failed, retry afer 5 seconds (only 1 time)
+#    |  |  |  |  |  |  |  |  |  try to connect to unconnected server every hour (3600 seconds)
+#    |  |  |  |  |  |  |  |  |  |    minimum time distance (in seconds) between login's (force login delay)
+#    |  |  |  |  |  |  |  |  |  |    |  keep internet alive every 360 seconds
+#    |  |  |  |  |  |  |  |  |  |    |  |   ping cardservers (keep alive) every 360 after last activity
+#    |  |  |  |  |  |  |  |  |  |    |  |   |   connect timeout
+P: { 01 00 01 00 01 01 01 30 05 3600 05 360 360 1 }
+
+#    name  dns/ip        port  user   pass    callback configkey
+C: { dbox2 192.168.0.104 10001 myname passwo1 12000 01 02 03 04 05 06 07 08 09 10 11 12 13 14 }
+C: { dbox2 192.168.0.104 10002 myname passwo1 12000 01 02 03 04 05 06 07 08 09 10 11 12 13 14 }
+C: { hdbox mee.homeip.net 6008 other1 mypassword 13000 11 22 33 44 55 66 77 88 99 10 11 12 13 14 } 
Index: ipk/source/emus_kbox_1_01pre24/var/keys/nwcdcs.cfg.kbox
===================================================================
--- ipk/source/emus_kbox_1_01pre24/var/keys/nwcdcs.cfg.kbox	(revision 5347)
+++ 	(revision )
@@ -1,23 +1,0 @@
-#newcamd sharing configuration
-
-# Options
-#    print infos/errors
-#    |  print Hello
-#    |  |  print ecm/cw
-#    |  |  |  print CW's
-#    |  |  |  |  try to reconnect imidiatly after lost connection
-#    |  |  |  |  |  print on screen
-#    |  |  |  |  |  |  print into debug.txt
-#    |  |  |  |  |  |  |  on callback reconnect after 30 seconds
-#    |  |  |  |  |  |  |  |  on login failed, retry afer 5 seconds (only 1 time)
-#    |  |  |  |  |  |  |  |  |  try to connect to unconnected server every hour (3600 seconds)
-#    |  |  |  |  |  |  |  |  |  |    minimum time distance (in seconds) between login's (force login delay)
-#    |  |  |  |  |  |  |  |  |  |    |  keep internet alive every 360 seconds
-#    |  |  |  |  |  |  |  |  |  |    |  |   ping cardservers (keep alive) every 360 after last activity
-#    |  |  |  |  |  |  |  |  |  |    |  |   |   connect timeout
-P: { 01 00 01 00 01 01 01 30 05 3600 05 360 360 1 }
-
-#    name  dns/ip        port  user   pass    callback configkey
-C: { dbox2 192.168.0.104 10001 myname passwo1 12000 01 02 03 04 05 06 07 08 09 10 11 12 13 14 }
-C: { dbox2 192.168.0.104 10002 myname passwo1 12000 01 02 03 04 05 06 07 08 09 10 11 12 13 14 }
-C: { hdbox mee.homeip.net 6008 other1 mypassword 13000 11 22 33 44 55 66 77 88 99 10 11 12 13 14 } 
