Blame SOURCES/0075-Fix-setDefaultImage-for-s390-s390x-1285601.patch

75bbb8
From 6a55388a609d0c9f237a651a356df77d165b3e83 Mon Sep 17 00:00:00 2001
75bbb8
From: Robert Marshall <rmarshall@redhat.com>
75bbb8
Date: Tue, 14 Mar 2017 22:25:02 -0400
75bbb8
Subject: [PATCH 75/75] Fix setDefaultImage for s390/s390x (#1285601)
75bbb8
75bbb8
The setDefaultImage routine has never actually supported s390/s390x when
75bbb8
picking an arbitrary index because a zipl config never has the property
75bbb8
defaultIsIndex set to 1. Eliminating the extraneous check resolved the
75bbb8
issue on s390/s390x and does not appear to break other platforms.
75bbb8
75bbb8
Related: rhbz#1285601
75bbb8
---
75bbb8
 grubby.c | 3 +--
75bbb8
 1 file changed, 1 insertion(+), 2 deletions(-)
75bbb8
75bbb8
diff --git a/grubby.c b/grubby.c
75bbb8
index f960ebd..7219d64 100644
75bbb8
--- a/grubby.c
75bbb8
+++ b/grubby.c
75bbb8
@@ -2633,8 +2633,7 @@ void setDefaultImage(struct grubConfig *config, int isAddingBootEntry,
75bbb8
 	}
75bbb8
 
75bbb8
 	/* Case 2: user picked an arbitrary index as the default boot entry */
75bbb8
-	if (newDefaultBootEntryIndex >= FIRST_ENTRY_INDEX
75bbb8
-	    && config->cfi->defaultIsIndex) {
75bbb8
+	if (newDefaultBootEntryIndex >= FIRST_ENTRY_INDEX) {
75bbb8
 		indexToVerify = newDefaultBootEntryIndex;
75bbb8
 
75bbb8
 		/* user chose to make latest boot entry the default */
75bbb8
-- 
75bbb8
2.9.3
75bbb8