summaryrefslogtreecommitdiff
path: root/sys-boot/os-prober/files/os-prober-1.79-mounted-boot-partition-fix.patch
blob: 1be8c810ddf5eb8363e21b5711daf31933e07e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Fixes the problem of the root partition being returned instead of the boot
partition when both are already mounted somewhere.

Bug: https://bugs.debian.org/699840
     https://bugzilla.redhat.com/906886

--- a/linux-boot-prober
+++ b/linux-boot-prober
@@ -167,7 +167,7 @@ else
 			bootpart="${mountboot%% *}"
 			bootmounted="${mountboot#* }"
 		else
-			bootpart="$partition"
+			bootpart="$(grep " $mpoint/boot " "$OS_PROBER_TMP/mounted-map" | head -n1 | cut -d " " -f 4)"
 			bootmounted=0
 		fi
 		for test in /usr/lib/linux-boot-probes/mounted/*; do