[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH] It's 2009, let's ignore floppy drives now (#493338, #493377).
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH] It's 2009, let's ignore floppy drives now (#493338, #493377).
- Date: Wed, 1 Apr 2009 12:44:54 -0400
---
storage/udev.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/storage/udev.py b/storage/udev.py
index 6a22a98..63cc3fd 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
--
1.6.1.3
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]