forked from pool/mmc-utils
- Update to version 0.1+git.20240307:
* mmc-utils: mmc_cmds: fix type-punned warning on &ext_csd[] casting * mmc-utils: lsmmc: Fix emmc capacity calculation * mmc-utils: lsmmc: Disintegrade print_mmc_csd * mmc-utils: lsmmc: Simplify interface processing functions * mmc-utils: lsmmc: Simplify prinitng manufacturer name * mmc-utils: lsmmc: Reuse do_read_reg * mmc-utils: fix potential overflow * mmc-utils: ffu: Add optional chunk-size argument * mmc-utils: ffu: Allow ffu of large images * mmc-utils: ffu: Add ffu multi-command set handler * mmc-utils: ffu: Simplify ext_csd bytes parsing * mmc-utils: Add arg argument to set_single_cmd * mmc-utils: Add fill_switch_cmd handler * mmc-utils: Assert MMC_IOC_MULTI_CMD in compile time * mmc-utils: support overriding CFLAGS without setting -DVERSION * mmc-utils: do not hide CID manufacturer information * mmc-utils: fix printing OID for mmc in non-verbose mode * mmc-utils: add SanDisk to manufacturer database * mmc-utils: Change version string to git hash OBS-URL: https://build.opensuse.org/package/show/hardware/mmc-utils?expand=0&rev=43
This commit is contained in:
parent
9b4e0df961
commit
64f667d8b2
4
_service
4
_service
@ -1,12 +1,12 @@
|
||||
<services>
|
||||
<service mode="disabled" name="obs_scm">
|
||||
<service mode="manual" 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="changesgenerate">enable</param>
|
||||
<param name="filename">mmc-utils</param>
|
||||
<param name="versionformat">0.1+git.%cd</param>
|
||||
</service>
|
||||
<service mode="disabled" name="set_version"/>
|
||||
<service mode="manual" name="set_version"/>
|
||||
<service name="tar" mode="buildtime"/>
|
||||
<service name="recompress" mode="buildtime">
|
||||
<param name="file">*.tar</param>
|
||||
|
@ -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">d4c2910981ff99b983734426dfa99632fb81ac6b</param></service></servicedata>
|
||||
<param name="changesrevision">e1281d4de9166b7254ba30bb58f9191fc2c9e7fb</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:605ae4c2e69a211418b71e0b09544b16314db0bc7d2fb99ab2ee84f45da18c66
|
||||
size 236555
|
3
mmc-utils-0.1+git.20240307.obscpio
Normal file
3
mmc-utils-0.1+git.20240307.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4bc073d099b551c2f5c6c7d0eaf31a54cc7b54831a6e7f40bfa14530c2f56c3
|
||||
size 233995
|
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 14 13:50:50 UTC 2024 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
- Update to version 0.1+git.20240307:
|
||||
* mmc-utils: mmc_cmds: fix type-punned warning on &ext_csd[] casting
|
||||
* mmc-utils: lsmmc: Fix emmc capacity calculation
|
||||
* mmc-utils: lsmmc: Disintegrade print_mmc_csd
|
||||
* mmc-utils: lsmmc: Simplify interface processing functions
|
||||
* mmc-utils: lsmmc: Simplify prinitng manufacturer name
|
||||
* mmc-utils: lsmmc: Reuse do_read_reg
|
||||
* mmc-utils: fix potential overflow
|
||||
* mmc-utils: ffu: Add optional chunk-size argument
|
||||
* mmc-utils: ffu: Allow ffu of large images
|
||||
* mmc-utils: ffu: Add ffu multi-command set handler
|
||||
* mmc-utils: ffu: Simplify ext_csd bytes parsing
|
||||
* mmc-utils: Add arg argument to set_single_cmd
|
||||
* mmc-utils: Add fill_switch_cmd handler
|
||||
* mmc-utils: Assert MMC_IOC_MULTI_CMD in compile time
|
||||
* mmc-utils: support overriding CFLAGS without setting -DVERSION
|
||||
* mmc-utils: do not hide CID manufacturer information
|
||||
* mmc-utils: fix printing OID for mmc in non-verbose mode
|
||||
* mmc-utils: add SanDisk to manufacturer database
|
||||
* mmc-utils: Change version string to git hash
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 24 08:08:30 UTC 2023 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: mmc-utils
|
||||
version: 0.1+git.20230209
|
||||
mtime: 1675952211
|
||||
commit: d4c2910981ff99b983734426dfa99632fb81ac6b
|
||||
version: 0.1+git.20240307
|
||||
mtime: 1709809140
|
||||
commit: e1281d4de9166b7254ba30bb58f9191fc2c9e7fb
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package mmc-utils
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,11 +17,10 @@
|
||||
|
||||
|
||||
Name: mmc-utils
|
||||
Version: 0.1+git.20230209
|
||||
Version: 0.1+git.20240307
|
||||
Release: 0
|
||||
Summary: Tools for MMC/SD devices
|
||||
License: GPL-2.0-only
|
||||
Group: Hardware/Other
|
||||
URL: https://git.kernel.org/cgit/linux/kernel/git/cjb/mmc-utils.git/
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Source1: https://www.gnu.org/licenses/gpl-2.0.txt
|
||||
|
Loading…
Reference in New Issue
Block a user