From e2fe5806988066cc90241fb83f1df7fa55dbd0f9 Mon Sep 17 00:00:00 2001 From: Luca Ceresoli Date: Tue, 1 Oct 2024 18:12:14 +0200 Subject: [PATCH] yocto: slides: "Append file example" slide: use better file names Having a 'defconfig' file is useful as it is a practical example of a file that might exist both in the original recipe and in the bbappend, and as such to explain why the order in FILSPATHS matters and we need to prepend instead of appending. The patch file is just a more realistic example. Signed-off-by: Luca Ceresoli --- slides/yocto-recipe-advanced/yocto-recipe-advanced.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/yocto-recipe-advanced/yocto-recipe-advanced.tex b/slides/yocto-recipe-advanced/yocto-recipe-advanced.tex index 1f5af05c12..05ca0591d6 100644 --- a/slides/yocto-recipe-advanced/yocto-recipe-advanced.tex +++ b/slides/yocto-recipe-advanced/yocto-recipe-advanced.tex @@ -72,8 +72,8 @@ \subsection{Extending a recipe} \begin{minted}{sh} FILESEXTRAPATHS:prepend := "${THISDIR}/files:" -SRC_URI += "file://custom-modification-0.patch \ - file://custom-modification-1.patch \ +SRC_URI += "file://defconfig \ + file://fix-memory-leak.patch \ " \end{minted} \end{block}