32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
"""
|
|
* SPDX-FileCopyrightText: 2023-2025 PeppermintOS Team
|
|
* (peppermintosteam@proton.me)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Lets get all the architecture functions for the modules
|
|
* The modules Sets the infrastructure for bubbles to begin the ISO
|
|
* build, These copy needed config files to the binary and chroot
|
|
* locations, based on the build base and architecture
|
|
"""
|
|
|
|
|
|
from .infra_general import (
|
|
copy_multimedia_files, copy_binary_folders, copy_fusato_configs,
|
|
copy_server_config_files, copy_architecture_files, get_id_build_type,
|
|
add_web_profile, set_symlinks, icons_themes, shared_files,
|
|
shared_server_files, boostrap_shared, shared_folders, loaded_folders,
|
|
setup_hooks,setup_hooks_minis
|
|
)
|
|
|
|
|
|
from .desktop_configs import (
|
|
xfce_configs, xfce_loaded_configs, gnome_flashback_configs,
|
|
open_box_configs, kde_configs, server_configs
|
|
)
|
|
|
|
from .installer_infra import (
|
|
copy_chroot_calamares_installer_files,
|
|
copy_calamares_files_utility, ensure_calamares_directories,
|
|
copy_debian_installer_files, mini_shared_installer_files
|
|
)
|