From 029259feafd63f17fc34b95cc7b1fe55e3f611c3 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Sun, 5 Aug 2018 14:11:01 +0800 Subject: capture updates to Releasing from 1.8.6 release process --- Releasing | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'Releasing') diff --git a/Releasing b/Releasing index 7908a064..bd5f7647 100644 --- a/Releasing +++ b/Releasing @@ -32,6 +32,14 @@ These are Bdale's notes on how to do a release. - make sure build environment is up to date sudo cowbuilder --update + - ensure i386 build support is available, and we have tools to build + installers for Windows and Mac OS X + + sudo dpkg --add-architecture i386 + sudo apt update + sudo apt install gcc-multilib genisoimage nsis + (need some mingw packages too, but not sure which offhand) + - make sure ~/web/altusmetrum has no pending pullable commits git checkout master @@ -91,7 +99,7 @@ These are Bdale's notes on how to do a release. - at this point we have packages in ~/debian/build-area/altos, now we move on to the non-Debian part of the release process - make distclean + make distclean (just to be sure, this should do nothing) ./autogen.sh --enable-multi-arch \ --with-fat-dir=/home/bdale/web/altusmetrum/ @@ -99,7 +107,7 @@ These are Bdale's notes on how to do a release. - store a stable copy of ARM binaries for production use - cp src/chaoskey-v1.0/{*.elf,*.ihx} \ + cp src/chaoskey-v1.0/{*.elf,*.ihx,*.bin} \ src/easymega-v1.0/{*.elf,*.ihx} \ src/easymini-v1.0/{*.elf,*.ihx} \ src/easymini-v2.0/{*.elf,*.ihx} \ @@ -113,6 +121,8 @@ These are Bdale's notes on how to do a release. src/telemega-v3.0/{*.elf,*.ihx} \ src/telemetrum-v2.0/{*.elf,*.ihx} \ src/telemini-v3.0/{*.elf,*.ihx} \ + src/telelco-v2.0/{*.elf,*.ihx} \ + src/telefireeight-v1.0/{*.elf,*.ihx} \ ~/altusmetrumllc/Binaries/ cp src/chaoskey-v1.0/flash-loader/{*.elf,*.bin} \ src/easymega-v1.0/flash-loader/*.elf \ @@ -128,6 +138,8 @@ These are Bdale's notes on how to do a release. src/telemega-v3.0/flash-loader/*.elf \ src/telemetrum-v2.0/flash-loader/*.elf \ src/telemini-v3.0/flash-loader/{*.elf,*.bin} \ + src/telelco-v2.0/flash-loader/*.elf \ + src/telefireeight-v1.0/flash-loader/*.elf \ ~/altusmetrumllc/Binaries/loaders/ (cd ~/altusmetrumllc ; git add Binaries ; git commit -a) - remove previous versions (only keep latest release) -- cgit v1.2.3 From 54838e3d523953e3ce4cea2319b2820c21d2c576 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 6 Aug 2018 13:15:21 +0800 Subject: Include TeleMega v3.0 firmware with releases Signed-off-by: Keith Packard --- Releasing | 2 ++ altosui/Makefile.am | 3 ++- altosui/altos-windows.nsi.in | 1 + doc/RELNOTES | 6 +++--- 4 files changed, 8 insertions(+), 4 deletions(-) (limited to 'Releasing') diff --git a/Releasing b/Releasing index bd5f7647..a20b6dc0 100644 --- a/Releasing +++ b/Releasing @@ -17,6 +17,8 @@ These are Keith's notes on how to do a release - update the version and date in configure.ac if Bdale hasn't already + - follow instructions in doc/RELNOTES + - make sure there is a doc/release-notes-.inc - make sure doc/release-notes.inc points at that diff --git a/altosui/Makefile.am b/altosui/Makefile.am index 805c5550..53bb2b00 100644 --- a/altosui/Makefile.am +++ b/altosui/Makefile.am @@ -141,7 +141,8 @@ FIRMWARE_TBT=$(FIRMWARE_TBT_1_0) $(FIRMWARE_TBT_3_0) $(FIRMWARE_TBT_4_0) FIRMWARE_TMEGA_1_0=$(top_srcdir)/src/telemega-v1.0/telemega-v1.0-$(VERSION).ihx FIRMWARE_TMEGA_2_0=$(top_srcdir)/src/telemega-v2.0/telemega-v2.0-$(VERSION).ihx -FIRMWARE_TMEGA=$(FIRMWARE_TMEGA_1_0) $(FIRMWARE_TMEGA_2_0) +FIRMWARE_TMEGA_3_0=$(top_srcdir)/src/telemega-v3.0/telemega-v3.0-$(VERSION).ihx +FIRMWARE_TMEGA=$(FIRMWARE_TMEGA_1_0) $(FIRMWARE_TMEGA_2_0) $(FIRMWARE_TMEGA_3_0) FIRMWARE_EMINI_1_0=$(top_srcdir)/src/easymini-v1.0/easymini-v1.0-$(VERSION).ihx FIRMWARE_EMINI=$(FIRMWARE_EMINI_1_0) diff --git a/altosui/altos-windows.nsi.in b/altosui/altos-windows.nsi.in index 23d6f6bd..be9fb433 100644 --- a/altosui/altos-windows.nsi.in +++ b/altosui/altos-windows.nsi.in @@ -136,6 +136,7 @@ Section "Firmware" File "../src/telebt-v4.0/telebt-v4.0-${VERSION}.ihx" File "../src/telemega-v1.0/telemega-v1.0-${VERSION}.ihx" File "../src/telemega-v2.0/telemega-v2.0-${VERSION}.ihx" + File "../src/telemega-v3.0/telemega-v3.0-${VERSION}.ihx" File "../src/easymini-v1.0/easymini-v1.0-${VERSION}.ihx" File "../src/easymini-v2.0/easymini-v2.0-${VERSION}.ihx" File "../src/easymega-v1.0/easymega-v1.0-${VERSION}.ihx" diff --git a/doc/RELNOTES b/doc/RELNOTES index 748d2b5b..e21f6f27 100644 --- a/doc/RELNOTES +++ b/doc/RELNOTES @@ -1,12 +1,12 @@ Creating documentation for a new release of AltOS +* Write release notes in release-notes-${version}.inc. Add to + Makefile + * Make sure that doc/altusmetrum-docinfo.xml has the right copyright year, and add release to the revision history at the front (release notes will be pulled in by release-notes.inc) -* Write release notes in release-notes-${version}.inc. Add to - Makefile - * Add references to that as appropriate from each of the documents: -- cgit v1.2.3