Hello community,
here is the log from the commit of package kiwi-boot-descriptions for
openSUSE:Factory checked in at 2019-08-30 14:37:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kiwi-boot-descriptions (Old)
and /work/SRC/openSUSE:Factory/.kiwi-boot-descriptions.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kiwi-boot-descriptions"
Fri Aug 30 14:37:06 2019 rev:13 rq:726546 version:1.1.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/kiwi-boot-descriptions/kiwi-boot-descriptions.changes
2019-08-15 12:25:15.218608388 +0200
+++
/work/SRC/openSUSE:Factory/.kiwi-boot-descriptions.new.7948/kiwi-boot-descriptions.changes
2019-08-30 14:37:09.205464633 +0200
@@ -1,0 +2,5 @@
+Tue Aug 20 15:27:35 UTC 2019 - Marcus Schaefer <[email protected]>
+
+- Make application ID check in searchImageISODevice() case-insensitive
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kiwi-boot-descriptions.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/custom_boot/functions.sh new/custom_boot/functions.sh
--- old/custom_boot/functions.sh 2019-07-24 12:12:55.023323475 +0200
+++ new/custom_boot/functions.sh 2019-08-20 17:26:55.534880212 +0200
@@ -2748,7 +2748,7 @@
$isoinfo -d -i $i 2>/dev/null|grep "Application id:"|cut -f2
-d:
)
mbrVID=$(echo $mbrVID)
- if [ "$mbrVID" = "$mbrIID" ];then
+ if [ "${mbrVID^^}" = "${mbrIID^^}" ];then
# /.../
# found ISO header on a device, now check if there is
# also a partition for this device with the same
@@ -2763,7 +2763,7 @@
grep "Application id:"|cut -f2 -d:
)
mbrVID=$(echo $mbrVID)
- if [ "$mbrVID" = "$mbrIID" ];then
+ if [ "${mbrVID^^}" = "${mbrIID^^}" ];then
biosBootDevice=$pdev
echo; return 0
fi