lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 18 Mar 2010 10:21:21 +0100 (CET)
From:	Jan Engelhardt <jengelh@...ozas.de>
To:	Michal Marek <mmarek@...e.cz>
cc:	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: kconfig: report select on a depending option

Hi,


With the following combination of Kconfig config options, I can select 
TEST_Z, which will select TEST_X, even if TEST_Y=n. It also allows for 
awkward situations like TEST_Y=M, TEST_X=y, TEST_Z=y, which would yield 
a link time error when X uses Y's symbols.
Is there a way to have such potential errors reported with kconfig?

config TEST_Y
	tristate "Y"

config TEST_X
	depends on Y
	tristate "X"

config TEST_Z
	select TEST_Y
	tristate "Z"

thanks,
Jan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists