blob: dceabe9872782dd93840d3d0b54d7bbdad3eff87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
if ping -w 1 google.de;then
echo "loading update"
opkg update
echo "installing ffmpeg"
opkg install ffmpeg
else
echo "no internet connection, bailing out"
fi
|