Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/skel-root/armbox/hd51/etc/init.d/emu b/skel-root/armbox/hd51/etc/init.d/emu
- index 208dbf5..1c51cd8 100755
- --- a/skel-root/armbox/hd51/etc/init.d/emu
- +++ b/skel-root/armbox/hd51/etc/init.d/emu
- @@ -12,6 +12,7 @@ F_OSCAM=".oscam"
- F_NCAM=".ncam"
- F_GBOX=".gbox"
- F_CS2GBOX=".cs2gbox"
- +F_CIPLUSHELPER=".ciplushelper"
- MGCAM_Action()
- {
- @@ -228,9 +229,33 @@ CS2GBOX_Action()
- esac
- }
- +CIPLUSHELPER_Action()
- +{
- + case $1 in
- + "start" )
- + SHOWINFO "start ciplushelper"
- + /var/bin/ciplushelper &
- + sleep 1
- + ;;
- + "stop" )
- + SHOWINFO "stop ciplushelper"
- + killall ciplushelper
- + sleep 1
- + ;;
- + * )
- + CIPLUSHELPER_Action "stop"
- + sleep 1
- + CIPLUSHELPER_Action "start"
- + ;;
- + esac
- +}
- +
- EMU_Action()
- {
- case $1 in
- + "ciplushelper")
- + CIPLUSHELPER_Action $ACTION
- + ;;
- "cs2gbox")
- CS2GBOX_Action $ACTION
- ;;
- @@ -256,6 +281,10 @@ EMU_Action()
- MGCAM_Action $ACTION
- ;;
- *)
- + if [ -e $FLAGDIR/$F_CIPLUSHELPER ]; then
- + CIPLUSHELPER_Action $ACTION
- + fi
- +
- if [ -e $FLAGDIR/$F_CS2GBOX ]; then
- CS2GBOX_Action $ACTION
- fi
- diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale
- index 762d35a..ec67f0d 100644
- --- a/data/locale/deutsch.locale
- +++ b/data/locale/deutsch.locale
- @@ -247,6 +247,8 @@ ca_init_1 CI-Modul
- ca_init_2 Conax-Karte und CI-Modul
- cablesetup.provider Kabelanbieter
- camd_control camd-Steuerung
- +camd_item_ciphlp_hint CI+ Helper
- +camd_item_ciphlp_name ciplushelper
- camd_item_cs2gbox_hint cs2gbox - Newcamd Bridge
- camd_item_cs2gbox_name cs2gbox
- camd_item_doscam_hint DOSCam - Softcam und Emulator
- diff --git a/src/gui/daemon_control.cpp b/src/gui/daemon_control.cpp
- index 1943a9f..ec7a6e1 100644
- --- a/src/gui/daemon_control.cpp
- +++ b/src/gui/daemon_control.cpp
- @@ -151,7 +151,8 @@ camds_data_t camds_data[]=
- {LOCALE_CAMD_ITEM_OSEMU_NAME, LOCALE_CAMD_ITEM_OSEMU_HINT, "OSEMU", "osemu", 0, 0},
- {LOCALE_CAMD_ITEM_NEWCS_NAME, LOCALE_CAMD_ITEM_NEWCS_HINT, "NEWCS", "newcs", 0, 0},
- {LOCALE_CAMD_ITEM_GBOX_NAME, LOCALE_CAMD_ITEM_GBOX_HINT, "GBOX.NET", "gbox", 0, 0},
- - {LOCALE_CAMD_ITEM_CS2GBOX_NAME, LOCALE_CAMD_ITEM_CS2GBOX_HINT, "CS2GBOX", "cs2gbox", 0, 0}
- + {LOCALE_CAMD_ITEM_CS2GBOX_NAME, LOCALE_CAMD_ITEM_CS2GBOX_HINT, "CS2GBOX", "cs2gbox", 0, 0},
- + {LOCALE_CAMD_ITEM_CIPHLP_NAME, LOCALE_CAMD_ITEM_CIPHLP_HINT, "CIPHLP", "ciplushelper", 0, 0}
- };
- #define CAMDS_COUNT (sizeof(camds_data)/sizeof(struct camds_data_t))
- diff --git a/src/system/locals.h b/src/system/locals.h
- index 494976f..b7da8ce 100644
- --- a/src/system/locals.h
- +++ b/src/system/locals.h
- @@ -274,6 +274,8 @@ typedef enum
- LOCALE_CA_INIT_2,
- LOCALE_CABLESETUP_PROVIDER,
- LOCALE_CAMD_CONTROL,
- + LOCALE_CAMD_ITEM_CIPHLP_HINT,
- + LOCALE_CAMD_ITEM_CIPHLP_NAME,
- LOCALE_CAMD_ITEM_CS2GBOX_HINT,
- LOCALE_CAMD_ITEM_CS2GBOX_NAME,
- LOCALE_CAMD_ITEM_DOSCAM_HINT,
- diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h
- index 3a8a3de..27b4960 100644
- --- a/src/system/locals_intern.h
- +++ b/src/system/locals_intern.h
- @@ -274,6 +274,8 @@ const char * locale_real_names[] =
- "ca_init_2",
- "cablesetup.provider",
- "camd_control",
- + "camd_item_ciphlp_hint",
- + "camd_item_ciphlp_name",
- "camd_item_cs2gbox_hint",
- "camd_item_cs2gbox_name",
- "camd_item_doscam_hint",
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement