Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] linux: fix name of config variable
@ 2017-06-04  9:48 Yann E. MORIN
  2017-06-05  9:54 ` Thomas Petazzoni
  2017-06-08 14:51 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Yann E. MORIN @ 2017-06-04  9:48 UTC (permalink / raw)
  To: buildroot

In 4c10eedc1 (systemd: enable required kernel features), we added
setting a few required kernel features to ensure systemd works.

However, there was a typo for one of the variables: CONFIG_TMPFS_XATTR
was written as CONFIG_TMPFS_POSIX_XATTR, which does not exist (and never
ever existed, at least not since 2.6.12)...

Fixes #9926.

Reported-by: Michael Heinemann <posted@heine.so>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Cc: Michael Heinemann <posted@heine.so>
---
 linux/linux.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux/linux.mk b/linux/linux.mk
index e387c7dd44..9da7e9bec1 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -278,7 +278,7 @@ define LINUX_KCONFIG_FIXUP_CMDS
 		$(call KCONFIG_ENABLE_OPT,CONFIG_FHANDLE,$(@D)/.config)
 		$(call KCONFIG_ENABLE_OPT,CONFIG_AUTOFS4_FS,$(@D)/.config)
 		$(call KCONFIG_ENABLE_OPT,CONFIG_TMPFS_POSIX_ACL,$(@D)/.config)
-		$(call KCONFIG_ENABLE_OPT,CONFIG_TMPFS_POSIX_XATTR,$(@D)/.config))
+		$(call KCONFIG_ENABLE_OPT,CONFIG_TMPFS_XATTR,$(@D)/.config))
 	$(if $(BR2_PACKAGE_SMACK),
 		$(call KCONFIG_ENABLE_OPT,CONFIG_SECURITY,$(@D)/.config)
 		$(call KCONFIG_ENABLE_OPT,CONFIG_SECURITY_SMACK,$(@D)/.config)
-- 
2.11.0

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

* [Buildroot] [PATCH] linux: fix name of config variable
  2017-06-04  9:48 [Buildroot] [PATCH] linux: fix name of config variable Yann E. MORIN
@ 2017-06-05  9:54 ` Thomas Petazzoni
  2017-06-05 16:42   ` Yann E. MORIN
  2017-06-08 14:51 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2017-06-05  9:54 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun,  4 Jun 2017 11:48:39 +0200, Yann E. MORIN wrote:
> In 4c10eedc1 (systemd: enable required kernel features), we added
> setting a few required kernel features to ensure systemd works.
> 
> However, there was a typo for one of the variables: CONFIG_TMPFS_XATTR
> was written as CONFIG_TMPFS_POSIX_XATTR, which does not exist (and never
> ever existed, at least not since 2.6.12)...
> 
> Fixes #9926.

The patch looks good, but I'm not sure why you say it fixes #9926. It
has been noticed as part of the #9926 discussion, but to me it doesn't
fix this bug.

Could you clarify?

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] linux: fix name of config variable
  2017-06-05  9:54 ` Thomas Petazzoni
@ 2017-06-05 16:42   ` Yann E. MORIN
  0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2017-06-05 16:42 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2017-06-05 11:54 +0200, Thomas Petazzoni spake thusly:
> On Sun,  4 Jun 2017 11:48:39 +0200, Yann E. MORIN wrote:
> > In 4c10eedc1 (systemd: enable required kernel features), we added
> > setting a few required kernel features to ensure systemd works.
> > 
> > However, there was a typo for one of the variables: CONFIG_TMPFS_XATTR
> > was written as CONFIG_TMPFS_POSIX_XATTR, which does not exist (and never
> > ever existed, at least not since 2.6.12)...
> > 
> > Fixes #9926.
> 
> The patch looks good, but I'm not sure why you say it fixes #9926. It
> has been noticed as part of the #9926 discussion, but to me it doesn't
> fix this bug.
> 
> Could you clarify?

OK, I mis-read the comment in #9926. I does not fix it.

Still, the patch is meaningful on its own. 

Can you just drop the "Fixes #9926" part before applying, please? ;-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] linux: fix name of config variable
  2017-06-04  9:48 [Buildroot] [PATCH] linux: fix name of config variable Yann E. MORIN
  2017-06-05  9:54 ` Thomas Petazzoni
@ 2017-06-08 14:51 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-06-08 14:51 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > In 4c10eedc1 (systemd: enable required kernel features), we added
 > setting a few required kernel features to ensure systemd works.

 > However, there was a typo for one of the variables: CONFIG_TMPFS_XATTR
 > was written as CONFIG_TMPFS_POSIX_XATTR, which does not exist (and never
 > ever existed, at least not since 2.6.12)...

 > Fixes #9926.

Committed to master, 2017.05.x and 2017.02.x after dropping the
reference to #9926, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2017-06-08 14:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-04  9:48 [Buildroot] [PATCH] linux: fix name of config variable Yann E. MORIN
2017-06-05  9:54 ` Thomas Petazzoni
2017-06-05 16:42   ` Yann E. MORIN
2017-06-08 14:51 ` Peter Korsgaard

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