Merge "Get build.prop for init_boot.img from the ramdisk props" am: c3ee009f38
Original change: https://android-review.googlesource.com/c/platform/build/+/1983226 Change-Id: I7bdd2c301d1d5830acf5ff4e345538c2211a7cee
This commit is contained in:
commit
192130b75e
1 changed files with 3 additions and 2 deletions
|
@ -498,8 +498,9 @@ class BuildInfo(object):
|
|||
def GetPartitionBuildProp(self, prop, partition):
|
||||
"""Returns the inquired build property for the provided partition."""
|
||||
|
||||
# Boot image uses ro.[product.]bootimage instead of boot.
|
||||
prop_partition = "bootimage" if partition == "boot" else partition
|
||||
# Boot image and init_boot image uses ro.[product.]bootimage instead of boot.
|
||||
# This comes from the generic ramdisk
|
||||
prop_partition = "bootimage" if partition == "boot" or partition == "init_boot" else partition
|
||||
|
||||
# If provided a partition for this property, only look within that
|
||||
# partition's build.prop.
|
||||
|
|
Loading…
Reference in a new issue