[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 1/4] Call checkBootRequest from sanityCheck.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH 1/4] Call checkBootRequest from sanityCheck.
- Date: Thu, 21 May 2009 16:01:10 -0400
---
storage/__init__.py | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/storage/__init__.py b/storage/__init__.py
index 7000b26..3363530 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, "
--
1.6.1.3
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]