]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
nios2: use gc sections to reduce image size
authorThomas Chou <thomas@wytron.com.tw>
Fri, 28 May 2010 04:08:10 +0000 (12:08 +0800)
committerScott McNutt <smcnutt@psyent.com>
Mon, 12 Jul 2010 15:30:51 +0000 (11:30 -0400)
Follow the discussion of Charles Manning and Mike Frysinger.
Using gc_sections helps reduce image size.

Configuring for nios2-generic board...
Before,
   text    data     bss     dec     hex filename
 123979    3724   22892  150595   24c43 /tmp/u-boot/u-boot
After,
   text    data     bss     dec     hex filename
 115983    3800   22732  142515   22cb3 /tmp/u-boot/u-boot

Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Signed-off-by: Scott McNutt <smcnutt@psyent.com>
arch/nios2/config.mk

index 793cc43a1cbf55d042a9bcccf316ec35e051be69..aba96b30199346c03749f7f0e2523accd0af7986 100644 (file)
@@ -30,3 +30,6 @@ PLATFORM_CPPFLAGS += -DCONFIG_NIOS2 -D__NIOS2__
 PLATFORM_CPPFLAGS += -G0
 
 LDSCRIPT ?= $(SRCTREE)/$(CPUDIR)/u-boot.lds
+
+LDFLAGS += --gc-sections
+PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections