PA: Simplify the naming scheme

This commit removes the build tag, to instead only use dates. The
arbitrary ALPHA/BETA/STABLE tags can only cause confusion for the
user, serving no practical purpose, as our builds are to be released
as stable enough for being used as daily drivers.

Change-Id: I88f3581a2bb7feff88f0a132929909029c2a4833
This commit is contained in:
Alexis Rico 2015-05-05 20:37:05 +00:00 committed by Valter Strods
parent 74875e2b5f
commit 30983a9937
2 changed files with 1 additions and 6 deletions

View File

@ -1,8 +1,4 @@
ifneq ($ROM_VERSION_TAG,"")
VERSION := $(ROM_VERSION_MAJOR).$(ROM_VERSION_MINOR)$(ROM_VERSION_MAINTENANCE)-$(ROM_VERSION_TAG)
else
VERSION := $(ROM_VERSION_MAJOR).$(ROM_VERSION_MINOR)$(ROM_VERSION_MAINTENANCE)
endif
VERSION := $(ROM_VERSION_MAJOR).$(ROM_VERSION_MINOR)$(ROM_VERSION_MAINTENANCE)
export ROM_VERSION := $(VERSION)-$(shell date -u +%Y%m%d)

View File

@ -5,4 +5,3 @@ export VENDOR := pa
ROM_VERSION_MAJOR := 5
ROM_VERSION_MINOR := 1
ROM_VERSION_MAINTENANCE :=
ROM_VERSION_TAG := DEV