From 50c14591ca9d6ae2c1951a914591fcfec88cf45c Mon Sep 17 00:00:00 2001 From: Scott Little Date: Fri, 24 Aug 2018 12:24:34 -0400 Subject: [PATCH] Kernel can no longer build in 10GB tmpfs Problem: The kernel is sporadically reporting build failures due to 'no space on device' when compiled in a 10 GB tmpfs. Solution: Two parts: 1) Increase required size to 11 GB in the build_srpm.data. 2) Modify build system to allow alocation of a 11 GB tmpfs. Change-Id: I48aeff586f71ee5000a99354e33d199a38afec9e Story: 2002835 Task: 24519 Signed-off-by: Scott Little --- kernel/kernel-rt/centos/build_srpm.data | 2 +- kernel/kernel-std/centos/build_srpm.data | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/kernel-rt/centos/build_srpm.data b/kernel/kernel-rt/centos/build_srpm.data index 699bea4d8..ae352ddf0 100644 --- a/kernel/kernel-rt/centos/build_srpm.data +++ b/kernel/kernel-rt/centos/build_srpm.data @@ -1,4 +1,4 @@ COPY_LIST="files/*" TIS_PATCH_VER=43 -BUILD_IS_BIG=10 +BUILD_IS_BIG=11 BUILD_IS_SLOW=12 diff --git a/kernel/kernel-std/centos/build_srpm.data b/kernel/kernel-std/centos/build_srpm.data index 0de47ad03..2789e6f6e 100644 --- a/kernel/kernel-std/centos/build_srpm.data +++ b/kernel/kernel-std/centos/build_srpm.data @@ -1,4 +1,4 @@ COPY_LIST="files/*" TIS_PATCH_VER=36 -BUILD_IS_BIG=10 +BUILD_IS_BIG=11 BUILD_IS_SLOW=12