forked from Mirror/pmbootstrap
Don't include the /mnt/pmbootstrap directories in the images created with "pmbootstrap install". Reviewed-by: Pablo Correa Gómez <ablocorrea@hotmail.com> Reviewed-by: Luca Weiss <luca@z3ntu.xyz> Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20230806184729.4891-3-ollieparanoid@postmarketos.org%3E
9 lines
392 B
Python
9 lines
392 B
Python
# Copyright 2023 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
from pmb.chroot.init import init, init_keys
|
|
from pmb.chroot.mount import mount, mount_native_into_foreign, remove_mnt_pmbootstrap
|
|
from pmb.chroot.root import root
|
|
from pmb.chroot.user import user
|
|
from pmb.chroot.user import exists as user_exists
|
|
from pmb.chroot.shutdown import shutdown
|
|
from pmb.chroot.zap import zap
|