mirror of
https://github.com/Freescale/meta-freescale-3rdparty.git
synced 2025-07-19 20:19:01 +02:00

LOCALVERSION is used in FSL Community BSP Release Notes and should highlight which are the _release version_ for that particular provider. In addition LOCALVERSION makes it easy to track where the binary running on a target is from. Both reasons make LOCALVERSION a very important information. The overall rule is that LOCALVERSION would point to SRCBRANCH, unless in a case of explicit exception. Signed-off-by: Daiane Angolini <daiane.angolini@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
25 lines
740 B
PHP
25 lines
740 B
PHP
# Adapted from linux-imx.inc, copyright (C) 2012, 2013 O.S. Systems Software LTDA
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "Linux kernel for Wandboard"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
|
|
|
|
require recipes-kernel/linux/linux-imx.inc
|
|
|
|
# Put a local version until we have a true SRCREV to point to
|
|
SCMVERSION ?= "y"
|
|
|
|
SRCBRANCH ??= "master"
|
|
LOCALVERSION ?= "-${SRCBRANCH}"
|
|
|
|
# Allow override of WANDBOARD_GITHUB_MIRROR to make use of
|
|
# local repository easier
|
|
WANDBOARD_GITHUB_MIRROR ?= "git://github.com/wandboard-org/linux.git"
|
|
|
|
# SRC_URI for wandboard kernel
|
|
SRC_URI = "${WANDBOARD_GITHUB_MIRROR};branch=${SRCBRANCH} \
|
|
file://defconfig \
|
|
"
|
|
|