Browse Source
Use correct offset for bbl.bin with non-default MEM_START (#187)
pull/202/head
Jessica Clarke
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
bbl/bbl.mk.in
|
|
|
@ -45,6 +45,6 @@ bbl_install_prog_srcs = \ |
|
|
|
bbl.c \
|
|
|
|
|
|
|
|
bbl.bin: bbl |
|
|
|
$(OBJCOPY) -S -O binary --change-addresses -0x80000000 $< $@ |
|
|
|
$(OBJCOPY) -S -O binary --change-addresses -@MEM_START@ $< $@ |
|
|
|
|
|
|
|
bbl_extra_targets = bbl.bin |
|
|
|
|