new commit

This commit is contained in:
Manuel 2025-04-28 02:28:03 +00:00
parent 757e0e2df6
commit bd1aa012cd

View File

@ -206,7 +206,11 @@ def iso_builder_main(
repositories_data=repositories repositories_data=repositories
) )
kernel_config = kernels_config.get('kernels', {}).get(kernel_type) kernels_config = load_yaml_config(paths['KERNELS_YAML_FILE'], 'kernels.yaml')
logger.info(f"=> DEBUG: Kernel YAML file path loaded: {paths['KERNELS_YAML_FILE']}") # Linha de debug temporária
import json # Importa a biblioteca json para formatar o dicionário
logger.info(f"=> DEBUG: Loaded kernels_config content: {json.dumps(kernels_config, indent=2)}") # Linha de debug temporária
install_kernel( install_kernel(
arch=architecture, arch=architecture,
kernel_type=kernel_type, kernel_type=kernel_type,