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/ash | |
# Update the package list | |
echo "Updating package list..." | |
echo "" | |
opkg update | |
echo "" | |
# Install some package | |
echo "Installing extra packages..." |
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/ash | |
source /etc/openwrt_release | |
echo "$DISTRIB_ID $DISTRIB_RELEASE" | |
rm -f /tmp/releases.html | |
wget -q https://downloads.openwrt.org/releases/ -O /tmp/releases.html | |
LATEST_RELEASE=`grep -o 'href="[0-9.]*/"' /tmp/releases.html | tail -1 | cut -d'"' -f2 | cut -d'/' -f1` | |
rm -f /tmp/releases.html |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import _addoncompat | |
import cookielib | |
import os | |
import simplejson | |
import urllib | |
import urllib2 | |
import socks | |
import socket |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import _addoncompat | |
import _common | |
import _connection | |
import _main_viacom | |
import re | |
import sys | |
import urllib | |
import simplejson |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import _addoncompat | |
import _common | |
import _connection | |
import _main_viacom | |
import re | |
import sys | |
import urllib | |
import simplejson |
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/configure.in b/configure.in | |
index bca9239..abe2b49 100755 | |
--- a/configure.in | |
+++ b/configure.in | |
@@ -151,6 +151,12 @@ AC_ARG_WITH([arch], | |
[use_arch=$withval], | |
[use_arch=no]) | |
+AC_ARG_WITH([platform], | |
+ [AS_HELP_STRING([--with-platform], |
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/configure.in b/configure.in | |
index bca9239..8a88260 100755 | |
--- a/configure.in | |
+++ b/configure.in | |
@@ -118,6 +118,8 @@ libplist_not_found="== Could not find libplist. AirPlay support disabled. ==" | |
libplist_disabled="== AirPlay support disabled. ==" | |
alsa_not_found="== Could not find ALSA. ALSA support disabled. ==" | |
dbus_not_found="== Could not find DBUS. DBUS support disabled. ==" | |
+gstreamer_not_found="== GStreamer libraries not found. GStreamer support disabled. ==" | |
+gstreamer_disabled="== GStreamer support manually disabled. ==" |