当前位置: 首页>>代码示例>>Python>>正文


Python Defaults.get_boot_image_strip_file方法代码示例

本文整理汇总了Python中kiwi.defaults.Defaults.get_boot_image_strip_file方法的典型用法代码示例。如果您正苦于以下问题:Python Defaults.get_boot_image_strip_file方法的具体用法?Python Defaults.get_boot_image_strip_file怎么用?Python Defaults.get_boot_image_strip_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在kiwi.defaults.Defaults的用法示例。


在下文中一共展示了Defaults.get_boot_image_strip_file方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: import_system_description_elements

# 需要导入模块: from kiwi.defaults import Defaults [as 别名]
# 或者: from kiwi.defaults.Defaults import get_boot_image_strip_file [as 别名]
 def import_system_description_elements(self):
     """
     Copy information from the system image relevant to create the
     boot image to the boot image state XML description
     """
     self.xml_state.copy_displayname(
         self.boot_xml_state
     )
     self.xml_state.copy_name(
         self.boot_xml_state
     )
     self.xml_state.copy_repository_sections(
         target_state=self.boot_xml_state,
         wipe=True
     )
     self.xml_state.copy_drivers_sections(
         self.boot_xml_state
     )
     strip_description = XMLDescription(
         Defaults.get_boot_image_strip_file()
     )
     strip_xml_state = XMLState(strip_description.load())
     strip_xml_state.copy_strip_sections(
         self.boot_xml_state
     )
     self.xml_state.copy_strip_sections(
         self.boot_xml_state
     )
     preferences_subsection_names = [
         'bootloader_theme',
         'bootsplash_theme',
         'locale',
         'packagemanager',
         'rpm_check_signatures',
         'rpm_excludedocs',
         'showlicense'
     ]
     self.xml_state.copy_preferences_subsections(
         preferences_subsection_names, self.boot_xml_state
     )
     self.xml_state.copy_bootincluded_packages(
         self.boot_xml_state
     )
     self.xml_state.copy_bootincluded_archives(
         self.boot_xml_state
     )
     self.xml_state.copy_bootdelete_packages(
         self.boot_xml_state
     )
     type_attributes = [
         'bootkernel',
         'bootloader',
         'bootloader_console',
         'bootprofile',
         'boottimeout',
         'btrfs_root_is_snapshot',
         'gpt_hybrid_mbr',
         'devicepersistency',
         'filesystem',
         'firmware',
         'fsmountoptions',
         'hybridpersistent',
         'hybridpersistent_filesystem',
         'initrd_system',
         'installboot',
         'installprovidefailsafe',
         'kernelcmdline',
         'ramonly',
         'target_removable',
         'vga',
         'wwid_wait_timeout'
     ]
     self.xml_state.copy_build_type_attributes(
         type_attributes, self.boot_xml_state
     )
     self.xml_state.copy_systemdisk_section(
         self.boot_xml_state
     )
     self.xml_state.copy_machine_section(
         self.boot_xml_state
     )
     self.xml_state.copy_oemconfig_section(
         self.boot_xml_state
     )
开发者ID:Conan-Kudo,项目名称:kiwi,代码行数:86,代码来源:base.py


注:本文中的kiwi.defaults.Defaults.get_boot_image_strip_file方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。