Revert "Move more non-AB code to separate files"

This reverts commit 513b86e5c2.

Change-Id: I6aae60642772a052404eb1773966b2e637864bbc
This commit is contained in:
Abhishek Nigam
2023-11-08 02:21:39 +00:00
parent b148ac22f8
commit 1dfca46094
8 changed files with 1237 additions and 1260 deletions

View File

@@ -21,7 +21,6 @@ import os
import sys
import common
from non_ab_ota import MakeRecoveryPatch
if sys.hexversion < 0x02070000:
print("Python 2.7 or newer is required.", file=sys.stderr)
@@ -61,7 +60,7 @@ def main(argv):
*fn.split("/")), "wb") as f:
f.write(data)
MakeRecoveryPatch(input_dir, output_sink, recovery_img, boot_img)
common.MakeRecoveryPatch(input_dir, output_sink, recovery_img, boot_img)
if __name__ == '__main__':