Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2] mmc-utils: allow enabling of "dangerous commands"
@ 2022-10-14 17:20 Markus Mayer via buildroot
  2022-10-14 19:18 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Markus Mayer via buildroot @ 2022-10-14 17:20 UTC (permalink / raw)
  To: Buildroot Mailing List; +Cc: Fabrice Fontaine, Markus Mayer

Provide a config option that allows the user to enable mmc's "dangerous
commands" if so desired. mmc-utils considers turning on permanent write
protection on a device a "dangerous command" and doesn't offer it by
default.

Signed-off-by: Markus Mayer <mmayer@broadcom.com>
---
 package/mmc-utils/Config.in    |  8 ++++++++
 package/mmc-utils/mmc-utils.mk | 10 +++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/package/mmc-utils/Config.in b/package/mmc-utils/Config.in
index 850aeac44571..0283658a7a57 100644
--- a/package/mmc-utils/Config.in
+++ b/package/mmc-utils/Config.in
@@ -8,3 +8,11 @@ config BR2_PACKAGE_MMC_UTILS
 
 comment "mmc-utils needs a toolchain w/ headers >= 3.0"
 	depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
+
+config BR2_PACKAGE_MMC_UTILS_ENABLE_DANGEROUS_COMMANDS
+	bool "Enable dangerous commands"
+	depends on BR2_PACKAGE_MMC_UTILS
+	help
+	   Enable support for dangerous commands in mmc-utils. mmc-utils
+	   considers turning on permanent write protection on a device a
+	   "dangerous command" and doesn't offer it by default.
diff --git a/package/mmc-utils/mmc-utils.mk b/package/mmc-utils/mmc-utils.mk
index c84737869264..14e2bee58736 100644
--- a/package/mmc-utils/mmc-utils.mk
+++ b/package/mmc-utils/mmc-utils.mk
@@ -10,12 +10,20 @@ MMC_UTILS_SITE_METHOD = git
 MMC_UTILS_LICENSE = GPL-2.0
 MMC_UTILS_LICENSE_FILES = mmc.h
 
+MMC_UTILS_CFLAGS = $(TARGET_CFLAGS)
+
+ifeq ($(BR2_PACKAGE_MMC_UTILS_ENABLE_DANGEROUS_COMMANDS),y)
+MMC_UTILS_CFLAGS += -DDANGEROUS_COMMANDS_ENABLED
+endif
+
 # override AM_CFLAGS as the project Makefile uses it to pass
 # -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2, and the latter conflicts
 # with the _FORTIFY_SOURCE that we pass when hardening options are
 # enabled.
 define MMC_UTILS_BUILD_CMDS
-	$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) AM_CFLAGS=
+	$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
+		CFLAGS="$(MMC_UTILS_CFLAGS)" \
+		AM_CFLAGS=
 endef
 
 define MMC_UTILS_INSTALL_TARGET_CMDS
-- 
2.34.1

_______________________________________________
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 v2] mmc-utils: allow enabling of "dangerous commands"
  2022-10-14 17:20 [Buildroot] [PATCH v2] mmc-utils: allow enabling of "dangerous commands" Markus Mayer via buildroot
@ 2022-10-14 19:18 ` Yann E. MORIN
  2022-10-14 19:54   ` Markus Mayer via buildroot
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2022-10-14 19:18 UTC (permalink / raw)
  To: Markus Mayer; +Cc: Fabrice Fontaine, Buildroot Mailing List

Markus, All,

On 2022-10-14 10:20 -0700, Markus Mayer via buildroot spake thusly:
> Provide a config option that allows the user to enable mmc's "dangerous
> commands" if so desired. mmc-utils considers turning on permanent write
> protection on a device a "dangerous command" and doesn't offer it by
> default.
> 
> Signed-off-by: Markus Mayer <mmayer@broadcom.com>
> ---
>  package/mmc-utils/Config.in    |  8 ++++++++
>  package/mmc-utils/mmc-utils.mk | 10 +++++++++-
>  2 files changed, 17 insertions(+), 1 deletion(-)
> 
> diff --git a/package/mmc-utils/Config.in b/package/mmc-utils/Config.in
> index 850aeac44571..0283658a7a57 100644
> --- a/package/mmc-utils/Config.in
> +++ b/package/mmc-utils/Config.in
> @@ -8,3 +8,11 @@ config BR2_PACKAGE_MMC_UTILS
>  
>  comment "mmc-utils needs a toolchain w/ headers >= 3.0"
>  	depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
> +
> +config BR2_PACKAGE_MMC_UTILS_ENABLE_DANGEROUS_COMMANDS
> +	bool "Enable dangerous commands"
> +	depends on BR2_PACKAGE_MMC_UTILS
> +	help
> +	   Enable support for dangerous commands in mmc-utils. mmc-utils
> +	   considers turning on permanent write protection on a device a
> +	   "dangerous command" and doesn't offer it by default.

Sub-options must immediately follow the main option, or the indentation
is not correct.

We also prefer if-endif blocks when introducing new sub-options, for
consistency across the code base.

Applied to master with the above two changes, thanks.

Regards,
Yann E. MORIN.

> diff --git a/package/mmc-utils/mmc-utils.mk b/package/mmc-utils/mmc-utils.mk
> index c84737869264..14e2bee58736 100644
> --- a/package/mmc-utils/mmc-utils.mk
> +++ b/package/mmc-utils/mmc-utils.mk
> @@ -10,12 +10,20 @@ MMC_UTILS_SITE_METHOD = git
>  MMC_UTILS_LICENSE = GPL-2.0
>  MMC_UTILS_LICENSE_FILES = mmc.h
>  
> +MMC_UTILS_CFLAGS = $(TARGET_CFLAGS)
> +
> +ifeq ($(BR2_PACKAGE_MMC_UTILS_ENABLE_DANGEROUS_COMMANDS),y)
> +MMC_UTILS_CFLAGS += -DDANGEROUS_COMMANDS_ENABLED
> +endif
> +
>  # override AM_CFLAGS as the project Makefile uses it to pass
>  # -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2, and the latter conflicts
>  # with the _FORTIFY_SOURCE that we pass when hardening options are
>  # enabled.
>  define MMC_UTILS_BUILD_CMDS
> -	$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) AM_CFLAGS=
> +	$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
> +		CFLAGS="$(MMC_UTILS_CFLAGS)" \
> +		AM_CFLAGS=
>  endef
>  
>  define MMC_UTILS_INSTALL_TARGET_CMDS
> -- 
> 2.34.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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 v2] mmc-utils: allow enabling of "dangerous commands"
  2022-10-14 19:18 ` Yann E. MORIN
@ 2022-10-14 19:54   ` Markus Mayer via buildroot
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Mayer via buildroot @ 2022-10-14 19:54 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: Fabrice Fontaine, Buildroot Mailing List

On Fri, 14 Oct 2022 at 12:18, Yann E. MORIN <yann.morin.1998@free.fr> wrote:

> > @@ -8,3 +8,11 @@ config BR2_PACKAGE_MMC_UTILS
> >
> >  comment "mmc-utils needs a toolchain w/ headers >= 3.0"
> >       depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
> > +
> > +config BR2_PACKAGE_MMC_UTILS_ENABLE_DANGEROUS_COMMANDS
> > +     bool "Enable dangerous commands"
> > +     depends on BR2_PACKAGE_MMC_UTILS
> > +     help
> > +        Enable support for dangerous commands in mmc-utils. mmc-utils
> > +        considers turning on permanent write protection on a device a
> > +        "dangerous command" and doesn't offer it by default.
>
> Sub-options must immediately follow the main option, or the indentation
> is not correct.
>
> We also prefer if-endif blocks when introducing new sub-options, for
> consistency across the code base.

Gotcha.

> Applied to master with the above two changes, thanks.

Thanks for the fixup.

Regards,
-Markus
_______________________________________________
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:[~2022-10-14 19:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-14 17:20 [Buildroot] [PATCH v2] mmc-utils: allow enabling of "dangerous commands" Markus Mayer via buildroot
2022-10-14 19:18 ` Yann E. MORIN
2022-10-14 19:54   ` Markus Mayer via buildroot

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