[meta-freescale] [meta-fsl-ppc][PATCH] linux-qoriq-sdk: append SDK version to kernel version

Zhenhua Luo zhenhua.luo at freescale.com
Mon May 20 23:21:07 PDT 2013


if SDK_VERSION is defined, append the sdk version string to kernel version,
this can make make the sdk version is explicit for users, expecially when same
kernel verison is used for different releases.

Signed-off-by: Zhenhua Luo <zhenhua.luo at freescale.com>
---
 recipes-kernel/linux/linux-qoriq-sdk.bb |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/recipes-kernel/linux/linux-qoriq-sdk.bb b/recipes-kernel/linux/linux-qoriq-sdk.bb
index 45f615f..a015e49 100644
--- a/recipes-kernel/linux/linux-qoriq-sdk.bb
+++ b/recipes-kernel/linux/linux-qoriq-sdk.bb
@@ -5,10 +5,9 @@ DESCRIPTION = "Linux kernel for Freescale platforms"
 SECTION = "kernel"
 LICENSE = "GPLv2"
 
-
 require recipes-kernel/linux/linux-qoriq-sdk.inc
 
-PR = "r10"
+PR = "r11"
 
 SRC_URI += "file://fix_getrusage_for_perf.patch \
             file://0001-Enable-the-option-Automount-devtmpfs-at-dev-in-kerne.patch \
@@ -17,4 +16,9 @@ SRC_URI += "file://fix_getrusage_for_perf.patch \
 do_configure_prepend() {
 	# copy desired defconfig so we pick it up for the real kernel_do_configure
 	cp ${KERNEL_DEFCONFIG} ${B}/.config
+
+	# append sdk version in kernel version if SDK_VERSION is defined
+	if [ -n "${SDK_VERSION}" ]; then
+		echo "CONFIG_LOCALVERSION=\"-${SDK_VERSION}\"" >> ${S}/.config
+	fi
 }
-- 
1.7.9.5





More information about the meta-freescale mailing list