--- /dev/null
+diff --git a/ofgwrite.c b/ofgwrite.c
+index 58c757e..9867591 100644
+--- a/ofgwrite.c
++++ b/ofgwrite.c
+@@ -592,6 +592,20 @@ int check_neutrino_stopped()
+
+ if (neutrino_found)
+ return 0;
++ else
++ {
++ /*
++ Reactivate correct input to make ofgrite visible again.
++ libstb-hal set input to "aux" when cVideo is deleted.
++ */
++ FILE *f;
++ f = fopen("/proc/stb/avs/0/input","w");
++ if (f != NULL)
++ {
++ fputs("encoder", f);
++ fclose(f);
++ }
++ }
+
+ return 1;
+ }
$(UNTAR)/ofgwrite-git-$(OFGWRITE_VER).tar.bz2
set -e; cd $(BUILD_TMP)/ofgwrite-git-$(OFGWRITE_VER); \
$(PATCH)/ofgwrite.patch; \
+ $(PATCH)/ofgwrite-reactivate-correct-input-to-make-ofgwrite-visible-again.patch; \
export CC=$(TARGET)-gcc && \
export AR=$(TARGET)-ar && \
$(BUILDENV); \