Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/mmc-utils: bump to 2aef4cd9a84d
@ 2025-04-02  7:41 Dario Binacchi
  2025-04-03 14:51 ` Sébastien Szymanski
  2025-04-21 21:29 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Dario Binacchi @ 2025-04-02  7:41 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Dario Binacchi, linux-amarula

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>
---
 package/mmc-utils/mmc-utils.hash | 2 +-
 package/mmc-utils/mmc-utils.mk   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/mmc-utils/mmc-utils.hash b/package/mmc-utils/mmc-utils.hash
index 3da95d8070d6..17dedad2b7bb 100644
--- a/package/mmc-utils/mmc-utils.hash
+++ b/package/mmc-utils/mmc-utils.hash
@@ -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
diff --git a/package/mmc-utils/mmc-utils.mk b/package/mmc-utils/mmc-utils.mk
index 28ac62678b38..0036a775eeec 100644
--- a/package/mmc-utils/mmc-utils.mk
+++ b/package/mmc-utils/mmc-utils.mk
@@ -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
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mmc-utils: bump to 2aef4cd9a84d
  2025-04-02  7:41 [Buildroot] [PATCH 1/1] package/mmc-utils: bump to 2aef4cd9a84d Dario Binacchi
@ 2025-04-03 14:51 ` Sébastien Szymanski
  2025-04-21 21:29 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Sébastien Szymanski @ 2025-04-03 14:51 UTC (permalink / raw)
  To: Dario Binacchi, buildroot; +Cc: Giulio Benetti, linux-amarula

On 4/2/25 9:41 AM, Dario Binacchi wrote:
> 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>
> ---
>   package/mmc-utils/mmc-utils.hash | 2 +-
>   package/mmc-utils/mmc-utils.mk   | 4 ++--
>   2 files changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>

-- 
Sébastien Szymanski, Armadeus Systems
Software engineer
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mmc-utils: bump to 2aef4cd9a84d
  2025-04-02  7:41 [Buildroot] [PATCH 1/1] package/mmc-utils: bump to 2aef4cd9a84d Dario Binacchi
  2025-04-03 14:51 ` Sébastien Szymanski
@ 2025-04-21 21:29 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-04-21 21:29 UTC (permalink / raw)
  To: Dario Binacchi; +Cc: buildroot, Giulio Benetti, linux-amarula

On Wed,  2 Apr 2025 09:41:53 +0200
Dario Binacchi <dario.binacchi@amarulasolutions.com> wrote:

> 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>
> ---
>  package/mmc-utils/mmc-utils.hash | 2 +-
>  package/mmc-utils/mmc-utils.mk   | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2025-04-21 21:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-02  7:41 [Buildroot] [PATCH 1/1] package/mmc-utils: bump to 2aef4cd9a84d Dario Binacchi
2025-04-03 14:51 ` Sébastien Szymanski
2025-04-21 21:29 ` Thomas Petazzoni via buildroot

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