mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-17 05:15:09 +03:00
This is needed for sphinx autoprogram since that expects an argparse.ArgumentParser, and arguments() returns some argparse "Namespace" obj. Useful for sphinx/autoprogram and maybe other things later that want to get at pmb's full args.
11 lines
502 B
Python
11 lines
502 B
Python
# Copyright 2023 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
from pmb.parse.arguments import arguments, arguments_install, arguments_flasher, get_parser
|
|
from pmb.parse._apkbuild import apkbuild
|
|
from pmb.parse._apkbuild import function_body
|
|
from pmb.parse.binfmt_info import binfmt_info
|
|
from pmb.parse.deviceinfo import deviceinfo
|
|
from pmb.parse.kconfig import check
|
|
from pmb.parse.bootimg import bootimg
|
|
from pmb.parse.cpuinfo import arm_big_little_first_group_ncpus
|
|
import pmb.parse.arch
|