From: Scott Rifenbark Date: Tue, 3 Sep 2013 13:06:55 +0000 (+0300) Subject: ref-manual: Added section on linux kernel image names using PE X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4265649931b0d65ec5a43016b3e98dd5fbf47bd9;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git ref-manual: Added section on linux kernel image names using PE Fixes [YOCTO #5089] In the "Migration" section for going from 1.3 to 1.4, I have added a new section to describe how the value of PE is now in the generated Linux kernel image filename. (From yocto-docs rev: 8ff3d263d2374ab3745e5264c3747e36674e7484) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- diff --git a/documentation/ref-manual/migration.xml b/documentation/ref-manual/migration.xml index 4f46d6348de..302ce4cea87 100644 --- a/documentation/ref-manual/migration.xml +++ b/documentation/ref-manual/migration.xml @@ -230,6 +230,30 @@ + +
+ Linux Kernel Naming + + + The naming scheme for kernel output binaries has been changed to + now include + PE as part of the + filename: + + KERNEL_IMAGE_BASE_NAME ?= "${KERNEL_IMAGETYPE}-${PE}-${PV}-${PR}-${MACHINE}-${DATETIME}" + + + + + Because the PE variable is not set by default, + these binary files could result with names that include two dash + characters. + Here is an example: + + bzImage--3.10.9+git0+cd502a8814_7144bcc4b8-r0-qemux86-64-20130830085431.bin + + +