blob: a88c4501b8984bc4141c130846738482bbf41c5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
#
# On the various kernel version variables:
#
# KERNEL_FILE_VER: version numbering used for tarball and contained
# top level directory
# KERNEL_RELEASE: OpenADK internal versioning
# KERNEL_VERSION: final kernel version how we want to identify a
# specific kernel
ifeq ($(ADK_TARGET_WALDUX_KERNEL_VERSION_GIT),y)
KERNEL_FILE_VER:= $(ADK_TARGET_WALDUX_KERNEL_GIT)
KERNEL_RELEASE:= 1
KERNEL_VERSION:= $(ADK_TARGET_WALDUX_KERNEL_GIT_VER)-$(KERNEL_RELEASE)
endif
|