26 lines
1.2 KiB
Python
26 lines
1.2 KiB
Python
"""
|
|
* SPDX-FileCopyrightText: 2023-2025 PeppermintOS Team
|
|
* (peppermintosteam@proton.me)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* License: SPDX-License-Identifier: GPL-3.0-or-later
|
|
* Lets expose the needed functiosn for the inflate_modules
|
|
* The inflate modules, is what "inflates" or build trhe chroot,
|
|
* that will Tbuild the base of the fusato build folders, that they can
|
|
* be used to build the ISO
|
|
"""
|
|
from .inflate_bubble import (
|
|
set_fusato_structure, set_fusato_installer_structure,
|
|
set_fusato_server_installer_structure, set_fusato_server_structure,
|
|
set_fusato_mini_installer_structure, set_fusato_mini_structure,
|
|
set_general_shared,
|
|
set_binary_shared, set_lightdm, set_specific_32_packages, set_xfce,
|
|
set_gfb, set_opb, set_kde, set_loaded, set_server, set_mini,
|
|
set_chroot_grub_64, set_chroot_grub_arm, set_chroot_grub_32,
|
|
set_binary_64, set_binary_arm, set_binary_32, set_firmware,
|
|
set_firmware_arm, set_grub_shared, make_bld_xfce,
|
|
make_bld_gnomeflashback, make_bld_openbox, make_bld_kde,
|
|
make_bld_loaded, make_bld_server, make_bld_mini, recreate_directory,
|
|
create_bootstrap_folders,create_package_folders)
|
|
#from .copy_files_specified import (copy_specific_files, set_symlinks)
|