如何定制AOSP内部版本号?

时间:2015-01-27 21:32:43

标签: android build-process versioning android-source build-numbers

我正在建设AOSP,v4.4.2。我想指定“Build number”字符串的一部分(根据Settings - > About tablet)。

About tablet page

我通过使用CONFIG_LOCALVERSION defconfig值知道内核的这个can be done。但我想改变“内部版本号”,而不是“内核版本”(我能够成功完成)。

目前,我的AOSP构建的相关部分是这样的:

# Source build variables
. build/envsetup.sh

# Specify the build target:
# * user -> limited access; suited for production (no ADB)
# * userdebug -> like "user" but with root access and debuggability; preferred for debugging
# * eng -> development configuration with additional debugging tools (with ADB)
lunch mydevice-eng

# Build it!
time m 2>&1 | tee build.out

我应该更改什么来指定内部版本号?

2 个答案:

答案 0 :(得分:9)

Makefile定义了如何为构建创建(连接)构建号。


用户构建

对于user builds(构建目标,与午餐一起指定),内部版本号将只是" $(BUILD_ID) $(BUILD_KEYS)",除非设置了DISPLAY_BUILD_NUMBER参数为了“真实”。

eng / userdebug builds

对于其他版本(即eng / userdebug),还包含更多信息:

build_desc := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER) $(BUILD_VERSION_TAGS)

Makefile源代码可在此处获取:https://android.googlesource.com/platform/build/+/android-4.4.2_r1/core/Makefile#106


在make文件中设置构建参数

作为mentioned by @eldarerathisBUILD_ID中的build/core/build_id.mk值是构建字符串的一部分,但是这可能会在另一个make(*.mk)文件中被覆盖。

运行lunch时,将打印BUILD_ID的值以进行验证。如果此值与build_id.mk文件中的值不同,则搜索其设置位置,然后重新配置它。例如,如果作为lunch的一部分,则输出包含“4.4.2_1.0.0-ga”:

============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=4.4.2
...
HOST_BUILD_TYPE=release
BUILD_ID=4.4.2_1.0.0-ga
OUT_DIR=out
============================================

...然后搜索“4.4.2_1.0.0-ga”找到它:

me@mybox:~/AOSP$find . -name "*.mk" | xargs grep  "4.4.2_1.0.0-ga"

然后,更新包含.mk的{​​{1}}文件。相应地设置其他构建参数。

BUILD_IDBUILD_NUMBERPLATFORM_VERSION位于:build/core/version_defaults.mk。只有在未设置构建的情况下启动构建时,才会设置这些值。

在构建时将构建参数设置为参数

或者(在我看来最好),这些参数可以设置为构建命令行的一部分,如下所示:

BUILD_ID

答案 1 :(得分:7)

build/core/build_id.mk中的BUILD_ID值是定义的位置:

# BUILD_ID is usually used to specify the branch name
# (like "MAIN") or a branch name and a release candidate
# (like "CRB01").  It must be a single word, and is
# capitalized by convention.

export BUILD_ID=KOT49H

该值会写入您的构建属性,而Settings会从那里读取它,因此您只需将该export更改为您想要的任何值。评论仅供参考,您无需遵循其中列出的惯例。在主分支中,它们当前定义为AOSP

另一个可用的标志是DISPLAY_BUILD_NUMBERexample)。它是可选的,在您的情况下可能不需要,但这里有一个如何工作的描述,以防它可能有用:

# DISPLAY_BUILD_NUMBER should only be set for development branches,
# If set, the BUILD_NUMBER (cl) is appended to the BUILD_ID for
# a more descriptive BUILD_ID_DISPLAY, otherwise BUILD_ID_DISPLAY
# is the same as BUILD_ID
DISPLAY_BUILD_NUMBER := true