mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 09:46:38 +01:00
* The menuconfig target exists in places other than the kernel that use kernel style config. (From OE-Core rev: 1ceaf45f634d11b65aab0f591a86865df49c8c90) Signed-off-by: Noor, Ahsan <noor_ahsan@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
459 B
Plaintext
21 lines
459 B
Plaintext
cml1_do_configure() {
|
|
set -e
|
|
unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
|
|
oe_runmake oldconfig
|
|
}
|
|
|
|
EXPORT_FUNCTIONS do_configure
|
|
addtask configure after do_unpack do_patch before do_compile
|
|
|
|
do_menuconfig() {
|
|
export TERMWINDOWTITLE="${PN} Configuration"
|
|
export SHELLCMDS="make menuconfig"
|
|
${TERMCMDRUN}
|
|
if [ $? -ne 0 ]; then
|
|
oefatal "'${TERMCMD}' not found. Check TERMCMD variable."
|
|
fi
|
|
}
|
|
do_menuconfig[nostamp] = "1"
|
|
addtask menuconfig after do_configure
|
|
|