Remove vcfiled stop/start. It is not used and caused errors with vchiq version changes

This commit is contained in:
popcornmix
2013-01-08 17:13:13 +00:00
parent 214184a62f
commit 8ef422ab5f

View File

@@ -72,10 +72,6 @@ function update_modules {
function update_sdk { function update_sdk {
echo " *** Updating SDK" echo " *** Updating SDK"
if [[ -f /etc/init.d/vcfiled ]]; then
/etc/init.d/vcfiled stop
fi
ELFOUTPUT=$(readelf -a "${ROOT_PATH}/bin/bash") ELFOUTPUT=$(readelf -a "${ROOT_PATH}/bin/bash")
if [ "${ELFOUTPUT}" != "${ELFOUTPUT/VFP_args/}" ]; then if [ "${ELFOUTPUT}" != "${ELFOUTPUT/VFP_args/}" ]; then
echo " *** Using HardFP libraries" echo " *** Using HardFP libraries"
@@ -85,10 +81,6 @@ function update_sdk {
cp -vR "${FW_REPOLOCAL}/vc/softfp/"* "${ROOT_PATH}/" cp -vR "${FW_REPOLOCAL}/vc/softfp/"* "${ROOT_PATH}/"
fi fi
cp -vR "${FW_REPOLOCAL}/vc/sdk/"* "${ROOT_PATH}/" cp -vR "${FW_REPOLOCAL}/vc/sdk/"* "${ROOT_PATH}/"
if [[ -f /etc/init.d/vcfiled ]]; then
/etc/init.d/vcfiled start
fi
} }
function update_firmware { function update_firmware {