All of lore.kernel.org
 help / color / mirror / Atom feed
* difficulties with KCONFIG_ALLCONFIG miniconfigs
@ 2015-04-13 20:17 Jeff Weber
  2015-04-13 20:54 ` Paul Bolle
  0 siblings, 1 reply; 2+ messages in thread
From: Jeff Weber @ 2015-04-13 20:17 UTC (permalink / raw)
  To: linux-kbuild

I am unable to pass required kernel config items via KCONFIG_ALLCONFIG
to kbuild.
I originally encountered issues with the
scripts/kconfig/merge_config.sh tool, but I've
isolated some of my issues to the examples below.  Kernel = 3.18.11 .
Help appreciated.

Case 1: Attempt to enable EXT4_FS using allnoconfig target.
Per ./fs/ext4/Kconfig, config EXT4_FS has no other dependencies.

$ cat ext4.cfg
CONFIG_EXT4_FS=y

$ KCONFIG_ALLCONFIG=ext4.cfg  make allnoconfig

$ grep CONFIG_EXT4_FS .config || echo not found
not found

Why was CONFIG_EXT4_FS not set?


Case 2: Attempt to disable SLUB_DEBUG using alldefconfig target.
Search of Kconfigs shows no other configs select SLUB_DEBUG .

$ cat no-slub-debug.cfg
CONFIG_SLUB_DEBUG=n

$ KCONFIG_ALLCONFIG=no-slub-debug.cfg make alldefconfig

$ grep SLUB_DEBUG .config
CONFIG_SLUB_DEBUG=y
# CONFIG_SLUB_DEBUG_ON is not set

Why was CONFIG_SLUB_DEBUG not disabled?

TIA,
Jeff

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

end of thread, other threads:[~2015-04-13 20:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-13 20:17 difficulties with KCONFIG_ALLCONFIG miniconfigs Jeff Weber
2015-04-13 20:54 ` Paul Bolle

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.