- Update to version 2.1.2:

* Features:
    + flashcp: Add option -A/--erase-all
    + mtd-utils: add optional offset parameter to flash_otp_dump
    + ubi-utils: Implement a ubihealthd
    + mkfs.ubifs: Add authentication support
  * Fixes:
    + ubifs-media: Update to Linux-5.3-rc3
    + mtd-utils: Fix return value of ubiformat
    + ubiupdatevol: Prevent null pointer dereference
    + libubigen: remove unnecessary include
    + libubi: remove private kernel header from includes
    + mkfs.ubifs: fscrypt: bail from encrypt_block if gen_essiv_salt fails
    + mkfs.ubifs: abort add_directory if readdir fails
    + mkfs.ubifs: close file descriptor in add_file error path
    + mkfs.ubifs: don't leak copied command line arguments
    + mkfs.ubifs: free derived fscrypt context in add_directory error paths
    + mkfs.ubifs: don't leak hastable iterators
    + mkfs.ubifs: don't leak temporary buffers
    + mkfs.ubifs: propperly cleanup in ALL interpret_table_entry error paths
    + mkfs.jffs2: don't leak temporary buffer if readlink fails
    + libmtd: don't leak temporary buffers
    + ftl_check: don't leak temporary buffers
    + ftl_format: don't leak temporary buffers
    + ubiformat: don't leak file descriptors
    + nanddump: don't leak copied command line arguments
    + mtd_debug: cleanup error handling in flash_to_file
    + jittertest: fix error check for open system call
    + fs-tests: don't leak temporary buffers
    + mtd-utils: Fix printf format specifiers with the wrong type

OBS-URL: https://build.opensuse.org/package/show/filesystems/mtd-utils?expand=0&rev=21
This commit is contained in:
Martin Pluskal 2020-11-05 08:57:45 +00:00 committed by Git OBS Bridge
parent f8ab7d4a33
commit 334f324162
6 changed files with 59 additions and 16 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d15e8b70f036d6af1a66011f8ca0e048e9675fa7983d33bea92c24313a232d2
size 622797

View File

@ -1,11 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCAAdFiEEEwY/cjyeWErqzVubvOXcPHQaAtEFAl00zcsACgkQvOXcPHQa
AtFjpggAnSCGmtpTqmQbhOSdwYpXTjbsY1sVyI4O4RlkTZ6/1JF5liP8Z2Bu25iR
kvPW6DQcAnVReo42QVwE/bk/zfZQkYmtRNR4muD0c+pH19xDveIvBR3wmwj+Y2sQ
ZGxZoJ+stbMckzy0nSS9xKbTsJY6K1jpqvFpI5x2gHpmwNibItw9NKeKgNVshTdT
KzVzZp+tiDiCOurGa/VP+KHRRucD8MQisOu769VUpKHqkT+obB0fAB2hHacxXTIQ
vchWXibSrxtBS9QazfHpNEsiHdajfvEV8Eov8khEj7mpNNJoH1HFX8a2b1Di+klu
0eVMTxoFlmLLwiORvXkyO+4L7d5u8g==
=OuiQ
-----END PGP SIGNATURE-----

3
mtd-utils-2.1.2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ad4c5f34716d40646aa28724a2f5616d325a6f119254f914e26976f1f76e9d6
size 628433

View File

@ -0,0 +1,11 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCAAdFiEEEwY/cjyeWErqzVubvOXcPHQaAtEFAl8MFhkACgkQvOXcPHQa
AtEr8wgAkiHjNhFWW7RCv/7N2cZTgpv5ZLLbshpeOM7RaiGPL3czythnNKqlN8Tw
meG4HT5OMY/n0aVD3+aNX1Bz6xgr24BloWYOKTNedMRKSgb9+D4sz/ebKjzx6P2v
KXXJb7gfQNVrjhb8hwt10cbT4bn8w/iLr/aCM7HHyNzsl6W0tSnB5Wngn5oaHEC2
b3S4enjpCFTKkapB6GnT11/7nENli8+GuGDtgCxlYS3dXhn5moGkQLtuhgXijvBR
HgIQnyWwNlfnd2TRb4BHNHPUkqNOii4H0qo/RZjqcCoL4J/iLTINYw9groBIuo47
eo01IEz8RxfUPqMEZIGTHu2eug8P+A==
=V7JF
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Thu Nov 5 08:52:38 UTC 2020 - Martin Pluskal <mpluskal@suse.com>
- Update to version 2.1.2:
* Features:
+ flashcp: Add option -A/--erase-all
+ mtd-utils: add optional offset parameter to flash_otp_dump
+ ubi-utils: Implement a ubihealthd
+ mkfs.ubifs: Add authentication support
* Fixes:
+ ubifs-media: Update to Linux-5.3-rc3
+ mtd-utils: Fix return value of ubiformat
+ ubiupdatevol: Prevent null pointer dereference
+ libubigen: remove unnecessary include
+ libubi: remove private kernel header from includes
+ mkfs.ubifs: fscrypt: bail from encrypt_block if gen_essiv_salt fails
+ mkfs.ubifs: abort add_directory if readdir fails
+ mkfs.ubifs: close file descriptor in add_file error path
+ mkfs.ubifs: don't leak copied command line arguments
+ mkfs.ubifs: free derived fscrypt context in add_directory error paths
+ mkfs.ubifs: don't leak hastable iterators
+ mkfs.ubifs: don't leak temporary buffers
+ mkfs.ubifs: propperly cleanup in ALL interpret_table_entry error paths
+ mkfs.jffs2: don't leak temporary buffer if readlink fails
+ libmtd: don't leak temporary buffers
+ ftl_check: don't leak temporary buffers
+ ftl_format: don't leak temporary buffers
+ ubiformat: don't leak file descriptors
+ nanddump: don't leak copied command line arguments
+ mtd_debug: cleanup error handling in flash_to_file
+ jittertest: fix error check for open system call
+ fs-tests: don't leak temporary buffers
+ mtd-utils: Fix printf format specifiers with the wrong type
+ mtd-utils: Fix potential negative arguments passed to close(2)
+ mtd-utils: Fix various TOCTOU issues
+ mtd-utils: Fix some simple cases of uninitialized value reads
+ mtd-utils: Fix wrong argument to sizeof in nanddump
+ mtd-utils: Fix "are we really at EOF" test logic in libubi read_data
+ mtd-utils: Fix potentially unterminated strings
+ mtd-utils: Add checks to code that copies strings into fixed sized buffers
+ mkfs.ubifs: fix broken build if fscrtyp is disabled
-------------------------------------------------------------------
Mon Feb 3 16:22:01 UTC 2020 - Martin Pluskal <mpluskal@suse.com>

View File

@ -17,7 +17,7 @@
Name: mtd-utils
Version: 2.1.1
Version: 2.1.2
Release: 0
Summary: Tools for maintaining Memory Technology Devices
License: GPL-2.0-or-later
@ -41,7 +41,7 @@ This package contains tools for erasing and formatting flash devices,
including JFFS2, M-Systems DiskOnChip devices, etc.
%prep
%setup -q
%autosetup
%build
%configure
@ -88,6 +88,7 @@ including JFFS2, M-Systems DiskOnChip devices, etc.
%{_sbindir}/ubiblock
%{_sbindir}/ubicrc32
%{_sbindir}/ubidetach
%{_sbindir}/ubihealthd
%{_sbindir}/ubiformat
%{_sbindir}/ubimkvol
%{_sbindir}/ubinfo