From 17e286e9400cadc1dec084b30e25e9a8f0b0d1a5fd0c2921b7e73c29548ce605 Mon Sep 17 00:00:00 2001 From: Marcus Schaefer Date: Mon, 20 Mar 2017 12:02:32 +0000 Subject: [PATCH 1/8] =?UTF-8?q?-=20Bump=20version:=209.4.1=20=E2=86=92=209?= =?UTF-8?q?.4.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixup pxe builder filesystem image rootfs was not in toplevel - Bump version: 9.4.0 → 9.4.1 - Fixup pxe builder Generate a tarball containing all relevant pxe boot result files instead of a bunch of extra files. This also turns the pxe builder to be compatible again with the legacy kiwi pxe bundler - Don't create shasum over an md5 file OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=13 --- python-kiwi.changes | 34 +++++++++++++++++++++++++++++++++- python-kiwi.spec | 2 +- python-kiwi.tar.gz | 4 ++-- 3 files changed, 36 insertions(+), 4 deletions(-) diff --git a/python-kiwi.changes b/python-kiwi.changes index 327e812..0100eb9 100644 --- a/python-kiwi.changes +++ b/python-kiwi.changes @@ -1,6 +1,38 @@ +------------------------------------------------------------------- +Mon Mar 20 12:55:25 CET 2017 - ms@suse.com + +- Bump version: 9.4.1 → 9.4.2 + +------------------------------------------------------------------- +Mon Mar 20 12:53:58 CET 2017 - ms@suse.com + +- Fixup pxe builder + + filesystem image rootfs was not in toplevel + +------------------------------------------------------------------- +Mon Mar 20 11:36:07 CET 2017 - ms@suse.com + +- Bump version: 9.4.0 → 9.4.1 + +------------------------------------------------------------------- +Mon Mar 20 11:32:30 CET 2017 - ms@suse.com + +- Fixup pxe builder + + Generate a tarball containing all relevant pxe boot result + files instead of a bunch of extra files. This also turns + the pxe builder to be compatible again with the legacy + kiwi pxe bundler + +------------------------------------------------------------------- +Fri Mar 17 16:09:41 CET 2017 - ms@suse.com + +- Don't create shasum over an md5 file + ------------------------------------------------------------------- Thu Mar 16 09:45:14 CET 2017 - ms@suse.com - + - Bump version: 9.3.3 → 9.4.0 ------------------------------------------------------------------- diff --git a/python-kiwi.spec b/python-kiwi.spec index 90dca6f..7397b19 100644 --- a/python-kiwi.spec +++ b/python-kiwi.spec @@ -67,7 +67,7 @@ %endif Name: python-kiwi -Version: 9.4.0 +Version: 9.4.2 Release: 0 Provides: kiwi-schema = 6.5 Url: https://github.com/SUSE/kiwi diff --git a/python-kiwi.tar.gz b/python-kiwi.tar.gz index 06e6f5f..377b4ff 100644 --- a/python-kiwi.tar.gz +++ b/python-kiwi.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86579ae025d9737857ad13fb5dec550f439a91b783b52d53ba4ba6ef572d7ec7 -size 2954211 +oid sha256:ce7873e4d953fae6d3e26824696dcb052ae281f0e3f630337cfcb75b895b7ee2 +size 2843570 From 0189e869abd5ee54469bfa1435fccdf14e7eceac621ff413ca9a6c1a25e1e9df Mon Sep 17 00:00:00 2001 From: Marcus Schaefer Date: Tue, 21 Mar 2017 17:20:17 +0000 Subject: [PATCH 2/8] =?UTF-8?q?-=20Bump=20version:=209.4.2=20=E2=86=92=209?= =?UTF-8?q?.4.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixed checksum file creation If the checksum should be created from a compressed file it is expected that the checksum of the uncompressed file is added to the checksum file. This is because in a pxe deployment the uncompressed version of the file is put on disk and compared with the reference information in the checksum file - Refactor ip link detection There is no reliable way to check if a link is unplugged, thus the code has changed into the following workflow 1. use interfaces which returns success on ip link set up 2. wait for the UP state on all of these interfaces and return if one of them enters the UP state 3. call a fixed wait state to allow to kernel network drivers to settle 4. run through all remaining interfaces, discover the link state and call a DHCP discovery OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=15 --- python-kiwi.changes | 35 ++++++++++++++++++++++++++++++++++- python-kiwi.spec | 2 +- python-kiwi.tar.gz | 4 ++-- 3 files changed, 37 insertions(+), 4 deletions(-) diff --git a/python-kiwi.changes b/python-kiwi.changes index 0100eb9..a2a7fc7 100644 --- a/python-kiwi.changes +++ b/python-kiwi.changes @@ -1,6 +1,39 @@ +------------------------------------------------------------------- +Tue Mar 21 18:13:09 CET 2017 - ms@suse.com + +- Bump version: 9.4.2 → 9.4.3 + +------------------------------------------------------------------- +Tue Mar 21 17:31:05 CET 2017 - ms@suse.com + +- Fixed checksum file creation + + If the checksum should be created from a compressed file + it is expected that the checksum of the uncompressed file + is added to the checksum file. This is because in a pxe + deployment the uncompressed version of the file is put + on disk and compared with the reference information in + the checksum file + +------------------------------------------------------------------- +Tue Mar 21 11:10:50 CET 2017 - ms@suse.com + +- Refactor ip link detection + + There is no reliable way to check if a link is unplugged, thus + the code has changed into the following workflow + + 1. use interfaces which returns success on ip link set up + 2. wait for the UP state on all of these interfaces and return + if one of them enters the UP state + 3. call a fixed wait state to allow to kernel network drivers + to settle + 4. run through all remaining interfaces, discover the link + state and call a DHCP discovery + ------------------------------------------------------------------- Mon Mar 20 12:55:25 CET 2017 - ms@suse.com - + - Bump version: 9.4.1 → 9.4.2 ------------------------------------------------------------------- diff --git a/python-kiwi.spec b/python-kiwi.spec index 7397b19..c001357 100644 --- a/python-kiwi.spec +++ b/python-kiwi.spec @@ -67,7 +67,7 @@ %endif Name: python-kiwi -Version: 9.4.2 +Version: 9.4.3 Release: 0 Provides: kiwi-schema = 6.5 Url: https://github.com/SUSE/kiwi diff --git a/python-kiwi.tar.gz b/python-kiwi.tar.gz index 377b4ff..d20aba2 100644 --- a/python-kiwi.tar.gz +++ b/python-kiwi.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce7873e4d953fae6d3e26824696dcb052ae281f0e3f630337cfcb75b895b7ee2 -size 2843570 +oid sha256:87596e39c606bb0d703ef8c79606aa2ba24f03abac75c83ae2348da8a5e88724 +size 2824524 From 025a9800d998037037d7323ea0724688807fcfa4c5c052d71af237e3cbcf6215 Mon Sep 17 00:00:00 2001 From: Marcus Schaefer Date: Mon, 27 Mar 2017 08:40:29 +0000 Subject: [PATCH 3/8] =?UTF-8?q?-=20Bump=20version:=209.4.3=20=E2=86=92=209?= =?UTF-8?q?.4.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Delete no longer needed btrfs bootpath setup The adaption of the bootpath in the grub.cfg file with regards to the btrfs toplevel volume named '@' was the wrong solution. The fixes in the btrfs filesystem setup and the config files etc/default/grub and sysconfig/bootloader caused the grub toolchain to work properly. This Fixes (bsc#1030038) - Convert user input to absolute paths This commit converts the paths provided by the user with the command line to absolute paths. The effected arguments are: * --root * --target-dir * --bundle-dir This supersedes and fixes #271 - Support editbootconfig also for the iso type This Fixes #274 OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=16 --- python-kiwi.changes | 90 ++++++++++++++++++++++++++++++++++++++++++++- python-kiwi.spec | 4 +- python-kiwi.tar.gz | 4 +- 3 files changed, 94 insertions(+), 4 deletions(-) diff --git a/python-kiwi.changes b/python-kiwi.changes index a2a7fc7..fc98e9c 100644 --- a/python-kiwi.changes +++ b/python-kiwi.changes @@ -1,6 +1,94 @@ +------------------------------------------------------------------- +Mon Mar 27 10:34:27 CEST 2017 - ms@suse.com + +- Bump version: 9.4.3 → 9.4.4 + +------------------------------------------------------------------- +Mon Mar 27 10:28:12 CEST 2017 - ms@suse.com + +- Delete no longer needed btrfs bootpath setup + + The adaption of the bootpath in the grub.cfg file with regards + to the btrfs toplevel volume named '@' was the wrong solution. + The fixes in the btrfs filesystem setup and the config files + etc/default/grub and sysconfig/bootloader caused the grub + toolchain to work properly. This Fixes (bsc#1030038) + +------------------------------------------------------------------- +Fri Mar 24 16:27:38 CET 2017 - dcassany@suse.com + +- Convert user input to absolute paths + + This commit converts the paths provided by the user with the + command line to absolute paths. The effected arguments are: + * --root + * --target-dir + * --bundle-dir + + This supersedes and fixes #271 + +------------------------------------------------------------------- +Fri Mar 24 11:09:54 CET 2017 - ms@suse.com + +- Support editbootconfig also for the iso type + + This Fixes #274 + +------------------------------------------------------------------- +Thu Mar 23 18:16:07 CET 2017 - ms@suse.com + +- ensure grub.cfg exists in EFI path for iso images + + For live and install iso image boot configurations the + bootloader configuration must also exist in the EFI boot + path + +------------------------------------------------------------------- +Wed Mar 22 15:34:08 CET 2017 - ms@suse.com + +- Throw a proper msg on missing filesystem reference + + Don't set a filesystem factor if no filesystem reference is set + +------------------------------------------------------------------- +Wed Mar 22 15:00:32 CET 2017 - ms@suse.com + +- Throw a proper exception on missing boot reference + +------------------------------------------------------------------- +Wed Mar 22 13:00:35 CET 2017 - ms@suse.com + +- Update schema documentation + + Add explanation for attributes with no documentation + Fixup explanation for hybrid attribute + +------------------------------------------------------------------- +Wed Mar 22 12:37:39 CET 2017 - ms@suse.com + +- Recommend jing + + in case of XML validation errors, jing is used to provide + good error messages. jing as a requirement will pull in all + of java which is unwanted, but a Recommends seems appropriate + +------------------------------------------------------------------- +Wed Mar 22 12:03:49 CET 2017 - ms@suse.com + +- Update flags attribute and its documentation + + Delete the seed and compressed value as it is not implemented + and won't be supported in the future. Properly document the + existing overlay methods + +------------------------------------------------------------------- +Wed Mar 22 11:27:45 CET 2017 - ms@suse.com + +- Added doc info for kiwinoswapsearch boot parameter + ------------------------------------------------------------------- Tue Mar 21 18:13:09 CET 2017 - ms@suse.com - + - Bump version: 9.4.2 → 9.4.3 ------------------------------------------------------------------- diff --git a/python-kiwi.spec b/python-kiwi.spec index c001357..39d40e3 100644 --- a/python-kiwi.spec +++ b/python-kiwi.spec @@ -67,7 +67,7 @@ %endif Name: python-kiwi -Version: 9.4.3 +Version: 9.4.4 Release: 0 Provides: kiwi-schema = 6.5 Url: https://github.com/SUSE/kiwi @@ -102,6 +102,7 @@ Provides: kiwi-image:pxe Provides: kiwi-image:tbz Provides: kiwi-image:vmx Provides: python-kiwi = %{version}-%{release} +Recommends: jing Requires: python-docopt Requires: python-future Requires: python-lxml @@ -161,6 +162,7 @@ Provides: kiwi-image:oem Provides: kiwi-image:pxe Provides: kiwi-image:tbz Provides: kiwi-image:vmx +Recommends: jing Requires: python3-docopt Requires: python3-future Requires: python3-lxml diff --git a/python-kiwi.tar.gz b/python-kiwi.tar.gz index d20aba2..2ef4d53 100644 --- a/python-kiwi.tar.gz +++ b/python-kiwi.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:87596e39c606bb0d703ef8c79606aa2ba24f03abac75c83ae2348da8a5e88724 -size 2824524 +oid sha256:05de5c3428179370dc2b387ed55dd40357f92b5f76ff569413b67493d8007f9b +size 2957010 From e40d9f7d7e2e919439a7a1bbe670132262a0ffc5c2fc022ae32a87514ac75b02 Mon Sep 17 00:00:00 2001 From: Marcus Schaefer Date: Thu, 30 Mar 2017 08:42:56 +0000 Subject: [PATCH 4/8] =?UTF-8?q?-=20Bump=20version:=209.4.4=20=E2=86=92=209?= =?UTF-8?q?.4.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixup theme setup in boot Make sure grub theme data is populated in the boot directory. Checking only for the presence of the theme directory is not enough. If the theme directory in boot does not contain the requested theme it must be provided including a warning if the theme data could not be found in the system - Do not change the API in an incompatible way - Use request_package_exclusion method in prepare - Refactor method name of package manager interface The request_package_lock was renamed into request_package_exclusion because that is the goal, to actually exclude(skip) a package. From an implementation point of view this is done to set a lock in the zypper case. However other package managers might do it differently. The interface should stay consistent with regards to the user goal and not with the package manager specific implementation. This OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=17 --- python-kiwi.changes | 53 ++++++++++++++++++++++++++++++++++++++++++++- python-kiwi.spec | 2 +- python-kiwi.tar.gz | 4 ++-- 3 files changed, 55 insertions(+), 4 deletions(-) diff --git a/python-kiwi.changes b/python-kiwi.changes index fc98e9c..3de5913 100644 --- a/python-kiwi.changes +++ b/python-kiwi.changes @@ -1,6 +1,57 @@ +------------------------------------------------------------------- +Thu Mar 30 10:30:35 CEST 2017 - ms@suse.com + +- Bump version: 9.4.4 → 9.4.5 + +------------------------------------------------------------------- +Tue Mar 28 14:23:05 CEST 2017 - ms@suse.com + +- Fixup theme setup in boot + + Make sure grub theme data is populated in the boot directory. + Checking only for the presence of the theme directory is not + enough. If the theme directory in boot does not contain the + requested theme it must be provided including a warning if + the theme data could not be found in the system + +------------------------------------------------------------------- +Tue Mar 28 10:41:52 CEST 2017 - ms@suse.com + +- Do not change the API in an incompatible way + +------------------------------------------------------------------- +Tue Mar 28 10:29:31 CEST 2017 - ms@suse.com + +- Use request_package_exclusion method in prepare + +------------------------------------------------------------------- +Mon Mar 27 15:19:14 CEST 2017 - ms@suse.com + +- Refactor method name of package manager interface + + The request_package_lock was renamed into request_package_exclusion + because that is the goal, to actually exclude(skip) a package. From + an implementation point of view this is done to set a lock in the + zypper case. However other package managers might do it differently. + The interface should stay consistent with regards to the user goal + and not with the package manager specific implementation. This + Fixes #248 + +------------------------------------------------------------------- +Mon Mar 27 14:22:27 CEST 2017 - ms@suse.com + +- Added element + + Allow network interface names to be filtered by the given + regular expression. The expression is handled by the bash + regexp operator. Interface names matching the rule will be + filtered out, all others stay. It is also possible to pass + the variable kiwi_oemnicfilter as kernel command line in a + PXE deployment. Fixes #245 + ------------------------------------------------------------------- Mon Mar 27 10:34:27 CEST 2017 - ms@suse.com - + - Bump version: 9.4.3 → 9.4.4 ------------------------------------------------------------------- diff --git a/python-kiwi.spec b/python-kiwi.spec index 39d40e3..1462e72 100644 --- a/python-kiwi.spec +++ b/python-kiwi.spec @@ -67,7 +67,7 @@ %endif Name: python-kiwi -Version: 9.4.4 +Version: 9.4.5 Release: 0 Provides: kiwi-schema = 6.5 Url: https://github.com/SUSE/kiwi diff --git a/python-kiwi.tar.gz b/python-kiwi.tar.gz index 2ef4d53..c586a80 100644 --- a/python-kiwi.tar.gz +++ b/python-kiwi.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:05de5c3428179370dc2b387ed55dd40357f92b5f76ff569413b67493d8007f9b -size 2957010 +oid sha256:7d28af0f6ca7ae4d49e414d942bb14ac2b4c22e5684efc89831679866fd31e85 +size 2964533 From 13d086ccdba0dc621e8556d6288df3d5e245bbac0cbd9b6a7fe0db905f63fcac Mon Sep 17 00:00:00 2001 From: Marcus Schaefer Date: Wed, 5 Apr 2017 08:28:42 +0000 Subject: [PATCH 5/8] =?UTF-8?q?-=20Bump=20version:=209.4.5=20=E2=86=92=209?= =?UTF-8?q?.4.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Avoid GRUB_DISTRIBUTOR setup in etc/default/grub The GRUB_DISTRIBUTOR information can't be provided in a generic way for all distributions. The information should be either placed by a package post script (as done by most of the distributions) or by a custom kiwi config.sh or images.sh script. Fixes #286 Fixes (bsc#1032119) - Fixup bootloader menu title setup If the menu title is setup via the displayname attribute in the XML configuration, kiwi should not change this text by a prefix or any other style adaptions. Fixes #287 Fixes (bsc#1032118) - Fixup copy of array in boot code The filtered nic interface names are stored in an array and copied back into the original array. The copy of the array was semantically wrong OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=18 --- python-kiwi-boot-packages | 16 ++++++++++ python-kiwi.changes | 65 ++++++++++++++++++++++++++++++++++++++- python-kiwi.spec | 2 +- python-kiwi.tar.gz | 4 +-- 4 files changed, 83 insertions(+), 4 deletions(-) diff --git a/python-kiwi-boot-packages b/python-kiwi-boot-packages index 9d84d3f..4a9784f 100644 --- a/python-kiwi-boot-packages +++ b/python-kiwi-boot-packages @@ -30,6 +30,22 @@ ppc64le:suse-SLES12:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs bu s390:suse-SLES12:atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale grub2 grub2-s390x-emu hwinfo iproute2 iputils kbd kernel-default kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc rsync s390-tools squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz s390x:suse-SLES12:atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale grub2 grub2-s390x-emu hwinfo iproute2 iputils kbd kernel-default kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc rsync s390-tools squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz x86_64:suse-SLES12:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cdrkit-cdrtools-compat checkmedia cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime gfxboot glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hdparm hwinfo iproute2 iputils kbd kernel-default kernel-ec2 kernel-firmware kernel-xen kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc qemu-tools rpm rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xen xfsprogs xz +aarch64:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2-arm64-efi hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +arm:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv5el:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv5tel:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv6hl:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv6l:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv7hl:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv7l:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +i586:suse-SLES13:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cdrkit-cdrtools-compat checkmedia cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime gfxboot glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hdparm hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm memtest86+ nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc qemu-tools rpm rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +i686:suse-SLES13:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cdrkit-cdrtools-compat checkmedia cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime gfxboot glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hdparm hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm memtest86+ nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc qemu-tools rpm rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +ppc:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_ppc_available +ppc64:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_ppc64_available +ppc64le:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_ppc64le_available +s390:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_s390_available +s390x:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_s390x_available +x86_64:suse-SLES13:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cdrkit-cdrtools-compat checkmedia cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime gfxboot glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hdparm hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm memtest86+ nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc qemu-tools rpm rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz aarch64:suse-leap42.1:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2-arm64-efi hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz arm:suse-leap42.1:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz armv5el:suse-leap42.1:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz diff --git a/python-kiwi.changes b/python-kiwi.changes index 3de5913..ac049be 100644 --- a/python-kiwi.changes +++ b/python-kiwi.changes @@ -1,6 +1,69 @@ +------------------------------------------------------------------- +Wed Apr 5 10:22:53 CEST 2017 - ms@suse.com + +- Bump version: 9.4.5 → 9.4.6 + +------------------------------------------------------------------- +Tue Apr 4 16:52:03 CEST 2017 - ms@suse.com + +- Avoid GRUB_DISTRIBUTOR setup in etc/default/grub + + The GRUB_DISTRIBUTOR information can't be provided in a generic + way for all distributions. The information should be either placed + by a package post script (as done by most of the distributions) + or by a custom kiwi config.sh or images.sh script. Fixes #286 + Fixes (bsc#1032119) + +------------------------------------------------------------------- +Tue Apr 4 11:18:01 CEST 2017 - ms@suse.com + +- Fixup bootloader menu title setup + + If the menu title is setup via the displayname attribute in + the XML configuration, kiwi should not change this text by + a prefix or any other style adaptions. Fixes #287 + Fixes (bsc#1032118) + +------------------------------------------------------------------- +Tue Apr 4 11:00:27 CEST 2017 - ms@suse.com + +- Fixup copy of array in boot code + + The filtered nic interface names are stored in an array + and copied back into the original array. The copy of the + array was semantically wrong + +------------------------------------------------------------------- +Mon Apr 3 18:54:54 CEST 2017 - ms@suse.com + +- Fixup grub2 setup and tool calls + + Depending on the distribution the grub tools are either named + grub2-tool or grub-tool. Additionally the grub configuration + data is expected to live in boot/grub2 or boot/grub. This commit + handles the tool calls and also the grub boot directory setup + in a generic way + +------------------------------------------------------------------- +Thu Mar 30 16:10:46 CEST 2017 - dcassany@suse.com + +- Include SLE13 boot descriptions for x86_64 and arm + + This commit includes boot descriptions for SLE13, the descriptions + are based on leap 42.3. + +------------------------------------------------------------------- +Thu Mar 30 11:17:19 CEST 2017 - ms@suse.com + +- Delete obsolete ec2 disk format + + The ec2 value in the format attribute is deprecated and no + longer supported It remained in the schema for a while and + has now reached EOL + ------------------------------------------------------------------- Thu Mar 30 10:30:35 CEST 2017 - ms@suse.com - + - Bump version: 9.4.4 → 9.4.5 ------------------------------------------------------------------- diff --git a/python-kiwi.spec b/python-kiwi.spec index 1462e72..994d2cf 100644 --- a/python-kiwi.spec +++ b/python-kiwi.spec @@ -67,7 +67,7 @@ %endif Name: python-kiwi -Version: 9.4.5 +Version: 9.4.6 Release: 0 Provides: kiwi-schema = 6.5 Url: https://github.com/SUSE/kiwi diff --git a/python-kiwi.tar.gz b/python-kiwi.tar.gz index c586a80..7979ba1 100644 --- a/python-kiwi.tar.gz +++ b/python-kiwi.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d28af0f6ca7ae4d49e414d942bb14ac2b4c22e5684efc89831679866fd31e85 -size 2964533 +oid sha256:dfff9d02a4ad8f05d058e8264952694141ce82e870a8f1f8b2960b95d11bf352 +size 3299527 From af4a221a2b50c07c51a711a684775d26e0071b8fa4a9b77dad94a5089b2e9a46 Mon Sep 17 00:00:00 2001 From: Marcus Schaefer Date: Wed, 5 Apr 2017 10:15:19 +0000 Subject: [PATCH 6/8] =?UTF-8?q?-=20Bump=20version:=209.4.7=20=E2=86=92=209?= =?UTF-8?q?.4.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixup grub2 template parameters The boot_directory_name parameters was missing for live and install image builds - Bump version: 9.4.6 → 9.4.7 - Fixup grub2 bios module setup Only copy grub2 bios modules if the architecture supports it OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=19 --- python-kiwi.changes | 27 ++++++++++++++++++++++++++- python-kiwi.spec | 2 +- python-kiwi.tar.gz | 4 ++-- 3 files changed, 29 insertions(+), 4 deletions(-) diff --git a/python-kiwi.changes b/python-kiwi.changes index ac049be..ce5afaf 100644 --- a/python-kiwi.changes +++ b/python-kiwi.changes @@ -1,6 +1,31 @@ +------------------------------------------------------------------- +Wed Apr 5 11:34:40 CEST 2017 - ms@suse.com + +- Bump version: 9.4.7 → 9.4.8 + +------------------------------------------------------------------- +Wed Apr 5 11:33:26 CEST 2017 - ms@suse.com + +- Fixup grub2 template parameters + + The boot_directory_name parameters was missing for live and + install image builds + +------------------------------------------------------------------- +Wed Apr 5 11:21:59 CEST 2017 - ms@suse.com + +- Bump version: 9.4.6 → 9.4.7 + +------------------------------------------------------------------- +Wed Apr 5 11:21:06 CEST 2017 - ms@suse.com + +- Fixup grub2 bios module setup + + Only copy grub2 bios modules if the architecture supports it + ------------------------------------------------------------------- Wed Apr 5 10:22:53 CEST 2017 - ms@suse.com - + - Bump version: 9.4.5 → 9.4.6 ------------------------------------------------------------------- diff --git a/python-kiwi.spec b/python-kiwi.spec index 994d2cf..6e9ad40 100644 --- a/python-kiwi.spec +++ b/python-kiwi.spec @@ -67,7 +67,7 @@ %endif Name: python-kiwi -Version: 9.4.6 +Version: 9.4.8 Release: 0 Provides: kiwi-schema = 6.5 Url: https://github.com/SUSE/kiwi diff --git a/python-kiwi.tar.gz b/python-kiwi.tar.gz index 7979ba1..3718200 100644 --- a/python-kiwi.tar.gz +++ b/python-kiwi.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dfff9d02a4ad8f05d058e8264952694141ce82e870a8f1f8b2960b95d11bf352 -size 3299527 +oid sha256:109b8a51c54d01e497cae127af81cb38f22d1b66e394218db2297bfc7d40787f +size 3292297 From b02a26ad6df1a2b7406da880b83f90a9c9818757c71059af0439ee90d50d83b7 Mon Sep 17 00:00:00 2001 From: Marcus Schaefer Date: Thu, 6 Apr 2017 13:58:43 +0000 Subject: [PATCH 7/8] =?UTF-8?q?-=20Bump=20version:=209.4.8=20=E2=86=92=209?= =?UTF-8?q?.4.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update development and contribution chapter Fix some minor inconsistencies due to latest code changes with regards to py2 and py3 compatibility and also change the style of the chapter to be more straight forward for people who would like to contribute from scratch - Keep imported image in OCI format instead of docker Kiwi always uses OCI format for container manipulations, so it is easier to assume the image kept between prepare and create step is also in OCI format, this way less format convertions are needed. OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=20 --- python-kiwi.changes | 26 +++++++++++++++++++++++++- python-kiwi.spec | 2 +- python-kiwi.tar.gz | 4 ++-- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/python-kiwi.changes b/python-kiwi.changes index ce5afaf..16fafc8 100644 --- a/python-kiwi.changes +++ b/python-kiwi.changes @@ -1,6 +1,21 @@ +------------------------------------------------------------------- +Thu Apr 6 15:51:32 CEST 2017 - ms@suse.com + +- Bump version: 9.4.8 → 9.4.9 + +------------------------------------------------------------------- +Thu Apr 6 15:16:31 CEST 2017 - ms@suse.com + +- Update development and contribution chapter + + Fix some minor inconsistencies due to latest code changes + with regards to py2 and py3 compatibility and also change + the style of the chapter to be more straight forward for + people who would like to contribute from scratch + ------------------------------------------------------------------- Wed Apr 5 11:34:40 CEST 2017 - ms@suse.com - + - Bump version: 9.4.7 → 9.4.8 ------------------------------------------------------------------- @@ -39,6 +54,15 @@ Tue Apr 4 16:52:03 CEST 2017 - ms@suse.com or by a custom kiwi config.sh or images.sh script. Fixes #286 Fixes (bsc#1032119) +------------------------------------------------------------------- +Tue Apr 4 12:43:18 CEST 2017 - dcassany@suse.com + +- Keep imported image in OCI format instead of docker + + Kiwi always uses OCI format for container manipulations, so it is + easier to assume the image kept between prepare and create step + is also in OCI format, this way less format convertions are needed. + ------------------------------------------------------------------- Tue Apr 4 11:18:01 CEST 2017 - ms@suse.com diff --git a/python-kiwi.spec b/python-kiwi.spec index 6e9ad40..58eeac3 100644 --- a/python-kiwi.spec +++ b/python-kiwi.spec @@ -67,7 +67,7 @@ %endif Name: python-kiwi -Version: 9.4.8 +Version: 9.4.9 Release: 0 Provides: kiwi-schema = 6.5 Url: https://github.com/SUSE/kiwi diff --git a/python-kiwi.tar.gz b/python-kiwi.tar.gz index 3718200..aa00242 100644 --- a/python-kiwi.tar.gz +++ b/python-kiwi.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:109b8a51c54d01e497cae127af81cb38f22d1b66e394218db2297bfc7d40787f -size 3292297 +oid sha256:d71cc4096d2457338698c4f341aa81e1cc4958cc6775f03be761e33b227ada70 +size 3303493 From fad6d382912b7fe0674b01cdfd45a3eb83425119754b8e9099920f53f337bc7e Mon Sep 17 00:00:00 2001 From: Marcus Schaefer Date: Mon, 10 Apr 2017 17:25:30 +0000 Subject: [PATCH 8/8] =?UTF-8?q?-=20Bump=20version:=209.4.9=20=E2=86=92=209?= =?UTF-8?q?.4.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add warning logs for unkown base image URIs - Update spec template for SLE13->SLE15 - Rename SLE13 to SLE15 - Follow up fix for grub2 setup in live builder The live iso builder still used a fixed boot/grub2 path but due to the refactoring this path is now distro dependant and should be obtained dynamically - Cleanup use of bootloader path in boot code Instead of repeating the bootloader path only specify it once per setup path OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=21 --- python-kiwi-boot-packages | 48 ++++++++++++++++++++----------- python-kiwi.changes | 60 ++++++++++++++++++++++++++++++++++++++- python-kiwi.spec | 8 +++--- python-kiwi.tar.gz | 4 +-- 4 files changed, 97 insertions(+), 23 deletions(-) diff --git a/python-kiwi-boot-packages b/python-kiwi-boot-packages index 4a9784f..176fe20 100644 --- a/python-kiwi-boot-packages +++ b/python-kiwi-boot-packages @@ -14,6 +14,22 @@ ppc64le:rhel-07.0:no_boot_descriptions_for_rhel-07.0_on_ppc64le_available s390:rhel-07.0:no_boot_descriptions_for_rhel-07.0_on_s390_available s390x:rhel-07.0:no_boot_descriptions_for_rhel-07.0_on_s390x_available x86_64:rhel-07.0:basesystem bc bind-libs bind-utils coreutils dialog dracut e2fsprogs file filesystem gawk genisoimage gettext grub2 grub2-efi grub2-efi-modules hdparm hwinfo initscripts iproute kbd kernel lvm2 make memtest86+ pam parted psmisc rpm setup sysfsutils syslinux sysvinit-tools tar +aarch64:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_aarch64_available +arm:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_arm_available +armv5el:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_armv5el_available +armv5tel:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_armv5tel_available +armv6hl:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_armv6hl_available +armv6l:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_armv6l_available +armv7hl:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_armv7hl_available +armv7l:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_armv7l_available +i586:suse-SLE15:adaptec-firmware bind-libs bind-utils btrfsprogs cdrkit-cdrtools-compat checkmedia cryptsetup dialog e2fsprogs file filesystem fribidi gawk genisoimage gfxboot glibc glibc-locale grub2 grub2-i386-pc grub2-x86_64-efi hdparm hwinfo iproute2 kbd kernel-default kernel-desktop kernel-firmware kiwi-tools kmod-compat lvm2 make memtest86+ netcfg nfs-client parted plymouth plymouth-scripts psmisc qemu-tools rpm shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev which +i686:suse-SLE15:adaptec-firmware bind-libs bind-utils btrfsprogs cdrkit-cdrtools-compat checkmedia cryptsetup dialog e2fsprogs file filesystem fribidi gawk genisoimage gfxboot glibc glibc-locale grub2 grub2-i386-pc grub2-x86_64-efi hdparm hwinfo iproute2 kbd kernel-default kernel-desktop kernel-firmware kiwi-tools kmod-compat lvm2 make memtest86+ netcfg nfs-client parted plymouth plymouth-scripts psmisc qemu-tools rpm shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev which +ppc:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_ppc_available +ppc64:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_ppc64_available +ppc64le:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_ppc64le_available +s390:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_s390_available +s390x:suse-SLE15:no_boot_descriptions_for_suse-SLE15_on_s390x_available +x86_64:suse-SLE15:adaptec-firmware bind-libs bind-utils btrfsprogs cdrkit-cdrtools-compat checkmedia cryptsetup dialog e2fsprogs file filesystem fribidi gawk genisoimage gfxboot glibc glibc-locale grub2 grub2-i386-pc grub2-x86_64-efi hdparm hwinfo iproute2 kbd kernel-default kernel-desktop kernel-firmware kiwi-tools kmod-compat lvm2 make memtest86+ netcfg nfs-client parted plymouth plymouth-scripts psmisc qemu-tools rpm shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev which aarch64:suse-SLES12:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2-arm64-efi hwinfo iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz arm:suse-SLES12:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz armv5el:suse-SLES12:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz @@ -30,22 +46,22 @@ ppc64le:suse-SLES12:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs bu s390:suse-SLES12:atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale grub2 grub2-s390x-emu hwinfo iproute2 iputils kbd kernel-default kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc rsync s390-tools squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz s390x:suse-SLES12:atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale grub2 grub2-s390x-emu hwinfo iproute2 iputils kbd kernel-default kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc rsync s390-tools squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz x86_64:suse-SLES12:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cdrkit-cdrtools-compat checkmedia cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime gfxboot glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hdparm hwinfo iproute2 iputils kbd kernel-default kernel-ec2 kernel-firmware kernel-xen kexec-tools kiwi-tools kpartx lvm2 make mdadm module-init-tools multipath-tools net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc qemu-tools rpm rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xen xfsprogs xz -aarch64:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2-arm64-efi hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -arm:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -armv5el:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -armv5tel:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -armv6hl:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -armv6l:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -armv7hl:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -armv7l:suse-SLES13:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -i586:suse-SLES13:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cdrkit-cdrtools-compat checkmedia cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime gfxboot glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hdparm hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm memtest86+ nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc qemu-tools rpm rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -i686:suse-SLES13:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cdrkit-cdrtools-compat checkmedia cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime gfxboot glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hdparm hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm memtest86+ nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc qemu-tools rpm rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz -ppc:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_ppc_available -ppc64:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_ppc64_available -ppc64le:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_ppc64le_available -s390:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_s390_available -s390x:suse-SLES13:no_boot_descriptions_for_suse-SLES13_on_s390x_available -x86_64:suse-SLES13:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cdrkit-cdrtools-compat checkmedia cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime gfxboot glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hdparm hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm memtest86+ nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc qemu-tools rpm rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +aarch64:suse-SLES15:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2-arm64-efi hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +arm:suse-SLES15:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv5el:suse-SLES15:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv5tel:suse-SLES15:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv6hl:suse-SLES15:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv6l:suse-SLES15:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv7hl:suse-SLES15:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +armv7l:suse-SLES15:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +i586:suse-SLES15:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +i686:suse-SLES15:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz +ppc:suse-SLES15:no_boot_descriptions_for_suse-SLES15_on_ppc_available +ppc64:suse-SLES15:no_boot_descriptions_for_suse-SLES15_on_ppc64_available +ppc64le:suse-SLES15:no_boot_descriptions_for_suse-SLES15_on_ppc64le_available +s390:suse-SLES15:no_boot_descriptions_for_suse-SLES15_on_s390_available +s390x:suse-SLES15:no_boot_descriptions_for_suse-SLES15_on_s390x_available +x86_64:suse-SLES15:adaptec-firmware atftp bc bind-libs bind-utils btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2 grub2-i386-pc grub2-x86_64-efi grub2-x86_64-xen hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-desktop kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm nbd net-tools netcfg nfs-client parted pciutils plymouth plymouth-scripts procps psmisc rsync shim squashfs sysconfig sysfsutils syslinux sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz aarch64:suse-leap42.1:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk grub2-arm64-efi hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz arm:suse-leap42.1:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz armv5el:suse-leap42.1:atftp bc bind-libs bind-utils bootsplash btrfsprogs busybox bzip2 cryptsetup curl dialog diffutils dmraid dosfstools e2fsprogs fbiterm file filesystem fribidi gawk genisoimage gettext-runtime glibc glibc-locale gptfdisk hwinfo ifplugd iproute2 iputils kbd kernel-default kernel-firmware kexec-tools kiwi-tools kmod-compat kpartx lvm2 make mdadm net-tools netcfg parted pciutils plymouth plymouth-scripts procps psmisc rsync squashfs sysconfig sysfsutils sysvinit-tools tar timezone udev util-linux which wicked xfsprogs xz diff --git a/python-kiwi.changes b/python-kiwi.changes index 16fafc8..5ce69ea 100644 --- a/python-kiwi.changes +++ b/python-kiwi.changes @@ -1,6 +1,54 @@ +------------------------------------------------------------------- +Mon Apr 10 19:16:57 CEST 2017 - ms@suse.com + +- Bump version: 9.4.9 → 9.4.10 + +------------------------------------------------------------------- +Mon Apr 10 17:21:00 CEST 2017 - dcassany@suse.com + +- Add warning logs for unkown base image URIs + +------------------------------------------------------------------- +Mon Apr 10 16:05:53 CEST 2017 - dcassany@suse.com + +- Update spec template for SLE13->SLE15 + +------------------------------------------------------------------- +Mon Apr 10 15:46:05 CEST 2017 - dcassany@suse.com + +- Rename SLE13 to SLE15 + +------------------------------------------------------------------- +Mon Apr 10 15:04:33 CEST 2017 - ms@suse.com + +- Follow up fix for grub2 setup in live builder + + The live iso builder still used a fixed boot/grub2 path + but due to the refactoring this path is now distro dependant + and should be obtained dynamically + +------------------------------------------------------------------- +Mon Apr 10 15:03:04 CEST 2017 - ms@suse.com + +- Cleanup use of bootloader path in boot code + + Instead of repeating the bootloader path only specify it + once per setup path + +------------------------------------------------------------------- +Mon Apr 10 14:33:25 CEST 2017 - dcassany@suse.com + +- Add method to setup installation of recommended packages + + With this commit package manager are always set to include only + required packages or set to include required and recommended + packages. + + This commit fixes #285 + ------------------------------------------------------------------- Thu Apr 6 15:51:32 CEST 2017 - ms@suse.com - + - Bump version: 9.4.8 → 9.4.9 ------------------------------------------------------------------- @@ -54,6 +102,16 @@ Tue Apr 4 16:52:03 CEST 2017 - ms@suse.com or by a custom kiwi config.sh or images.sh script. Fixes #286 Fixes (bsc#1032119) +------------------------------------------------------------------- +Tue Apr 4 16:08:43 CEST 2017 - dcassany@suse.com + +- Added support for unknown uri types for base image references + + This commits bypasses any URI check if the uri schema is unknown in + RootImport class. This way the URI is bypassed to skopeo if it couldn't + be translated to any known type. That enables referencing images with + any URI supported by skopeo, i.e. DockerHub images. + ------------------------------------------------------------------- Tue Apr 4 12:43:18 CEST 2017 - dcassany@suse.com diff --git a/python-kiwi.spec b/python-kiwi.spec index 58eeac3..038d66d 100644 --- a/python-kiwi.spec +++ b/python-kiwi.spec @@ -29,9 +29,9 @@ %define distro suse-SLES12 %endif -# SLE13: -%if 0%{?sle_version} == 130000 && !0%{?is_opensuse} -%define distro suse-SLES13 +# SLE15: +%if 0%{?sle_version} == 150000 && !0%{?is_opensuse} +%define distro suse-SLES15 %endif # Leap 42.1(openSUSE product based on SLE 12SP1): @@ -67,7 +67,7 @@ %endif Name: python-kiwi -Version: 9.4.9 +Version: 9.4.10 Release: 0 Provides: kiwi-schema = 6.5 Url: https://github.com/SUSE/kiwi diff --git a/python-kiwi.tar.gz b/python-kiwi.tar.gz index aa00242..82c6a4b 100644 --- a/python-kiwi.tar.gz +++ b/python-kiwi.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d71cc4096d2457338698c4f341aa81e1cc4958cc6775f03be761e33b227ada70 -size 3303493 +oid sha256:90591f5279e2e5c96d0c018286399ab1c711aee58d5d4e6061f513739aeaa24c +size 3183393