--- 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 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list