From: Scott Rifenbark Date: Thu, 21 Sep 2017 01:54:03 +0000 (-0700) Subject: kernel-dev: Added note about running a clean build with a patch X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2efe56a06f6c116325f5c5d3dfcc3165db290f1b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git kernel-dev: Added note about running a clean build with a patch Put this note at the end of the traditional kernel development flow. A way for the user to verify that the patch was applied for a subsequent build. (From yocto-docs rev: 598a518cd92980e1781649a3ed30ac585327dc0f) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- diff --git a/documentation/kernel-dev/kernel-dev-common.xml b/documentation/kernel-dev/kernel-dev-common.xml index 9f8ac2d7159..9ef11385895 100644 --- a/documentation/kernel-dev/kernel-dev-common.xml +++ b/documentation/kernel-dev/kernel-dev-common.xml @@ -1434,6 +1434,21 @@ You can also see the "Using .bbappend Files in Your Layer"" section in the Yocto Project Development Manual. + + To build core-image-minimal + again and see the effects of your patch, you can + essentially eliminate the temporary source files + saved in poky/build/tmp/work/... + and residual effects of the build by entering the + following sequence of commands: + + $ cd ~/poky/build + $ cd bitbake -c cleanall yocto-linux + $ cd bitbake core-image-minimal -c cleanall + $ bitbake core-image-minimal + $ runqemu qemux86 + +