summarylogtreecommitdiffstats
path: root/os-prober-bootpart-name-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'os-prober-bootpart-name-fix.patch')
-rw-r--r--os-prober-bootpart-name-fix.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/os-prober-bootpart-name-fix.patch b/os-prober-bootpart-name-fix.patch
deleted file mode 100644
index 40a909da3f46..000000000000
--- a/os-prober-bootpart-name-fix.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Index: os-prober/common.sh
-===================================================================
---- os-prober.orig/common.sh
-+++ os-prober/common.sh
-@@ -269,7 +269,7 @@ linux_mount_boot () {
- if [ "$bindfrom" != "$tmpmnt/boot" ]; then
- if mount --bind "$bindfrom" "$tmpmnt/boot"; then
- mounted=1
-- bootpart="$1"
-+ bootpart="$tmppart"
- else
- debug "failed to bind-mount $bindfrom onto $tmpmnt/boot"
- fi
-@@ -277,6 +277,15 @@ linux_mount_boot () {
- fi
- if [ "$mounted" ]; then
- :
-+ elif [ -e "$tmppart" ]; then
-+ bootpart="$tmppart"
-+ boottomnt="$tmppart"
-+ elif [ -e "$tmpmnt/$tmppart" ]; then
-+ bootpart="$tmppart"
-+ boottomnt="$tmpmnt/$tmppart"
-+ elif [ -e "/target/$tmppart" ]; then
-+ bootpart="$tmppart"
-+ boottomnt="/target/$tmppart"
- elif [ -e "$1" ]; then
- bootpart="$1"
- boottomnt="$1"