summaryrefslogtreecommitdiffstats
path: root/storage/__init__.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-05-21 14:02:39 -0400
committerChris Lumens <clumens@redhat.com>2009-05-21 14:02:39 -0400
commit04f50e355c58ffd09b56a035e06bb4f4f92f3142 (patch)
treefe52482f2ce596ceb9f4b6ae19c2a712ac1245a1 /storage/__init__.py
parent890131c7c1dab96a76aadd6fbcf101b4bc3ece9e (diff)
downloadanaconda-04f50e355c58ffd09b56a035e06bb4f4f92f3142.tar.gz
anaconda-04f50e355c58ffd09b56a035e06bb4f4f92f3142.tar.xz
anaconda-04f50e355c58ffd09b56a035e06bb4f4f92f3142.zip
Call checkBootRequest from sanityCheck.
Diffstat (limited to 'storage/__init__.py')
-rw-r--r--storage/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/storage/__init__.py b/storage/__init__.py
index 7000b2681..336353067 100644
--- a/storage/__init__.py
+++ b/storage/__init__.py
@@ -912,6 +912,11 @@ class Storage(object):
errors.append(_("Bootable partitions cannot be on an "
"encrypted block device"))
+ try:
+ self.anaconda.platform.checkBootRequest(boot)
+ except DeviceError as e:
+ errors.append(str(e))
+
if not swaps:
warnings.append(_("You have not specified a swap partition. "
"Although not strictly required in all cases, "