From 50db40944476af56188d3d9060d0c826e7a75af5 Mon Sep 17 00:00:00 2001 From: Thomas Bächler Date: Sun, 7 Jun 2009 14:32:47 +0200 Subject: Fix #12374 --- install/autodetect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install/autodetect b/install/autodetect index d964eef..871b0f3 100644 --- a/install/autodetect +++ b/install/autodetect @@ -13,7 +13,7 @@ install () #Filesystem detection, use sysfs instead of /proc findfs () { - for blkdev in $(find /dev -type b | grep -v -e loop -e ram -e fd); do + for blkdev in $(find /dev -type b | grep -v -e /dev/loop -e /dev/ram -e /dev/fd); do eval $(/usr/lib/klibc/bin/fstype 2>/dev/null < ${blkdev}) if [ -n "${FSTYPE}" -a "${FSTYPE}" != "swap" -a "${FSTYPE}" != "unknown" -a "${FSTYPE}" != "luks" -a "${FSTYPE}" != "lvm2" ]; then echo ${FSTYPE} -- cgit v1.2.3-24-g4f1b