Initial commit, based on .tar.gz file as provided by 3DR , see SOURCE file

This commit is contained in:
Buzz
2017-07-29 18:00:15 +10:00
commit adbe6ebbf3
495 changed files with 110498 additions and 0 deletions

View File

@ -0,0 +1,24 @@
#!/bin/bash
RWFS=/mnt/rootfs.rw
LIBDIR=/usr/lib
if [ -e $RWFS/$LIBDIR/sndast* ] ||
[ -e $RWFS/$LIBDIR/libvpu* ] ||
[ -e $RWFS/$LIBDIR/libfsl* ] ||
[ -e $RWFS/$LIBDIR/gstrea* ] ; then
#Remove all the sculpture libraries
rm -rf $RWFS/$LIBDIR/sndast
rm -rf $RWFS/$LIBDIR/libvpu*
rm -rf $RWFS/$LIBDIR/libfslvpu*
rm -rf $RWFS/$LIBDIR/gstreamer*
rm -rf $RWFS/$LIBDIR/.*libfslvpu*
#Remove the gstreamer registry
rm -f ~/.gstreamer-0.10/registry.arm.bin
#Rebuild the gstreamer library
gst-inspect > /dev/null 2>&1
fi