mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] rauc: version bump 1.0 -> 1.1
@ 2019-07-01 11:41 Bastian Krause
  2019-07-01 17:10 ` Andreas Pretzsch
  0 siblings, 1 reply; 3+ messages in thread
From: Bastian Krause @ 2019-07-01 11:41 UTC (permalink / raw)
  To: ptxdist; +Cc: Bastian Krause

Signed-off-by: Bastian Krause <bst@pengutronix.de>
---
 rules/rauc.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/rauc.make b/rules/rauc.make
index 88817da78..cf305cdaa 100644
--- a/rules/rauc.make
+++ b/rules/rauc.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_RAUC) += rauc
 #
 # Paths and names
 #
-RAUC_VERSION	:= 1.0
-RAUC_MD5	:= f800eae12063b0004980581aeb4932c0
+RAUC_VERSION	:= 1.1
+RAUC_MD5	:= c81644f96b14304b6bb9f2ac2de9d4fd
 RAUC		:= rauc-$(RAUC_VERSION)
 RAUC_SUFFIX	:= tar.xz
 RAUC_URL	:= https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)/$(RAUC).$(RAUC_SUFFIX)
-- 
2.20.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 3+ messages in thread
* [ptxdist] [PATCH] rauc: version bump 1.0 -> 1.1
@ 2019-07-01 16:56 Andreas Pretzsch
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Pretzsch @ 2019-07-01 16:56 UTC (permalink / raw)
  To: ptxdist

Release 1.1 (released Jun 5, 2019)

 Enhancements
   * Check that we do not generate a bundle inside a source directory
   * Added full GRUB2 support, including status and primary slot
     readback (by Vitaly Ogoltsov and Beralt Meppelink)
   * Allow passing a slot's name via commandline instead of it's
     bootname
   * Show each slot's name in Booted from line of rauc status to
     simplify identification
   * Add resize option for ext4 slots to let RAUC run resize2fs on an
     ext4 slot after copying the image.
   * Allow dumping the signer certificate (--dump-cert) without
     verification
   * Allow specifying a keyring directory with multiple files to support
     non-conflicting installations of certificates from different
     packages (by Evan Edstrom)
   * Add a bootloader option efi-use-bootnext (only valid when
     bootloader is 'efi') to disable usage of BootNext for marking slots
     primary.
   * Support setting a system variant in the system-info handler via
     RAUC_SYSTEM_VARIANT
   * D-Bus "mountpoint" property now also exports external mount point
   * Made slot state, compatible and variant available as environment
     variables for slot hooks
   * Made system variant variable available as an environment variable
     for bundle hooks

 Bug fixes
   * Fix memory leaks in D-Bus notification callbacks (by Michael
     Heimpold)
   * Fix memory leaks in resolve_bundle_path (by Michael Heimpold)
   * Do not print misleading status dump when calling mark-* subcommands
   * Avoid mmap'ing potentially huge files (by Rasmus Villemoes)
   * Fix and cleanup checksum verification and handling (by Rasmus
     Villemoes)
   * Avoid assertion error caused by unconditional slot status hash
     table freeing
   * Make a-month-from-now validity check in signature verification more
     robust (by Rasmus Villemoes)

 Testing
   * Enable lgtm analysis for tests
   * Restructure signature tests with set_up and tear_down (by Evan
     Edstrom)
   * Move from gcc-6 to gcc-7
   * Build environment fixes and workarounds

 Code
   * A failure in calling barebox_state bootchooser implementation
     should be propagated
   * Update to latest git-version-gen upstream version
   * Tail-call real rauc suprocess in rauc-service.sh (by Angus Lees)
   * Consistently return newly-allocated objects in resolve_path()
   * Enforce space between if and ( via uncrustify

 Documentation
   * Added an initial version of a man page (by Michael Heimpold)
   * Extended D-Bus API documentation
   * Improve description of how RAUC detects the booted slot
   * Added lgtm badge
   * Add hints on library dependencies
   * Clarifications on how to build and install RAUC
   * Add note on basic RAUC buildroot support
   * Clarification on usage of RAUC on host and target side
   * Clarified documentation of 'use-bundle-signing-time' option (by
     Michael Heimpold)
   * Typos fixed

 Contributions from: Angus Lees, Arnaud Rebillout, Beralt Meppelink,
 Enrico Joerns, Evan Edstrom, Ian Abbott, Jan Luebbe, Michael Heimpold,
 Rasmus Villemoes, Ulrich Oelmann, Vitaly Ogoltsov

Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
---
 rules/rauc.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/rauc.make b/rules/rauc.make
index 88817da78..cf305cdaa 100644
--- a/rules/rauc.make
+++ b/rules/rauc.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_RAUC) += rauc
 #
 # Paths and names
 #
-RAUC_VERSION	:= 1.0
-RAUC_MD5	:= f800eae12063b0004980581aeb4932c0
+RAUC_VERSION	:= 1.1
+RAUC_MD5	:= c81644f96b14304b6bb9f2ac2de9d4fd
 RAUC		:= rauc-$(RAUC_VERSION)
 RAUC_SUFFIX	:= tar.xz
 RAUC_URL	:= https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)/$(RAUC).$(RAUC_SUFFIX)
-- 
2.19.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-07-01 17:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-01 11:41 [ptxdist] [PATCH] rauc: version bump 1.0 -> 1.1 Bastian Krause
2019-07-01 17:10 ` Andreas Pretzsch
2019-07-01 16:56 Andreas Pretzsch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox