forked from pool/python-kiwi
- Bump version: 9.15.4 → 9.16.0
- Move fedora integration test build to fc28 distro - Bump version: 9.15.3 → 9.15.4 - Fixup move_to_root method move_to_root is called to check each element of a given list and changes any path specification to a valid path if the given root path would be it's root(/). This tranformation implied the creation of paths containing double slashes like //foo which was considered harmless. However it has turned out that the dnf package manager makes a difference here which requires to fix the resulting paths. This Fixes #761 - Adding license tag under description tag in schema This license tag does not effect the resulting image in any way. The tag is just included to state the license of the kiwi image sources in case they are distributed. OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=111
This commit is contained in:
parent
73a1834668
commit
a49e67a2f8
@ -1,6 +1,134 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 6 13:32:11 CEST 2018 - ms@suse.de
|
||||
|
||||
- Bump version: 9.15.4 → 9.16.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 6 13:16:22 CEST 2018 - ms@suse.de
|
||||
|
||||
- Move fedora integration test build to fc28 distro
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 5 15:00:32 CEST 2018 - ms@suse.de
|
||||
|
||||
- Bump version: 9.15.3 → 9.15.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 5 12:22:38 CEST 2018 - ms@suse.de
|
||||
|
||||
- Fixup move_to_root method
|
||||
|
||||
move_to_root is called to check each element of a given list
|
||||
and changes any path specification to a valid path if the given
|
||||
root path would be it's root(/). This tranformation implied the
|
||||
creation of paths containing double slashes like //foo which
|
||||
was considered harmless. However it has turned out that the dnf
|
||||
package manager makes a difference here which requires to fix
|
||||
the resulting paths. This Fixes #761
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 4 17:16:12 CEST 2018 - dcassany@suse.de
|
||||
|
||||
- Adding license tag under description tag in schema
|
||||
|
||||
This license tag does not effect the resulting image in any way. The tag
|
||||
is just included to state the license of the kiwi image sources in case
|
||||
they are distributed.
|
||||
|
||||
Fixes #728
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 4 11:00:55 CEST 2018 - ms@suse.de
|
||||
|
||||
- Make sure profile env is included in live images
|
||||
|
||||
For all images which boots via dracut the .profile file is included
|
||||
except for live iso's because no information is needed from that file
|
||||
to boot or customize the boot. However the .profile contains the
|
||||
kiwi_revision information which is useful for any image type.
|
||||
This Fixes #755
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 4 10:46:49 CEST 2018 - ms@suse.de
|
||||
|
||||
- Add config-cdroot to description import list
|
||||
|
||||
During the prepare step the image description and mandatory
|
||||
files needed in the create step are copied into the image
|
||||
root system below the image/ directory. In case of the
|
||||
optional config-cdroot archive this copy action was missing
|
||||
which lead to the problem that the archive was not present
|
||||
if the kiwi system create command is sequence is used.
|
||||
This Fixes #756
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 4 10:20:24 CEST 2018 - ms@suse.de
|
||||
|
||||
- Added true module to grub image list
|
||||
|
||||
When kiwi creates a grub image a list of modules are embedded.
|
||||
For the purpose of snapshot boot the true module seems to be
|
||||
used but was not included at build time when kiwi created
|
||||
the grub image. This Fixes bsc#1093917
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 4 09:59:35 CEST 2018 - ms@suse.de
|
||||
|
||||
- Changed GUID format from signed to unsigned
|
||||
|
||||
With reference to Microsoft Guid constructors it seems unsigned
|
||||
values are allowed which could exceed the value range of the
|
||||
binary unpack used in kiwi. This Fixes bsc#1095267
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 1 16:13:07 CEST 2018 - dcassany@suse.de
|
||||
|
||||
- Fix SC2164 complain of shellcheck
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 31 09:33:01 CEST 2018 - dcassany@suse.de
|
||||
|
||||
- Updating shellcheck call from tox
|
||||
|
||||
Recent shellcheck versions are more strict and complain about
|
||||
backslashes "\" used in literals claiming it is preferred to use
|
||||
double backslashes "\\". As is just a styling advise and we use
|
||||
backslashes in multiple commands (echo, sed, etc) I believe this
|
||||
can be ignored.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 30 17:55:05 CEST 2018 - dcassany@suse.de
|
||||
|
||||
- Relax runtime check for ISO images using dmsquash
|
||||
|
||||
This commit relaxes the dracut-kiwi-live module requirement if
|
||||
dmsquash dracut module is selected in flags attribute.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 29 16:42:55 CEST 2018 - ms@suse.de
|
||||
|
||||
- omit multipath module in live iso initrd
|
||||
|
||||
The multipath module creates device maps which puts the device
|
||||
in a busy state and prevents the creation of a persistent write
|
||||
partition. As multipath seems never useful for the root of a live
|
||||
iso image we generally omit this module from being included
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 29 10:26:03 CEST 2018 - ms@suse.de
|
||||
|
||||
- Fixup LOADER_LOCATION in sysconfig/bootloader
|
||||
|
||||
By default we always set LOADER_LOCATION=mbr which is wrong
|
||||
if EFI is in use. This patch updates the value to be correct.
|
||||
It also seems that this variable is only consumed by the
|
||||
yast2 bootloader module from past days. Thus we consider
|
||||
it obsolete and on the to be droped list in future releases.
|
||||
This Fixes #746
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 29 09:14:28 CEST 2018 - ms@suse.de
|
||||
|
||||
|
||||
- Bump version: 9.15.2 → 9.15.3
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
@ -38,7 +38,7 @@
|
||||
%endif
|
||||
|
||||
Name: python-kiwi
|
||||
Version: 9.15.3
|
||||
Version: 9.16.0
|
||||
Provides: kiwi-schema = 6.6
|
||||
Release: 0
|
||||
Url: https://github.com/SUSE/kiwi
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2e0d783ab5c231a24defc274349000f4ec4bc82cabf86623f973b320962ec38
|
||||
size 525895
|
||||
oid sha256:d55504a8e21dc9c2aab1dd0c6cbc87e59a3102aa62b29c829fa955ca2fc4d8a9
|
||||
size 526352
|
||||
|
Loading…
Reference in New Issue
Block a user