summaryrefslogtreecommitdiffstats
path: root/storage/udev.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-04-01 12:44:17 -0400
committerChris Lumens <clumens@redhat.com>2009-04-01 13:35:06 -0400
commit7957ec9321aa025009f6ebf23f0ee8fef74ad1df (patch)
treec6023d6e4f464f1ec22b1495f12f8ead86fdbbd0 /storage/udev.py
parent4248b0518c10c75775fb618dca56b8336aad2074 (diff)
downloadanaconda-7957ec9321aa025009f6ebf23f0ee8fef74ad1df.tar.gz
anaconda-7957ec9321aa025009f6ebf23f0ee8fef74ad1df.tar.xz
anaconda-7957ec9321aa025009f6ebf23f0ee8fef74ad1df.zip
It's 2009, let's ignore floppy drives now (#493338, #493377).
Diffstat (limited to 'storage/udev.py')
-rw-r--r--storage/udev.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/udev.py b/storage/udev.py
index 6a22a98b2..63cc3fdf2 100644
--- a/storage/udev.py
+++ b/storage/udev.py
@@ -41,7 +41,7 @@ def udev_get_block_devices():
def __is_blacklisted_blockdev(dev_name):
"""Is this a blockdev we never want for an install?"""
- if dev_name.startswith("loop") or dev_name.startswith("ram"):
+ if dev_name.startswith("loop") or dev_name.startswith("ram") or dev_name.startswith("fd"):
return True
# FIXME: the backing dev for the live image can't be used as an
# install target. note that this is a little bit of a hack