From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 931B28468; Thu, 25 Jul 2024 14:51:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721919109; cv=none; b=INZLwxsB/DWahde1GwJybuvA3ykQBVD6C6M2XGaFQsAwVwegV7+xNUjSnG1NPErcSyNVgzgLIfSwo8OnJ+OCN4eCuiXwFNaQ23lNVEvlSulbJqVPDu/Yw/yN63KiS4VJCtw+5887YROJu1I2+I5WwYhoi+L8hwRygetsSvwc6lc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721919109; c=relaxed/simple; bh=a0ZJYzaKjLc/i/mdPBlodsHf/oJWnjR4dyUK1e/rHxA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OUaylfjmxRO/ZEhSmGQpXYGdcVnUGfTRUB0NSSm859AguImsvtn/Rk6Bm+rnml1cAqTufBR/5+vC/20ajLU1tiCNYzG8lOPqxq//FKOtYwXJbqdDQOXwhDd/SHBQFoGAZu9EB2Z/XFBJc8esLBCxKIBzyY+2M/n8/BT7pcydbf4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DsVZwSXS; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="DsVZwSXS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 133AFC116B1; Thu, 25 Jul 2024 14:51:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1721919109; bh=a0ZJYzaKjLc/i/mdPBlodsHf/oJWnjR4dyUK1e/rHxA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DsVZwSXSbjFcJw7mOajMp4kMrHEacViHLlUcLc0q+pwAkZbuip9XnZzxVUEiVIqf8 KBb5KXoZbVE6gt2QDY7PUz6yvoETxpQT4rQTYzGw0IRUBgM5V4wACnXN0b1QYHYOY9 DyHQU5pwQUYk/herdLdj33h+RjpXWePtJsa0vgLc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Masahiro Yamada , Sasha Levin Subject: [PATCH 5.15 26/87] kconfig: gconf: give a proper initial state to the Save button Date: Thu, 25 Jul 2024 16:36:59 +0200 Message-ID: <20240725142739.423074698@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240725142738.422724252@linuxfoundation.org> References: <20240725142738.422724252@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Masahiro Yamada [ Upstream commit 46edf4372e336ef3a61c3126e49518099d2e2e6d ] Currently, the initial state of the "Save" button is always active. If none of the CONFIG options are changed while loading the .config file, the "Save" button should be greyed out. This can be fixed by calling conf_read() after widget initialization. Signed-off-by: Masahiro Yamada Signed-off-by: Sasha Levin --- scripts/kconfig/gconf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 17adabfd6e6bf..5d1404178e482 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -1481,7 +1481,6 @@ int main(int ac, char *av[]) conf_parse(name); fixup_rootmenu(&rootmenu); - conf_read(NULL); /* Load the interface and connect signals */ init_main_window(glade_file); @@ -1489,6 +1488,8 @@ int main(int ac, char *av[]) init_left_tree(); init_right_tree(); + conf_read(NULL); + switch (view_mode) { case SINGLE_VIEW: display_tree_part(); -- 2.43.0