Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: set MENU_CHANGED to choice when the selected member is changed

In gconf, choice entries display the selected symbol in the 'Value'
column, but it is not updated when the selected symbol is changed.

Set the MENU_CHANGED flag, so it is updated.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+4
+4
scripts/kconfig/symbol.c
··· 195 195 196 196 list_for_each_entry(menu, &sym->menus, link) 197 197 menu->flags |= MENU_CHANGED; 198 + 199 + menu = sym_get_choice_menu(sym); 200 + if (menu) 201 + menu->flags |= MENU_CHANGED; 198 202 } 199 203 200 204 static void sym_set_all_changed(void)