forked from Mirror/pmbootstrap
Do not attempt to install with a filesystem that is not supported by the initramfs code in the checked out pmaports branch. Previously we would have increased the pmaports.cfg version and require that new version by pmbootstrap, however this will break compatibility with release branches where we won't roll out this feature (v20.05). Therefore don't change the version, but add a new "supported_root_filesystems" key to pmaports.cfg, which defaults to "ext4". Related: https://postmarketos.org/pmaports.cfg
8 lines
351 B
Python
8 lines
351 B
Python
# Copyright 2021 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
from pmb.install._install import install
|
|
from pmb.install._install import get_kernel_package
|
|
from pmb.install.partition import partition
|
|
from pmb.install.format import format
|
|
from pmb.install.format import get_root_filesystem
|
|
from pmb.install.partition import partitions_mount
|