be01bf77a9
Current default in the Makefile is the *new* bootloader address. But for backward compatibility we've modified the run*.sh files to use the old address. The run*.sh also now explain how to change the default.
9 lines
544 B
Bash
Executable file
9 lines
544 B
Bash
Executable file
#!/bin/bash
|
|
# For the new bootloader (using a jump-table) you want to use
|
|
# BOOTLOADER_GET_MAC=0x0001ff80 (which is the current default)
|
|
make clean TARGET=osd-merkur
|
|
make TARGET=osd-merkur BOOTLOADER_GET_MAC=0x0001f3a0
|
|
avr-size -C --mcu=MCU=atmega128rfa1 embedd-vm-server.osd-merkur
|
|
avr-objcopy -j .text -j .data -O ihex embedd-vm-server.osd-merkur embedd-vm-server.osd-merkur.hex
|
|
avr-objcopy -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 -O ihex embedd-vm-server.osd-merkur embedd-vm-server.osd-merkur.eep
|