From e28f3d09362a291a05f4277dc699dbca2827bad4 Mon Sep 17 00:00:00 2001 From: Yifan Hong Date: Tue, 14 Mar 2023 14:32:15 -0700 Subject: [PATCH] ANDROID: Disable AF_RXRPC for allmodconfig. AF_RXRPC imposes a 49 char limit on UTS_RELEASE, but building with BUILD_NUMBER=P12345678 bazel build //common:kernel_x86_64_allmodconfig --config=stamp requires more than 49 chars in UTS_RELEASE. Hence, this module is disabled for allmodconfig. Bug: 273576197 Test: ABTD Change-Id: Ife604db109f870eda2fdbc0668d6bd1f4e4e906e Signed-off-by: Yifan Hong --- build.config.allmodconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.config.allmodconfig b/build.config.allmodconfig index 0e85b3f70385..8cdca7fb1c95 100644 --- a/build.config.allmodconfig +++ b/build.config.allmodconfig @@ -8,6 +8,8 @@ function update_config() { -d INFINIBAND_QIB \ -d SAMPLES \ -d BPFILTER \ + -d AF_RXRPC \ + -d AFS_FS \ (cd ${OUT_DIR} && \ make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} olddefconfig)