update inflate_bubble.py

This commit is contained in:
manuel 2024-03-20 12:55:05 -01:00
parent ffc5b26486
commit 31d922bf9a
1 changed files with 9 additions and 1 deletions

View File

@ -87,6 +87,11 @@ def make_bld_openbox(base,arch):
"""Write the openbox build file"""
make_build_file(base, arch, 'opb', 'OpenBox Build')
def make_bld_loaded(base,arch):
"""Write the loaded build file"""
make_build_file(base, arch, 'loaded', 'Loaded Build')
# Make the shared package lists files
def make_package_list(file_name, content, mode='a'):
"""Create the package list file with the specified content"""
@ -130,6 +135,9 @@ def set_opb():
""" Create the list for the openbox list"""
make_package_list('opb.list.chroot', conf.OPENBOX_LIST, mode='x')
def set_loaded():
""" Create the list for the loaded list"""
make_package_list('loaded.list.chroot', conf.LOADED_LIST, mode='x')
# CHROOT Specific
@ -166,7 +174,7 @@ def set_binary_32():
# Firmware Specific
def set_firmware():
""" Create the list for the firmware support for genral ISOs"""
""" Create the list for the firmware support for general ISOs"""
make_package_list('firmware.list.chroot', conf.FIRMWARE_LIST_32_64, mode='x')