enigma2.sh.in

Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

  • enigma2.sh.in

    -- enigma2.sh.in.patch --

    Hallo,

    Ich habe ein wenig enigma2.sh überarbeitet aber bevor enigma2.sh.in gepatch wird
    sollte man enigma2.sh (in zip enhalten) ausprobieren.

    Unterschiede-Datei

    1. --- enigma2.sh.in.orig 2016-09-03 18:48:46.264088748 +0200
    2. +++ enigma2.sh.in 2016-09-04 15:14:00.703857536 +0200
    3. @@ -4,18 +4,14 @@
    4. exec_prefix=@exec_prefix@
    5. datarootdir=@datarootdir@
    6. -if [ -e /usr/bin/xbmc ]; then
    7. - if [ -e /etc/.xbmcstart ]; then
    8. +if [ -x /usr/bin/xbmc ]; then
    9. rm -f /etc/.xbmcstart
    10. /usr/bin/xbmc
    11. - fi
    12. fi
    13. -if [ -e /usr/bin/kodi ]; then
    14. - if [ -e /etc/.kodistart ]; then
    15. +if [ -x /usr/bin/kodi ]; then
    16. rm -f /etc/.kodistart
    17. /usr/bin/kodi
    18. - fi
    19. fi
    20. if [ -x @bindir@/showiframe ]; then
    21. @@ -29,46 +25,31 @@
    22. fi
    23. # workaround for corrupt ssl files
    24. -if [ ! "$(grep config.misc.firstrun /etc/enigma2/settings)" == "config.misc.firstrun=false" ]; then
    25. +if ! grep ^config.misc.firstrun=false /etc/enigma2/settings >/dev/null; then
    26. rm -rf /etc/enigma2/cert.pem &
    27. rm -rf /etc/enigma2/key.pem &
    28. fi
    29. # update NTP time if NTP Time Enabled
    30. -if [ "$(grep config.misc.SyncTimeUsing /etc/enigma2/settings)" == "config.misc.SyncTimeUsing=1" ]; then
    31. +if grep ^config.misc.SyncTimeUsing=1 /etc/enigma2/settings >/dev/null; then
    32. /usr/sbin/ntpdate -s -u pool.ntp.org &
    33. fi
    34. # hook to execute scripts always before enigma2 start
    35. -if [ -x @bindir@/enigma2_pre_start.sh ]; then
    36. - @bindir@/enigma2_pre_start.sh
    37. -fi
    38. +[ -x @bindir@/enigma2_pre_start.sh ] && @bindir@/enigma2_pre_start.sh
    39. -if [ -f /usr/lib/libssl.so.0.9.8 ]; then
    40. - echo "libssl symlink found"
    41. -else
    42. - ln -s /usr/lib/libssl.so.1.0.0 /usr/lib/libssl.so.0.9.8
    43. -fi
    44. +[ -L /usr/lib/libssl.so.0.9.8 ] || ln -sf /usr/lib/libssl.so.1.0.0 /usr/lib/libssl.so.0.9.8
    45. +[ -L /usr/lib/libcrypto.so.0.9.8 ] || ln -sf /usr/lib/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.0.9.8
    46. -if [ -e /lib/libcrypto.so.1.0.0 ]; then
    47. - if [ -f /lib/libcrypto.so.0.9.8 ]; then
    48. - echo "libcrypto symlink found"
    49. - else
    50. - ln -s /lib/libcrypto.so.1.0.0 /lib/libcrypto.so.0.9.8
    51. - fi
    52. -fi
    53. -
    54. -if [ -e /usr/lib/libcrypto.so.1.0.0 ]; then
    55. - if [ -e /usr/lib/libcrypto.so.0.9.8 ]; then
    56. - echo "libcrypto symlink found"
    57. - else
    58. - ln -s /usr/lib/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.0.9.8
    59. - fi
    60. -fi
    61. +#if [ -e /lib/libcrypto.so.1.0.0 ]; then
    62. +# if [ -f /lib/libcrypto.so.0.9.8 ]; then
    63. +# echo "libcrypto symlink found"
    64. +# else
    65. +# ln -s /lib/libcrypto.so.1.0.0 /lib/libcrypto.so.0.9.8
    66. +# fi
    67. +#fi
    68. -if [ -d /home/root ]; then
    69. - cd /home/root
    70. -fi
    71. +[ -d /home/root ] && cd /home/root
    72. if [ -e /proc/stb/info/hwmodel ]; then
    73. stbcheck=`cat /proc/stb/info/hwmodel | cut -c1-8`
    74. @@ -82,20 +63,10 @@
    75. fi
    76. # check if media/net directory exists
    77. -if [ -d /media/net ]; then
    78. - echo "/media/net found"
    79. -else
    80. - mkdir /media/net
    81. -fi
    82. +[ -d /media/net ] || mkdir /media/net
    83. # check for settings files
    84. -if [ -f @sysconfdir@/enigma2/settings ]; then
    85. - echo "@sysconfdir@/enigma2/settings found"
    86. -else
    87. - cp @datadir@/enigma2/defaults/* @sysconfdir@/enigma2/
    88. -fi
    89. -
    90. -sync
    91. +[ -f @sysconfdir@/enigma2/settings ] || cp @datadir@/enigma2/defaults/* @sysconfdir@/enigma2/
    92. # check for sundtek tuner helper lib
    93. if [ -e /opt/lib/libmediaclient.so ]; then
    94. @@ -114,25 +85,24 @@
    95. LIBS="$LIBS @libdir@/libpassthrough.so"
    96. fi
    97. -if [ ! -e /etc/enigma2/settings ]; then
    98. - touch /etc/enigma2/settings
    99. -fi
    100. +touch /etc/enigma2/settings
    101. sync
    102. (sleep 2; echo "enigma2 is the main pvr application... adjust oom score!"; PID=$(pidof enigma2); \
    103. [ -e /proc/$PID/oom_score_adj ] && echo "-999" > /proc/$PID/oom_score_adj || echo "-17" > /proc/$PID/oom_adj;) &
    104. -if [ "$(grep config.crash.enabledebug /etc/enigma2/settings)" == "config.crash.enabledebug=true" ]; then
    105. +if grep ^config.crash.enabledebug=true /etc/enigma2/settings >/dev/null; then
    106. RANDOMIZE1970=''
    107. time=`date +%Y` ;
    108. if [ "$time" = 1970 ]; then
    109. RANDOMIZE1970="$(strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 5 | tr -d '\n')"
    110. fi
    111. - if [ "$(grep config.crash.debug_path= /etc/enigma2/settings | sed 's/config.crash.debug_path=//g')" != "" -a -d "$(grep config.crash.debug_path= /etc/enigma2/settings | sed 's/config.crash.debug_path=//g')" ]; then
    112. - LD_PRELOAD=$LIBS @bindir@/enigma2 --debug-no-color &> $(grep config.crash.debug_path= /etc/enigma2/settings | sed 's/config.crash.debug_path=//g')Enigma2-debug-$(date +%Y%m%d_%H-%M-%S)$RANDOMIZE1970.log
    113. - else
    114. + CONFIG_CRASH_DEBUG_PATH=$(grep ^config.crash.debug_path= /etc/enigma2/settings | cut -f2 -d=)
    115. + if [ -z $CONFIG_CRASH_DEBUG_PATH ]; then
    116. LD_PRELOAD=$LIBS @bindir@/enigma2 --debug-no-color &> /home/root/logs/Enigma2-debug-$(date +%Y%m%d_%H-%M-%S)$RANDOMIZE1970.log
    117. + else
    118. + LD_PRELOAD=$LIBS @bindir@/enigma2 --debug-no-color &> ${CONFIG_CRASH_DEBUG_PATH}Enigma2-debug-$(date +%Y%m%d_%H-%M-%S)$RANDOMIZE1970.log
    119. fi
    120. else
    121. # in case $TERM is "linux" the serial output is activated - discard debug output
    Alles anzeigen


    mfG
    Dateien
    perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);'
  • patch enigma2.sh.in enigma2.sh.in.patch
    patching file enigma2.sh.in
    Hunk #1 FAILED at 4.
    Hunk #2 FAILED at 29.
    Hunk #3 FAILED at 82.
    Hunk #4 FAILED at 114.
    4 out of 4 hunks FAILED -- saving rejects to file enigma2.sh.in.rej
    Dateien
    Meine Bastelboxen: Mut@nt HD51 | GB Quad 4K | Mut@nt HD60 | OSMIO4K | HIS 4k Combo+

    ... Keinen Support per PN ... bitte stellt eure Fragen ins Forum!...

    ~ Benutzung OpenHDF Image ~ Benutzung der HDF-Toolbox ~ FAQ und Linksammlung ~ Build und Foren Server Spendenaktion ~
  • Mach ich da irgendwas falsch oder stell ich mich zu blöd an?
    patch -p0 < enigma2.sh.in
    enigma2.sh.in enigma2.sh.in.patch
    root@Server:/hdd_intern/patch# patch -p0 < enigma2.sh.in.patch
    patching file enigma2.sh.in
    Hunk #1 FAILED at 5.
    Hunk #2 FAILED at 82.
    Hunk #3 FAILED at 114.
    Hunk #4 FAILED at 129.
    4 out of 4 hunks FAILED -- saving rejects to file enigma2.sh.in.rej
    Natürlich mit dem letzten Patch.
    Meine Bastelboxen: Mut@nt HD51 | GB Quad 4K | Mut@nt HD60 | OSMIO4K | HIS 4k Combo+

    ... Keinen Support per PN ... bitte stellt eure Fragen ins Forum!...

    ~ Benutzung OpenHDF Image ~ Benutzung der HDF-Toolbox ~ FAQ und Linksammlung ~ Build und Foren Server Spendenaktion ~
  • lade mal bitte deine enigma2.sh.in hoch

    $ wget raw.githubusercontent.com/open…aster/tools/enigma2.sh.in -O enigma2.sh.in ; patch -p0 < enigma2.sh.in.patch
    URL transformed to HTTPS due to an HSTS policy
    --2016-09-04 18:01:52-- raw.githubusercontent.com/open…aster/tools/enigma2.sh.in
    Auflösen des Hostnamens »raw.githubusercontent.com (raw.githubusercontent.com)« … 151.101.12.133
    Verbindungsaufbau zu raw.githubusercontent.com (raw.githubusercontent.com)|151.101.12.133|:443 … verbunden.
    HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK
    Länge: 5278 (5,2K) [text/plain]
    Wird in »»enigma2.sh.in«« gespeichert.

    enigma2.sh.in 100%[========================================================>] 5,15K --.-KB/s in 0,001s

    2016-09-04 18:01:53 (3,77 MB/s) - »»enigma2.sh.in«« gespeichert [5278/5278]

    patching file enigma2.sh.in


    ist das die richtige file?
    perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);'
  • Ja hast recht. Es war der Windows Linux Missmatch. Ich benutze smartgit unter Windows.
    Jetzt hab ich mir direkt mit wget die Datei aus dem git geholt. Jetzt funktionierte auch der Patch.
    Meine Bastelboxen: Mut@nt HD51 | GB Quad 4K | Mut@nt HD60 | OSMIO4K | HIS 4k Combo+

    ... Keinen Support per PN ... bitte stellt eure Fragen ins Forum!...

    ~ Benutzung OpenHDF Image ~ Benutzung der HDF-Toolbox ~ FAQ und Linksammlung ~ Build und Foren Server Spendenaktion ~
  • noch ein versuch :)

    enigma2.sh zum probieren
    und
    run-e2d_patch.sh zum anlegen enigma2.d in zip

    -- enigma2.sh.in.patch --

    Unterschiede-Datei

    1. --- enigma2.sh.in.orig 2016-09-06 08:30:05.467370373 +0200
    2. +++ enigma2.sh.in 2016-09-06 08:33:27.189576054 +0200
    3. @@ -4,86 +4,16 @@
    4. exec_prefix=@exec_prefix@
    5. datarootdir=@datarootdir@
    6. -if [ -e /usr/bin/xbmc ]; then
    7. - rm -f /etc/.xbmcstart
    8. - /usr/bin/xbmc
    9. -fi
    10. -
    11. -if [ -e /usr/bin/kodi ]; then
    12. - rm -f /etc/.kodistart
    13. - /usr/bin/kodi
    14. -fi
    15. -
    16. -if [ -f @sysconfdir@/enigma2/bootlogo.mvi ]; then
    17. - echo found @sysconfdir@/enigma2/bootlogo.mvi
    18. - @bindir@/showiframe @sysconfdir@/enigma2/bootlogo.mvi
    19. - elif [ -f @datadir@/bootlogo.mvi ]; then
    20. - echo found @datadir@/bootlogo.mvi
    21. - @bindir@/showiframe @datadir@/bootlogo.mvi
    22. -fi
    23. -
    24. -# workaround for corrupt ssl files
    25. -if ! grep ^config.misc.firstrun=false /etc/enigma2/settings >/dev/null; then
    26. - rm -rf /etc/enigma2/cert.pem &
    27. - rm -rf /etc/enigma2/key.pem &
    28. -fi
    29. -
    30. -# update NTP time if NTP Time Enabled
    31. -if grep ^config.misc.SyncTimeUsing=1 /etc/enigma2/settings >/dev/null; then
    32. - /usr/sbin/ntpdate -s -u pool.ntp.org &
    33. -fi
    34. -
    35. -# hook to execute scripts always before enigma2 start
    36. -[ -x @bindir@/enigma2_pre_start.sh ] && @bindir@/enigma2_pre_start.sh
    37. -
    38. -[ -L /usr/lib/libssl.so.0.9.8 ] || ln -s /usr/lib/libssl.so.1.0.0 /usr/lib/libssl.so.0.9.8
    39. -
    40. -#if [ -e /lib/libcrypto.so.1.0.0 ]; then
    41. -# if [ -f /lib/libcrypto.so.0.9.8 ]; then
    42. -# echo "libcrypto symlink found"
    43. -# else
    44. -# ln -s /lib/libcrypto.so.1.0.0 /lib/libcrypto.so.0.9.8
    45. -# fi
    46. -#fi
    47. -
    48. -[ -L /usr/lib/libcrypto.so.0.9.8 ] || ln -s /usr/lib/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.0.9.8
    49. +# load enigma2 profile
    50. +test -d /etc/enigma2.d && \
    51. + {
    52. + for eprofile in /etc/enigma2.d/*.sh ; do
    53. + test -x $eprofile && . $eprofile
    54. + done
    55. + }
    56. [ -d /home/root ] && cd /home/root
    57. -if [ -e /proc/stb/info/hwmodel ]; then
    58. - stbcheck=`cat /proc/stb/info/hwmodel | cut -c1-8`
    59. - if [ $stbcheck == "optimuss" ]; then
    60. - string=`mount | grep 'sda1' | cut -d " " -f3`
    61. - if [ -e $string/sat-soft/settings.sh ]; then
    62. - chmod 755 $string/sat-soft/settings.sh
    63. - $string/sat-soft/settings.sh
    64. - fi
    65. - fi
    66. -fi
    67. -
    68. -# check if media/net directory exists
    69. -[ -d /media/net ] || mkdir /media/net
    70. -
    71. -# check for settings files
    72. -[ -f @sysconfdir@/enigma2/settings ] || cp @datadir@/enigma2/defaults/* @sysconfdir@/enigma2/
    73. -
    74. -# check for sundtek tuner helper lib
    75. -if [ -e /opt/lib/libmediaclient.so ]; then
    76. - LIBS="/opt/lib/libmediaclient.so /usr/lib/libopen.so.0.0.0"
    77. -else
    78. - LIBS="/usr/lib/libopen.so.0.0.0"
    79. -fi
    80. -
    81. -#check for specific pagecache helper lib
    82. -if [ -e /usr/lib/libpagecache.so ]; then
    83. - LIBS="$LIBS /usr/lib/libpagecache.so"
    84. -fi
    85. -
    86. -#check for receiver specific passthrough helper lib
    87. -if [ -e @libdir@/libpassthrough.so ]; then
    88. - LIBS="$LIBS @libdir@/libpassthrough.so"
    89. -fi
    90. -
    91. touch /etc/enigma2/settings
    92. sync
    Alles anzeigen


    -- enigma2.d.patch --

    Unterschiede-Datei

    1. --- 00_bootlogo_start.sh.orig 2016-09-06 08:58:24.861995024 +0200
    2. +++ 00_bootlogo_start.sh 2016-09-06 08:37:31.408248431 +0200
    3. @@ -0,0 +1,10 @@
    4. +#!/bin/sh
    5. +
    6. +if [ -f /etc/enigma2/bootlogo.mvi ]; then
    7. + echo found /etc/enigma2/bootlogo.mvi
    8. + /usr/bin/showiframe /etc/enigma2/bootlogo.mvi
    9. + elif [ -f /usr/share/bootlogo.mvi ]; then
    10. + echo found /usr/share/bootlogo.mvi
    11. + /usr/bin/showiframe /usr/share/bootlogo.mvi
    12. +fi
    13. +
    14. --- 00_enigma2_pre_start.sh.orig 2016-09-06 08:58:24.861995024 +0200
    15. +++ 00_enigma2_pre_start.sh 2016-09-06 08:37:31.664251234 +0200
    16. @@ -0,0 +1 @@
    17. +#/bin/sh
    18. --- 01_load_kodi.sh.orig 2016-09-06 08:58:24.865995068 +0200
    19. +++ 01_load_kodi.sh 2016-09-06 08:37:31.432248694 +0200
    20. @@ -0,0 +1,8 @@
    21. +#!/bin/sh
    22. +
    23. +# kodie hat eigene start|stop scripts
    24. +if [ -x /usr/bin/kodi ]; then
    25. + rm -f /etc/.kodistart
    26. + /usr/bin/kodi
    27. +fi
    28. +
    29. --- 01_load_xmbc.sh.orig 2016-09-06 08:58:24.865995068 +0200
    30. +++ 01_load_xmbc.sh 2016-09-06 08:37:31.596250489 +0200
    31. @@ -0,0 +1,8 @@
    32. +#!/bin/sh
    33. +
    34. +# xmbc nicht gefunden aber vermutlich hat eigene start|stop scripts
    35. +if [ -x /usr/bin/xbmc ]; then
    36. + rm -f /etc/.xbmcstart
    37. + /usr/bin/xbmc
    38. +fi
    39. +
    40. --- 02_enigma2_ntp_time.sh.orig 2016-09-06 08:58:24.869995112 +0200
    41. +++ 02_enigma2_ntp_time.sh 2016-09-06 08:37:31.572250227 +0200
    42. @@ -0,0 +1,7 @@
    43. +#!/bin/sh
    44. +
    45. +# update NTP time if NTP Time Enabled
    46. +if grep config.misc.SyncTimeUsing=1 /etc/enigma2/settings >/dev/null; then
    47. + /usr/sbin/ntpdate -s -u pool.ntp.org &
    48. +fi
    49. +
    50. --- check_curupt_ssl_files.sh.orig 2016-09-06 08:58:24.869995112 +0200
    51. +++ check_curupt_ssl_files.sh 2016-09-06 08:37:31.484249263 +0200
    52. @@ -0,0 +1,8 @@
    53. +#!/bin/sh
    54. +
    55. +# workaround for corrupt ssl files
    56. +if ! grep config.misc.firstrun=false /etc/enigma2/settings >/dev/null; then
    57. + rm -rf /etc/enigma2/cert.pem &
    58. + rm -rf /etc/enigma2/key.pem &
    59. +fi
    60. +
    61. --- check_enigma2_settings_files.sh.orig 2016-09-06 08:58:24.869995112 +0200
    62. +++ check_enigma2_settings_files.sh 2016-09-06 08:37:31.320247468 +0200
    63. @@ -0,0 +1,5 @@
    64. +#!/bin/sh
    65. +
    66. +# check for settings files
    67. +[ -f /etc/enigma2/settings ] || cp /usr/share/enigma2/defaults/* /etc/enigma2/
    68. +
    69. --- check_libcrypto_symlink.sh.orig 2016-09-06 08:58:24.873995156 +0200
    70. +++ check_libcrypto_symlink.sh 2016-09-06 08:37:31.512249570 +0200
    71. @@ -0,0 +1,11 @@
    72. +#!/bin/sh
    73. +
    74. +#if [ -e /lib/libcrypto.so.1.0.0 ]; then
    75. +# if [ -f /lib/libcrypto.so.0.9.8 ]; then
    76. +# echo "libcrypto symlink found"
    77. +# else
    78. +# ln -s /lib/libcrypto.so.1.0.0 /lib/libcrypto.so.0.9.8
    79. +# fi
    80. +#fi
    81. +
    82. +[ -L /usr/lib/libcrypto.so.0.9.8 ] || ln -sf /usr/lib/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.0.9.8
    83. --- check_libssl_symlink.sh.orig 2016-09-06 08:58:24.873995156 +0200
    84. +++ check_libssl_symlink.sh 2016-09-06 08:37:31.376248081 +0200
    85. @@ -0,0 +1,4 @@
    86. +#!/bin/sh
    87. +
    88. +[ -L /usr/lib/libssl.so.0.9.8 ] || ln -sf /usr/lib/libssl.so.1.0.0 /usr/lib/libssl.so.0.9.8
    89. +
    90. --- check_media_net_directory.sh.orig 2016-09-06 08:58:24.877995200 +0200
    91. +++ check_media_net_directory.sh 2016-09-06 08:37:31.628250840 +0200
    92. @@ -0,0 +1,5 @@
    93. +#!/bin/sh
    94. +
    95. +# check if media/net directory exists
    96. +[ -d /media/net ] || mkdir /media/net
    97. +
    98. --- helper_pagecache.sh.orig 2016-09-06 08:58:24.877995200 +0200
    99. +++ helper_pagecache.sh 2016-09-06 08:37:31.344247731 +0200
    100. @@ -0,0 +1,7 @@
    101. +#!/bin/sh
    102. +
    103. +#check for specific pagecache helper lib
    104. +if [ -e /usr/lib/libpagecache.so ]; then
    105. + LIBS="$LIBS /usr/lib/libpagecache.so"
    106. +fi
    107. +
    108. --- helper_passthrough.sh.orig 2016-09-06 08:58:24.877995200 +0200
    109. +++ helper_passthrough.sh 2016-09-06 08:37:31.460249001 +0200
    110. @@ -0,0 +1,7 @@
    111. +#!/bin/sh
    112. +
    113. +#check for receiver specific passthrough helper lib
    114. +if [ -e /usr/lib/libpassthrough.so ]; then
    115. + LIBS="$LIBS /usr/lib/libpassthrough.so"
    116. +fi
    117. +
    118. --- helper_sundtek_tuner.sh.orig 2016-09-06 08:58:24.877995200 +0200
    119. +++ helper_sundtek_tuner.sh 2016-09-06 08:37:31.692251540 +0200
    120. @@ -0,0 +1,8 @@
    121. +#!/bin/sh
    122. +
    123. +# check for sundtek tuner helper lib
    124. +if [ -e /opt/lib/libmediaclient.so ]; then
    125. + LIBS="/opt/lib/libmediaclient.so /usr/lib/libopen.so.0.0.0"
    126. +else
    127. + LIBS="/usr/lib/libopen.so.0.0.0"
    128. +fi
    129. --- optimus_sat-soft_settings.sh.orig 2016-09-06 08:58:24.877995200 +0200
    130. +++ optimus_sat-soft_settings.sh 2016-09-06 08:37:31.544249920 +0200
    131. @@ -0,0 +1,12 @@
    132. +#!/bin/sh
    133. +
    134. +if [ -e /proc/stb/info/hwmodel ]; then
    135. + stbcheck=`cat /proc/stb/info/hwmodel | cut -c1-8`
    136. + if [ $stbcheck == "optimuss" ]; then
    137. + string=`mount | grep 'sda1' | cut -d " " -f3`
    138. + if [ -e $string/sat-soft/settings.sh ]; then
    139. + chmod 755 $string/sat-soft/settings.sh
    140. + $string/sat-soft/settings.sh
    141. + fi
    142. + fi
    143. +fi
    Alles anzeigen
    Dateien
    perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);'
  • Was bezweckst du damit? Sollen die ganzen Anweisungen jetzt in Scripte verpackt in einem Unterordner gestartet werden?
    Was genau ist daran der Vorteil?
    Meine Bastelboxen: Mut@nt HD51 | GB Quad 4K | Mut@nt HD60 | OSMIO4K | HIS 4k Combo+

    ... Keinen Support per PN ... bitte stellt eure Fragen ins Forum!...

    ~ Benutzung OpenHDF Image ~ Benutzung der HDF-Toolbox ~ FAQ und Linksammlung ~ Build und Foren Server Spendenaktion ~
  • Aber die nicht interessanten Dinge stören ja auch nicht.
    Die Enigma.sh wird ja auch beim Bauen mit ins Image gebaut.
    Dafür müsste ich unser Git umbauen um dort Ordner zu benutzen. Ich glaube das lohnt nicht. Ich sehe keinen wirklichen Vorteil.

    Gesendet von meinem Elephone P8000 mit Tapatalk
    Meine Bastelboxen: Mut@nt HD51 | GB Quad 4K | Mut@nt HD60 | OSMIO4K | HIS 4k Combo+

    ... Keinen Support per PN ... bitte stellt eure Fragen ins Forum!...

    ~ Benutzung OpenHDF Image ~ Benutzung der HDF-Toolbox ~ FAQ und Linksammlung ~ Build und Foren Server Spendenaktion ~

Unsere Partnerboards

^
Flag Counter