Revisions of kiwi

buildservice-autocommit accepted request 282547 from Marcus Schaefer's avatar Marcus Schaefer (sax2) (revision 989)
baserev update by copy to link target
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 988)
- v7.02.22 released
  

  
- Don't use /mnt as mount point in a kiwi process
  
  It could cause conflicts if the building system has /mnt
  mounted for some reasons. Especially if the image target
  directory is set to /mnt kiwi failed because it over
  mounted its own results
  

  
- Update SLE12 JeOS template for ppc
  
  The description was missing firmware packages and did
  not use grub2 as the bootloader which is the default
  for sles12 on ppc
  

  
- Use symlink instead of copy for /etc/localtime.
  

  
- Don't remove the docs from the RHEL JeOS templates
buildservice-autocommit accepted request 281498 from Marcus Schaefer's avatar Marcus Schaefer (sax2) (revision 987)
baserev update by copy to link target
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 986)
- v7.02.21 released
  
  
  

  
- sha256sum generation: change cwd to tmpdir and only pass filename to $sha->addfile
  
  The full path passed to $sha->addfile is written into the .sha256 file, which results in
  the file not 'really' usable for verification by users. Passing only the relative filename
  works around this.
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 985)
- v7.02.20 released
  

  
- DB: rebuild documentation
  

  
- DB: fixed LVM documentation
  
  with regards to btrfs subvolume support the docu
  was unclear and not complete
  

  
- Revert "Disable yum repos from centos-releases"
  
  This seems to break the repo handling completely
  This reverts commit 4d48fd0b296343368d7bb76b97857d779ab13273.
  

  
- Disable yum repos from centos-releases
  
  
  

  
- mediacheck: give the user 5s time to actually see the result (also helps openQA to catch it) - Failure waits for user input already
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 984)
- v7.02.19 released
  

  
- Fixed kiwi-find-boot-requires.sh build helper
  
  Added Adrian as the author of the script and put some comment
  what this script does. Fixed error handling if boot config
  file is missing for the checked arch/os (bnc #911231)
  
  
  per distribution has been fixed for rhel6/7 and centos6 (bnc #911231)
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 983)
- Fixed spec file for rhel and centos builds
  
  With regards to https://en.opensuse.org/openSUSE:Build_Service_cross_distribution_howto
  the use of the dist macros has been fixed. In addition the setup of the correct templates
  per distribution has been fixed for rhel6/7 and centos6
  

  
- fix debug package unique key handling.
buildservice-autocommit accepted request 265882 from Marcus Schaefer's avatar Marcus Schaefer (sax2) (revision 982)
baserev update by copy to link target
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 981)
- v7.02.18 released
  

  
- Fixed post install script from kiwi-templates
  
  it should not end with a non zero exit code
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 980)
- v7.02.17 released
  

  
- Fixed bootloader setup for SLE11 JeOS template
  
  legacy grub is default unless uefi firmware is selected
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 979)
- v7.02.16 released
  

  
- Fixed spec file for CentOS package
  
  On CentOS squashfs is packaged in squashfs-tools
  

  
- Fixed kiwi-templates %post scriptlet
  
  Check if old image description exists before deleting it.
  This prevents warning messages spit out by rpm on install
  

  
- Fix bashisms in image.sh shell scripts
  
  Replace '&>/dev/null' output redirections to '>/dev/null 2>&1'.
  

  
- Fall back to lazyly umount /dev nodes in case of failure
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 978)
- v7.02.15 released
  

  
- Fixed use of uninitialized value $format
  

  
- Fixup logging with a logfile
  
  If a logfile is used the state of the call if it was successful
  or not is also part of the logfile and not exposed to the calling
  terminal. With this patch the overall success or error information
  is also printed on the calling terminal.
  

  
- Print a message if the target directory is created
  

  
- Code cleanup
  
  use createDirInteractive and replace redundant parts
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 977)
- v7.02.14 released
  

  
- DB: rebuild documentation
  

  
- v7.02.13 released
  

  
- Added support for custom qemu-img format options
  
  When kiwi calls qemu-img to convert the image into the format
  the user has specified in the XML description it might be
  required to pass on additional format options like the compat
  mode for the qcow2 format. This can now be done like the
  following example shows:
  
  <type ... formatoptions="compat=0.10"/>
  

  
- Eliminate weird kiwi revision from unit tests
  
  The unit test environment sets a static kiwi revision
  number 4711 which is odd because it can easily use the
  correct git revision from the git metadata
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 976)
- v7.02.12 released
  

  
- Eliminate grub2-efi path
  
  At the beginning of grub2 the home in boot was set to grub2-efi
  as well as some tools take this information in their name. It's
  time to cleanup this. In addition kiwi now creates a grub.cfg
  which is able to check for grub_platform in order to distinguish
  between efi and non efi configuration differences if there are
  any
  

  
- Added EFI support for none aarch64 arm systems
  
  There are armv7 based boards which comes with an EFI
  firmware. In order to boot them we have to make sure
  to use grub2 bootarm.efi and call the right grub2
  bootloader configuration methods (bnc #908469)
  

  
- Follow up fix for overlayfs changes in kernel 3.18
  
  overlayfs complains: upperdir and workdir must be in separate
  subtrees. Thus we create workdir and upperdir in different
  subdirs below read-write
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 975)
- v7.02.11 released
  

  
- Fixed setupBTRFSSubVolumes
  
  if a subvolume for e.g /var/spool should be created kiwi
  failed because the /var path did not exist. As a workaround
  people could add /var as a volume but if only /var/spool
  should be a volume and not /var there was no way to do it.
  This commit fixed it in a way that kiwi checks if the path
  to the volume exists and if not it is created prior to the
  creation of the subvolume
  

  
- fix handling of source rpms when binaries require src and nosrc version
  
  The is the case when using glibc i686 or -32bit packages
buildservice-autocommit accepted request 263872 from Marcus Schaefer's avatar Marcus Schaefer (sax2) (revision 974)
baserev update by copy to link target
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 973)
- v7.02.10 released
  

  
- Fixed recovery of EFI bootdata
  
  + restore EFI module provided by the rpm package. The one kiwi
    created is specific to the uuid of the root filesystem which
    changes on factory restore.
    
  + make sure correct linux/linuxefi and initrd/initrdefi commands
    are used in recovery grub config by checking against grub_platform
    to allow recovery in BIOS and EFI mode
    
  + make sure mkfs.fat exists in the initrd to allow recovery of
    EFI fat partition, actually implement recovery of EFI fat
    partition
    

    
- Added restore of btrfs subvolumes in restore mode (bnc #908011)
  
  In oem recovery (restore) mode a new function named
  restoreBtrfsSubVolumes will be called if the root filesystem
  is btrfs based. The function will restore the configured
  subvolumes back to the factory state
  

  
- Force creation of recovery filesystem
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 972)
- v7.02.9 released
  

  
- Call updateProtectiveMBR in GPT recovery mode
  
  for some reasons parted leaves an active partition in the
  protective MBR which can cause some EFIs to ignore the disk
  

  
- Fixed backup of disk layout in recovery mode
  
  kiwi recovery creates a backup of the disk layout which includes
  bootloader code and partitions. For GPT there was no code to
  correctly store the table
  

  
- Cleanup use of efi path
  

  
- Fixed use of linuxefi/initrdefi commands for recovery grub2 setup
  

  
- Make sure the preferlvm attribute is inherited
  
  If this information is not present the useLVM
buildservice-autocommit accepted request 262558 from Marcus Schaefer's avatar Marcus Schaefer (sax2) (revision 971)
baserev update by copy to link target
Marcus Schaefer's avatar Marcus Schaefer (sax2) committed (revision 970)
- v7.02.6 released
  

  
- Fixed Makefile clean target
  
  make sure all autogenerated data is wiped on clean
  make sure clean target is called on build of package
  

  
- v7.02.5 released
  

  
- Allow to run kiwi --describe from git checkout
  

  
- Fixed typo in 13.2 os release matcher
  

  
- Support kiwi --describe for openSUSE 13.2
  
  analysing and cloning of 13.2 systems added
  

  
- Added fribidi and fbiterm to kiwi-media-requires package
Displaying revisions 181 - 200 of 1169
openSUSE Build Service is sponsored by