diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-31 13:22:34 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-12 16:31:41 +0100 |
commit | fe417e8a4d625c6933de72163d2fee52ac47f571 (patch) | |
tree | dc9efe982ff909073226cca6563e7a149ab353b8 | |
parent | cb945328fe019c246c520904c02ca29d3798df07 (diff) | |
download | openembedded-core-fe417e8a4d625c6933de72163d2fee52ac47f571.tar.gz openembedded-core-fe417e8a4d625c6933de72163d2fee52ac47f571.tar.bz2 openembedded-core-fe417e8a4d625c6933de72163d2fee52ac47f571.zip |
cmd1.bbclass: Ensure ncurses is built and used for menuconfig tasks
Currently, the task just exits if something goes wrong. This adds the
ncurses-native dependency. It also adds a small delay before closing the
window so any messages displayed there can be seen.
Trying to get the kernel build system to correctly find and link with
our copy of ncurses is some kind of nightmare. I ended up having to add
it to HOST_LOADLIBES globally for this task which is rather nasty but I
couldn't find any other way.
[YOCTO #2513]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/cml1.bbclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass index d429188c70..bd253117aa 100644 --- a/meta/classes/cml1.bbclass +++ b/meta/classes/cml1.bbclass @@ -9,9 +9,15 @@ addtask configure after do_unpack do_patch before do_compile inherit terminal +OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOSTLDFLAGS HOST_LOADLIBES" +HOST_EXTRACFLAGS = "${BUILD_CFLAGS} ${BUILD_LDFLAGS}" +HOSTLDFLAGS = "${BUILD_LDFLAGS}" +HOST_LOADLIBES = "-lncurses" + python do_menuconfig() { - oe_terminal("make menuconfig", '${PN} Configuration', d) + oe_terminal("${SHELL} -c \"make menuconfig; echo 'Pausing for 5 seconds'; sleep 5\"", '${PN} Configuration', d) } +do_menuconfig[depends] += "ncurses-native:do_populate_sysroot" do_menuconfig[nostamp] = "1" addtask menuconfig after do_configure |