From 0533b5b901b8f7f8377a9f2b9c7a5523341ac81b Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Sun, 6 Feb 2022 19:41:31 +0100 Subject: [PATCH] image.py: rename boot.img to aboot.img --- image.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/image.py b/image.py index 1a3e3c1..feb19d6 100644 --- a/image.py +++ b/image.py @@ -172,15 +172,15 @@ def mount_rootfs_loop_device(loop_device, chroot: Chroot): def dump_bootimg(image_path: str) -> str: - path = '/tmp/boot.img' + path = '/tmp/aboot.img' result = subprocess.run([ 'debugfs', image_path, '-R', - f'dump /boot.img {path}', + f'dump /aboot.img {path}', ]) if result.returncode != 0: - logging.fatal('Failed to dump boot.img') + logging.fatal('Failed to dump aboot.img') exit(1) return path