20 lines
505 B
Plaintext
20 lines
505 B
Plaintext
FILESEXTRAPATHS:prepend:stm32mpcommon := "${THISDIR}/files:"
|
|
|
|
#Add scripts for gdb/openocd/eclipse
|
|
SRC_URI:append:stm32mpcommon = " \
|
|
file://gdbinit \
|
|
"
|
|
|
|
# Ref to yocto default conf at:
|
|
# openembedded-core/meta/recipes-devtools/gdb/gdb-common.inc
|
|
# We force activation of tui for the "layout" command.
|
|
EXTRA_OECONF:append:stm32mpcommon = " \
|
|
--enable-tui \
|
|
"
|
|
|
|
do_install:append:stm32mpcommon() {
|
|
install -d ${D}/${bindir}/
|
|
cp -a --no-preserve=ownership ${WORKDIR}/gdbinit ${D}/${bindir}/
|
|
}
|
|
|