mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 14:03:55 +01:00
Merge pull request #1400 from Kijewski/riot-version
make: rename VERSION into RIOT_VERSION
This commit is contained in:
commit
205fe6b419
@ -65,16 +65,17 @@ include $(RIOTBASE)/Makefile.cflags
|
||||
|
||||
# make the RIOT version available to the program
|
||||
GIT_STRING := $(shell git describe --always --abbrev=4 --dirty=-`hostname`)
|
||||
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
||||
ifeq ($(strip $(GIT_BRANCH)),master)
|
||||
GIT_VERSION = $(GIT_STRING)
|
||||
ifneq (,$(GIT_STRING))
|
||||
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
||||
ifeq ($(strip $(GIT_BRANCH)),master)
|
||||
RIOT_VERSION := $(GIT_STRING)
|
||||
else
|
||||
RIOT_VERSION := $(GIT_STRING)-$(GIT_BRANCH)
|
||||
endif
|
||||
else
|
||||
GIT_VERSION = $(shell echo $(GIT_STRING) $(GIT_BRANCH) | sed 's/ /-/')
|
||||
RIOT_VERSION := UNKNOWN
|
||||
endif
|
||||
ifeq ($(strip $(GIT_VERSION)),)
|
||||
GIT_VERSION := "UNKNOWN"
|
||||
endif
|
||||
export CFLAGS += -DVERSION=\"$(GIT_VERSION)\"
|
||||
export CFLAGS += -DRIOT_VERSION='"$(RIOT_VERSION)"'
|
||||
|
||||
# the binaries to link
|
||||
BASELIBS += $(BINDIR)$(BOARD)_base.a
|
||||
|
||||
@ -85,7 +85,7 @@ static char idle_stack[KERNEL_CONF_STACKSIZE_IDLE];
|
||||
void kernel_init(void)
|
||||
{
|
||||
dINT();
|
||||
printf("kernel_init(): This is RIOT! (Version: %s)\n", VERSION);
|
||||
printf("kernel_init(): This is RIOT! (Version: %s)\n", RIOT_VERSION);
|
||||
|
||||
hwtimer_init();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user