Browse Source

Merge pull request #91 from bukinr/master

Include .bss section to the binary so dtb_output() gets full size of payload
pull/114/head
Palmer Dabbelt 8 years ago
committed by GitHub
parent
commit
63241292c9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      bbl/bbl.mk.in

2
bbl/bbl.mk.in

@ -19,7 +19,7 @@ bbl_asm_srcs = \
payload.o: bbl_payload
bbl_payload: $(BBL_PAYLOAD)
if $(READELF) -h $< 2> /dev/null > /dev/null; then $(OBJCOPY) -O binary $< $@; else cp $< $@; fi
if $(READELF) -h $< 2> /dev/null > /dev/null; then $(OBJCOPY) -O binary --set-section-flags .bss=alloc,load,contents $< $@; else cp $< $@; fi
raw_logo.o: bbl_logo_file

Loading…
Cancel
Save