From 96f1d4399eeaf3a17352d725e3be47f79c89488f Mon Sep 17 00:00:00 2001 From: Robin Peng Date: Fri, 17 Sep 2021 17:46:33 +0800 Subject: [PATCH] Amend build script to fit for current conditions 1. Move to build AOSP Kernel source for now 2. Disable strict symbol list checking since ABI change aosp/1826155 blocking by __close_fd and keep tracking on b/200010226 Bug: 195932551 Bug: 196974386 Signed-off-by: Lucas Wei Signed-off-by: Robin Peng Change-Id: Iebf0474fc1d2ba48da1f9b2f74497261f332ca1f --- build_slider.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build_slider.sh b/build_slider.sh index 06f897543d15..b5cda9076c81 100755 --- a/build_slider.sh +++ b/build_slider.sh @@ -8,6 +8,11 @@ function exit_if_error { fi } +# TODO (b/196974386): remove strict symbol list workaround settings after __close_fd issue been resolved. +TRIM_NONLISTED_KMI=0 +ENABLE_STRICT_KMI=0 +BUILD_KERNEL=1 + EXPERIMENTAL_BUILD=${EXPERIMENTAL_BUILD:-0} TRIM_NONLISTED_KMI=${TRIM_NONLISTED_KMI:-1} LTO=${LTO:-thin}