Go to file
Christian Oder 5382a0666d build_image: Allow disabling custom inode count calculation
This allows us to skip custom inode count calculation by setting
BOARD_*IMAGE_EXTFS_INODE_COUNT to -1, this will end up letting
mke2fs calculate appropriate inode count on its own.

While build_image only allocates exact number of needed inodes
plus 4% spare with .2% margin, mke2fs will allocate as many
inodes as it thinks is appropriate given the filesystem size.

Change-Id: If03d5edae8378be3b305346176067b01163f6f3d
Signed-off-by: Jprimero15 <jprimero155@gmail.com>
2023-03-13 02:25:38 +00:00
common
core Merge tag 'LA.QSSI.13.0.r1-09200-qssi.0' of https://git.codelinaro.org/clo/la/platform/build_repo into bringup 2023-03-04 09:50:19 -03:00
orchestrator
packaging
target Merge t-mpr-2023-01 2023-01-04 17:03:22 -08:00
tests
tools build_image: Allow disabling custom inode count calculation 2023-03-13 02:25:38 +00:00
.gitignore
Changes.md
CleanSpec.mk
Deprecation.md
METADATA
OWNERS
PREUPLOAD.cfg
README.md
Usage.txt
banchanHelp.sh
buildspec.mk.default
envsetup.sh envsetup.sh: source vendorsetup.sh files again after roomservice sync 2023-02-05 07:44:58 +00:00
finalize_branch_for_release.sh
help.sh
navbar.md
rbesetup.sh
tapasHelp.sh

README.md

Android Make Build System

This is the Makefile-based portion of the Android Build System.

For documentation on how to run a build, see Usage.txt

For a list of behavioral changes useful for Android.mk writers see Changes.md

For an outdated reference on Android.mk files, see build-system.html. Our Android.mk files look similar, but are entirely different from the Android.mk files used by the NDK build system. When searching for documentation elsewhere, ensure that it is for the platform build system -- most are not.

This Makefile-based system is in the process of being replaced with Soong, a new build system written in Go. During the transition, all of these makefiles are read by Kati, and generate a ninja file instead of being executed directly. That's combined with a ninja file read by Soong so that the build graph of the two systems can be combined and run as one.