From df549fd1d9cd85edf85a877de11a7f40585e01c4 Mon Sep 17 00:00:00 2001 From: "Mathieu J. Poirier" Date: Thu, 16 Feb 2012 23:25:26 +0000 Subject: snowball: android: moved from optimizing for size to optimizing for speed Optimizing for size with gcc 4.6.x prevents uboot from reaching the cmd line. Removing this optimization solves the problem. Signed-off-by: Mathieu Poirier --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index cb1c4af97..de01637fa 100644 --- a/config.mk +++ b/config.mk @@ -137,7 +137,7 @@ ARFLAGS = crv endif RELFLAGS= $(PLATFORM_RELFLAGS) DBGFLAGS= -g # -DDEBUG -OPTFLAGS= -Os #-fomit-frame-pointer +OPTFLAGS= -O2 #-fomit-frame-pointer ifndef LDSCRIPT #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug ifeq ($(CONFIG_NAND_U_BOOT),y) -- cgit v1.2.3