This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
ENABLED=yes | |
PROCS=torrserver | |
ARGS="" | |
PREARGS="" | |
DESC=$PROCS | |
PATH=/opt/sbin:/opt/bin:/opt/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
. /opt/etc/init.d/rc.func |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 'Creating startup script to mount /opt, /root and start Entware services' | |
cat << 'EOF' > /etc/init.d/rootopt | |
#!/bin/sh /etc/rc.common | |
START=99 | |
STOP=00 | |
start() { | |
[ -d /etc/root ] && mount -o bind /etc/root /root | |
[ -d /etc/opt ] && mount -o bind /etc/opt /opt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Makefile b/Makefile | |
index 8281112..5ed3acc 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -40,7 +40,7 @@ evdi-y := evdi_drv.o evdi_modeset.o evdi_connector.o evdi_encoder.o evdi_main.o | |
evdi-$(CONFIG_COMPAT) += evdi_ioc32.o | |
obj-$(CONFIG_DRM_EVDI) := evdi.o | |
-else | |
+endif |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SOURCE_DB="myrulib.db" | |
TARGET_DB="metadata_my.db" | |
#an empty Calibre database, with books and series | |
# create/update triggers removed | |
EMPTY_DB="metadata_empty.db" |