From: travisutk Date: Sat, 24 Nov 2012 20:03:34 +0000 (+0000) Subject: Make install now doesn't erase the chip, make reinstall does. X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;ds=inline;h=ffd8151360c571b027b1a67a35bf60b748ff2b4a;p=goodfet Make install now doesn't erase the chip, make reinstall does. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1350 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/firmware/Makefile b/firmware/Makefile index bc24bc3..2d87705 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -327,6 +327,10 @@ erase: $(JTAG) -e $(app).hex else install: $(app).hex + #Note that 'make install' no longer erases the chip. + #Use 'make reinstall' if you want that. + $(MSP430BSL) -p $(app).hex +reinstall: $(app).hex $(MSP430BSL) -e -p $(app).hex installinfo: $(MSP430BSL) -P $(app).hex -p info.txt || true #MSP430F2xx targets only, inelegant.