Changed elf size reporting to base 16 so it is easier to see if the text section is relocated in the right place depending on the usage of luftboot or not.

This commit is contained in:
Piotr Esden-Tempski
2012-04-25 18:09:02 +02:00
parent 77183163ab
commit 291c6930e3
+1 -1
View File
@@ -212,7 +212,7 @@ lss: $(OBJDIR)/$(TARGET).lss
sym: $(OBJDIR)/$(TARGET).sym sym: $(OBJDIR)/$(TARGET).sym
# Display size of file. # Display size of file.
ELFSIZE = $(SIZE) -A $(OBJDIR)/$(TARGET).elf ELFSIZE = $(SIZE) -A -x $(OBJDIR)/$(TARGET).elf
sizebefore: sizebefore:
@if [ -f $(OBJDIR)/$(TARGET).elf ]; then echo; echo "Previous size:"; $(ELFSIZE); fi @if [ -f $(OBJDIR)/$(TARGET).elf ]; then echo; echo "Previous size:"; $(ELFSIZE); fi