recipes: libs/libexecinfo: Do not strip references from libraries
[dragora.git] / patches / os-prober / os-prober-umount-fix.patch
blob6e7937c161b9ba7c22e7d15731c1d8bc30fbaa48
1 Index: os-prober/common.sh
2 ===================================================================
3 --- os-prober.orig/common.sh
4 +++ os-prober/common.sh
5 @@ -336,3 +336,13 @@ linux_mount_boot () {
7 mountboot="$bootpart $mounted"
10 +umount_exec=$(which umount)
11 +umount() {
12 + if ! $umount_exec $@ 2> /dev/null; then
13 + error "umount error, retrying after 1 sec"
14 + sleep 1
15 + $umount_exec $@
16 + fi