From 200055d8befcaa4b538ea588cef4fca9e8e06204 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Mon, 2 Dec 2019 13:55:51 +0000 Subject: toradex-kernel-localversion: add Toradex specific local version Add Toradex specific local version implementation for the Linux kernel. This implementation is a simplified version from what is in meta-freescale. It can be used with linux-yocto based Linux recipes as well as regular OE kernel recipes and linux-fslc based recipes. This allows us to reuse the class in all Linux recipes used by Toradex. Signed-off-by: Stefan Agner --- classes/toradex-kernel-localversion.bbclass | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 classes/toradex-kernel-localversion.bbclass diff --git a/classes/toradex-kernel-localversion.bbclass b/classes/toradex-kernel-localversion.bbclass new file mode 100644 index 0000000..00bfd75 --- /dev/null +++ b/classes/toradex-kernel-localversion.bbclass @@ -0,0 +1,25 @@ +# Toradex Kernel LOCALVERSION extension +# +# This allow to easy reuse of code between different kernel recipes +# +# The following options are supported: +# +# SCMVERSION Puts the Git hash in kernel local version +# LOCALVERSION Value used in LOCALVERSION +# +# Copyright 2014, 2015 (C) O.S. Systems Software LTDA. +# Copyright 2019 (C) Toradex AG + +SCMVERSION ??= "y" +LOCALVERSION ?= "-${TDX_VERSION}" + +do_configure_prepend() { + sed -i -e /CONFIG_LOCALVERSION/d ${B}/.config + echo "CONFIG_LOCALVERSION=\"${LOCALVERSION}\"" >> ${B}/.config + + if [ "${SCMVERSION}" = "y" ]; then + # Add GIT revision to the local version + head=`git --git-dir=${S}/.git rev-parse --verify --short HEAD 2> /dev/null` + printf "+git.%s" $head > ${S}/.scmversion + fi +} -- cgit v1.2.3