From b413cde04484bfdb87118b8474845fc260465653 Mon Sep 17 00:00:00 2001 From: Liam McLoughlin Date: Sun, 22 Apr 2012 13:07:08 +0000 Subject: [PATCH] Tweaked HardFP detection --- rpi-update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpi-update b/rpi-update index 0bf63f1..41668ad 100755 --- a/rpi-update +++ b/rpi-update @@ -53,8 +53,8 @@ function update_modules { } function update_sdk { - ELFOUTPUT=`readelf -A /bin/bash` - if [ "$ELFOUTPUT" != "${ELFOUTPUT/HardFP/}" ]; then + ELFOUTPUT=`readelf -a /bin/bash` + if [ "$ELFOUTPUT" != "${ELFOUTPUT/VFP_args/}" ]; then echo "Using HardFP libraries" cp -R ${FW_PATH}/vc/hardfp/* / else