diff options
| author | hathach <[email protected]> | 2019-05-20 11:53:29 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-05-20 11:53:29 +0700 |
| commit | e090cd2b6f0cc25109e84cb4d76806ebf45d3800 (patch) | |
| tree | 9067e3cf3a75225885e742993591ef6f24f5568f | |
| parent | c4b153925012e7c4fe28c745e5022820798a160d (diff) | |
| parent | 5a9ee6611a0f457c86c0a1664d24580d368747cb (diff) | |
Merge pull request #68 from zardam/binary_output
Fix missing section in binary output
| -rw-r--r-- | examples/rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rules.mk b/examples/rules.mk index d2d5012aa..c4b4471de 100644 --- a/examples/rules.mk +++ b/examples/rules.mk @@ -54,7 +54,7 @@ $(BUILD)/$(BOARD)-firmware.elf: $(OBJ) $(BUILD)/$(BOARD)-firmware.bin: $(BUILD)/$(BOARD)-firmware.elf @echo CREATE $@ - @$(OBJCOPY) -O binary -j .vectors -j .text -j .data $^ $@ + @$(OBJCOPY) -O binary $^ $@ $(BUILD)/$(BOARD)-firmware.hex: $(BUILD)/$(BOARD)-firmware.elf @echo CREATE $@ |
