Re: [PATCH] kconfig: Add transitional symbol attribute for migration support

From: Kees Cook
Date: Fri Aug 29 2025 - 21:50:02 EST


On Fri, Aug 29, 2025 at 06:44:43PM -0700, Kees Cook wrote:
> +static int transitional_check_sanity(const struct menu *menu)
> +{
> + struct property *prop;
> +
> + if (!menu->sym || !menu->sym->transitional)
> + return 0;
> +
> + /* Check for depends and visible conditions. */
> + if (menu->dep && !expr_is_yes(menu->dep)) {
> + goto error;

This is what I get for not rebuilding after "obvious changes".

I've got missing "}"s... *sigh* v2 coming...

--
Kees Cook