package/mmc-utils: bump to 2aef4cd9a84d

Among the various changes, it's worth noting the extension of the
register read functionality, allowing also to get its value as an
argument [1].
Moreover, commit [2] fixes the conditional invocation of sparse
properly handling the corresponding 'C' option. Hence, the related
change in the Buildroot compilation command (i.e. C=0).

[1] https://web.git.kernel.org/pub/scm/utils/mmc/mmc-utils.git/commit/?id=21e0fa6420736830a90e13b4a807ec3475df5e65
[2] https://web.git.kernel.org/pub/scm/utils/mmc/mmc-utils.git/commit/?id=a89cba2a0f8c6a19aa6b804877241170f5b6bdd2
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Reviewed-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Dario Binacchi
2025-04-02 09:41:53 +02:00
committed by Thomas Petazzoni
parent 1956e4e434
commit dd9c6907c7
2 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
# Locally computed
sha256 1ae5706ce56bfedda94a01e87c5151ac750fb849987aeb74ff89d70f43556131 mmc-utils-523d8f3cfb219d800f45860892e742e3a355f1bb-git4.tar.gz
sha256 e9630d911bcf59e235a349d862700fa7ccea7545eb314da48431dcb4da125023 mmc-utils-2aef4cd9a84ddc76349fc0d7e10d675e7fa596fa-git4.tar.gz
sha256 49cd65f67b516078ff7e0dbe639972dad21ed3858246e3969fc8a8fc2a4dca66 README

View File

@@ -4,7 +4,7 @@
#
################################################################################
MMC_UTILS_VERSION = 523d8f3cfb219d800f45860892e742e3a355f1bb
MMC_UTILS_VERSION = 2aef4cd9a84ddc76349fc0d7e10d675e7fa596fa
MMC_UTILS_SITE = https://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git
MMC_UTILS_SITE_METHOD = git
MMC_UTILS_LICENSE = GPL-2.0
@@ -25,7 +25,7 @@ endif
# let's do this here otherwise it won't be automatically set and build
# will fail
define MMC_UTILS_BUILD_CMDS
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) C= \
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) C=0 \
CFLAGS="$(MMC_UTILS_CFLAGS)" \
AM_CFLAGS='-DVERSION=\"$(shell echo $(MMC_UTILS_VERSION) | head -c 6)\"'
endef