forked from pool/mmc-utils
Accepting request 770331 from hardware
- Update to version 0.1+git.20191004: * Add eMMC vendor Micron to table * Optimize to_binstr() function * Fix parsing of character in to_binstr() * Cleanup memory in error case * Check calloc's return value before using the pointer * mmc-utils: feature spec 5.0+, add secure removal type fields to Extended CSD * mmc-utils: use MMC_IOC_MULTI_CMD for RPMB access * use proper type for RPMB blocks_cnt * fix GCC7 build by refactoring trimming routines * fix ENH_START_ADDR overflow OBS-URL: https://build.opensuse.org/request/show/770331 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mmc-utils?expand=0&rev=13
This commit is contained in:
commit
65774a2657
13
_service
13
_service
@ -1,14 +1,15 @@
|
||||
<services>
|
||||
<service mode="disabled" name="tar_scm">
|
||||
<service mode="disabled" name="obs_scm">
|
||||
<param name="url">git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="filename">mmc-utils</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="filename">mmc-utils</param>
|
||||
<param name="versionformat">0.1+git.%cd</param>
|
||||
</service>
|
||||
<service mode="disabled" name="recompress">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service mode="disabled" name="set_version"/>
|
||||
<service name="tar" mode="buildtime"/>
|
||||
<service name="recompress" mode="buildtime">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
</services>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git</param>
|
||||
<param name="changesrevision">d40ec535b9d4e4c974e8c2fbfb422cd0348cc5e8</param></service></servicedata>
|
||||
<param name="changesrevision">73d6c59af8d1bcedf5de4aa1f5d5b7f765f545f5</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fdf7fa1a6777d8fdb0872383ba510619f2cdfda55866b9e1f93243c57279557c
|
||||
size 36132
|
3
mmc-utils-0.1+git.20191004.obscpio
Normal file
3
mmc-utils-0.1+git.20191004.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7114c4ecf44997ebfd94eb8c980bf6a8ef702f8bc5655c72c86a9e9220b8eba3
|
||||
size 214539
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 3 15:56:24 UTC 2020 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
- Update to version 0.1+git.20191004:
|
||||
* Add eMMC vendor Micron to table
|
||||
* Optimize to_binstr() function
|
||||
* Fix parsing of character in to_binstr()
|
||||
* Cleanup memory in error case
|
||||
* Check calloc's return value before using the pointer
|
||||
* mmc-utils: feature spec 5.0+, add secure removal type fields to Extended CSD
|
||||
* mmc-utils: use MMC_IOC_MULTI_CMD for RPMB access
|
||||
* use proper type for RPMB blocks_cnt
|
||||
* fix GCC7 build by refactoring trimming routines
|
||||
* fix ENH_START_ADDR overflow
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 13 14:02:28 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
|
5
mmc-utils.obsinfo
Normal file
5
mmc-utils.obsinfo
Normal file
@ -0,0 +1,5 @@
|
||||
name: mmc-utils
|
||||
version: 0.1+git.20191004
|
||||
mtime: 1570236453
|
||||
commit: 73d6c59af8d1bcedf5de4aa1f5d5b7f765f545f5
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package mmc-utils
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,24 +17,24 @@
|
||||
|
||||
|
||||
Name: mmc-utils
|
||||
Version: 0.1+git.20190808
|
||||
Version: 0.1+git.20191004
|
||||
Release: 0
|
||||
Summary: Tools for MMC/SD devices
|
||||
License: GPL-2.0-only
|
||||
Group: Hardware/Other
|
||||
URL: http://git.kernel.org/cgit/linux/kernel/git/cjb/mmc-utils.git/
|
||||
Source0: %{name}-%{version}.tar.xz
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Source1: https://www.gnu.org/licenses/gpl-2.0.txt
|
||||
|
||||
%description
|
||||
Userspace tools for controlling and querying MMC/SD storage devices
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup
|
||||
cp %{SOURCE1} LICENSE.GPL-2.0
|
||||
|
||||
%build
|
||||
make %{?_smp_mflags} CFLAGS="%{optflags}" CHECKFLAGS="-Wall -Wuninitialized -Wundef"
|
||||
%make_build CFLAGS="%{optflags}" CHECKFLAGS="-Wall -Wuninitialized -Wundef"
|
||||
|
||||
%install
|
||||
%make_install prefix=%{_prefix}
|
||||
|
Loading…
Reference in New Issue
Block a user