├── .archive ├── .catalog.xml ├── .changelog ├── .doit ├── .filter ├── .git-hooks └── pre-commit ├── .gitignore ├── .links ├── .lutime ├── .newrelease ├── .newversion ├── .perlcriticrc ├── .perlmodules ├── .releasetags ├── .travis.yml ├── .version ├── LICENSE ├── Makefile ├── README.rst ├── doc ├── COPYING ├── docbook │ ├── DC-kiwi │ ├── Makefile │ ├── README │ ├── etc │ │ └── fop.xml │ ├── images │ │ ├── activation.png │ │ ├── callouts │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── description.png │ │ ├── intro.png │ │ ├── maintain.png │ │ ├── nbboot.png │ │ ├── source.png │ │ ├── src │ │ │ ├── fig │ │ │ │ ├── activation.fig │ │ │ │ ├── description.fig │ │ │ │ ├── intro.fig │ │ │ │ ├── maintain.fig │ │ │ │ ├── nbboot.fig │ │ │ │ ├── source.fig │ │ │ │ └── types.fig │ │ │ └── svg │ │ │ │ └── cache.svg │ │ └── types.png │ ├── xml │ │ ├── Revision.txt │ │ ├── entity-decl.ent │ │ ├── gfdl1.2.xml │ │ ├── kiwi-doc-advanced_config.xml │ │ ├── kiwi-doc-appendix.xml │ │ ├── kiwi-doc-appliance.xml │ │ ├── kiwi-doc-bootserver.xml │ │ ├── kiwi-doc-caches.xml │ │ ├── kiwi-doc-contributors.xml │ │ ├── kiwi-doc-description.xml │ │ ├── kiwi-doc-docker.xml │ │ ├── kiwi-doc-installation.xml │ │ ├── kiwi-doc-introduction.xml │ │ ├── kiwi-doc-iso.xml │ │ ├── kiwi-doc-license.xml │ │ ├── kiwi-doc-lukssupport.xml │ │ ├── kiwi-doc-lvmsupport.xml │ │ ├── kiwi-doc-maintenance.xml │ │ ├── kiwi-doc-migrate.xml │ │ ├── kiwi-doc-oem.xml │ │ ├── kiwi-doc-pxe.xml │ │ ├── kiwi-doc-raidsupport.xml │ │ ├── kiwi-doc-signkey.xml │ │ ├── kiwi-doc-vagrant.xml │ │ ├── kiwi-doc-vmx.xml │ │ ├── kiwi-doc-workflow.xml │ │ ├── kiwi-doc-xen.xml │ │ ├── kiwi-doc.xml │ │ ├── kiwi-man-config.sh.xml │ │ ├── kiwi-man-images.sh.xml │ │ ├── kiwi-man-kiwirc.xml │ │ └── kiwi-man.xml │ └── xslt │ │ ├── fo │ │ └── docbook.xsl │ │ ├── html │ │ ├── docbook.xsl │ │ ├── formal.xsl │ │ └── sections.xsl │ │ └── profiling │ │ ├── db4index-profile.xsl │ │ └── db4index.xsl ├── examples │ ├── README │ ├── extras │ │ ├── suse-13.1 │ │ │ ├── suse-aci-container │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ └── root │ │ │ │ │ └── etc │ │ │ │ │ └── resolv.conf │ │ │ ├── suse-vagrant-box.readme │ │ │ └── suse-vagrant-box │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ ├── motd │ │ │ │ ├── ssh │ │ │ │ │ └── sshd_config │ │ │ │ ├── sudoers │ │ │ │ ├── sysconfig │ │ │ │ │ └── network │ │ │ │ │ │ └── ifcfg-lan0 │ │ │ │ └── udev │ │ │ │ │ └── rules.d │ │ │ │ │ └── 70-persistent-net.rules │ │ │ │ └── home │ │ │ │ └── vagrant │ │ │ │ └── .ssh │ │ │ │ └── authorized_keys │ │ └── suse-SLES11 │ │ │ ├── suse-min-gnome │ │ │ ├── config.sh │ │ │ └── config.xml │ │ │ ├── suse-vagrant-box.readme │ │ │ └── suse-vagrant-box │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ └── root │ │ │ ├── etc │ │ │ ├── motd │ │ │ ├── ssh │ │ │ │ └── sshd_config │ │ │ ├── sudoers │ │ │ ├── sysconfig │ │ │ │ └── network │ │ │ │ │ └── ifcfg-lan0 │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 70-persistent-net.rules │ │ │ └── home │ │ │ └── vagrant │ │ │ └── .ssh │ │ │ └── authorized_keys │ ├── suse-13.1 │ │ ├── suse-aci-container.readme │ │ ├── suse-docker-container.readme │ │ ├── suse-docker-container │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ └── root │ │ │ │ └── etc │ │ │ │ ├── resolv.conf │ │ │ │ └── zypp │ │ │ │ └── repos.d │ │ │ │ ├── repo-non-oss.repo │ │ │ │ ├── repo-oss.repo │ │ │ │ ├── repo-update-non-oss.repo │ │ │ │ └── repo-update.repo │ │ ├── suse-ec2-guest.readme │ │ ├── suse-ec2-guest │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── sysconfig │ │ │ │ └── network │ │ │ │ └── ifcfg-eth0 │ │ ├── suse-live-iso.readme │ │ ├── suse-live-iso │ │ │ ├── config-yast-firstboot.xml │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ └── root │ │ │ │ └── etc │ │ │ │ ├── init.d │ │ │ │ └── boot.local │ │ │ │ └── sysconfig │ │ │ │ └── network │ │ │ │ └── ifcfg-eth0 │ │ ├── suse-live-usbstick.readme │ │ ├── suse-live-usbstick │ │ │ ├── config-yast-firstboot.xml │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ └── root │ │ │ │ └── etc │ │ │ │ ├── init.d │ │ │ │ └── boot.local │ │ │ │ └── sysconfig │ │ │ │ └── network │ │ │ │ └── ifcfg-eth0 │ │ ├── suse-vm-guest.readme │ │ └── suse-vm-guest │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ └── root │ │ │ └── etc │ │ │ └── sysconfig │ │ │ └── network │ │ │ └── ifcfg-eth0 │ └── suse-13.2 │ │ ├── suse-live-iso.readme │ │ └── suse-live-iso │ │ ├── config-yast-firstboot.xml │ │ ├── config.sh │ │ ├── config.xml │ │ └── root │ │ └── etc │ │ └── sysconfig │ │ └── network │ │ └── ifcfg-eth0 ├── html │ ├── images │ ├── index.html │ ├── kiwi.html │ └── susebooks.css ├── man │ ├── KIWI::config.sh.1 │ ├── KIWI::images.sh.1 │ ├── KIWI::kiwirc.1 │ └── kiwi.1 ├── pdf │ └── kiwi.pdf └── schema │ ├── Makefile │ ├── XMLSchema-instance_xsd.html │ ├── docHtml.css │ ├── img │ ├── Cycle12.png │ ├── HierarchyArrow12.jpg │ ├── Import12.gif │ ├── Include12.gif │ ├── Override12.gif │ ├── Redefine12.gif │ ├── btM.gif │ ├── btP.gif │ ├── cBL.gif │ ├── cBR.gif │ ├── cTL.gif │ ├── cTR.gif │ ├── hierarchy_arrow.gif │ ├── kiwi_xsd_Attribute_Group_k_arch_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_arch_fallback_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_arch_id_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_arch_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_archive_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_archive_bootinclude_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_archive_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_bootdelete_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_bootinclude_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_chroot_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_configuration_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_configuration_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_configuration_dest_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_configuration_source_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_description_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_description_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_description_type_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_dest_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_displayname_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_drivers_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_drivers_profiles_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_except_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_except_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_file_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_file_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_file_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_id_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_ignore_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_ignore_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_image_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_image_displayname_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_image_id.jpeg │ ├── kiwi_xsd_Attribute_Group_k_image_kiwirevision_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_image_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_image_noNamespaceSchemaLocation_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_image_schemaLocation_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_image_schemaversion_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_imagename_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_instrepo_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_instrepo_local_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_instrepo_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_instrepo_password_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_instrepo_priority_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_instrepo_username_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_HWversion_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_domain_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_guestOS_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_max_cpu_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_max_memory_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_memory_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_min_cpu_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_min_memory_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_ncpus_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_machine_ovftype_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_metafile_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_metafile_script_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_metafile_target_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_metafile_url_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_namedCollection_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_namedCollection_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_namedCollection_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_package_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_package_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_package_bootdelete_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_package_bootinclude_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_package_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_package_replaces_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_packages_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_packages_patternType_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_packages_profiles_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_packages_type_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_partition_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_partition_mountpoint_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_partition_number_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_partition_size_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_partition_target_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_partition_type_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_partitions_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_partitions_device_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_password_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_path_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_preferences_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_preferences_profiles_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_product_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_product_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_product_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_productinfo_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_productoption_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_productvar_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_profile_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_profile_description_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_profile_import_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_profile_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_profiles_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_pxedeploy_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_pxedeploy_blocksize_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_pxedeploy_server_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_replaces_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_addarch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_forcerepo_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_medium_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_onlyarch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_removearch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_script_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repopackage_source_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_alias_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_components_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_distribution_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_imageinclude_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_password_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_prefer-license_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_priority_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_profiles_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_status_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_type_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_repository_username_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_requiredarch_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_requiredarch_ref_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_script_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_size_additive_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_size_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_size_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_size_unit_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_source_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_source_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_source_path_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_strip_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_strip_profiles_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_strip_type_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_systemdisk_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_systemdisk_lvmgroup_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_target_arch_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_target_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_boot_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_bootfilesystem_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_bootkernel_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_bootloader_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_bootpartsize_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_bootprofile_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_boottimeout_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_checkprebuilt_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_compressed_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_container_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_devicepersistency_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_editbootconfig_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_editbootinstall_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_filesystem_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_firmware_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_flags_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_format_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_fsmountoptions_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_fsnocheck_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_fsreadonly_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_fsreadwrite_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_hybrid_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_hybridpersistent_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_image_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_installboot_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_installiso_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_installprovidefailsafe_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_installpxe_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_installstick_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_kernelcmdline_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_luksOS_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_luks_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_mdraid_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_primary_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_ramonly_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_vga_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_vhd-fixed-tag_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_volid_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_type_zfsoptions_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_union_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_union_ro_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_union_rw_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_union_type_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_user_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_user_home_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_user_id_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_user_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_user_password_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_user_pwdformat.jpeg │ ├── kiwi_xsd_Attribute_Group_k_user_realname_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_user_shell_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_username_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_users_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_users_group_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_users_id_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_users_profiles_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vagrantconfig_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vagrantconfig_provider_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vagrantconfig_virtualsize_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdisk_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdisk_controller_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdisk_device_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdisk_diskmode_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdisk_disktype_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdisk_id_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdvd_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdvd_controller_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmdvd_id_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmnic_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmnic_driver_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmnic_interface_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmnic_mac_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_vmnic_mode_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_volume_attlist.jpeg │ ├── kiwi_xsd_Attribute_Group_k_volume_freespace_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_volume_mountpoint_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_volume_name_attribute.jpeg │ ├── kiwi_xsd_Attribute_Group_k_volume_size_attribute.jpeg │ ├── kiwi_xsd_Complex_Type_k_source.jpeg │ ├── kiwi_xsd_Element_arch.jpeg │ ├── kiwi_xsd_Element_architectures.jpeg │ ├── kiwi_xsd_Element_archive.jpeg │ ├── kiwi_xsd_Element_author.jpeg │ ├── kiwi_xsd_Element_bootloader-theme.jpeg │ ├── kiwi_xsd_Element_bootsplash-theme.jpeg │ ├── kiwi_xsd_Element_chroot.jpeg │ ├── kiwi_xsd_Element_configuration.jpeg │ ├── kiwi_xsd_Element_contact.jpeg │ ├── kiwi_xsd_Element_defaultdestination.jpeg │ ├── kiwi_xsd_Element_defaultprebuilt.jpeg │ ├── kiwi_xsd_Element_defaultroot.jpeg │ ├── kiwi_xsd_Element_description.jpeg │ ├── kiwi_xsd_Element_drivers.jpeg │ ├── kiwi_xsd_Element_driverupdate.jpeg │ ├── kiwi_xsd_Element_except.jpeg │ ├── kiwi_xsd_Element_file.jpeg │ ├── kiwi_xsd_Element_hwclock.jpeg │ ├── kiwi_xsd_Element_ignore.jpeg │ ├── kiwi_xsd_Element_image.jpeg │ ├── kiwi_xsd_Element_initrd.jpeg │ ├── kiwi_xsd_Element_install.jpeg │ ├── kiwi_xsd_Element_instrepo.jpeg │ ├── kiwi_xsd_Element_instsource.jpeg │ ├── kiwi_xsd_Element_instsys.jpeg │ ├── kiwi_xsd_Element_kernel.jpeg │ ├── kiwi_xsd_Element_keytable.jpeg │ ├── kiwi_xsd_Element_locale.jpeg │ ├── kiwi_xsd_Element_machine.jpeg │ ├── kiwi_xsd_Element_metadata.jpeg │ ├── kiwi_xsd_Element_metafile.jpeg │ ├── kiwi_xsd_Element_modules.jpeg │ ├── kiwi_xsd_Element_namedCollection.jpeg │ ├── kiwi_xsd_Element_oem-ataraid-scan.jpeg │ ├── kiwi_xsd_Element_oem-boot-title.jpeg │ ├── kiwi_xsd_Element_oem-bootwait.jpeg │ ├── kiwi_xsd_Element_oem-inplace-recovery.jpeg │ ├── kiwi_xsd_Element_oem-kiwi-initrd.jpeg │ ├── kiwi_xsd_Element_oem-multipath-scan.jpeg │ ├── kiwi_xsd_Element_oem-partition-install.jpeg │ ├── kiwi_xsd_Element_oem-reboot-interactive.jpeg │ ├── kiwi_xsd_Element_oem-reboot.jpeg │ ├── kiwi_xsd_Element_oem-recovery-part-size.jpeg │ ├── kiwi_xsd_Element_oem-recovery.jpeg │ ├── kiwi_xsd_Element_oem-recoveryID.jpeg │ ├── kiwi_xsd_Element_oem-shutdown-interactive.jpeg │ ├── kiwi_xsd_Element_oem-shutdown.jpeg │ ├── kiwi_xsd_Element_oem-silent-boot.jpeg │ ├── kiwi_xsd_Element_oem-silent-install.jpeg │ ├── kiwi_xsd_Element_oem-silent-verify.jpeg │ ├── kiwi_xsd_Element_oem-skip-verify.jpeg │ ├── kiwi_xsd_Element_oem-swap.jpeg │ ├── kiwi_xsd_Element_oem-swapsize.jpeg │ ├── kiwi_xsd_Element_oem-systemsize.jpeg │ ├── kiwi_xsd_Element_oem-unattended-id.jpeg │ ├── kiwi_xsd_Element_oem-unattended.jpeg │ ├── kiwi_xsd_Element_oemconfig.jpeg │ ├── kiwi_xsd_Element_package.jpeg │ ├── kiwi_xsd_Element_packagemanager.jpeg │ ├── kiwi_xsd_Element_packages.jpeg │ ├── kiwi_xsd_Element_partition.jpeg │ ├── kiwi_xsd_Element_partitioner.jpeg │ ├── kiwi_xsd_Element_partitions.jpeg │ ├── kiwi_xsd_Element_persistent.jpeg │ ├── kiwi_xsd_Element_preferences.jpeg │ ├── kiwi_xsd_Element_product.jpeg │ ├── kiwi_xsd_Element_productinfo.jpeg │ ├── kiwi_xsd_Element_productoption.jpeg │ ├── kiwi_xsd_Element_productoptions.jpeg │ ├── kiwi_xsd_Element_productvar.jpeg │ ├── kiwi_xsd_Element_profile.jpeg │ ├── kiwi_xsd_Element_profiles.jpeg │ ├── kiwi_xsd_Element_pxedeploy.jpeg │ ├── kiwi_xsd_Element_repopackage.jpeg │ ├── kiwi_xsd_Element_repopackages.jpeg │ ├── kiwi_xsd_Element_repository.jpeg │ ├── kiwi_xsd_Element_requiredarch.jpeg │ ├── kiwi_xsd_Element_rpm-check-signatures.jpeg │ ├── kiwi_xsd_Element_rpm-excludedocs.jpeg │ ├── kiwi_xsd_Element_rpm-force.jpeg │ ├── kiwi_xsd_Element_showlicense.jpeg │ ├── kiwi_xsd_Element_size.jpeg │ ├── kiwi_xsd_Element_source.jpeg │ ├── kiwi_xsd_Element_specification.jpeg │ ├── kiwi_xsd_Element_split.jpeg │ ├── kiwi_xsd_Element_strip.jpeg │ ├── kiwi_xsd_Element_systemdisk.jpeg │ ├── kiwi_xsd_Element_target.jpeg │ ├── kiwi_xsd_Element_temporary.jpeg │ ├── kiwi_xsd_Element_timeout.jpeg │ ├── kiwi_xsd_Element_timezone.jpeg │ ├── kiwi_xsd_Element_type.jpeg │ ├── kiwi_xsd_Element_union.jpeg │ ├── kiwi_xsd_Element_user.jpeg │ ├── kiwi_xsd_Element_users.jpeg │ ├── kiwi_xsd_Element_vagrantconfig.jpeg │ ├── kiwi_xsd_Element_version.jpeg │ ├── kiwi_xsd_Element_vmconfig-entry.jpeg │ ├── kiwi_xsd_Element_vmdisk.jpeg │ ├── kiwi_xsd_Element_vmdvd.jpeg │ ├── kiwi_xsd_Element_vmnic.jpeg │ ├── kiwi_xsd_Element_volume.jpeg │ ├── kiwi_xsd_Simple_Type_image-name.jpeg │ ├── kiwi_xsd_Simple_Type_k_hwclock_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-ataraid-scan_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-bootwait_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-inplace-recovery_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-kiwi-initrd_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-multipath-scan_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-partition-install_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-reboot-interactive_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-reboot_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-recovery_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-shutdown-interactive_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-shutdown_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-silent-boot_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-silent-install_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-silent-verify_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-skip-verify_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-swap_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_oem-unattended_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_packagemanager_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_partitioner_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_rpm-check-signatures_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_rpm-excludedocs_content.jpeg │ ├── kiwi_xsd_Simple_Type_k_rpm-force_content.jpeg │ ├── kiwi_xsd_Simple_Type_locale-name.jpeg │ ├── kiwi_xsd_Simple_Type_mac-address-type.jpeg │ ├── kiwi_xsd_Simple_Type_size-type.jpeg │ ├── kiwi_xsd_Simple_Type_vhd-tag-type.jpeg │ ├── kiwi_xsd_Simple_Type_volume-size-type.jpeg │ ├── lB.gif │ ├── lL.gif │ ├── lR.gif │ └── lT.gif │ ├── index.html │ ├── kiwi.html │ ├── kiwi.indexList.html │ ├── kiwi.indexListcomp.html │ ├── kiwi.indexListns.html │ ├── kiwi0.html │ ├── kiwi1.html │ ├── kiwi_indexList.html │ ├── kiwi_xsd.html │ ├── schHierarchy.html │ ├── susesync │ ├── xsdDocHtml.css │ └── xsi_xsd.html ├── editing ├── README ├── kiwi.sh ├── suse-start-kiwi-mode.el └── suse-start-kiwi-xmllocator.xml ├── kiwi ├── kiwi.pl ├── locale ├── .fuzzy ├── .locale ├── Makefile ├── af │ └── LC_MESSAGES │ │ └── kiwi.po ├── ar │ └── LC_MESSAGES │ │ └── kiwi.po ├── be │ └── LC_MESSAGES │ │ └── kiwi.po ├── bg │ └── LC_MESSAGES │ │ └── kiwi.po ├── bn │ └── LC_MESSAGES │ │ └── kiwi.po ├── bs │ └── LC_MESSAGES │ │ └── kiwi.po ├── ca │ └── LC_MESSAGES │ │ └── kiwi.po ├── cs │ └── LC_MESSAGES │ │ └── kiwi.po ├── cy │ └── LC_MESSAGES │ │ └── kiwi.po ├── da │ └── LC_MESSAGES │ │ └── kiwi.po ├── de │ └── LC_MESSAGES │ │ └── kiwi.po ├── el │ └── LC_MESSAGES │ │ └── kiwi.po ├── en_GB │ └── LC_MESSAGES │ │ └── kiwi.po ├── en_US │ └── LC_MESSAGES │ │ └── kiwi.po ├── eo │ └── LC_MESSAGES │ │ └── kiwi.po ├── es │ └── LC_MESSAGES │ │ └── kiwi.po ├── et │ └── LC_MESSAGES │ │ └── kiwi.po ├── eu │ └── LC_MESSAGES │ │ └── kiwi.po ├── fa │ └── LC_MESSAGES │ │ └── kiwi.po ├── fi │ └── LC_MESSAGES │ │ └── kiwi.po ├── fr │ └── LC_MESSAGES │ │ └── kiwi.po ├── gl │ └── LC_MESSAGES │ │ └── kiwi.po ├── gu │ └── LC_MESSAGES │ │ └── kiwi.po ├── he │ └── LC_MESSAGES │ │ └── kiwi.po ├── hi │ └── LC_MESSAGES │ │ └── kiwi.po ├── hr │ └── LC_MESSAGES │ │ └── kiwi.po ├── hu │ └── LC_MESSAGES │ │ └── kiwi.po ├── id │ └── LC_MESSAGES │ │ └── kiwi.po ├── it │ └── LC_MESSAGES │ │ └── kiwi.po ├── ja │ └── LC_MESSAGES │ │ └── kiwi.po ├── ka │ └── LC_MESSAGES │ │ └── kiwi.po ├── kiwi-template │ └── kiwi.pot ├── km │ └── LC_MESSAGES │ │ └── kiwi.po ├── ko │ └── LC_MESSAGES │ │ └── kiwi.po ├── ku │ └── LC_MESSAGES │ │ └── kiwi.po ├── lo │ └── LC_MESSAGES │ │ └── kiwi.po ├── lt │ └── LC_MESSAGES │ │ └── kiwi.po ├── mk │ └── LC_MESSAGES │ │ └── kiwi.po ├── mr │ └── LC_MESSAGES │ │ └── kiwi.po ├── nb │ └── LC_MESSAGES │ │ └── kiwi.po ├── nds │ └── LC_MESSAGES │ │ └── kiwi.po ├── nl │ └── LC_MESSAGES │ │ └── kiwi.po ├── nn │ └── LC_MESSAGES │ │ └── kiwi.po ├── pa │ └── LC_MESSAGES │ │ └── kiwi.po ├── pl │ └── LC_MESSAGES │ │ └── kiwi.po ├── pt │ └── LC_MESSAGES │ │ └── kiwi.po ├── pt_BR │ └── LC_MESSAGES │ │ └── kiwi.po ├── ro │ └── LC_MESSAGES │ │ └── kiwi.po ├── ru │ └── LC_MESSAGES │ │ └── kiwi.po ├── si │ └── LC_MESSAGES │ │ └── kiwi.po ├── sk │ └── LC_MESSAGES │ │ └── kiwi.po ├── sl │ └── LC_MESSAGES │ │ └── kiwi.po ├── sr │ └── LC_MESSAGES │ │ └── kiwi.po ├── sv │ └── LC_MESSAGES │ │ └── kiwi.po ├── ta │ └── LC_MESSAGES │ │ └── kiwi.po ├── tg │ └── LC_MESSAGES │ │ └── kiwi.po ├── th │ └── LC_MESSAGES │ │ └── kiwi.po ├── tr │ └── LC_MESSAGES │ │ └── kiwi.po ├── uk │ └── LC_MESSAGES │ │ └── kiwi.po ├── vi │ └── LC_MESSAGES │ │ └── kiwi.po ├── wa │ └── LC_MESSAGES │ │ └── kiwi.po ├── xh │ └── LC_MESSAGES │ │ └── kiwi.po ├── zh_CN │ └── LC_MESSAGES │ │ └── kiwi.po ├── zh_TW │ └── LC_MESSAGES │ │ └── kiwi.po └── zu │ └── LC_MESSAGES │ └── kiwi.po ├── metadata ├── KIWIAnalyse.custom.sync.md ├── KIWIAnalyse.filter ├── KIWIAnalyse.systems ├── KIWIAnalyseSUSE.kiwi ├── KIWIConfig.xml ├── KIWIIsoLinux-AppleFileMapping.map ├── KIWISplit.xml ├── KIWIURL.patterns └── d3 │ ├── d3.js │ ├── d3.layout.js │ ├── img │ ├── .DS_Store │ ├── header-bg.png │ ├── header.svg │ ├── logo.png │ ├── menu │ │ ├── RPM-conflicts.jpg │ │ ├── RPM-lost.jpg │ │ ├── RPM-packages.jpg │ │ ├── custom-files-visualisation.jpg │ │ ├── custom-files.jpg │ │ ├── gems.jpg │ │ ├── kernel.jpg │ │ ├── local-repositories.jpg │ │ └── multiple-RPM.jpg │ ├── spinner.gif │ └── texture-noise.png │ ├── kiwi.css │ ├── kiwi.js │ ├── style.css │ └── theme.css ├── modules ├── KIWIACIConfigWriter.pm ├── KIWIAnalyseCustomData.sh ├── KIWIAnalyseReport.pm ├── KIWIAnalyseSoftware.pm ├── KIWIAnalyseSystem.pm ├── KIWIAnalyseTemplate.pm ├── KIWIArch.pm ├── KIWIArchList.pm ├── KIWIBoot.pm ├── KIWICache.pm ├── KIWICollect.pm ├── KIWICommandLine.pm ├── KIWIConfig.sh ├── KIWIConfigWriter.pm ├── KIWIConfigWriterFactory.pm ├── KIWIConfigure.pm ├── KIWIContainerBuilder.pm ├── KIWIContainerConfigWriter.pm ├── KIWIExt2Builder.pm ├── KIWIExt3Builder.pm ├── KIWIExt4Builder.pm ├── KIWIExtBuilderBase.pm ├── KIWIFilesystemBuilderBase.pm ├── KIWIFilesystemOptions.pm ├── KIWIGlobals.pm ├── KIWIImage.pm ├── KIWIImageBuildFactory.pm ├── KIWIImageBuilderBase.pm ├── KIWIImageCreator.pm ├── KIWIImageFormat.pm ├── KIWIIsoLinux.pm ├── KIWILinuxRC.sh ├── KIWILocator.pm ├── KIWILog.pm ├── KIWIManager.pm ├── KIWIManagerApt.pm ├── KIWIManagerEnsconce.pm ├── KIWIManagerSmart.pm ├── KIWIManagerYum.pm ├── KIWIManagerZypper.pm ├── KIWIOVFConfigWriter.pm ├── KIWIOverlay.pm ├── KIWIProductData.pm ├── KIWIProfileFile.pm ├── KIWIQX.pm ├── KIWIRepoMetaHandler.pm ├── KIWIResult.pm ├── KIWIRoot.pm ├── KIWIRuntimeChecker.pm ├── KIWISatSolver.pm ├── KIWISchema.rnc ├── KIWISchema.rng ├── KIWITarArchiveBuilder.pm ├── KIWITrace.pm ├── KIWIURL.pm ├── KIWIUtil.pm ├── KIWIXML.pm ├── KIWIXMLDataBase.pm ├── KIWIXMLDefStripData.pm ├── KIWIXMLDescriptionData.pm ├── KIWIXMLDriverData.pm ├── KIWIXMLExceptData.pm ├── KIWIXMLFileData.pm ├── KIWIXMLInfo.pm ├── KIWIXMLInstRepositoryData.pm ├── KIWIXMLOEMConfigData.pm ├── KIWIXMLPXEDeployConfigData.pm ├── KIWIXMLPXEDeployData.pm ├── KIWIXMLPackageArchiveData.pm ├── KIWIXMLPackageCollectData.pm ├── KIWIXMLPackageData.pm ├── KIWIXMLPackageIgnoreData.pm ├── KIWIXMLPackageProductData.pm ├── KIWIXMLPreferenceData.pm ├── KIWIXMLProductArchitectureData.pm ├── KIWIXMLProductMetaChrootData.pm ├── KIWIXMLProductMetaFileData.pm ├── KIWIXMLProductOptionsData.pm ├── KIWIXMLProductPackageData.pm ├── KIWIXMLProfileData.pm ├── KIWIXMLRepositoryBaseData.pm ├── KIWIXMLRepositoryData.pm ├── KIWIXMLSplitData.pm ├── KIWIXMLStripData.pm ├── KIWIXMLSystemdiskData.pm ├── KIWIXMLTypeData.pm ├── KIWIXMLUserData.pm ├── KIWIXMLVMachineData.pm ├── KIWIXMLVagrantConfigData.pm └── KIWIXMLValidator.pm ├── pxeboot ├── README ├── config.default.sample.s390.dasd ├── config.default.sample.s390.zfcp ├── kiwiboot.sh ├── pxelinux.0.config └── pxelinux.0.config.xen ├── rpm ├── kiwi-find-boot-requires.sh ├── kiwi-rpmlintrc └── kiwi.spec ├── system ├── boot │ ├── aarch64 │ ├── armv5el │ ├── armv5tel │ ├── armv6l │ ├── armv7l │ │ ├── .md5 │ │ ├── oemboot │ │ │ ├── README │ │ │ ├── suse-SLES12 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ ├── usr │ │ │ │ │ └── share │ │ │ │ │ │ └── locale │ │ │ │ │ │ ├── .fuzzy │ │ │ │ │ │ ├── .locale │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ar │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── kiwi-template │ │ │ │ │ │ └── kiwi.pot │ │ │ │ │ │ ├── ko │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ ├── zh_CN │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ │ └── zh_TW │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── kiwi.po │ │ │ │ │ └── wmrc │ │ │ ├── suse-dump │ │ │ ├── suse-leap42.1 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ ├── usr │ │ │ │ │ └── share │ │ │ │ │ │ └── locale │ │ │ │ │ └── wmrc │ │ │ ├── suse-linuxrc │ │ │ ├── suse-preinit │ │ │ ├── suse-repart │ │ │ └── suse-tumbleweed │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ ├── dump │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ ├── repart │ │ │ │ ├── usr │ │ │ │ └── share │ │ │ │ │ └── locale │ │ │ │ └── wmrc │ │ └── vmxboot │ │ │ ├── README │ │ │ ├── suse-SLES12 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── suse-leap42.1 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── suse-linuxrc │ │ │ ├── suse-preinit │ │ │ └── suse-tumbleweed │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ ├── include │ │ │ ├── linuxrc │ │ │ ├── preinit │ │ │ └── usr │ │ │ └── share │ │ │ └── locale │ ├── ia64 │ │ └── .md5 │ ├── ix86 │ │ ├── .md5 │ │ ├── isoboot │ │ │ ├── README │ │ │ ├── rhel-06.0 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.conf.local │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── rhel-07.0 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.conf.local │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── rhel-linuxrc │ │ │ ├── rhel-preinit │ │ │ ├── suse-13.1 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-13.2 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-SLES11 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.conf.local │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-SLES12 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-leap42.1 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-linuxrc │ │ │ ├── suse-preinit │ │ │ └── suse-tumbleweed │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ └── modprobe.d │ │ │ │ │ └── 99-local.conf │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ └── preinit │ │ ├── netboot │ │ │ ├── README │ │ │ ├── rhel-07.0 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── rhel-linuxrc │ │ │ ├── rhel-preinit │ │ │ ├── suse-13.1 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-13.2 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-SLES11 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.conf.local │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-SLES12 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-leap42.1 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-linuxrc │ │ │ ├── suse-preinit │ │ │ └── suse-tumbleweed │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ └── modprobe.d │ │ │ │ │ └── 99-local.conf │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ └── preinit │ │ ├── oemboot │ │ │ ├── README │ │ │ ├── rhel-06.0 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ └── repart │ │ │ ├── rhel-07.0 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ └── repart │ │ │ ├── rhel-dump │ │ │ ├── rhel-linuxrc │ │ │ ├── rhel-preinit │ │ │ ├── rhel-repart │ │ │ ├── suse-13.1 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ ├── usr │ │ │ │ │ └── share │ │ │ │ │ │ └── locale │ │ │ │ │ └── wmrc │ │ │ ├── suse-13.2 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ ├── usr │ │ │ │ │ └── share │ │ │ │ │ │ └── locale │ │ │ │ │ └── wmrc │ │ │ ├── suse-SLES11 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ ├── usr │ │ │ │ │ └── share │ │ │ │ │ │ └── locale │ │ │ │ │ └── wmrc │ │ │ ├── suse-SLES12 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ ├── usr │ │ │ │ │ └── share │ │ │ │ │ │ └── locale │ │ │ │ │ └── wmrc │ │ │ ├── suse-dump │ │ │ ├── suse-leap42.1 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ ├── usr │ │ │ │ │ └── share │ │ │ │ │ │ └── locale │ │ │ │ │ └── wmrc │ │ │ ├── suse-linuxrc │ │ │ ├── suse-preinit │ │ │ ├── suse-repart │ │ │ └── suse-tumbleweed │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ ├── dump │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ ├── repart │ │ │ │ ├── usr │ │ │ │ └── share │ │ │ │ │ └── locale │ │ │ │ └── wmrc │ │ └── vmxboot │ │ │ ├── README │ │ │ ├── rhel-06.0 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── rhel-07.0 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── rhel-linuxrc │ │ │ ├── rhel-preinit │ │ │ ├── suse-13.1 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── suse-13.2 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── suse-SLES11 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── suse-SLES12 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── suse-leap42.1 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── suse-linuxrc │ │ │ ├── suse-preinit │ │ │ └── suse-tumbleweed │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ ├── include │ │ │ ├── linuxrc │ │ │ ├── preinit │ │ │ └── usr │ │ │ └── share │ │ │ └── locale │ ├── m68k │ │ └── .md5 │ ├── ppc │ │ ├── .md5 │ │ ├── netboot │ │ │ ├── README │ │ │ ├── suse-SLES11 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.conf.local │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-SLES12 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-linuxrc │ │ │ └── suse-preinit │ │ ├── oemboot │ │ │ ├── README │ │ │ ├── suse-SLES11 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ └── usr │ │ │ │ │ └── share │ │ │ │ │ └── locale │ │ │ ├── suse-SLES12 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ ├── usr │ │ │ │ │ └── share │ │ │ │ │ │ └── locale │ │ │ │ │ └── wmrc │ │ │ ├── suse-dump │ │ │ ├── suse-linuxrc │ │ │ ├── suse-preinit │ │ │ └── suse-repart │ │ └── vmxboot │ │ │ ├── README │ │ │ ├── suse-SLES11 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ └── preinit │ │ │ ├── suse-SLES12 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ ├── usr │ │ │ │ └── share │ │ │ │ │ └── locale │ │ │ │ └── wmrc │ │ │ ├── suse-linuxrc │ │ │ └── suse-preinit │ ├── ppc64 │ ├── ppc64le │ ├── s390 │ │ ├── .md5 │ │ ├── netboot │ │ │ ├── README │ │ │ ├── suse-SLES11 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.conf.local │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-SLES12 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── etc │ │ │ │ │ └── modprobe.d │ │ │ │ │ │ └── 99-local.conf │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ └── preinit │ │ │ ├── suse-linuxrc │ │ │ └── suse-preinit │ │ ├── oemboot │ │ │ ├── README │ │ │ ├── suse-SLES11 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ └── usr │ │ │ │ │ └── share │ │ │ │ │ └── locale │ │ │ ├── suse-SLES12 │ │ │ │ ├── config.sh │ │ │ │ ├── config.xml │ │ │ │ ├── images.sh │ │ │ │ └── root │ │ │ │ │ ├── dump │ │ │ │ │ ├── include │ │ │ │ │ ├── linuxrc │ │ │ │ │ ├── preinit │ │ │ │ │ ├── repart │ │ │ │ │ └── usr │ │ │ │ │ └── share │ │ │ │ │ └── locale │ │ │ ├── suse-dump │ │ │ ├── suse-linuxrc │ │ │ ├── suse-preinit │ │ │ └── suse-repart │ │ └── vmxboot │ │ │ ├── README │ │ │ ├── suse-SLES11 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ └── preinit │ │ │ ├── suse-SLES12 │ │ │ ├── config.sh │ │ │ ├── config.xml │ │ │ ├── images.sh │ │ │ └── root │ │ │ │ ├── include │ │ │ │ ├── linuxrc │ │ │ │ ├── preinit │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── locale │ │ │ ├── suse-linuxrc │ │ │ └── suse-preinit │ ├── s390x │ └── x86_64 └── repo │ ├── aarch64 │ ├── armv5el │ ├── armv5tel │ ├── armv6l │ ├── armv7l │ └── README │ ├── ia64 │ └── README │ ├── ix86 │ └── README │ ├── m68k │ └── README │ ├── ppc │ └── README │ ├── ppc64 │ ├── ppc64le │ ├── s390 │ └── README │ ├── s390x │ └── x86_64 ├── template ├── aarch64 ├── armv5el ├── armv5tel ├── armv6l ├── armv7l │ └── suse-SLE12-community-JeOS │ │ ├── README │ │ ├── berryboot-image-setup │ │ ├── berryboot-setup.tgz │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ └── etc │ │ │ ├── motd │ │ │ └── securetty │ │ └── suse-SLE12-JeOS.kiwi ├── ia64 │ └── README ├── ix86 │ ├── README │ ├── rhel-06.6-JeOS │ │ ├── README │ │ ├── Vagrantfile │ │ ├── config.sh │ │ ├── config.xml │ │ ├── rhel-06.0-JeOS.kiwi │ │ └── root │ │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf │ │ │ ├── login.defs │ │ │ ├── selinux │ │ │ │ └── config │ │ │ └── sysconfig │ │ │ │ ├── authconfig │ │ │ │ ├── firstboot │ │ │ │ ├── network │ │ │ │ └── network-scripts │ │ │ │ └── ifcfg-eth0 │ │ │ └── fastboot │ ├── rhel-07.0-JeOS │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── rhel-07.0-JeOS.kiwi │ │ └── root │ │ │ ├── etc │ │ │ ├── login.defs │ │ │ ├── selinux │ │ │ │ └── config │ │ │ ├── sysconfig │ │ │ │ ├── authconfig │ │ │ │ ├── firstboot │ │ │ │ ├── network │ │ │ │ └── network-scripts │ │ │ │ │ └── ifcfg-lan0 │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 70-persistent-net.rules │ │ │ └── fastboot │ ├── suse-13.1-JeOS │ │ ├── Dicefile │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ │ └── etc │ │ │ │ └── motd │ │ └── suse-13.1-JeOS.kiwi │ ├── suse-13.2-JeOS │ │ ├── Dicefile │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ │ └── etc │ │ │ │ ├── motd │ │ │ │ ├── sysconfig │ │ │ │ └── network │ │ │ │ │ └── ifcfg-lan0 │ │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 70-persistent-net.rules │ │ └── suse-13.2-JeOS.kiwi │ ├── suse-SLE11-community-JeOS │ │ ├── Dicefile │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ │ └── etc │ │ │ │ ├── X11 │ │ │ │ └── xorg.conf │ │ │ │ ├── motd │ │ │ │ └── sysconfig │ │ │ │ └── network │ │ │ │ └── ifcfg-eth0 │ │ ├── suse-SLE11-JeOS.kiwi │ │ └── test │ │ │ ├── README │ │ │ ├── env.sh │ │ │ └── iso │ │ │ ├── main.pm │ │ │ └── test.d │ │ │ └── 001_boot.pm │ ├── suse-SLE12-community-JeOS │ │ ├── Dicefile │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ │ ├── etc │ │ │ │ ├── motd │ │ │ │ ├── ssh │ │ │ │ │ └── sshd_config │ │ │ │ ├── sudoers │ │ │ │ ├── sysconfig │ │ │ │ │ └── network │ │ │ │ │ │ └── ifcfg-lan0 │ │ │ │ └── udev │ │ │ │ │ └── rules.d │ │ │ │ │ └── 70-persistent-net.rules │ │ │ └── home │ │ │ │ ├── kiwi │ │ │ │ └── .ssh │ │ │ │ │ └── authorized_keys │ │ │ │ └── vagrant │ │ │ │ └── .ssh │ │ │ │ └── authorized_keys │ │ ├── suse-SLE12-JeOS.kiwi │ │ └── test │ │ │ ├── README │ │ │ ├── env.sh │ │ │ └── iso │ │ │ ├── main.pm │ │ │ ├── needles │ │ │ ├── text-login.json │ │ │ └── text-login.png │ │ │ └── test.d │ │ │ └── 001_boot.pm │ └── suse-leap-42.1-JeOS │ │ ├── Dicefile │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── leap-42.1-JeOS.kiwi │ │ └── root │ │ └── etc │ │ ├── motd │ │ ├── sysconfig │ │ └── network │ │ │ └── ifcfg-lan0 │ │ └── udev │ │ └── rules.d │ │ └── 70-persistent-net.rules ├── m68k │ └── README ├── ppc │ ├── README │ ├── suse-SLE11-community-JeOS │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ │ └── etc │ │ │ │ ├── X11 │ │ │ │ └── xorg.conf │ │ │ │ ├── motd │ │ │ │ └── sysconfig │ │ │ │ ├── network │ │ │ │ └── ifcfg-eth0 │ │ │ │ └── syslog │ │ └── suse-SLE11-JeOS.kiwi │ └── suse-SLE12-community-JeOS │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ └── etc │ │ │ ├── motd │ │ │ └── sysconfig │ │ │ ├── network │ │ │ └── ifcfg-eth0 │ │ │ └── syslog │ │ └── suse-SLE12-JeOS.kiwi ├── ppc64 ├── ppc64le ├── s390 │ ├── README │ ├── suse-SLE11-community-JeOS │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ │ └── etc │ │ │ │ ├── X11 │ │ │ │ └── xorg.conf │ │ │ │ ├── init.d │ │ │ │ └── kiwi │ │ │ │ │ ├── dasd │ │ │ │ │ └── 01-network.sh │ │ │ │ │ └── zfcp │ │ │ │ │ └── 01-network.sh │ │ │ │ ├── motd │ │ │ │ └── sysconfig │ │ │ │ ├── network │ │ │ │ └── ifcfg-eth0 │ │ │ │ └── syslog │ │ └── suse-SLE11-JeOS.kiwi │ └── suse-SLE12-community-JeOS │ │ ├── README │ │ ├── config.sh │ │ ├── config.xml │ │ ├── root │ │ └── etc │ │ │ ├── init.d │ │ │ └── kiwi │ │ │ │ ├── dasd │ │ │ │ └── 01-network.sh │ │ │ │ └── zfcp │ │ │ │ └── 01-network.sh │ │ │ ├── motd │ │ │ └── sysconfig │ │ │ ├── network │ │ │ └── ifcfg-eth0 │ │ │ └── syslog │ │ └── suse-SLE12-JeOS.kiwi ├── s390x └── x86_64 ├── tests ├── jenkins │ ├── build.sh │ ├── codebase.sh │ ├── prepare.sh │ └── product.sh ├── runTests ├── triggers │ ├── KIWICommandLine.trig │ ├── KIWIConfigWriterFactory.trig │ ├── KIWIContainerBuilder.trig │ ├── KIWIContainerConfigWriter.trig │ ├── KIWIFilesystemOptions.trig │ ├── KIWIImage.trig │ ├── KIWIImageBuildFactory.trig │ ├── KIWIImageBuilderBase.trig │ ├── KIWIImageCreator.trig │ ├── KIWILocator.trig │ ├── KIWIOVFConfigWriter.trig │ ├── KIWIProfileFile.trig │ ├── KIWIRuntimeChecker.trig │ ├── KIWISchema.trig │ ├── KIWITarArchiveBuilder.trig │ ├── KIWIXML.trig │ ├── KIWIXMLArchiveData.trig │ ├── KIWIXMLDataBase.trig │ ├── KIWIXMLDefStripData.trig │ ├── KIWIXMLDescriptionData.trig │ ├── KIWIXMLDriverData.trig │ ├── KIWIXMLFileData.trig │ ├── KIWIXMLIgnorePackage.trig │ ├── KIWIXMLInfo.trig │ ├── KIWIXMLInstRepositoryData.trig │ ├── KIWIXMLOEMConfigData.trig │ ├── KIWIXMLPXEDeployConfigData.trig │ ├── KIWIXMLPXEDeployData.trig │ ├── KIWIXMLPackageCollectData.trig │ ├── KIWIXMLPackageData.trig │ ├── KIWIXMLPreferenceData.trig │ ├── KIWIXMLProductArchitectureData.trig │ ├── KIWIXMLProductData.trig │ ├── KIWIXMLProductMetaChrootData.trig │ ├── KIWIXMLProductMetaFileData.trig │ ├── KIWIXMLProductOptionsData.trig │ ├── KIWIXMLProductPackageData.trig │ ├── KIWIXMLProfileData.trig │ ├── KIWIXMLRepositoryData.trig │ ├── KIWIXMLSchema.trig │ ├── KIWIXMLSplitData.trig │ ├── KIWIXMLStripData.trig │ ├── KIWIXMLSystemdiskData.trig │ ├── KIWIXMLTypeData.trig │ ├── KIWIXMLUserData.trig │ ├── KIWIXMLVMachine.trig │ ├── KIWIXMLValidator.trig │ ├── kiwiCommandLine.trig │ ├── kiwiConfigWriterFactory.trig │ ├── kiwiContainerBuilder.trig │ ├── kiwiContainerConfigWriter.trig │ ├── kiwiFilesystemOptions.trig │ ├── kiwiImage.trig │ ├── kiwiImageBuildFactory.trig │ ├── kiwiImageBuilderBase.trig │ ├── kiwiImageCreator.trig │ ├── kiwiLocator.trig │ ├── kiwiOVFConfigWriter.trig │ ├── kiwiProfileFile.trig │ ├── kiwiRuntimeChecker.trig │ ├── kiwiTarArchiveBuilder.trig │ ├── kiwiXML.trig │ ├── kiwiXMLArchiveData.trig │ ├── kiwiXMLDefStripData.trig │ ├── kiwiXMLDescriptionData.trig │ ├── kiwiXMLDriverData.trig │ ├── kiwiXMLFileData.trig │ ├── kiwiXMLIgnorePackage.trig │ ├── kiwiXMLInfo.trig │ ├── kiwiXMLInstRepositoryData.trig │ ├── kiwiXMLOEMConfigData.trig │ ├── kiwiXMLPXEDeployConfigData.trig │ ├── kiwiXMLPXEDeployData.trig │ ├── kiwiXMLPackageCollectData.trig │ ├── kiwiXMLPackageData.trig │ ├── kiwiXMLPreferenceData.trig │ ├── kiwiXMLProductArchitectureData.trig │ ├── kiwiXMLProductData.trig │ ├── kiwiXMLProductMetaChrootData.trig │ ├── kiwiXMLProductMetaFileData.trig │ ├── kiwiXMLProductOptionsData.trig │ ├── kiwiXMLProductPackageData.trig │ ├── kiwiXMLProfileData.trig │ ├── kiwiXMLRepositoryData.trig │ ├── kiwiXMLSplitData.trig │ ├── kiwiXMLStripData.trig │ ├── kiwiXMLSystemdiskData.trig │ ├── kiwiXMLTypeData.trig │ ├── kiwiXMLUserData.trig │ ├── kiwiXMLVMachine.trig │ ├── kiwiXMLValidator.trig │ ├── ktLog.trig │ └── ktTestCase.trig ├── unit │ ├── .kiwirc │ ├── KTACIConfigWriter.t │ ├── KTCommandLine.t │ ├── KTConfigWriterFactory.t │ ├── KTContainerBuilder.t │ ├── KTContainerConfigWriter.t │ ├── KTFilesystemOptions.t │ ├── KTImage.t │ ├── KTImageBuildFactory.t │ ├── KTImageBuilderBase.t │ ├── KTImageCreator.t │ ├── KTLocator.t │ ├── KTOVFVConfigWriter.t │ ├── KTProfileFile.t │ ├── KTRuntimeChecker.t │ ├── KTTarArchiveBuilder.t │ ├── KTXML.t │ ├── KTXMLDefStripData.t │ ├── KTXMLDescriptionData.t │ ├── KTXMLDriverData.t │ ├── KTXMLExceptData.t │ ├── KTXMLFileData.t │ ├── KTXMLInfo.t │ ├── KTXMLInstRepositoryData.t │ ├── KTXMLOEMConfigData.t │ ├── KTXMLPXEDeployConfigData.t │ ├── KTXMLPXEDeployData.t │ ├── KTXMLPackageArchiveData.t │ ├── KTXMLPackageCollectData.t │ ├── KTXMLPackageData.t │ ├── KTXMLPackageIgnoreData.t │ ├── KTXMLPackageProductData.t │ ├── KTXMLPreferenceData.t │ ├── KTXMLProductArchitectureData.t │ ├── KTXMLProductMetaChrootData.t │ ├── KTXMLProductMetaFileData.t │ ├── KTXMLProductOptionsData.t │ ├── KTXMLProductPackageData.t │ ├── KTXMLProfileData.t │ ├── KTXMLRepositoryData.t │ ├── KTXMLSplitData.t │ ├── KTXMLStripData.t │ ├── KTXMLSystemdiskData.t │ ├── KTXMLTypeData.t │ ├── KTXMLUserData.t │ ├── KTXMLVMachineData.t │ ├── KTXMLVagrantConfigData.t │ ├── KTXMLValidator.t │ ├── cleanup.sh │ ├── data │ │ ├── kiwiACIConfWriter │ │ │ └── config.xml │ │ ├── kiwiConfigWriterFactory │ │ │ ├── config.xml │ │ │ └── container │ │ │ │ └── config.xml │ │ ├── kiwiContainerConfWriter │ │ │ └── config.xml │ │ ├── kiwiImageBuildFactory │ │ │ └── config.xml │ │ ├── kiwiImageCreator │ │ │ ├── prepareCmdRoot │ │ │ │ └── config.xml │ │ │ ├── prepareNoRoot │ │ │ │ └── config.xml │ │ │ └── prepareXmlRoot │ │ │ │ └── config.xml │ │ ├── kiwiLocator │ │ │ ├── bin │ │ │ │ ├── doubleDash │ │ │ │ ├── pythonDash │ │ │ │ └── singleDash │ │ │ ├── config.xml │ │ │ ├── multiConf │ │ │ │ ├── config_one.kiwi │ │ │ │ └── config_two.kiwi │ │ │ ├── noConf │ │ │ │ └── readme.txt │ │ │ └── sglConf │ │ │ │ └── config_one.kiwi │ │ ├── kiwiOVFConfWriter │ │ │ ├── baseOVFConfig │ │ │ │ └── config.xml │ │ │ ├── dvdIdeConfig │ │ │ │ └── config.xml │ │ │ ├── dvdScsiConfig │ │ │ │ └── config.xml │ │ │ ├── genericGuestOSConfig │ │ │ │ └── config.xml │ │ │ ├── hwEightConfig │ │ │ │ └── config.xml │ │ │ ├── ideCntrlConfig │ │ │ │ └── config.xml │ │ │ ├── maxCPUOVFConfig │ │ │ │ └── config.xml │ │ │ ├── maxMemoryOVFConfig │ │ │ │ └── config.xml │ │ │ ├── minCPUOVFConfig │ │ │ │ └── config.xml │ │ │ ├── minGTMaxCPUOVFConfig │ │ │ │ └── config.xml │ │ │ ├── minGTMaxMemoryOVFConfig │ │ │ │ └── config.xml │ │ │ ├── minMaxCPUOVFConfig │ │ │ │ └── config.xml │ │ │ ├── minMaxMemoryOVFConfig │ │ │ │ └── config.xml │ │ │ ├── minMemoryOVFConfig │ │ │ │ └── config.xml │ │ │ ├── multiNICOVFConfig │ │ │ │ └── config.xml │ │ │ ├── noCPUspec │ │ │ │ └── config.xml │ │ │ ├── noDiskCntrl │ │ │ │ └── config.xml │ │ │ ├── noDiskCrtlSpec │ │ │ │ └── config.xml │ │ │ ├── noMemorySpec │ │ │ │ └── config.xml │ │ │ ├── noOVFMachineConfig │ │ │ │ └── config.xml │ │ │ ├── noOVFTypeConfig │ │ │ │ └── config.xml │ │ │ ├── noSizeConfig │ │ │ │ └── config.xml │ │ │ ├── powerOVFConfig │ │ │ │ └── config.xml │ │ │ ├── rhel-64GuestOSConfig │ │ │ │ └── config.xml │ │ │ ├── rhelGuestOSConfig │ │ │ │ └── config.xml │ │ │ ├── sles-64GuestOSConfig │ │ │ │ └── config.xml │ │ │ ├── slesGuestOSConfig │ │ │ │ └── config.xml │ │ │ ├── suse-64GuestOSConfig │ │ │ │ └── config.xml │ │ │ ├── suseGuestOSConfig │ │ │ │ └── config.xml │ │ │ ├── virtualboxGuestOSConfig │ │ │ │ └── config.xml │ │ │ ├── xenOVFConfig │ │ │ │ └── config.xml │ │ │ └── zvmOVFConfig │ │ │ │ └── config.xml │ │ ├── kiwiProfileFile │ │ │ ├── config.xml │ │ │ ├── prof.xmlRef │ │ │ ├── profile.up │ │ │ ├── profile.upRef │ │ │ └── profile.upUnkk │ │ ├── kiwiRuntimeChecker │ │ │ ├── README.txt │ │ │ ├── config.xml │ │ │ ├── conflictUsers │ │ │ │ └── config.xml │ │ │ ├── fileSysImg │ │ │ │ ├── btrfs │ │ │ │ │ └── config.xml │ │ │ │ ├── ext2 │ │ │ │ │ └── config.xml │ │ │ │ ├── ext3 │ │ │ │ │ └── config.xml │ │ │ │ ├── ext4 │ │ │ │ │ └── config.xml │ │ │ │ ├── reiserfs │ │ │ │ │ └── config.xml │ │ │ │ └── xfs │ │ │ │ │ └── config.xml │ │ │ ├── haveDefaultPkgs │ │ │ │ └── config.xml │ │ │ ├── liveIsoImg │ │ │ │ ├── clic │ │ │ │ │ └── config.xml │ │ │ │ ├── compressed │ │ │ │ │ └── config.xml │ │ │ │ ├── efi │ │ │ │ │ └── config.xml │ │ │ │ └── efiOEM │ │ │ │ │ └── config.xml │ │ │ ├── lvmAndSwapGreaterSysSize │ │ │ │ └── config.xml │ │ │ ├── lvmGreaterSysSize │ │ │ │ └── config.xml │ │ │ ├── lvmSetup │ │ │ │ └── config.xml │ │ │ ├── lvmSetup2 │ │ │ │ └── config.xml │ │ │ ├── lxcMissing │ │ │ │ └── config.xml │ │ │ ├── minSysSize │ │ │ │ └── config.xml │ │ │ ├── noDefaultBuildType │ │ │ │ └── config.xml │ │ │ ├── noRepoAliasUnique │ │ │ │ └── config.xml │ │ │ ├── oemBtrfs │ │ │ │ └── config.xml │ │ │ ├── ovaSetup │ │ │ │ └── config.xml │ │ │ ├── revision │ │ │ └── splitImg │ │ │ │ └── config.xml │ │ ├── kiwiTestRepo │ │ │ ├── kiwi-test-dummy-0.0.1-1.noarch.rpm │ │ │ └── repodata │ │ │ │ ├── 2b3a4f40e6fb774953f55d6493041ce084dc56bc4d41e0d636511880410279c0-other.xml.gz │ │ │ │ ├── 5af0d5b3a068bb018f9e7bdea89e04cb15e2e7807b785097615427e9f525ca8a-filelists.xml.gz │ │ │ │ ├── a7c9a58a03d0fd414886bc65d3a8a8484fccd87491ad298b8578b9e83e747ef8-primary.xml.gz │ │ │ │ └── repomd.xml │ │ ├── kiwiXML │ │ │ ├── defPkgMgr │ │ │ │ └── config.xml │ │ │ ├── descriptData │ │ │ │ └── config.xml │ │ │ ├── driversConfig │ │ │ │ └── config.xml │ │ │ ├── driversWithProfAndArch │ │ │ │ └── config.xml │ │ │ ├── lvmConfig │ │ │ │ └── config.xml │ │ │ ├── lvmConfigDisallowedDir │ │ │ │ └── config.xml │ │ │ ├── lvmConfigWithRoot │ │ │ │ └── config.xml │ │ │ ├── lvmConfigWithValidVolumes │ │ │ │ └── config.xml │ │ │ ├── multiPkgMgrWithProf │ │ │ │ └── config.xml │ │ │ ├── oemSettings │ │ │ │ └── config.xml │ │ │ ├── ovfConfigSettings │ │ │ │ └── config.xml │ │ │ ├── packageReplSettings │ │ │ │ └── config.xml │ │ │ ├── packageSettings │ │ │ │ └── config.xml │ │ │ ├── packageSettingsInstallDelete │ │ │ │ └── config.xml │ │ │ ├── packageSettingsNoBootstrap │ │ │ │ └── config.xml │ │ │ ├── packageSettingsNoDefault │ │ │ │ └── config.xml │ │ │ ├── packageSettingsNoImage │ │ │ │ └── config.xml │ │ │ ├── packageSettingsNoPattern │ │ │ │ └── config.xml │ │ │ ├── preferenceSettings │ │ │ │ └── config.xml │ │ │ ├── preferenceSettingsProf │ │ │ │ └── config.xml │ │ │ ├── preferenceSettingsProfNoDef │ │ │ │ └── config.xml │ │ │ ├── productSetings │ │ │ │ └── config.xml │ │ │ ├── profilesConfig │ │ │ │ └── config.xml │ │ │ ├── profilesConfigNoDef │ │ │ │ └── config.xml │ │ │ ├── pxeSettings │ │ │ │ └── config.xml │ │ │ ├── pxeSettingsInvArch │ │ │ │ └── config.xml │ │ │ ├── replRepos │ │ │ │ └── config.xml │ │ │ ├── reposConfig │ │ │ │ └── config.xml │ │ │ ├── reposConfigNoRepl │ │ │ │ └── config.xml │ │ │ ├── reposConfigWithProf │ │ │ │ └── config.xml │ │ │ ├── roundtripWrite │ │ │ │ └── config.xml │ │ │ ├── specPkgMgr │ │ │ │ └── config.xml │ │ │ ├── splitSettings │ │ │ │ └── config.xml │ │ │ ├── splitSettingsInvArch │ │ │ │ └── config.xml │ │ │ ├── stripConfig │ │ │ │ └── config.xml │ │ │ ├── stripWithProfAndArch │ │ │ │ └── config.xml │ │ │ ├── typeSettings │ │ │ │ ├── config.xml │ │ │ │ └── fixupBootEnter │ │ │ ├── typeSettingsNoTypeDefPref │ │ │ │ └── config.xml │ │ │ ├── typeSettingsNoTypeDefPrefNoPrim │ │ │ │ └── config.xml │ │ │ ├── typeSettingsTwoPrimary │ │ │ │ └── config.xml │ │ │ ├── userConfig │ │ │ │ └── config.xml │ │ │ ├── userConfigWithProf │ │ │ │ └── config.xml │ │ │ ├── vmwareConfigSettings │ │ │ │ └── config.xml │ │ │ └── xenConfigSettings │ │ │ │ └── config.xml │ │ ├── kiwiXMLDefStrip │ │ │ ├── invalid.xml │ │ │ └── valid.xml │ │ ├── kiwiXMLInfo │ │ │ └── config.xml │ │ └── kiwiXMLValidator │ │ │ ├── archiveUniqueInvalid_1.xml │ │ │ ├── archiveUniqueValid_1.xml │ │ │ ├── bootDescriptInvalid_1.xml │ │ │ ├── bootDescriptInvalid_2.xml │ │ │ ├── bootDescriptInvalid_3.xml │ │ │ ├── bootDescriptInvalid_4.xml │ │ │ ├── bootDescriptInvalid_5.xml │ │ │ ├── bootDescriptValid_1.xml │ │ │ ├── bootDescriptValid_2.xml │ │ │ ├── bootDescriptValid_3.xml │ │ │ ├── bootDescriptValid_4.xml │ │ │ ├── bootDescriptValid_5.xml │ │ │ ├── conflictInstallVerifyInvalid_1.xml │ │ │ ├── conflictInstallVerifyValid_1.xml │ │ │ ├── conflictInstallVerifyValid_2.xml │ │ │ ├── containerSpecInvalid_1.xml │ │ │ ├── containerSpecInvalid_2.xml │ │ │ ├── containerSpecValid_1.xml │ │ │ ├── defaultProfileInvalid_1.xml │ │ │ ├── defaultProfileValid_1.xml │ │ │ ├── defaultProfileValid_2.xml │ │ │ ├── defaultProfileValid_3.xml │ │ │ ├── defaultTypeInvalid_1.xml │ │ │ ├── defaultTypeInvalid_2.xml │ │ │ ├── defaultTypeValid_1.xml │ │ │ ├── defaultTypeValid_2.xml │ │ │ ├── defaultTypeValid_3.xml │ │ │ ├── deleteArchive.xml │ │ │ ├── deletePattern.xml │ │ │ ├── deleteProduct.xml │ │ │ ├── displayNameInvalid_1.xml │ │ │ ├── displayNameValid_1.xml │ │ │ ├── ec2IsInvalid_1.xml │ │ │ ├── ec2IsValid_1.xml │ │ │ ├── genericValid.xml │ │ │ ├── groupDefinitionInvalid_1.xml │ │ │ ├── groupDefinitionInvalid_2.xml │ │ │ ├── groupDefinitionValid_1.xml │ │ │ ├── groupDefinitionValid_2.xml │ │ │ ├── groupDefinitionValid_3.xml │ │ │ ├── httpsRepoCredentialsInvalid_1.xml │ │ │ ├── httpsRepoCredentialsInvalid_2.xml │ │ │ ├── httpsRepoCredentialsInvalid_3.xml │ │ │ ├── httpsRepoCredentialsInvalid_4.xml │ │ │ ├── httpsRepoCredentialsInvalid_5.xml │ │ │ ├── httpsRepoCredentialsInvalid_6.xml │ │ │ ├── httpsRepoCredentialsValid_1.xml │ │ │ ├── httpsRepoCredentialsValid_2.xml │ │ │ ├── httpsRepoCredentialsValid_3.xml │ │ │ ├── improperRevision.xml │ │ │ ├── missingFilesysAttrInvalid_1.xml │ │ │ ├── missingFilesysAttrInvalid_2.xml │ │ │ ├── missingFilesysAttrValid_1.xml │ │ │ ├── netIfaceUniqueInvalid_1.xml │ │ │ ├── netIfaceUniqueMACInvalid_1.xml │ │ │ ├── netIfaceUniqueMACValid_1.xml │ │ │ ├── netIfaceUniqueValid_1.xml │ │ │ ├── noBootVolumeInvalid_1.xml │ │ │ ├── noBootVolumeInvalid_2.xml │ │ │ ├── noBootVolumeValid_1.xml │ │ │ ├── noBootVolumeValid_2.xml │ │ │ ├── noBootVolumeValid_3.xml │ │ │ ├── noBootVolumeValid_4.xml │ │ │ ├── noIDSysGrp.xml │ │ │ ├── noProfsBootstrapInvalid_1.xml │ │ │ ├── oemPostDumpInvalid_1.xml │ │ │ ├── oemPostDumpInvalid_2.xml │ │ │ ├── oemPostDumpInvalid_3.xml │ │ │ ├── oemPostDumpInvalid_4.xml │ │ │ ├── oemPostDumpInvalid_5.xml │ │ │ ├── oemPostDumpInvalid_7.xml │ │ │ ├── oemPostDumpValid_1.xml │ │ │ ├── oemPostDumpValid_2.xml │ │ │ ├── oemPostDumpValid_3.xml │ │ │ ├── oemPostDumpValid_4.xml │ │ │ ├── oemPostDumpValid_5.xml │ │ │ ├── oemPostDumpValid_6.xml │ │ │ ├── oemPostDumpValid_7.xml │ │ │ ├── ovftypeInvalid_1.xml │ │ │ ├── ovftypeInvalid_2.xml │ │ │ ├── ovftypeInvalid_3.xml │ │ │ ├── ovftypeValid_1.xml │ │ │ ├── packageUniqueInvalid_1.xml │ │ │ ├── packageUniqueInvalid_2.xml │ │ │ ├── packageUniqueValid_1.xml │ │ │ ├── packageUniqueValid_2.xml │ │ │ ├── patternTattrConsInvalid_1.xml │ │ │ ├── patternTattrConsInvalid_2.xml │ │ │ ├── patternTattrConsValid_1.xml │ │ │ ├── patternTattrConsValid_2.xml │ │ │ ├── patternTattrConsValid_3.xml │ │ │ ├── patternTattrConsValid_4.xml │ │ │ ├── patternTattrUseInvalid_1.xml │ │ │ ├── patternTattrUseValid_1.xml │ │ │ ├── patternTattrUseValid_10.xml │ │ │ ├── patternTattrUseValid_2.xml │ │ │ ├── patternTattrUseValid_3.xml │ │ │ ├── patternTattrUseValid_4.xml │ │ │ ├── patternTattrUseValid_5.xml │ │ │ ├── patternTattrUseValid_6.xml │ │ │ ├── patternTattrUseValid_8.xml │ │ │ ├── patternTattrUseValid_9.xml │ │ │ ├── patternUniqueInvalid_1.xml │ │ │ ├── patternUniqueInvalid_2.xml │ │ │ ├── patternUniqueValid_1.xml │ │ │ ├── patternUniqueValid_2.xml │ │ │ ├── preferLicInvalid_1.xml │ │ │ ├── preferLicInvalid_2.xml │ │ │ ├── preferLicInvalid_3.xml │ │ │ ├── preferLicInvalid_4.xml │ │ │ ├── preferLicValid_1.xml │ │ │ ├── preferLicValid_2.xml │ │ │ ├── preferenceUniqueInvalid_1.xml │ │ │ ├── preferenceUniqueInvalid_2.xml │ │ │ ├── preferenceUniqueValid_1.xml │ │ │ ├── profileNameInvalid_1.xml │ │ │ ├── profileNameInvalid_2.xml │ │ │ ├── profileNameInvalid_3.xml │ │ │ ├── profileNameValid_1.xml │ │ │ ├── profileReferenceExistInvalid_1.xml │ │ │ ├── profileReferenceExistInvalid_2.xml │ │ │ ├── profileReferenceExistInvalid_3.xml │ │ │ ├── profileReferenceExistInvalid_4.xml │ │ │ ├── profileReferenceExistInvalid_5.xml │ │ │ ├── profileReferenceExistValid_1.xml │ │ │ ├── revision.txt │ │ │ ├── sysdiskVolAttrsInvalid_1.xml │ │ │ ├── sysdiskVolAttrsValid_1.xml │ │ │ ├── sysdiskWhitespaceInvalid_1.xml │ │ │ ├── sysdiskWhitespaceInvalid_2.xml │ │ │ ├── sysdiskWhitespaceValid_1.xml │ │ │ ├── sysdiskWhitespaceValid_2.xml │ │ │ ├── typeConfigConsistInvalid_1.xml │ │ │ ├── typeConfigConsistInvalid_2.xml │ │ │ ├── typeConfigConsistValid_1.xml │ │ │ ├── typeConfigConsistValid_2.xml │ │ │ ├── typeConfigConsistValid_4.xml │ │ │ ├── typeInstMediaInvalid_1.xml │ │ │ ├── typeInstMediaInvalid_2.xml │ │ │ ├── typeInstMediaValid_1.xml │ │ │ ├── typeInstMediaValid_2.xml │ │ │ ├── typeInstMediaValid_3.xml │ │ │ ├── typeInstMediaValid_4.xml │ │ │ ├── typeInstMediaValid_5.xml │ │ │ ├── typePcksTypeExistsInvalid_1.xml │ │ │ ├── typePcksTypeExistsInvalid_2.xml │ │ │ ├── typePcksTypeExistsInvalid_3.xml │ │ │ ├── typePcksTypeExistsValid_1.xml │ │ │ ├── typeUniqueInvalid_1.xml │ │ │ ├── typeUniqueInvalid_2.xml │ │ │ ├── userDefinitionInvalid_1.xml │ │ │ ├── userDefinitionInvalid_10.xml │ │ │ ├── userDefinitionInvalid_11.xml │ │ │ ├── userDefinitionInvalid_2.xml │ │ │ ├── userDefinitionInvalid_3.xml │ │ │ ├── userDefinitionInvalid_4.xml │ │ │ ├── userDefinitionInvalid_5.xml │ │ │ ├── userDefinitionInvalid_6.xml │ │ │ ├── userDefinitionInvalid_7.xml │ │ │ ├── userDefinitionInvalid_8.xml │ │ │ ├── userDefinitionInvalid_9.xml │ │ │ ├── userDefinitionValid_1.xml │ │ │ ├── userDefinitionValid_2.xml │ │ │ ├── versionFormatInvalid_1.xml │ │ │ ├── versionFormatInvalid_2.xml │ │ │ ├── versionFormatInvalid_3.xml │ │ │ ├── versionFormatInvalid_4.xml │ │ │ ├── volNameNonUnique.xml │ │ │ ├── volumeWhitespaceInvalid_1.xml │ │ │ ├── volumeWhitespaceInvalid_2.xml │ │ │ ├── volumeWhitespaceValid_1.xml │ │ │ └── volumeWhitespaceValid_2.xml │ ├── lib │ │ ├── Common │ │ │ ├── ktLog.pm │ │ │ └── ktTestCase.pm │ │ └── Test │ │ │ ├── kiwiACIConfigWriter.pm │ │ │ ├── kiwiCommandLine.pm │ │ │ ├── kiwiConfigWriterFactory.pm │ │ │ ├── kiwiContainerBuilder.pm │ │ │ ├── kiwiContainerConfigWriter.pm │ │ │ ├── kiwiFilesystemOptions.pm │ │ │ ├── kiwiImage.pm │ │ │ ├── kiwiImageBuildFactory.pm │ │ │ ├── kiwiImageBuilderBase.pm │ │ │ ├── kiwiImageCreator.pm │ │ │ ├── kiwiLocator.pm │ │ │ ├── kiwiOVFConfigWriter.pm │ │ │ ├── kiwiProfileFile.pm │ │ │ ├── kiwiRuntimeChecker.pm │ │ │ ├── kiwiTarArchiveBuilder.pm │ │ │ ├── kiwiXML.pm │ │ │ ├── kiwiXMLDefStripData.pm │ │ │ ├── kiwiXMLDescriptionData.pm │ │ │ ├── kiwiXMLDriverData.pm │ │ │ ├── kiwiXMLExceptData.pm │ │ │ ├── kiwiXMLFileData.pm │ │ │ ├── kiwiXMLInfo.pm │ │ │ ├── kiwiXMLInstRepositoryData.pm │ │ │ ├── kiwiXMLOEMConfigData.pm │ │ │ ├── kiwiXMLPXEDeployConfigData.pm │ │ │ ├── kiwiXMLPXEDeployData.pm │ │ │ ├── kiwiXMLPackageArchiveData.pm │ │ │ ├── kiwiXMLPackageCollectData.pm │ │ │ ├── kiwiXMLPackageData.pm │ │ │ ├── kiwiXMLPackageIgnoreData.pm │ │ │ ├── kiwiXMLPackageProductData.pm │ │ │ ├── kiwiXMLPreferenceData.pm │ │ │ ├── kiwiXMLProductArchitectureData.pm │ │ │ ├── kiwiXMLProductMetaChrootData.pm │ │ │ ├── kiwiXMLProductMetaFileData.pm │ │ │ ├── kiwiXMLProductOptionsData.pm │ │ │ ├── kiwiXMLProductPackageData.pm │ │ │ ├── kiwiXMLProfileData.pm │ │ │ ├── kiwiXMLRepositoryData.pm │ │ │ ├── kiwiXMLSplitData.pm │ │ │ ├── kiwiXMLStripData.pm │ │ │ ├── kiwiXMLSystemdiskData.pm │ │ │ ├── kiwiXMLTypeData.pm │ │ │ ├── kiwiXMLUserData.pm │ │ │ ├── kiwiXMLVMachineData.pm │ │ │ ├── kiwiXMLVagrantConfigData.pm │ │ │ └── kiwiXMLValidator.pm │ └── refresults │ │ ├── basicVMWare.ovf.aarch64 │ │ ├── basicVMWare.ovf.armv5el │ │ ├── basicVMWare.ovf.armv5tel │ │ ├── basicVMWare.ovf.armv6l │ │ ├── basicVMWare.ovf.armv7l │ │ ├── basicVMWare.ovf.i686 │ │ ├── basicVMWare.ovf.ia64 │ │ ├── basicVMWare.ovf.m68k │ │ ├── basicVMWare.ovf.ppc │ │ ├── basicVMWare.ovf.ppc64 │ │ ├── basicVMWare.ovf.ppc64le │ │ ├── basicVMWare.ovf.s390 │ │ ├── basicVMWare.ovf.s390x │ │ ├── basicVMWare.ovf.x86_64 │ │ ├── dvdIdeVMWare.ovf.aarch64 │ │ ├── dvdIdeVMWare.ovf.armv5el │ │ ├── dvdIdeVMWare.ovf.armv5tel │ │ ├── dvdIdeVMWare.ovf.armv6l │ │ ├── dvdIdeVMWare.ovf.armv7l │ │ ├── dvdIdeVMWare.ovf.i686 │ │ ├── dvdIdeVMWare.ovf.ia64 │ │ ├── dvdIdeVMWare.ovf.m68k │ │ ├── dvdIdeVMWare.ovf.ppc │ │ ├── dvdIdeVMWare.ovf.ppc64 │ │ ├── dvdIdeVMWare.ovf.ppc64le │ │ ├── dvdIdeVMWare.ovf.s390 │ │ ├── dvdIdeVMWare.ovf.s390x │ │ ├── dvdIdeVMWare.ovf.x86_64 │ │ ├── dvdScsiVMWare.ovf.aarch64 │ │ ├── dvdScsiVMWare.ovf.armv5el │ │ ├── dvdScsiVMWare.ovf.armv5tel │ │ ├── dvdScsiVMWare.ovf.armv6l │ │ ├── dvdScsiVMWare.ovf.armv7l │ │ ├── dvdScsiVMWare.ovf.i686 │ │ ├── dvdScsiVMWare.ovf.ia64 │ │ ├── dvdScsiVMWare.ovf.m68k │ │ ├── dvdScsiVMWare.ovf.ppc │ │ ├── dvdScsiVMWare.ovf.ppc64 │ │ ├── dvdScsiVMWare.ovf.ppc64le │ │ ├── dvdScsiVMWare.ovf.s390 │ │ ├── dvdScsiVMWare.ovf.s390x │ │ ├── dvdScsiVMWare.ovf.x86_64 │ │ ├── genericOSVMWare.ovf.aarch64 │ │ ├── genericOSVMWare.ovf.armv5el │ │ ├── genericOSVMWare.ovf.armv5tel │ │ ├── genericOSVMWare.ovf.armv6l │ │ ├── genericOSVMWare.ovf.armv7l │ │ ├── genericOSVMWare.ovf.i686 │ │ ├── genericOSVMWare.ovf.ia64 │ │ ├── genericOSVMWare.ovf.m68k │ │ ├── genericOSVMWare.ovf.ppc │ │ ├── genericOSVMWare.ovf.ppc64 │ │ ├── genericOSVMWare.ovf.ppc64le │ │ ├── genericOSVMWare.ovf.s390 │ │ ├── genericOSVMWare.ovf.s390x │ │ ├── genericOSVMWare.ovf.x86_64 │ │ ├── hwEightVMWare.ovf.aarch64 │ │ ├── hwEightVMWare.ovf.armv5el │ │ ├── hwEightVMWare.ovf.armv5tel │ │ ├── hwEightVMWare.ovf.armv6l │ │ ├── hwEightVMWare.ovf.armv7l │ │ ├── hwEightVMWare.ovf.i686 │ │ ├── hwEightVMWare.ovf.ia64 │ │ ├── hwEightVMWare.ovf.m68k │ │ ├── hwEightVMWare.ovf.ppc │ │ ├── hwEightVMWare.ovf.ppc64 │ │ ├── hwEightVMWare.ovf.ppc64le │ │ ├── hwEightVMWare.ovf.s390 │ │ ├── hwEightVMWare.ovf.s390x │ │ ├── hwEightVMWare.ovf.x86_64 │ │ ├── ideCntrlVMWare.ovf.aarch64 │ │ ├── ideCntrlVMWare.ovf.armv5el │ │ ├── ideCntrlVMWare.ovf.armv5tel │ │ ├── ideCntrlVMWare.ovf.armv6l │ │ ├── ideCntrlVMWare.ovf.armv7l │ │ ├── ideCntrlVMWare.ovf.i686 │ │ ├── ideCntrlVMWare.ovf.ia64 │ │ ├── ideCntrlVMWare.ovf.m68k │ │ ├── ideCntrlVMWare.ovf.ppc │ │ ├── ideCntrlVMWare.ovf.ppc64 │ │ ├── ideCntrlVMWare.ovf.ppc64le │ │ ├── ideCntrlVMWare.ovf.s390 │ │ ├── ideCntrlVMWare.ovf.s390x │ │ ├── ideCntrlVMWare.ovf.x86_64 │ │ ├── maxCPUVMWare.ovf.aarch64 │ │ ├── maxCPUVMWare.ovf.armv5el │ │ ├── maxCPUVMWare.ovf.armv5tel │ │ ├── maxCPUVMWare.ovf.armv6l │ │ ├── maxCPUVMWare.ovf.armv7l │ │ ├── maxCPUVMWare.ovf.i686 │ │ ├── maxCPUVMWare.ovf.ia64 │ │ ├── maxCPUVMWare.ovf.m68k │ │ ├── maxCPUVMWare.ovf.ppc │ │ ├── maxCPUVMWare.ovf.ppc64 │ │ ├── maxCPUVMWare.ovf.ppc64le │ │ ├── maxCPUVMWare.ovf.s390 │ │ ├── maxCPUVMWare.ovf.s390x │ │ ├── maxCPUVMWare.ovf.x86_64 │ │ ├── maxMemoryVMWare.ovf.aarch64 │ │ ├── maxMemoryVMWare.ovf.armv5el │ │ ├── maxMemoryVMWare.ovf.armv5tel │ │ ├── maxMemoryVMWare.ovf.armv6l │ │ ├── maxMemoryVMWare.ovf.armv7l │ │ ├── maxMemoryVMWare.ovf.i686 │ │ ├── maxMemoryVMWare.ovf.ia64 │ │ ├── maxMemoryVMWare.ovf.m68k │ │ ├── maxMemoryVMWare.ovf.ppc │ │ ├── maxMemoryVMWare.ovf.ppc64 │ │ ├── maxMemoryVMWare.ovf.ppc64le │ │ ├── maxMemoryVMWare.ovf.s390 │ │ ├── maxMemoryVMWare.ovf.s390x │ │ ├── maxMemoryVMWare.ovf.x86_64 │ │ ├── minCPUVMWare.ovf.aarch64 │ │ ├── minCPUVMWare.ovf.armv5el │ │ ├── minCPUVMWare.ovf.armv5tel │ │ ├── minCPUVMWare.ovf.armv6l │ │ ├── minCPUVMWare.ovf.armv7l │ │ ├── minCPUVMWare.ovf.i686 │ │ ├── minCPUVMWare.ovf.ia64 │ │ ├── minCPUVMWare.ovf.m68k │ │ ├── minCPUVMWare.ovf.ppc │ │ ├── minCPUVMWare.ovf.ppc64 │ │ ├── minCPUVMWare.ovf.ppc64le │ │ ├── minCPUVMWare.ovf.s390 │ │ ├── minCPUVMWare.ovf.s390x │ │ ├── minCPUVMWare.ovf.x86_64 │ │ ├── minMaxCPUVMWare.ovf.aarch64 │ │ ├── minMaxCPUVMWare.ovf.armv5el │ │ ├── minMaxCPUVMWare.ovf.armv5tel │ │ ├── minMaxCPUVMWare.ovf.armv6l │ │ ├── minMaxCPUVMWare.ovf.armv7l │ │ ├── minMaxCPUVMWare.ovf.i686 │ │ ├── minMaxCPUVMWare.ovf.ia64 │ │ ├── minMaxCPUVMWare.ovf.m68k │ │ ├── minMaxCPUVMWare.ovf.ppc │ │ ├── minMaxCPUVMWare.ovf.ppc64 │ │ ├── minMaxCPUVMWare.ovf.ppc64le │ │ ├── minMaxCPUVMWare.ovf.s390 │ │ ├── minMaxCPUVMWare.ovf.s390x │ │ ├── minMaxCPUVMWare.ovf.x86_64 │ │ ├── minMaxMemoryVMWare.ovf.aarch64 │ │ ├── minMaxMemoryVMWare.ovf.armv5el │ │ ├── minMaxMemoryVMWare.ovf.armv5tel │ │ ├── minMaxMemoryVMWare.ovf.armv6l │ │ ├── minMaxMemoryVMWare.ovf.armv7l │ │ ├── minMaxMemoryVMWare.ovf.i686 │ │ ├── minMaxMemoryVMWare.ovf.ia64 │ │ ├── minMaxMemoryVMWare.ovf.m68k │ │ ├── minMaxMemoryVMWare.ovf.ppc │ │ ├── minMaxMemoryVMWare.ovf.ppc64 │ │ ├── minMaxMemoryVMWare.ovf.ppc64le │ │ ├── minMaxMemoryVMWare.ovf.s390 │ │ ├── minMaxMemoryVMWare.ovf.s390x │ │ ├── minMaxMemoryVMWare.ovf.x86_64 │ │ ├── minMemoryVMWare.ovf.aarch64 │ │ ├── minMemoryVMWare.ovf.armv5el │ │ ├── minMemoryVMWare.ovf.armv5tel │ │ ├── minMemoryVMWare.ovf.armv6l │ │ ├── minMemoryVMWare.ovf.armv7l │ │ ├── minMemoryVMWare.ovf.i686 │ │ ├── minMemoryVMWare.ovf.ia64 │ │ ├── minMemoryVMWare.ovf.m68k │ │ ├── minMemoryVMWare.ovf.ppc │ │ ├── minMemoryVMWare.ovf.ppc64 │ │ ├── minMemoryVMWare.ovf.ppc64le │ │ ├── minMemoryVMWare.ovf.s390 │ │ ├── minMemoryVMWare.ovf.s390x │ │ ├── minMemoryVMWare.ovf.x86_64 │ │ ├── multiNICVMWare.ovf.aarch64 │ │ ├── multiNICVMWare.ovf.armv5el │ │ ├── multiNICVMWare.ovf.armv5tel │ │ ├── multiNICVMWare.ovf.armv6l │ │ ├── multiNICVMWare.ovf.armv7l │ │ ├── multiNICVMWare.ovf.i686 │ │ ├── multiNICVMWare.ovf.ia64 │ │ ├── multiNICVMWare.ovf.m68k │ │ ├── multiNICVMWare.ovf.ppc │ │ ├── multiNICVMWare.ovf.ppc64 │ │ ├── multiNICVMWare.ovf.ppc64le │ │ ├── multiNICVMWare.ovf.s390 │ │ ├── multiNICVMWare.ovf.s390x │ │ ├── multiNICVMWare.ovf.x86_64 │ │ ├── noCPUVMWare.ovf.aarch64 │ │ ├── noCPUVMWare.ovf.armv5el │ │ ├── noCPUVMWare.ovf.armv5tel │ │ ├── noCPUVMWare.ovf.armv6l │ │ ├── noCPUVMWare.ovf.armv7l │ │ ├── noCPUVMWare.ovf.i686 │ │ ├── noCPUVMWare.ovf.ia64 │ │ ├── noCPUVMWare.ovf.m68k │ │ ├── noCPUVMWare.ovf.ppc │ │ ├── noCPUVMWare.ovf.ppc64 │ │ ├── noCPUVMWare.ovf.ppc64le │ │ ├── noCPUVMWare.ovf.s390 │ │ ├── noCPUVMWare.ovf.s390x │ │ ├── noCPUVMWare.ovf.x86_64 │ │ ├── noDiskCntrlVMWare.ovf.aarch64 │ │ ├── noDiskCntrlVMWare.ovf.armv5el │ │ ├── noDiskCntrlVMWare.ovf.armv5tel │ │ ├── noDiskCntrlVMWare.ovf.armv6l │ │ ├── noDiskCntrlVMWare.ovf.armv7l │ │ ├── noDiskCntrlVMWare.ovf.i686 │ │ ├── noDiskCntrlVMWare.ovf.ia64 │ │ ├── noDiskCntrlVMWare.ovf.m68k │ │ ├── noDiskCntrlVMWare.ovf.ppc │ │ ├── noDiskCntrlVMWare.ovf.ppc64 │ │ ├── noDiskCntrlVMWare.ovf.ppc64le │ │ ├── noDiskCntrlVMWare.ovf.s390 │ │ ├── noDiskCntrlVMWare.ovf.s390x │ │ ├── noDiskCntrlVMWare.ovf.x86_64 │ │ ├── noDiskCrtlVMWare.ovf.aarch64 │ │ ├── noDiskCrtlVMWare.ovf.armv5el │ │ ├── noDiskCrtlVMWare.ovf.armv5tel │ │ ├── noDiskCrtlVMWare.ovf.armv6l │ │ ├── noDiskCrtlVMWare.ovf.armv7l │ │ ├── noDiskCrtlVMWare.ovf.i686 │ │ ├── noDiskCrtlVMWare.ovf.ia64 │ │ ├── noDiskCrtlVMWare.ovf.m68k │ │ ├── noDiskCrtlVMWare.ovf.ppc │ │ ├── noDiskCrtlVMWare.ovf.ppc64 │ │ ├── noDiskCrtlVMWare.ovf.ppc64le │ │ ├── noDiskCrtlVMWare.ovf.s390 │ │ ├── noDiskCrtlVMWare.ovf.s390x │ │ ├── noDiskCrtlVMWare.ovf.x86_64 │ │ ├── noMemoryVMWare.ovf.aarch64 │ │ ├── noMemoryVMWare.ovf.armv5el │ │ ├── noMemoryVMWare.ovf.armv5tel │ │ ├── noMemoryVMWare.ovf.armv6l │ │ ├── noMemoryVMWare.ovf.armv7l │ │ ├── noMemoryVMWare.ovf.i686 │ │ ├── noMemoryVMWare.ovf.ia64 │ │ ├── noMemoryVMWare.ovf.m68k │ │ ├── noMemoryVMWare.ovf.ppc │ │ ├── noMemoryVMWare.ovf.ppc64 │ │ ├── noMemoryVMWare.ovf.ppc64le │ │ ├── noMemoryVMWare.ovf.s390 │ │ ├── noMemoryVMWare.ovf.s390x │ │ ├── noMemoryVMWare.ovf.x86_64 │ │ ├── power.ovf.aarch64 │ │ ├── power.ovf.armv5el │ │ ├── power.ovf.armv5tel │ │ ├── power.ovf.armv6l │ │ ├── power.ovf.armv7l │ │ ├── power.ovf.i686 │ │ ├── power.ovf.ia64 │ │ ├── power.ovf.m68k │ │ ├── power.ovf.ppc │ │ ├── power.ovf.ppc64 │ │ ├── power.ovf.ppc64le │ │ ├── power.ovf.s390 │ │ ├── power.ovf.s390x │ │ ├── power.ovf.x86_64 │ │ ├── rhel-64_OSVMWare.ovf.aarch64 │ │ ├── rhel-64_OSVMWare.ovf.armv5el │ │ ├── rhel-64_OSVMWare.ovf.armv5tel │ │ ├── rhel-64_OSVMWare.ovf.armv6l │ │ ├── rhel-64_OSVMWare.ovf.armv7l │ │ ├── rhel-64_OSVMWare.ovf.i686 │ │ ├── rhel-64_OSVMWare.ovf.ia64 │ │ ├── rhel-64_OSVMWare.ovf.m68k │ │ ├── rhel-64_OSVMWare.ovf.ppc │ │ ├── rhel-64_OSVMWare.ovf.ppc64 │ │ ├── rhel-64_OSVMWare.ovf.ppc64le │ │ ├── rhel-64_OSVMWare.ovf.s390 │ │ ├── rhel-64_OSVMWare.ovf.s390x │ │ ├── rhel-64_OSVMWare.ovf.x86_64 │ │ ├── rhel_OSVMWare.ovf.aarch64 │ │ ├── rhel_OSVMWare.ovf.armv5el │ │ ├── rhel_OSVMWare.ovf.armv5tel │ │ ├── rhel_OSVMWare.ovf.armv6l │ │ ├── rhel_OSVMWare.ovf.armv7l │ │ ├── rhel_OSVMWare.ovf.i686 │ │ ├── rhel_OSVMWare.ovf.ia64 │ │ ├── rhel_OSVMWare.ovf.m68k │ │ ├── rhel_OSVMWare.ovf.ppc │ │ ├── rhel_OSVMWare.ovf.ppc64 │ │ ├── rhel_OSVMWare.ovf.ppc64le │ │ ├── rhel_OSVMWare.ovf.s390 │ │ ├── rhel_OSVMWare.ovf.s390x │ │ ├── rhel_OSVMWare.ovf.x86_64 │ │ ├── sles-64_OSVMWare.ovf.aarch64 │ │ ├── sles-64_OSVMWare.ovf.armv5el │ │ ├── sles-64_OSVMWare.ovf.armv5tel │ │ ├── sles-64_OSVMWare.ovf.armv6l │ │ ├── sles-64_OSVMWare.ovf.armv7l │ │ ├── sles-64_OSVMWare.ovf.i686 │ │ ├── sles-64_OSVMWare.ovf.ia64 │ │ ├── sles-64_OSVMWare.ovf.m68k │ │ ├── sles-64_OSVMWare.ovf.ppc │ │ ├── sles-64_OSVMWare.ovf.ppc64 │ │ ├── sles-64_OSVMWare.ovf.ppc64le │ │ ├── sles-64_OSVMWare.ovf.s390 │ │ ├── sles-64_OSVMWare.ovf.s390x │ │ ├── sles-64_OSVMWare.ovf.x86_64 │ │ ├── sles_OSVMWare.ovf.aarch64 │ │ ├── sles_OSVMWare.ovf.armv5el │ │ ├── sles_OSVMWare.ovf.armv5tel │ │ ├── sles_OSVMWare.ovf.armv6l │ │ ├── sles_OSVMWare.ovf.armv7l │ │ ├── sles_OSVMWare.ovf.i686 │ │ ├── sles_OSVMWare.ovf.ia64 │ │ ├── sles_OSVMWare.ovf.m68k │ │ ├── sles_OSVMWare.ovf.ppc │ │ ├── sles_OSVMWare.ovf.ppc64 │ │ ├── sles_OSVMWare.ovf.ppc64le │ │ ├── sles_OSVMWare.ovf.s390 │ │ ├── sles_OSVMWare.ovf.s390x │ │ ├── sles_OSVMWare.ovf.x86_64 │ │ ├── suse-64_OSVMWare.ovf.aarch64 │ │ ├── suse-64_OSVMWare.ovf.armv5el │ │ ├── suse-64_OSVMWare.ovf.armv5tel │ │ ├── suse-64_OSVMWare.ovf.armv6l │ │ ├── suse-64_OSVMWare.ovf.armv7l │ │ ├── suse-64_OSVMWare.ovf.i686 │ │ ├── suse-64_OSVMWare.ovf.ia64 │ │ ├── suse-64_OSVMWare.ovf.m68k │ │ ├── suse-64_OSVMWare.ovf.ppc │ │ ├── suse-64_OSVMWare.ovf.ppc64 │ │ ├── suse-64_OSVMWare.ovf.ppc64le │ │ ├── suse-64_OSVMWare.ovf.s390 │ │ ├── suse-64_OSVMWare.ovf.s390x │ │ ├── suse-64_OSVMWare.ovf.x86_64 │ │ ├── suse_OSVMWare.ovf.aarch64 │ │ ├── suse_OSVMWare.ovf.armv5el │ │ ├── suse_OSVMWare.ovf.armv5tel │ │ ├── suse_OSVMWare.ovf.armv6l │ │ ├── suse_OSVMWare.ovf.armv7l │ │ ├── suse_OSVMWare.ovf.i686 │ │ ├── suse_OSVMWare.ovf.ia64 │ │ ├── suse_OSVMWare.ovf.m68k │ │ ├── suse_OSVMWare.ovf.ppc │ │ ├── suse_OSVMWare.ovf.ppc64 │ │ ├── suse_OSVMWare.ovf.ppc64le │ │ ├── suse_OSVMWare.ovf.s390 │ │ ├── suse_OSVMWare.ovf.s390x │ │ ├── suse_OSVMWare.ovf.x86_64 │ │ ├── virtualboxGuestOSConfig.ovf.aarch64 │ │ ├── virtualboxGuestOSConfig.ovf.armv5el │ │ ├── virtualboxGuestOSConfig.ovf.armv5tel │ │ ├── virtualboxGuestOSConfig.ovf.armv6l │ │ ├── virtualboxGuestOSConfig.ovf.armv7l │ │ ├── virtualboxGuestOSConfig.ovf.i686 │ │ ├── virtualboxGuestOSConfig.ovf.ia64 │ │ ├── virtualboxGuestOSConfig.ovf.m68k │ │ ├── virtualboxGuestOSConfig.ovf.ppc │ │ ├── virtualboxGuestOSConfig.ovf.ppc64 │ │ ├── virtualboxGuestOSConfig.ovf.ppc64le │ │ ├── virtualboxGuestOSConfig.ovf.s390 │ │ ├── virtualboxGuestOSConfig.ovf.s390x │ │ ├── virtualboxGuestOSConfig.ovf.x86_64 │ │ ├── xen.ovf.aarch64 │ │ ├── xen.ovf.armv5el │ │ ├── xen.ovf.armv5tel │ │ ├── xen.ovf.armv6l │ │ ├── xen.ovf.armv7l │ │ ├── xen.ovf.i686 │ │ ├── xen.ovf.ia64 │ │ ├── xen.ovf.m68k │ │ ├── xen.ovf.ppc │ │ ├── xen.ovf.ppc64 │ │ ├── xen.ovf.ppc64le │ │ ├── xen.ovf.s390 │ │ ├── xen.ovf.s390x │ │ ├── xen.ovf.x86_64 │ │ ├── zvm.ovf.aarch64 │ │ ├── zvm.ovf.armv5el │ │ ├── zvm.ovf.armv5tel │ │ ├── zvm.ovf.armv6l │ │ ├── zvm.ovf.armv7l │ │ ├── zvm.ovf.i686 │ │ ├── zvm.ovf.ia64 │ │ ├── zvm.ovf.m68k │ │ ├── zvm.ovf.ppc │ │ ├── zvm.ovf.ppc64 │ │ ├── zvm.ovf.ppc64le │ │ ├── zvm.ovf.s390 │ │ ├── zvm.ovf.s390x │ │ └── zvm.ovf.x86_64 └── writeTester ├── tools ├── Makefile ├── README ├── bootnext │ ├── Makefile │ ├── README │ └── bootnext.asm ├── burner │ └── README.md ├── dcounter │ ├── Makefile │ └── dcounter.c ├── driveready │ ├── Makefile │ └── driveready.c ├── init │ └── boot.xen ├── isconsole │ ├── Makefile │ └── isconsole.c ├── klogconsole │ ├── Makefile │ └── klogconsole.c ├── kversion │ ├── Makefile │ └── kversion.c ├── livestick │ ├── livestick │ └── theme │ │ └── upstream │ │ ├── booting.tgz │ │ └── tooling.tgz ├── setctsid │ ├── Makefile │ └── setctsid.c ├── startshell │ ├── Makefile │ └── startshell.c └── utimer │ ├── Makefile │ └── utimer.c └── xsl ├── convert14to20.xsl ├── convert20to24.xsl ├── convert24to35.xsl ├── convert35to37.xsl ├── convert37to38.xsl ├── convert38to39.xsl ├── convert39to41.xsl ├── convert41to42.xsl ├── convert42to43.xsl ├── convert43to44.xsl ├── convert44to45.xsl ├── convert45to46.xsl ├── convert46to47.xsl ├── convert47to48.xsl ├── convert48to49.xsl ├── convert49to50.xsl ├── convert50to51.xsl ├── convert51to52.xsl ├── convert52to53.xsl ├── convert53to54.xsl ├── convert54to55.xsl ├── convert55to56.xsl ├── convert56to57.xsl ├── convert57to58.xsl ├── convert58to59.xsl ├── convert59to60.xsl ├── convert60to61.xsl ├── convert61to62.xsl ├── master.xsl ├── pretty.xsl └── print.xsl /.archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.archive -------------------------------------------------------------------------------- /.catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.catalog.xml -------------------------------------------------------------------------------- /.changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.changelog -------------------------------------------------------------------------------- /.doit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.doit -------------------------------------------------------------------------------- /.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.filter -------------------------------------------------------------------------------- /.git-hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.git-hooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.links -------------------------------------------------------------------------------- /.lutime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.lutime -------------------------------------------------------------------------------- /.newrelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.newrelease -------------------------------------------------------------------------------- /.newversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.newversion -------------------------------------------------------------------------------- /.perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.perlcriticrc -------------------------------------------------------------------------------- /.perlmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.perlmodules -------------------------------------------------------------------------------- /.releasetags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.releasetags -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/.travis.yml -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | git log | head -n 1 | cut -f2 -d" " 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/README.rst -------------------------------------------------------------------------------- /doc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/COPYING -------------------------------------------------------------------------------- /doc/docbook/DC-kiwi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/DC-kiwi -------------------------------------------------------------------------------- /doc/docbook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/Makefile -------------------------------------------------------------------------------- /doc/docbook/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/README -------------------------------------------------------------------------------- /doc/docbook/etc/fop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/etc/fop.xml -------------------------------------------------------------------------------- /doc/docbook/images/activation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/activation.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/1.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/10.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/11.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/12.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/13.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/14.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/15.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/2.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/3.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/4.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/5.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/6.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/7.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/8.png -------------------------------------------------------------------------------- /doc/docbook/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/callouts/9.png -------------------------------------------------------------------------------- /doc/docbook/images/description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/description.png -------------------------------------------------------------------------------- /doc/docbook/images/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/intro.png -------------------------------------------------------------------------------- /doc/docbook/images/maintain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/maintain.png -------------------------------------------------------------------------------- /doc/docbook/images/nbboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/nbboot.png -------------------------------------------------------------------------------- /doc/docbook/images/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/source.png -------------------------------------------------------------------------------- /doc/docbook/images/src/fig/activation.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/src/fig/activation.fig -------------------------------------------------------------------------------- /doc/docbook/images/src/fig/intro.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/src/fig/intro.fig -------------------------------------------------------------------------------- /doc/docbook/images/src/fig/maintain.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/src/fig/maintain.fig -------------------------------------------------------------------------------- /doc/docbook/images/src/fig/nbboot.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/src/fig/nbboot.fig -------------------------------------------------------------------------------- /doc/docbook/images/src/fig/source.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/src/fig/source.fig -------------------------------------------------------------------------------- /doc/docbook/images/src/fig/types.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/src/fig/types.fig -------------------------------------------------------------------------------- /doc/docbook/images/src/svg/cache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/src/svg/cache.svg -------------------------------------------------------------------------------- /doc/docbook/images/types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/images/types.png -------------------------------------------------------------------------------- /doc/docbook/xml/Revision.txt: -------------------------------------------------------------------------------- 1 | 7.03 -------------------------------------------------------------------------------- /doc/docbook/xml/entity-decl.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/entity-decl.ent -------------------------------------------------------------------------------- /doc/docbook/xml/gfdl1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/gfdl1.2.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-appendix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-appendix.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-appliance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-appliance.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-bootserver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-bootserver.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-caches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-caches.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-contributors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-contributors.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-description.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-docker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-docker.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-installation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-installation.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-introduction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-introduction.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-iso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-iso.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-license.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-license.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-lukssupport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-lukssupport.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-lvmsupport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-lvmsupport.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-maintenance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-maintenance.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-migrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-migrate.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-oem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-oem.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-pxe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-pxe.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-raidsupport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-raidsupport.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-signkey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-signkey.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-vagrant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-vagrant.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-vmx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-vmx.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-workflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-workflow.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc-xen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc-xen.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-doc.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-man-config.sh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-man-config.sh.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-man-images.sh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-man-images.sh.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-man-kiwirc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-man-kiwirc.xml -------------------------------------------------------------------------------- /doc/docbook/xml/kiwi-man.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xml/kiwi-man.xml -------------------------------------------------------------------------------- /doc/docbook/xslt/fo/docbook.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xslt/fo/docbook.xsl -------------------------------------------------------------------------------- /doc/docbook/xslt/html/docbook.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xslt/html/docbook.xsl -------------------------------------------------------------------------------- /doc/docbook/xslt/html/formal.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xslt/html/formal.xsl -------------------------------------------------------------------------------- /doc/docbook/xslt/html/sections.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xslt/html/sections.xsl -------------------------------------------------------------------------------- /doc/docbook/xslt/profiling/db4index.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/docbook/xslt/profiling/db4index.xsl -------------------------------------------------------------------------------- /doc/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/examples/README -------------------------------------------------------------------------------- /doc/examples/extras/suse-13.1/suse-aci-container/root/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/examples/extras/suse-13.1/suse-vagrant-box/root/etc/motd: -------------------------------------------------------------------------------- 1 | This is the Lime-JeOS 13.1 vagrant box. 2 | Have a lot of fun... 3 | -------------------------------------------------------------------------------- /doc/examples/extras/suse-SLES11/suse-vagrant-box/root/etc/motd: -------------------------------------------------------------------------------- 1 | This is the SLES11SP3 vagrant box. 2 | Have a lot of fun... 3 | -------------------------------------------------------------------------------- /doc/examples/suse-13.1/suse-docker-container/root/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/html/images: -------------------------------------------------------------------------------- 1 | ../docbook/images -------------------------------------------------------------------------------- /doc/html/index.html: -------------------------------------------------------------------------------- 1 | kiwi.html -------------------------------------------------------------------------------- /doc/html/kiwi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/html/kiwi.html -------------------------------------------------------------------------------- /doc/html/susebooks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/html/susebooks.css -------------------------------------------------------------------------------- /doc/man/KIWI::config.sh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/man/KIWI::config.sh.1 -------------------------------------------------------------------------------- /doc/man/KIWI::images.sh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/man/KIWI::images.sh.1 -------------------------------------------------------------------------------- /doc/man/KIWI::kiwirc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/man/KIWI::kiwirc.1 -------------------------------------------------------------------------------- /doc/man/kiwi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/man/kiwi.1 -------------------------------------------------------------------------------- /doc/pdf/kiwi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/pdf/kiwi.pdf -------------------------------------------------------------------------------- /doc/schema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/Makefile -------------------------------------------------------------------------------- /doc/schema/XMLSchema-instance_xsd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/XMLSchema-instance_xsd.html -------------------------------------------------------------------------------- /doc/schema/docHtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/docHtml.css -------------------------------------------------------------------------------- /doc/schema/img/Cycle12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/Cycle12.png -------------------------------------------------------------------------------- /doc/schema/img/HierarchyArrow12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/HierarchyArrow12.jpg -------------------------------------------------------------------------------- /doc/schema/img/Import12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/Import12.gif -------------------------------------------------------------------------------- /doc/schema/img/Include12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/Include12.gif -------------------------------------------------------------------------------- /doc/schema/img/Override12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/Override12.gif -------------------------------------------------------------------------------- /doc/schema/img/Redefine12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/Redefine12.gif -------------------------------------------------------------------------------- /doc/schema/img/btM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/btM.gif -------------------------------------------------------------------------------- /doc/schema/img/btP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/btP.gif -------------------------------------------------------------------------------- /doc/schema/img/cBL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/cBL.gif -------------------------------------------------------------------------------- /doc/schema/img/cBR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/cBR.gif -------------------------------------------------------------------------------- /doc/schema/img/cTL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/cTL.gif -------------------------------------------------------------------------------- /doc/schema/img/cTR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/cTR.gif -------------------------------------------------------------------------------- /doc/schema/img/hierarchy_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/hierarchy_arrow.gif -------------------------------------------------------------------------------- /doc/schema/img/kiwi_xsd_Element_arch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/kiwi_xsd_Element_arch.jpeg -------------------------------------------------------------------------------- /doc/schema/img/kiwi_xsd_Element_file.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/kiwi_xsd_Element_file.jpeg -------------------------------------------------------------------------------- /doc/schema/img/kiwi_xsd_Element_size.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/kiwi_xsd_Element_size.jpeg -------------------------------------------------------------------------------- /doc/schema/img/kiwi_xsd_Element_type.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/kiwi_xsd_Element_type.jpeg -------------------------------------------------------------------------------- /doc/schema/img/kiwi_xsd_Element_user.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/kiwi_xsd_Element_user.jpeg -------------------------------------------------------------------------------- /doc/schema/img/lB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/lB.gif -------------------------------------------------------------------------------- /doc/schema/img/lL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/lL.gif -------------------------------------------------------------------------------- /doc/schema/img/lR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/lR.gif -------------------------------------------------------------------------------- /doc/schema/img/lT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/img/lT.gif -------------------------------------------------------------------------------- /doc/schema/index.html: -------------------------------------------------------------------------------- 1 | kiwi.html -------------------------------------------------------------------------------- /doc/schema/kiwi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/kiwi.html -------------------------------------------------------------------------------- /doc/schema/kiwi.indexList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/kiwi.indexList.html -------------------------------------------------------------------------------- /doc/schema/kiwi.indexListcomp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/kiwi.indexListcomp.html -------------------------------------------------------------------------------- /doc/schema/kiwi.indexListns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/kiwi.indexListns.html -------------------------------------------------------------------------------- /doc/schema/kiwi0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/kiwi0.html -------------------------------------------------------------------------------- /doc/schema/kiwi1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/kiwi1.html -------------------------------------------------------------------------------- /doc/schema/kiwi_indexList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/kiwi_indexList.html -------------------------------------------------------------------------------- /doc/schema/kiwi_xsd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/kiwi_xsd.html -------------------------------------------------------------------------------- /doc/schema/schHierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/schHierarchy.html -------------------------------------------------------------------------------- /doc/schema/susesync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/susesync -------------------------------------------------------------------------------- /doc/schema/xsdDocHtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/xsdDocHtml.css -------------------------------------------------------------------------------- /doc/schema/xsi_xsd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/doc/schema/xsi_xsd.html -------------------------------------------------------------------------------- /editing/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/editing/README -------------------------------------------------------------------------------- /editing/kiwi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/editing/kiwi.sh -------------------------------------------------------------------------------- /editing/suse-start-kiwi-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/editing/suse-start-kiwi-mode.el -------------------------------------------------------------------------------- /editing/suse-start-kiwi-xmllocator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/editing/suse-start-kiwi-xmllocator.xml -------------------------------------------------------------------------------- /kiwi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/kiwi -------------------------------------------------------------------------------- /kiwi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/kiwi.pl -------------------------------------------------------------------------------- /locale/.fuzzy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/.fuzzy -------------------------------------------------------------------------------- /locale/.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/.locale -------------------------------------------------------------------------------- /locale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/Makefile -------------------------------------------------------------------------------- /locale/af/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/af/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ar/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ar/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/be/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/be/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/bg/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/bg/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/bn/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/bn/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/bs/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/bs/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ca/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ca/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/cs/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/cs/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/cy/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/cy/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/da/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/da/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/de/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/el/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/en_GB/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/en_GB/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/en_US/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/en_US/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/eo/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/eo/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/es/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/et/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/et/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/eu/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/eu/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/fa/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/fa/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/fi/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/fi/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/fr/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/gl/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/gl/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/gu/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/gu/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/he/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/he/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/hi/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/hi/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/hr/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/hr/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/hu/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/hu/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/id/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/id/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/it/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ja/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ja/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ka/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ka/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/kiwi-template/kiwi.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/kiwi-template/kiwi.pot -------------------------------------------------------------------------------- /locale/km/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/km/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ko/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ko/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ku/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ku/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/lo/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/lo/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/lt/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/lt/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/mk/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/mk/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/mr/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/mr/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/nb/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/nb/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/nds/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/nds/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/nl/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/nl/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/nn/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/nn/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/pa/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/pa/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/pl/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/pl/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/pt/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/pt/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/pt_BR/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ro/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ru/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/si/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/si/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/sk/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/sk/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/sl/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/sl/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/sr/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/sr/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/sv/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/sv/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/ta/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/ta/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/tg/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/tg/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/th/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/th/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/tr/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/tr/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/uk/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/uk/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/vi/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/vi/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/wa/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/wa/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/xh/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/xh/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/zh_CN/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/zh_TW/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/zh_TW/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /locale/zu/LC_MESSAGES/kiwi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/locale/zu/LC_MESSAGES/kiwi.po -------------------------------------------------------------------------------- /metadata/KIWIAnalyse.custom.sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/KIWIAnalyse.custom.sync.md -------------------------------------------------------------------------------- /metadata/KIWIAnalyse.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/KIWIAnalyse.filter -------------------------------------------------------------------------------- /metadata/KIWIAnalyse.systems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/KIWIAnalyse.systems -------------------------------------------------------------------------------- /metadata/KIWIAnalyseSUSE.kiwi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/KIWIAnalyseSUSE.kiwi -------------------------------------------------------------------------------- /metadata/KIWIConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/KIWIConfig.xml -------------------------------------------------------------------------------- /metadata/KIWISplit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/KIWISplit.xml -------------------------------------------------------------------------------- /metadata/KIWIURL.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/KIWIURL.patterns -------------------------------------------------------------------------------- /metadata/d3/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/d3.js -------------------------------------------------------------------------------- /metadata/d3/d3.layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/d3.layout.js -------------------------------------------------------------------------------- /metadata/d3/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/.DS_Store -------------------------------------------------------------------------------- /metadata/d3/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/header-bg.png -------------------------------------------------------------------------------- /metadata/d3/img/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/header.svg -------------------------------------------------------------------------------- /metadata/d3/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/logo.png -------------------------------------------------------------------------------- /metadata/d3/img/menu/RPM-conflicts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/menu/RPM-conflicts.jpg -------------------------------------------------------------------------------- /metadata/d3/img/menu/RPM-lost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/menu/RPM-lost.jpg -------------------------------------------------------------------------------- /metadata/d3/img/menu/RPM-packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/menu/RPM-packages.jpg -------------------------------------------------------------------------------- /metadata/d3/img/menu/custom-files.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/menu/custom-files.jpg -------------------------------------------------------------------------------- /metadata/d3/img/menu/gems.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/menu/gems.jpg -------------------------------------------------------------------------------- /metadata/d3/img/menu/kernel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/menu/kernel.jpg -------------------------------------------------------------------------------- /metadata/d3/img/menu/multiple-RPM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/menu/multiple-RPM.jpg -------------------------------------------------------------------------------- /metadata/d3/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/spinner.gif -------------------------------------------------------------------------------- /metadata/d3/img/texture-noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/img/texture-noise.png -------------------------------------------------------------------------------- /metadata/d3/kiwi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/kiwi.css -------------------------------------------------------------------------------- /metadata/d3/kiwi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/kiwi.js -------------------------------------------------------------------------------- /metadata/d3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/style.css -------------------------------------------------------------------------------- /metadata/d3/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/metadata/d3/theme.css -------------------------------------------------------------------------------- /modules/KIWIACIConfigWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIACIConfigWriter.pm -------------------------------------------------------------------------------- /modules/KIWIAnalyseCustomData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIAnalyseCustomData.sh -------------------------------------------------------------------------------- /modules/KIWIAnalyseReport.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIAnalyseReport.pm -------------------------------------------------------------------------------- /modules/KIWIAnalyseSoftware.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIAnalyseSoftware.pm -------------------------------------------------------------------------------- /modules/KIWIAnalyseSystem.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIAnalyseSystem.pm -------------------------------------------------------------------------------- /modules/KIWIAnalyseTemplate.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIAnalyseTemplate.pm -------------------------------------------------------------------------------- /modules/KIWIArch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIArch.pm -------------------------------------------------------------------------------- /modules/KIWIArchList.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIArchList.pm -------------------------------------------------------------------------------- /modules/KIWIBoot.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIBoot.pm -------------------------------------------------------------------------------- /modules/KIWICache.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWICache.pm -------------------------------------------------------------------------------- /modules/KIWICollect.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWICollect.pm -------------------------------------------------------------------------------- /modules/KIWICommandLine.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWICommandLine.pm -------------------------------------------------------------------------------- /modules/KIWIConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIConfig.sh -------------------------------------------------------------------------------- /modules/KIWIConfigWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIConfigWriter.pm -------------------------------------------------------------------------------- /modules/KIWIConfigWriterFactory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIConfigWriterFactory.pm -------------------------------------------------------------------------------- /modules/KIWIConfigure.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIConfigure.pm -------------------------------------------------------------------------------- /modules/KIWIContainerBuilder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIContainerBuilder.pm -------------------------------------------------------------------------------- /modules/KIWIContainerConfigWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIContainerConfigWriter.pm -------------------------------------------------------------------------------- /modules/KIWIExt2Builder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIExt2Builder.pm -------------------------------------------------------------------------------- /modules/KIWIExt3Builder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIExt3Builder.pm -------------------------------------------------------------------------------- /modules/KIWIExt4Builder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIExt4Builder.pm -------------------------------------------------------------------------------- /modules/KIWIExtBuilderBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIExtBuilderBase.pm -------------------------------------------------------------------------------- /modules/KIWIFilesystemBuilderBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIFilesystemBuilderBase.pm -------------------------------------------------------------------------------- /modules/KIWIFilesystemOptions.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIFilesystemOptions.pm -------------------------------------------------------------------------------- /modules/KIWIGlobals.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIGlobals.pm -------------------------------------------------------------------------------- /modules/KIWIImage.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIImage.pm -------------------------------------------------------------------------------- /modules/KIWIImageBuildFactory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIImageBuildFactory.pm -------------------------------------------------------------------------------- /modules/KIWIImageBuilderBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIImageBuilderBase.pm -------------------------------------------------------------------------------- /modules/KIWIImageCreator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIImageCreator.pm -------------------------------------------------------------------------------- /modules/KIWIImageFormat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIImageFormat.pm -------------------------------------------------------------------------------- /modules/KIWIIsoLinux.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIIsoLinux.pm -------------------------------------------------------------------------------- /modules/KIWILinuxRC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /modules/KIWILocator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWILocator.pm -------------------------------------------------------------------------------- /modules/KIWILog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWILog.pm -------------------------------------------------------------------------------- /modules/KIWIManager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIManager.pm -------------------------------------------------------------------------------- /modules/KIWIManagerApt.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIManagerApt.pm -------------------------------------------------------------------------------- /modules/KIWIManagerEnsconce.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIManagerEnsconce.pm -------------------------------------------------------------------------------- /modules/KIWIManagerSmart.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIManagerSmart.pm -------------------------------------------------------------------------------- /modules/KIWIManagerYum.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIManagerYum.pm -------------------------------------------------------------------------------- /modules/KIWIManagerZypper.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIManagerZypper.pm -------------------------------------------------------------------------------- /modules/KIWIOVFConfigWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIOVFConfigWriter.pm -------------------------------------------------------------------------------- /modules/KIWIOverlay.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIOverlay.pm -------------------------------------------------------------------------------- /modules/KIWIProductData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIProductData.pm -------------------------------------------------------------------------------- /modules/KIWIProfileFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIProfileFile.pm -------------------------------------------------------------------------------- /modules/KIWIQX.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIQX.pm -------------------------------------------------------------------------------- /modules/KIWIRepoMetaHandler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIRepoMetaHandler.pm -------------------------------------------------------------------------------- /modules/KIWIResult.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIResult.pm -------------------------------------------------------------------------------- /modules/KIWIRoot.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIRoot.pm -------------------------------------------------------------------------------- /modules/KIWIRuntimeChecker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIRuntimeChecker.pm -------------------------------------------------------------------------------- /modules/KIWISatSolver.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWISatSolver.pm -------------------------------------------------------------------------------- /modules/KIWISchema.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWISchema.rnc -------------------------------------------------------------------------------- /modules/KIWISchema.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWISchema.rng -------------------------------------------------------------------------------- /modules/KIWITarArchiveBuilder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWITarArchiveBuilder.pm -------------------------------------------------------------------------------- /modules/KIWITrace.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWITrace.pm -------------------------------------------------------------------------------- /modules/KIWIURL.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIURL.pm -------------------------------------------------------------------------------- /modules/KIWIUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIUtil.pm -------------------------------------------------------------------------------- /modules/KIWIXML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXML.pm -------------------------------------------------------------------------------- /modules/KIWIXMLDataBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLDataBase.pm -------------------------------------------------------------------------------- /modules/KIWIXMLDefStripData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLDefStripData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLDescriptionData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLDescriptionData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLDriverData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLDriverData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLExceptData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLExceptData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLFileData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLFileData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLInfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLInfo.pm -------------------------------------------------------------------------------- /modules/KIWIXMLInstRepositoryData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLInstRepositoryData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLOEMConfigData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLOEMConfigData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLPXEDeployConfigData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLPXEDeployConfigData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLPXEDeployData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLPXEDeployData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLPackageArchiveData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLPackageArchiveData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLPackageCollectData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLPackageCollectData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLPackageData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLPackageData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLPackageIgnoreData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLPackageIgnoreData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLPackageProductData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLPackageProductData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLPreferenceData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLPreferenceData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLProductArchitectureData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLProductArchitectureData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLProductMetaFileData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLProductMetaFileData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLProductOptionsData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLProductOptionsData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLProductPackageData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLProductPackageData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLProfileData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLProfileData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLRepositoryBaseData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLRepositoryBaseData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLRepositoryData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLRepositoryData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLSplitData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLSplitData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLStripData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLStripData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLSystemdiskData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLSystemdiskData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLTypeData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLTypeData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLUserData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLUserData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLVMachineData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLVMachineData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLVagrantConfigData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLVagrantConfigData.pm -------------------------------------------------------------------------------- /modules/KIWIXMLValidator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/modules/KIWIXMLValidator.pm -------------------------------------------------------------------------------- /pxeboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/pxeboot/README -------------------------------------------------------------------------------- /pxeboot/kiwiboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/pxeboot/kiwiboot.sh -------------------------------------------------------------------------------- /pxeboot/pxelinux.0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/pxeboot/pxelinux.0.config -------------------------------------------------------------------------------- /pxeboot/pxelinux.0.config.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/pxeboot/pxelinux.0.config.xen -------------------------------------------------------------------------------- /rpm/kiwi-find-boot-requires.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/rpm/kiwi-find-boot-requires.sh -------------------------------------------------------------------------------- /rpm/kiwi-rpmlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/rpm/kiwi-rpmlintrc -------------------------------------------------------------------------------- /rpm/kiwi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/rpm/kiwi.spec -------------------------------------------------------------------------------- /system/boot/aarch64: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /system/boot/armv5el: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /system/boot/armv5tel: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /system/boot/armv6l: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /system/boot/armv7l/.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/armv7l/.md5 -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/armv7l/oemboot/README -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-SLES12/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-SLES12/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/armv7l/oemboot/suse-dump -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-leap42.1/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-leap42.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-leap42.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-leap42.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-leap42.1/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-leap42.1/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-repart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/armv7l/oemboot/suse-repart -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-tumbleweed/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-tumbleweed/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-tumbleweed/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-tumbleweed/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-tumbleweed/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/armv7l/oemboot/suse-tumbleweed/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/armv7l/vmxboot/README -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-SLES12/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-leap42.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-leap42.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-leap42.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-leap42.1/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-tumbleweed/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-tumbleweed/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-tumbleweed/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/armv7l/vmxboot/suse-tumbleweed/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ia64/.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ia64/.md5 -------------------------------------------------------------------------------- /system/boot/ix86/.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/.md5 -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/isoboot/README -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-06.0/root/etc/modprobe.conf.local: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-06.0/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-06.0/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-06.0/root/preinit: -------------------------------------------------------------------------------- 1 | ../../rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-07.0/root/etc/modprobe.conf.local: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-07.0/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-07.0/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-07.0/root/preinit: -------------------------------------------------------------------------------- 1 | ../../rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/isoboot/rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/rhel-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/isoboot/rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-13.1/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-13.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-13.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-13.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-13.2/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-13.2/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-13.2/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-13.2/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-SLES11/root/etc/modprobe.conf.local: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-SLES12/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-leap42.1/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-leap42.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-leap42.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-leap42.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/isoboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/isoboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-tumbleweed/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-tumbleweed/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-tumbleweed/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/isoboot/suse-tumbleweed/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/netboot/README -------------------------------------------------------------------------------- /system/boot/ix86/netboot/rhel-07.0/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/netboot/rhel-07.0/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/netboot/rhel-07.0/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/rhel-07.0/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/rhel-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/netboot/rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/rhel-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/netboot/rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-13.1/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-13.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-13.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-13.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-13.2/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-13.2/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-13.2/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-13.2/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-SLES11/root/etc/modprobe.conf.local: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-SLES12/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-leap42.1/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-leap42.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-leap42.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-leap42.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/netboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/netboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-tumbleweed/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-tumbleweed/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-tumbleweed/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/netboot/suse-tumbleweed/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/README -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-06.0/root/dump: -------------------------------------------------------------------------------- 1 | ../../rhel-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-06.0/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-06.0/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-06.0/root/preinit: -------------------------------------------------------------------------------- 1 | ../../rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-06.0/root/repart: -------------------------------------------------------------------------------- 1 | ../../rhel-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-07.0/root/dump: -------------------------------------------------------------------------------- 1 | ../../rhel-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-07.0/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-07.0/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-07.0/root/preinit: -------------------------------------------------------------------------------- 1 | ../../rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-07.0/root/repart: -------------------------------------------------------------------------------- 1 | ../../rhel-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/rhel-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/rhel-repart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/rhel-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.1/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.1/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.1/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.2/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.2/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.2/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.2/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.2/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-13.2/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES11/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES11/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES11/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES12/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES12/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-SLES12/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/suse-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-leap42.1/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-leap42.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-leap42.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-leap42.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-leap42.1/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-leap42.1/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-repart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/oemboot/suse-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-tumbleweed/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-tumbleweed/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-tumbleweed/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-tumbleweed/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-tumbleweed/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/ix86/oemboot/suse-tumbleweed/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/vmxboot/README -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-06.0/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-06.0/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-06.0/root/preinit: -------------------------------------------------------------------------------- 1 | ../../rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-06.0/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-07.0/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-07.0/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-07.0/root/preinit: -------------------------------------------------------------------------------- 1 | ../../rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-07.0/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/vmxboot/rhel-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/rhel-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/vmxboot/rhel-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-13.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-13.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-13.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-13.1/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-13.2/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-13.2/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-13.2/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-13.2/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-SLES11/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-SLES12/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-leap42.1/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-leap42.1/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-leap42.1/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-leap42.1/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/vmxboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ix86/vmxboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-tumbleweed/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-tumbleweed/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-tumbleweed/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ix86/vmxboot/suse-tumbleweed/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/m68k/.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/m68k/.md5 -------------------------------------------------------------------------------- /system/boot/ppc/.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/.md5 -------------------------------------------------------------------------------- /system/boot/ppc/netboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/netboot/README -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-SLES11/root/etc/modprobe.conf.local: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-SLES12/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/netboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/netboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/netboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/oemboot/README -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES11/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES11/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES11/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES12/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES12/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-SLES12/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/oemboot/suse-dump -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/oemboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/oemboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc/oemboot/suse-repart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/oemboot/suse-repart -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/vmxboot/README -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-SLES12/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/vmxboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/ppc/vmxboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/ppc/vmxboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/ppc64: -------------------------------------------------------------------------------- 1 | ppc -------------------------------------------------------------------------------- /system/boot/ppc64le: -------------------------------------------------------------------------------- 1 | ppc -------------------------------------------------------------------------------- /system/boot/s390/.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/.md5 -------------------------------------------------------------------------------- /system/boot/s390/netboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/netboot/README -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-SLES11/root/etc/modprobe.conf.local: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-SLES12/root/etc/modprobe.d/99-local.conf: -------------------------------------------------------------------------------- 1 | options brd rd_size=512000 2 | -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/netboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/netboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/netboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/s390/oemboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/oemboot/README -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES11/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES11/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES11/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES12/root/dump: -------------------------------------------------------------------------------- 1 | ../../suse-dump -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES12/root/repart: -------------------------------------------------------------------------------- 1 | ../../suse-repart -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-SLES12/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/oemboot/suse-dump -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/oemboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/oemboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/s390/oemboot/suse-repart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/oemboot/suse-repart -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/vmxboot/README -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-SLES11/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-SLES11/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-SLES11/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-SLES12/root/include: -------------------------------------------------------------------------------- 1 | ../../../../../../modules/KIWILinuxRC.sh -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-SLES12/root/linuxrc: -------------------------------------------------------------------------------- 1 | ../../suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-SLES12/root/preinit: -------------------------------------------------------------------------------- 1 | ../../suse-preinit -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-SLES12/root/usr/share/locale: -------------------------------------------------------------------------------- 1 | ../../../../../../../../locale -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-linuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/vmxboot/suse-linuxrc -------------------------------------------------------------------------------- /system/boot/s390/vmxboot/suse-preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/boot/s390/vmxboot/suse-preinit -------------------------------------------------------------------------------- /system/boot/s390x: -------------------------------------------------------------------------------- 1 | s390 -------------------------------------------------------------------------------- /system/boot/x86_64: -------------------------------------------------------------------------------- 1 | ix86 -------------------------------------------------------------------------------- /system/repo/aarch64: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /system/repo/armv5el: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /system/repo/armv5tel: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /system/repo/armv6l: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /system/repo/armv7l/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/repo/armv7l/README -------------------------------------------------------------------------------- /system/repo/ia64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/repo/ia64/README -------------------------------------------------------------------------------- /system/repo/ix86/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/repo/ix86/README -------------------------------------------------------------------------------- /system/repo/m68k/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/repo/m68k/README -------------------------------------------------------------------------------- /system/repo/ppc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/repo/ppc/README -------------------------------------------------------------------------------- /system/repo/ppc64: -------------------------------------------------------------------------------- 1 | ppc -------------------------------------------------------------------------------- /system/repo/ppc64le: -------------------------------------------------------------------------------- 1 | ppc -------------------------------------------------------------------------------- /system/repo/s390/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/system/repo/s390/README -------------------------------------------------------------------------------- /system/repo/s390x: -------------------------------------------------------------------------------- 1 | s390 -------------------------------------------------------------------------------- /system/repo/x86_64: -------------------------------------------------------------------------------- 1 | ix86 -------------------------------------------------------------------------------- /template/aarch64: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /template/armv5el: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /template/armv5tel: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /template/armv6l: -------------------------------------------------------------------------------- 1 | armv7l -------------------------------------------------------------------------------- /template/armv7l/suse-SLE12-community-JeOS/suse-SLE12-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ia64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ia64/README -------------------------------------------------------------------------------- /template/ix86/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/README -------------------------------------------------------------------------------- /template/ix86/rhel-06.6-JeOS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/rhel-06.6-JeOS/README -------------------------------------------------------------------------------- /template/ix86/rhel-06.6-JeOS/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/rhel-06.6-JeOS/config.sh -------------------------------------------------------------------------------- /template/ix86/rhel-06.6-JeOS/rhel-06.0-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ix86/rhel-06.6-JeOS/root/etc/sysconfig/firstboot: -------------------------------------------------------------------------------- 1 | RUN_FIRSTBOOT=NO 2 | -------------------------------------------------------------------------------- /template/ix86/rhel-06.6-JeOS/root/etc/sysconfig/network-scripts/ifcfg-eth0: -------------------------------------------------------------------------------- 1 | DEVICE=eth0 2 | BOOTPROTO=dhcp 3 | ONBOOT=yes 4 | -------------------------------------------------------------------------------- /template/ix86/rhel-06.6-JeOS/root/fastboot: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /template/ix86/rhel-07.0-JeOS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/rhel-07.0-JeOS/README -------------------------------------------------------------------------------- /template/ix86/rhel-07.0-JeOS/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/rhel-07.0-JeOS/config.sh -------------------------------------------------------------------------------- /template/ix86/rhel-07.0-JeOS/rhel-07.0-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ix86/rhel-07.0-JeOS/root/etc/sysconfig/firstboot: -------------------------------------------------------------------------------- 1 | RUN_FIRSTBOOT=NO 2 | -------------------------------------------------------------------------------- /template/ix86/rhel-07.0-JeOS/root/etc/sysconfig/network-scripts/ifcfg-lan0: -------------------------------------------------------------------------------- 1 | DEVICE=eth0 2 | BOOTPROTO=dhcp 3 | ONBOOT=yes 4 | -------------------------------------------------------------------------------- /template/ix86/rhel-07.0-JeOS/root/fastboot: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /template/ix86/suse-13.1-JeOS/Dicefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/suse-13.1-JeOS/Dicefile -------------------------------------------------------------------------------- /template/ix86/suse-13.1-JeOS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/suse-13.1-JeOS/README -------------------------------------------------------------------------------- /template/ix86/suse-13.1-JeOS/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/suse-13.1-JeOS/config.sh -------------------------------------------------------------------------------- /template/ix86/suse-13.1-JeOS/suse-13.1-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ix86/suse-13.2-JeOS/Dicefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/suse-13.2-JeOS/Dicefile -------------------------------------------------------------------------------- /template/ix86/suse-13.2-JeOS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/suse-13.2-JeOS/README -------------------------------------------------------------------------------- /template/ix86/suse-13.2-JeOS/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ix86/suse-13.2-JeOS/config.sh -------------------------------------------------------------------------------- /template/ix86/suse-13.2-JeOS/suse-13.2-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ix86/suse-SLE11-community-JeOS/suse-SLE11-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ix86/suse-SLE12-community-JeOS/suse-SLE12-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ix86/suse-leap-42.1-JeOS/leap-42.1-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/m68k/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/m68k/README -------------------------------------------------------------------------------- /template/ppc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/ppc/README -------------------------------------------------------------------------------- /template/ppc/suse-SLE11-community-JeOS/suse-SLE11-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ppc/suse-SLE12-community-JeOS/suse-SLE12-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/ppc64: -------------------------------------------------------------------------------- 1 | ppc -------------------------------------------------------------------------------- /template/ppc64le: -------------------------------------------------------------------------------- 1 | ppc -------------------------------------------------------------------------------- /template/s390/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/template/s390/README -------------------------------------------------------------------------------- /template/s390/suse-SLE11-community-JeOS/suse-SLE11-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/s390/suse-SLE12-community-JeOS/suse-SLE12-JeOS.kiwi: -------------------------------------------------------------------------------- 1 | config.xml -------------------------------------------------------------------------------- /template/s390x: -------------------------------------------------------------------------------- 1 | s390 -------------------------------------------------------------------------------- /template/x86_64: -------------------------------------------------------------------------------- 1 | ix86 -------------------------------------------------------------------------------- /tests/jenkins/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/jenkins/build.sh -------------------------------------------------------------------------------- /tests/jenkins/codebase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/jenkins/codebase.sh -------------------------------------------------------------------------------- /tests/jenkins/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/jenkins/prepare.sh -------------------------------------------------------------------------------- /tests/jenkins/product.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/jenkins/product.sh -------------------------------------------------------------------------------- /tests/runTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/runTests -------------------------------------------------------------------------------- /tests/triggers/KIWICommandLine.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWICommandLine.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIConfigWriterFactory.trig: -------------------------------------------------------------------------------- 1 | KTConfigWriterFactory.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIContainerBuilder.trig: -------------------------------------------------------------------------------- 1 | KTContainerBuilder.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIContainerConfigWriter.trig: -------------------------------------------------------------------------------- 1 | KTContainerConfigWriter.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIFilesystemOptions.trig: -------------------------------------------------------------------------------- 1 | KTFilesystemOptions.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIImage.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIImage.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIImageBuilderBase.trig: -------------------------------------------------------------------------------- 1 | KTImageBuilderBase.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIImageCreator.trig: -------------------------------------------------------------------------------- 1 | KTImageCreator.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWILocator.trig: -------------------------------------------------------------------------------- 1 | KTLocator.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIOVFConfigWriter.trig: -------------------------------------------------------------------------------- 1 | KTOVFVConfigWriter.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIProfileFile.trig: -------------------------------------------------------------------------------- 1 | KTProfileFile.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIRuntimeChecker.trig: -------------------------------------------------------------------------------- 1 | KTRuntimeChecker.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWISchema.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWISchema.trig -------------------------------------------------------------------------------- /tests/triggers/KIWITarArchiveBuilder.trig: -------------------------------------------------------------------------------- 1 | KTTarArchiveBuilder.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXML.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXML.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLArchiveData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLArchiveData.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLDataBase.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLDataBase.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLDriverData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLDriverData.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLFileData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLFileData.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLInfo.trig: -------------------------------------------------------------------------------- 1 | KTXMLInfo.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLPackageData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLPackageData.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLPreferenceData.trig: -------------------------------------------------------------------------------- 1 | KTXMLPreferenceData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLProductArchitectureData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProductArchitectureData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLProductData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLProductData.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLProductMetaChrootData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProductMetaChrootData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLProductMetaFileData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProductMetaFileData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLProductOptionsData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProductOptionsData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLProfileData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProfileData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLSchema.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLSchema.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLSplitData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLSplitData.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLStripData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/KIWIXMLStripData.trig -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLTypeData.trig: -------------------------------------------------------------------------------- 1 | KTXMLTypeData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLUserData.trig: -------------------------------------------------------------------------------- 1 | KTXMLUserData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLVMachine.trig: -------------------------------------------------------------------------------- 1 | KTOVFVConfigWriter.t 2 | KTXMLVMachineData.t 3 | -------------------------------------------------------------------------------- /tests/triggers/KIWIXMLValidator.trig: -------------------------------------------------------------------------------- 1 | KTXMLValidator.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiCommandLine.trig: -------------------------------------------------------------------------------- 1 | KTCommandLine.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiConfigWriterFactory.trig: -------------------------------------------------------------------------------- 1 | KTConfigWriterFactory.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiContainerBuilder.trig: -------------------------------------------------------------------------------- 1 | KTContainerBuilder.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiContainerConfigWriter.trig: -------------------------------------------------------------------------------- 1 | KTContainerConfigWriter.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiFilesystemOptions.trig: -------------------------------------------------------------------------------- 1 | KTFilesystemOptions.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiImage.trig: -------------------------------------------------------------------------------- 1 | KTImage.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiImageBuildFactory.trig: -------------------------------------------------------------------------------- 1 | KTImageBuildFactory.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiImageBuilderBase.trig: -------------------------------------------------------------------------------- 1 | KTImageBuilderBase.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiImageCreator.trig: -------------------------------------------------------------------------------- 1 | KTImageCreator.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiLocator.trig: -------------------------------------------------------------------------------- 1 | KTLocator.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiOVFConfigWriter.trig: -------------------------------------------------------------------------------- 1 | KTOVFVConfigWriter.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiProfileFile.trig: -------------------------------------------------------------------------------- 1 | KTProfileFile.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiRuntimeChecker.trig: -------------------------------------------------------------------------------- 1 | KTRuntimeChecker.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiTarArchiveBuilder.trig: -------------------------------------------------------------------------------- 1 | KTTarArchiveBuilder.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXML.trig: -------------------------------------------------------------------------------- 1 | KTXML.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLArchiveData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/kiwiXMLArchiveData.trig -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLDefStripData.trig: -------------------------------------------------------------------------------- 1 | KTXMLDefStripData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLDescriptionData.trig: -------------------------------------------------------------------------------- 1 | KTXMLDescriptionData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLDriverData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/kiwiXMLDriverData.trig -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLFileData.trig: -------------------------------------------------------------------------------- 1 | KTXMLFileData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLInfo.trig: -------------------------------------------------------------------------------- 1 | KTXMLInfo.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLInstRepositoryData.trig: -------------------------------------------------------------------------------- 1 | KTXMLInstRepositoryData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLOEMConfigData.trig: -------------------------------------------------------------------------------- 1 | KTXMLOEMConfigData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLPXEDeployConfigData.trig: -------------------------------------------------------------------------------- 1 | KTXMLPXEDeployConfigData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLPXEDeployData.trig: -------------------------------------------------------------------------------- 1 | KTXMLPXEDeployData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLPackageData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/kiwiXMLPackageData.trig -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLPreferenceData.trig: -------------------------------------------------------------------------------- 1 | KTXMLPreferenceData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLProductArchitectureData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProductArchitectureData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLProductData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/kiwiXMLProductData.trig -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLProductMetaChrootData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProductMetaChrootData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLProductMetaFileData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProductMetaFileData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLProductOptionsData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProductOptionsData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLProfileData.trig: -------------------------------------------------------------------------------- 1 | KTXMLProfileData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLRepositoryData.trig: -------------------------------------------------------------------------------- 1 | KTXMLRepositoryData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLSplitData.trig: -------------------------------------------------------------------------------- 1 | KTXMLSplitData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLStripData.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/kiwiXMLStripData.trig -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLSystemdiskData.trig: -------------------------------------------------------------------------------- 1 | KTXMLSystemdiskData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLTypeData.trig: -------------------------------------------------------------------------------- 1 | KTXMLTypeData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLUserData.trig: -------------------------------------------------------------------------------- 1 | KTXMLUserData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLVMachine.trig: -------------------------------------------------------------------------------- 1 | KTXMLVMachineData.t 2 | -------------------------------------------------------------------------------- /tests/triggers/kiwiXMLValidator.trig: -------------------------------------------------------------------------------- 1 | KTXMLValidator.t 2 | -------------------------------------------------------------------------------- /tests/triggers/ktLog.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/ktLog.trig -------------------------------------------------------------------------------- /tests/triggers/ktTestCase.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/triggers/ktTestCase.trig -------------------------------------------------------------------------------- /tests/unit/.kiwirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/.kiwirc -------------------------------------------------------------------------------- /tests/unit/KTACIConfigWriter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTACIConfigWriter.t -------------------------------------------------------------------------------- /tests/unit/KTCommandLine.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTCommandLine.t -------------------------------------------------------------------------------- /tests/unit/KTConfigWriterFactory.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTConfigWriterFactory.t -------------------------------------------------------------------------------- /tests/unit/KTContainerBuilder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTContainerBuilder.t -------------------------------------------------------------------------------- /tests/unit/KTContainerConfigWriter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTContainerConfigWriter.t -------------------------------------------------------------------------------- /tests/unit/KTFilesystemOptions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTFilesystemOptions.t -------------------------------------------------------------------------------- /tests/unit/KTImage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTImage.t -------------------------------------------------------------------------------- /tests/unit/KTImageBuildFactory.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTImageBuildFactory.t -------------------------------------------------------------------------------- /tests/unit/KTImageBuilderBase.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTImageBuilderBase.t -------------------------------------------------------------------------------- /tests/unit/KTImageCreator.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTImageCreator.t -------------------------------------------------------------------------------- /tests/unit/KTLocator.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTLocator.t -------------------------------------------------------------------------------- /tests/unit/KTOVFVConfigWriter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTOVFVConfigWriter.t -------------------------------------------------------------------------------- /tests/unit/KTProfileFile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTProfileFile.t -------------------------------------------------------------------------------- /tests/unit/KTRuntimeChecker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTRuntimeChecker.t -------------------------------------------------------------------------------- /tests/unit/KTTarArchiveBuilder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTTarArchiveBuilder.t -------------------------------------------------------------------------------- /tests/unit/KTXML.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXML.t -------------------------------------------------------------------------------- /tests/unit/KTXMLDefStripData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLDefStripData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLDescriptionData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLDescriptionData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLDriverData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLDriverData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLExceptData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLExceptData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLFileData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLFileData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLInfo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLInfo.t -------------------------------------------------------------------------------- /tests/unit/KTXMLInstRepositoryData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLInstRepositoryData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLOEMConfigData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLOEMConfigData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLPXEDeployConfigData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLPXEDeployConfigData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLPXEDeployData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLPXEDeployData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLPackageArchiveData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLPackageArchiveData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLPackageCollectData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLPackageCollectData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLPackageData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLPackageData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLPackageIgnoreData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLPackageIgnoreData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLPackageProductData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLPackageProductData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLPreferenceData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLPreferenceData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLProductMetaFileData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLProductMetaFileData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLProductOptionsData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLProductOptionsData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLProductPackageData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLProductPackageData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLProfileData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLProfileData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLRepositoryData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLRepositoryData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLSplitData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLSplitData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLStripData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLStripData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLSystemdiskData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLSystemdiskData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLTypeData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLTypeData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLUserData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLUserData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLVMachineData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLVMachineData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLVagrantConfigData.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLVagrantConfigData.t -------------------------------------------------------------------------------- /tests/unit/KTXMLValidator.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/KTXMLValidator.t -------------------------------------------------------------------------------- /tests/unit/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/cleanup.sh -------------------------------------------------------------------------------- /tests/unit/data/kiwiLocator/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/data/kiwiLocator/config.xml -------------------------------------------------------------------------------- /tests/unit/data/kiwiProfileFile/prof.xmlRef: -------------------------------------------------------------------------------- 1 | kiwi_drivers='e100,isdn,usb' 2 | -------------------------------------------------------------------------------- /tests/unit/data/kiwiProfileFile/profile.up: -------------------------------------------------------------------------------- 1 | kiwi_drivers='e100,usb' 2 | -------------------------------------------------------------------------------- /tests/unit/data/kiwiProfileFile/profile.upUnkk: -------------------------------------------------------------------------------- 1 | kiwi_drivers='e100,usb' 2 | foo_bar='hellp' 3 | -------------------------------------------------------------------------------- /tests/unit/data/kiwiRuntimeChecker/revision: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/unit/data/kiwiXML/typeSettings/fixupBootEnter: -------------------------------------------------------------------------------- 1 | File to verify getEditBootConfig behavior 2 | -------------------------------------------------------------------------------- /tests/unit/data/kiwiXMLInfo/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/data/kiwiXMLInfo/config.xml -------------------------------------------------------------------------------- /tests/unit/data/kiwiXMLValidator/revision.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/unit/lib/Common/ktLog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Common/ktLog.pm -------------------------------------------------------------------------------- /tests/unit/lib/Common/ktTestCase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Common/ktTestCase.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiCommandLine.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiCommandLine.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiImage.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiImage.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiLocator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiLocator.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiProfileFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiProfileFile.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiXML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiXML.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiXMLFileData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiXMLFileData.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiXMLInfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiXMLInfo.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiXMLTypeData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiXMLTypeData.pm -------------------------------------------------------------------------------- /tests/unit/lib/Test/kiwiXMLUserData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/lib/Test/kiwiXMLUserData.pm -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.armv6l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.armv6l -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.armv7l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.armv7l -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.i686 -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.ia64 -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.m68k -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.ppc -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.ppc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.ppc64 -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.s390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.s390 -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.s390x -------------------------------------------------------------------------------- /tests/unit/refresults/power.ovf.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/power.ovf.x86_64 -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.aarch64 -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.armv5el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.armv5el -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.armv5tel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.armv5tel -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.armv6l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.armv6l -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.armv7l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.armv7l -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.i686 -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.ia64 -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.m68k -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.ppc -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.ppc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.ppc64 -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.ppc64le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.ppc64le -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.s390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.s390 -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.s390x -------------------------------------------------------------------------------- /tests/unit/refresults/xen.ovf.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/xen.ovf.x86_64 -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.aarch64 -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.armv5el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.armv5el -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.armv5tel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.armv5tel -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.armv6l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.armv6l -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.armv7l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.armv7l -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.i686 -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.ia64 -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.m68k -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.ppc -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.ppc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.ppc64 -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.ppc64le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.ppc64le -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.s390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.s390 -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.s390x -------------------------------------------------------------------------------- /tests/unit/refresults/zvm.ovf.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/unit/refresults/zvm.ovf.x86_64 -------------------------------------------------------------------------------- /tests/writeTester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tests/writeTester -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/README -------------------------------------------------------------------------------- /tools/bootnext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/bootnext/Makefile -------------------------------------------------------------------------------- /tools/bootnext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/bootnext/README -------------------------------------------------------------------------------- /tools/bootnext/bootnext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/bootnext/bootnext.asm -------------------------------------------------------------------------------- /tools/burner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/burner/README.md -------------------------------------------------------------------------------- /tools/dcounter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/dcounter/Makefile -------------------------------------------------------------------------------- /tools/dcounter/dcounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/dcounter/dcounter.c -------------------------------------------------------------------------------- /tools/driveready/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/driveready/Makefile -------------------------------------------------------------------------------- /tools/driveready/driveready.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/driveready/driveready.c -------------------------------------------------------------------------------- /tools/init/boot.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/init/boot.xen -------------------------------------------------------------------------------- /tools/isconsole/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/isconsole/Makefile -------------------------------------------------------------------------------- /tools/isconsole/isconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/isconsole/isconsole.c -------------------------------------------------------------------------------- /tools/klogconsole/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/klogconsole/Makefile -------------------------------------------------------------------------------- /tools/klogconsole/klogconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/klogconsole/klogconsole.c -------------------------------------------------------------------------------- /tools/kversion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/kversion/Makefile -------------------------------------------------------------------------------- /tools/kversion/kversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/kversion/kversion.c -------------------------------------------------------------------------------- /tools/livestick/livestick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/livestick/livestick -------------------------------------------------------------------------------- /tools/setctsid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/setctsid/Makefile -------------------------------------------------------------------------------- /tools/setctsid/setctsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/setctsid/setctsid.c -------------------------------------------------------------------------------- /tools/startshell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/startshell/Makefile -------------------------------------------------------------------------------- /tools/startshell/startshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/startshell/startshell.c -------------------------------------------------------------------------------- /tools/utimer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/utimer/Makefile -------------------------------------------------------------------------------- /tools/utimer/utimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/tools/utimer/utimer.c -------------------------------------------------------------------------------- /xsl/convert14to20.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert14to20.xsl -------------------------------------------------------------------------------- /xsl/convert20to24.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert20to24.xsl -------------------------------------------------------------------------------- /xsl/convert24to35.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert24to35.xsl -------------------------------------------------------------------------------- /xsl/convert35to37.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert35to37.xsl -------------------------------------------------------------------------------- /xsl/convert37to38.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert37to38.xsl -------------------------------------------------------------------------------- /xsl/convert38to39.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert38to39.xsl -------------------------------------------------------------------------------- /xsl/convert39to41.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert39to41.xsl -------------------------------------------------------------------------------- /xsl/convert41to42.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert41to42.xsl -------------------------------------------------------------------------------- /xsl/convert42to43.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert42to43.xsl -------------------------------------------------------------------------------- /xsl/convert43to44.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert43to44.xsl -------------------------------------------------------------------------------- /xsl/convert44to45.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert44to45.xsl -------------------------------------------------------------------------------- /xsl/convert45to46.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert45to46.xsl -------------------------------------------------------------------------------- /xsl/convert46to47.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert46to47.xsl -------------------------------------------------------------------------------- /xsl/convert47to48.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert47to48.xsl -------------------------------------------------------------------------------- /xsl/convert48to49.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert48to49.xsl -------------------------------------------------------------------------------- /xsl/convert49to50.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert49to50.xsl -------------------------------------------------------------------------------- /xsl/convert50to51.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert50to51.xsl -------------------------------------------------------------------------------- /xsl/convert51to52.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert51to52.xsl -------------------------------------------------------------------------------- /xsl/convert52to53.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert52to53.xsl -------------------------------------------------------------------------------- /xsl/convert53to54.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert53to54.xsl -------------------------------------------------------------------------------- /xsl/convert54to55.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert54to55.xsl -------------------------------------------------------------------------------- /xsl/convert55to56.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert55to56.xsl -------------------------------------------------------------------------------- /xsl/convert56to57.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert56to57.xsl -------------------------------------------------------------------------------- /xsl/convert57to58.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert57to58.xsl -------------------------------------------------------------------------------- /xsl/convert58to59.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert58to59.xsl -------------------------------------------------------------------------------- /xsl/convert59to60.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert59to60.xsl -------------------------------------------------------------------------------- /xsl/convert60to61.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert60to61.xsl -------------------------------------------------------------------------------- /xsl/convert61to62.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/convert61to62.xsl -------------------------------------------------------------------------------- /xsl/master.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/master.xsl -------------------------------------------------------------------------------- /xsl/pretty.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/pretty.xsl -------------------------------------------------------------------------------- /xsl/print.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSInside/kiwi-legacy/HEAD/xsl/print.xsl --------------------------------------------------------------------------------