summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Anderson <dianders@chromium.org>2012-05-11 12:08:02 -0700
committerGerrit <chrome-bot@google.com>2012-05-11 14:10:39 -0700
commitd50b27d15de8cc9e37410fc52d3184f17e0db5bb (patch)
treed9acebfffc370688b96a3c7e5ad477f835e0b19d
parent6fa4e9f77c1c9d92c945d2d771c81f10246cf9b7 (diff)
downloadvboot-d50b27d15de8cc9e37410fc52d3184f17e0db5bb.tar.gz
Switch vboot reference to hardfp
This allows it to compile without switching to a private libgcc. BUG=chromium-os:30807 TEST=While making sure u-boot, vboot_reference and vboot_reference-firmware were cros_workoned and grabbing the associated U-Boot change (I3cdc86ee2846814a6522c7874e5b438be94164ab), I did: 1. emerge-daisy chromeos-u-boot vboot_reference vboot_reference-firmware 2. cros_bundle_firmware --add-config-int load_env 1 \ -d exynos5250-daisy -b daisy -o /tmp/uboot.bin 3. sudo dd if=/tmp/uboot.bin of=${SDCARD} bs=512 seek=1 ...and then booted that. Change-Id: I49d567e51d95c77f0e0fef8ec0f678e51b5ab77f Reviewed-on: https://gerrit.chromium.org/gerrit/22479 Tested-by: Doug Anderson <dianders@chromium.org> Reviewed-by: Terry Lambert <tlambert@chromium.org> Tested-by: Terry Lambert <tlambert@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org> Commit-Ready: Doug Anderson <dianders@chromium.org>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b6b44ecd..dc39b956 100644
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,7 @@ ifeq ($(FIRMWARE_ARCH), arm)
CC ?= armv7a-cros-linux-gnueabi-gcc
CFLAGS ?= -march=armv5 \
-fno-common -ffixed-r8 \
- -msoft-float -marm -mabi=aapcs-linux -mno-thumb-interwork \
+ -mfloat-abi=hard -marm -mabi=aapcs-linux -mno-thumb-interwork \
$(COMMON_FLAGS)
endif
ifeq ($(FIRMWARE_ARCH), i386)