Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 60fa99d4 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Yifan Hong
Browse files

build_image: Increase spare inodes to 12.

Test: builds device with DAP
Change-Id: I816a7da54bbe23d4eb1140ac0d101c0fee175f0a
parent 85437e24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ def GetInodeUsage(path):
  # increase by > 4% as number of files and directories is not whole picture.
  inodes = output.count('\n')
  spare_inodes = inodes * 4 // 100
  min_spare_inodes = 8
  min_spare_inodes = 12
  if spare_inodes < min_spare_inodes:
    spare_inodes = min_spare_inodes
  return inodes + spare_inodes