All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs: Allow to compile FS_SQUASHFS only for proper U-Boot
@ 2022-04-06 21:34 Pali Rohár
  2022-04-21 15:43 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Pali Rohár @ 2022-04-06 21:34 UTC (permalink / raw)
  To: Simon Glass, Heinrich Schuchardt, Sean Anderson; +Cc: u-boot

CONFIG_SPL_FS_SQUASHFS cannot be disabled when CONFIG_FS_SQUASHFS is
enabled. Fix it.

Signed-off-by: Pali Rohár <pali@kernel.org>
---
 fs/fs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/fs.c b/fs/fs.c
index 7bf8c440886a..b4306cf8499e 100644
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -286,7 +286,7 @@ static struct fstype_info fstypes[] = {
 		.ln = fs_ln_unsupported,
 	},
 #endif
-#if IS_ENABLED(CONFIG_FS_SQUASHFS)
+#if CONFIG_IS_ENABLED(FS_SQUASHFS)
 	{
 		.fstype = FS_TYPE_SQUASHFS,
 		.name = "squashfs",
-- 
2.20.1


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

* Re: [PATCH] fs: Allow to compile FS_SQUASHFS only for proper U-Boot
  2022-04-06 21:34 [PATCH] fs: Allow to compile FS_SQUASHFS only for proper U-Boot Pali Rohár
@ 2022-04-21 15:43 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2022-04-21 15:43 UTC (permalink / raw)
  To: Pali Rohár; +Cc: Simon Glass, Heinrich Schuchardt, Sean Anderson, u-boot

[-- Attachment #1: Type: text/plain, Size: 255 bytes --]

On Wed, Apr 06, 2022 at 11:34:00PM +0200, Pali Rohár wrote:

> CONFIG_SPL_FS_SQUASHFS cannot be disabled when CONFIG_FS_SQUASHFS is
> enabled. Fix it.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2022-04-21 15:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-06 21:34 [PATCH] fs: Allow to compile FS_SQUASHFS only for proper U-Boot Pali Rohár
2022-04-21 15:43 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.