From 04eb94b84e915add4f5444957d6c3bcc65e110b8 Mon Sep 17 00:00:00 2001 From: Enrico Jörns Date: Tue, 5 Mar 2024 22:57:28 +0100 Subject: cml1: prompt location of updated .config after do_menuconfig() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When modifying the kernel config by invoking '-c menuconfig' manually, a sensible next step is to persist this changed configuration somewhere. A way to do this is to copy the generated .config back to the original config location. For this purpose, emit a copy+pasteable printout of the saved .config path similar to what we have for the fragment location in the 'diffconfig' task already. Example output: | Changed configuration saved at: | /path/to/bsp/build/tmp/work/my-machine-oe-linux/linux-custom/6.6.4/build/.config | Recompile will be forced (From OE-Core rev: b104470763b081f040f4fcac564136fc5562f23b) Signed-off-by: Enrico Jörns Signed-off-by: Richard Purdie --- meta/classes-recipe/cml1.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes-recipe') diff --git a/meta/classes-recipe/cml1.bbclass b/meta/classes-recipe/cml1.bbclass index 2da19cb4cf..03e5fe6f47 100644 --- a/meta/classes-recipe/cml1.bbclass +++ b/meta/classes-recipe/cml1.bbclass @@ -67,7 +67,7 @@ python do_menuconfig() { newmtime = 0 if newmtime > mtime: - bb.note("Configuration changed, recompile will be forced") + bb.plain("Changed configuration saved at:\n %s\nRecompile will be forced" % config) bb.build.write_taint('do_compile', d) } do_menuconfig[depends] += "ncurses-native:do_populate_sysroot" -- cgit v1.2.3-54-g00ecf