-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.config.msm.gki
executable file
·78 lines (69 loc) · 2.78 KB
/
build.config.msm.gki
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
################################################################################
# Common MSM configuration for building GKI-based kernels
DEFCONFIG="gki_defconfig"
# Configuration options to build images for MSM targets
# Must be included AFTER build.config.msm.<target>
# boot image macros
BUILD_BOOT_IMG=1
BUILD_INITRAMFS=1
KMI_SYMBOL_LIST_MODULE_GROUPING=0
KMI_SYMBOL_LIST_ADD_ONLY=1
KMI_ENFORCED=1
MAKE_GOALS="modules dtbs"
GKI_BUILD_CONFIG=common/build.config.gki.aarch64
GKI_SKIP_CP_KERNEL_HDR=1
# "Hacks" to enable symbol trimming on the common kernel from here (msm-kernel). To be removed once
# we get a common kernel with symbol trimming.
GKI_KMI_SYMBOL_LIST=../msm-kernel/android/abi_gki_aarch64_qcom
KMI_SYMBOL_LIST=android/abi_gki_aarch64_qcom
if [ "${VARIANT}" = gki ]; then
GKI_TRIM_NONLISTED_KMI=${TRIM_NONLISTED_KMI:-1}
fi
GKI_KMI_SYMBOL_LIST_STRICT_MODE=1
GKI_KMI_ENFORCED=1
KMI_ENFORCED=1
function sanity_check_abi() {
if [ -z "${GKI_BUILD_CONFIG}" ]; then
# When running build_abi.sh, mixed build is explicitly disabled
# In that case, turn on some options for trimming and strict mode
# which would normally be disabled because they conflict with
# mixed build
PREPARE_SYSTEM_DLKM=0
if [ "${VARIANT}" = gki ]; then
TRIM_NONLISTED_KMI=1
KMI_SYMBOL_LIST_STRICT_MODE=1
fi
return
fi
}
append_cmd POST_DEFCONFIG_CMDS 'sanity_check_abi'
function build_defconfig_fragments() {
if [[ "${VARIANT}" =~ ^(gki|consolidate)$ ]]; then
apply_defconfig_fragment ${KERNEL_DIR}/arch/${ARCH}/configs/vendor/${MSM_ARCH}_GKI.config vendor/${MSM_ARCH}-gki_defconfig
if [ "${OPLUS_FEATURE_BSP_DRV_INJECT_TEST}" = "1" ]; then
apply_defconfig_fragment ${KERNEL_DIR}/kernel/configs/bsp_inject_test.config
echo "Add: bsp_inject_test.config added"
elif [ "${OPLUS_FEATURE_BSP_DRV_INJECT_TEST^^}" = "TRUE" ]; then
apply_defconfig_fragment ${KERNEL_DIR}/kernel/configs/bsp_inject_test.config
echo "Add: bsp_inject_test.config added"
else
echo "Add: bsp_inject_test.config not added, OPLUS_FEATURE_BSP_DRV_INJECT_TEST:${OPLUS_FEATURE_BSP_DRV_INJECT_TEST}"
fi
if [ "${VARIANT}" = gki ]; then
return
fi
GKI_BUILD_CONFIG=common/build.config.gki-debug.aarch64
GKI_GKI_BUILD_CONFIG_FRAGMENT=msm-kernel/build.config.gki_consolidate.aarch64
# ABI comparison isn't applicable on consolidate variant
unset ABI_DEFINITION
apply_defconfig_fragment ${KERNEL_DIR}/arch/${ARCH}/configs/consolidate.fragment consolidate_defconfig
apply_defconfig_fragment ${KERNEL_DIR}/arch/${ARCH}/configs/vendor/${MSM_ARCH}_consolidate.config vendor/${MSM_ARCH}-consolidate_defconfig
elif [ "${VARIANT}" = gki-ack ]; then
# In gki-only, then using ACK's GKI config directly
. ${KERNEL_DIR}/build.config.gki
else
echo "Variant '${VARIANT}' unsupported by gki"
exit 1
fi
}
build_defconfig_fragments