summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDario Binacchi <dario.binacchi@amarulasolutions.com>2025-07-25 10:06:55 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-07-31 10:48:35 +0100
commitf50bbb4b490751a45e71e2ac806e6b4ccb0ab4d5 (patch)
tree9ea7a307fb52df7918d469e1fc29799d183a808f
parentff0bc4bba00652faf5a237d9464c8e4e9b34397f (diff)
downloadpoky-f50bbb4b490751a45e71e2ac806e6b4ccb0ab4d5.tar.gz
mmc-utils: properly set sparse option
Commit [1] fixes the conditional invocation of sparse properly handling the corresponding 'C' option. Hence, the related change in the EXTRA_OEMAKE (i.e. C=0). [1] https://web.git.kernel.org/pub/scm/utils/mmc/mmc-utils.git/commit/?id=a89cba2a0f8c6a19aa6b804877241170f5b6bdd2 (From OE-Core rev: 6fec97d6f0326989d37f9e20cf177d3c260979f7) Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/mmc/mmc-utils_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/mmc/mmc-utils_git.bb b/meta/recipes-devtools/mmc/mmc-utils_git.bb
index 5b6a5f3777..a0e0ec9c11 100644
--- a/meta/recipes-devtools/mmc/mmc-utils_git.bb
+++ b/meta/recipes-devtools/mmc/mmc-utils_git.bb
@@ -12,7 +12,7 @@ PV = "1.0"
12SRC_URI = "git://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git;branch=${SRCBRANCH};protocol=https;tag=v${PV}" 12SRC_URI = "git://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git;branch=${SRCBRANCH};protocol=https;tag=v${PV}"
13 13
14DEPENDS = "python3-sphinx-native" 14DEPENDS = "python3-sphinx-native"
15EXTRA_OEMAKE = "C=" 15EXTRA_OEMAKE = "C=0"
16 16
17CFLAGS:append:powerpc64 = " -D__SANE_USERSPACE_TYPES__" 17CFLAGS:append:powerpc64 = " -D__SANE_USERSPACE_TYPES__"
18CFLAGS:append:mipsarchn64 = " -D__SANE_USERSPACE_TYPES__" 18CFLAGS:append:mipsarchn64 = " -D__SANE_USERSPACE_TYPES__"