aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Müller-Klieser <s.mueller-klieser@phytec.de>2016-08-31 16:47:23 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-01 22:24:24 +0100
commit390c568cff912067523f00ee8d5e5f2d1421075a (patch)
treea36e0a36d65688d12e2d4bde7e3c529949a8ab0e
parent56868b57047bda2d2f4343e1d7c0ac6b02fd4745 (diff)
downloadopenembedded-core-contrib-390c568cff912067523f00ee8d5e5f2d1421075a.tar.gz
kernel.bbclass: add user output to savedefconfig
In a similar manner to diffconfig, tell the bitbake user where the defconfig will be saved to. Signed-off-by: Stefan Müller-Klieser <s.mueller-klieser@phytec.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/kernel.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 7ee22e145d..023e308869 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -430,6 +430,7 @@ kernel_do_configure() {
}
do_savedefconfig() {
+ bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
}
do_savedefconfig[nostamp] = "1"