From 8ef422ab5fe925c917cc341cfd2da3c527d1ae37 Mon Sep 17 00:00:00 2001 From: popcornmix Date: Tue, 8 Jan 2013 17:13:13 +0000 Subject: [PATCH] Remove vcfiled stop/start. It is not used and caused errors with vchiq version changes --- rpi-update | 8 -------- 1 file changed, 8 deletions(-) diff --git a/rpi-update b/rpi-update index 9255299..9eca010 100755 --- a/rpi-update +++ b/rpi-update @@ -72,10 +72,6 @@ function update_modules { function update_sdk { echo " *** Updating SDK" - if [[ -f /etc/init.d/vcfiled ]]; then - /etc/init.d/vcfiled stop - fi - ELFOUTPUT=$(readelf -a "${ROOT_PATH}/bin/bash") if [ "${ELFOUTPUT}" != "${ELFOUTPUT/VFP_args/}" ]; then echo " *** Using HardFP libraries" @@ -85,10 +81,6 @@ function update_sdk { cp -vR "${FW_REPOLOCAL}/vc/softfp/"* "${ROOT_PATH}/" fi cp -vR "${FW_REPOLOCAL}/vc/sdk/"* "${ROOT_PATH}/" - - if [[ -f /etc/init.d/vcfiled ]]; then - /etc/init.d/vcfiled start - fi } function update_firmware {