summaryrefslogtreecommitdiff
path: root/classes/toradex-kernel-localversion.bbclass
blob: 766bd0a0ad5bde9a794a7f5f9478abbaa5b0d74d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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

TDX_VERSION ??= "0"
SCMVERSION ??= "y"
LOCALVERSION ?= "-${TDX_VERSION}"

kernel_do_configure_append() {
	sed -i -e /CONFIG_LOCALVERSION/d ${B}/.config
	echo "CONFIG_LOCALVERSION=\"${LOCALVERSION}\"" >> ${B}/.config

	sed -i -e /CONFIG_LOCALVERSION_AUTO/d ${B}/.config
	if [ "${SCMVERSION}" = "y" ]; then
		# Add GIT revision to the local version
		if [ -n "${SRCREV_machine}" -a "${SRCREV_machine}" != "INVALID" ]; then
			head=`git --git-dir=${S}/.git rev-parse --verify --short ${SRCREV_machine} 2> /dev/null`
		elif [ -n "${SRCREV}" -a "${SRCREV}" = "AUTOINC" ]; then
			branch=`git --git-dir=${S}/.git  symbolic-ref --short -q HEAD`
			head=`git --git-dir=${S}/.git rev-parse --verify --short origin/${branch} 2> /dev/null`
		elif [ -n "${SRCREV}" -a "${SRCREV}" != "INVALID" ]; then
			head=`git --git-dir=${S}/.git rev-parse --verify --short ${SRCREV} 2> /dev/null`
		else
			head=`git --git-dir=${S}/.git rev-parse --verify --short HEAD 2> /dev/null`
		fi
		printf "+git.%s" $head > ${S}/.scmversion
		echo "CONFIG_LOCALVERSION_AUTO=y" >> ${B}/.config
	else
		echo "# CONFIG_LOCALVERSION_AUTO is not set" >> ${B}/.config
	fi
}