summaryrefslogtreecommitdiffstats
path: root/main/alpine-conf/0001-setup-disk-check-if-the-devce-itself-is-mounted.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/alpine-conf/0001-setup-disk-check-if-the-devce-itself-is-mounted.patch')
-rw-r--r--main/alpine-conf/0001-setup-disk-check-if-the-devce-itself-is-mounted.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/main/alpine-conf/0001-setup-disk-check-if-the-devce-itself-is-mounted.patch b/main/alpine-conf/0001-setup-disk-check-if-the-devce-itself-is-mounted.patch
new file mode 100644
index 00000000000..28050509f82
--- /dev/null
+++ b/main/alpine-conf/0001-setup-disk-check-if-the-devce-itself-is-mounted.patch
@@ -0,0 +1,25 @@
+From 841c6823ac8a3f1e17af457722c8b7ea2abf8cb4 Mon Sep 17 00:00:00 2001
+From: Natanael Copa <ncopa@alpinelinux.org>
+Date: Wed, 30 Sep 2009 12:57:59 +0000
+Subject: [PATCH] setup-disk: check if the devce itself is mounted
+
+this will filter out loop0 device
+---
+ setup-disk.in | 1 +
+ 1 files changed, 1 insertions(+), 0 deletions(-)
+
+diff --git a/setup-disk.in b/setup-disk.in
+index 33cc868..c11d20c 100644
+--- a/setup-disk.in
++++ b/setup-disk.in
+@@ -149,6 +149,7 @@ has_mounted_part() {
+ # parse /proc/mounts for mounted devices
+ for p in $(awk '$1 ~ /^\/dev\// {gsub("/dev/", "", $1); print $1}' \
+ /proc/mounts); do
++ [ "$p" = "$1" ] && return 0
+ [ -e /sys/block/$1/$p ] && return 0
+ done
+ return 1
+--
+1.6.4.4
+