Skip to content
Snippets Groups Projects
Unverified Commit c23a9ea9 authored by Caleb Connolly's avatar Caleb Connolly :recycle:
Browse files

install: fix root partition path in print (MR 2377)


When we output the root partition path, it says rootfs.img but it should
be root.img fix it.

Signed-off-by: default avatarCaleb Connolly <caleb@postmarketos.org>
parent 6002a733
No related branches found
No related tags found
1 merge request!2377chroot: apk: pass in both repos, properly recurse depends on subpackages
Pipeline #188396 passed
......@@ -972,7 +972,7 @@ def print_flash_info(device: str, deviceinfo: Deviceinfo, split: bool, have_disk
logging.info("* pmbootstrap flasher flash_rootfs")
logging.info(" Flashes the generated rootfs image to your device:")
if split:
logging.info(f" {Chroot.native() / 'home/pmos/rootfs' / device}-rootfs.img")
logging.info(f" {Chroot.native() / 'home/pmos/rootfs' / device}-root.img")
else:
logging.info(f" {Chroot.native() / 'home/pmos/rootfs' / device}.img")
logging.info(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment