parent
e14b88dbd6
commit
640411d917
@ -1,32 +0,0 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Avnish Chouhan <avnish.chouhan@ibm.com>
|
||||
Date: Tue, 22 Nov 2022 08:01:47 -0500
|
||||
Subject: [PATCH] Correction in vector 5 values
|
||||
|
||||
This patch is to update the vector 5 values which is troubling some
|
||||
machines to bootup properly. Max out the values of all the properties of
|
||||
Vector 5 (similar to vector 2) except max cpu property, which were set
|
||||
as 0 earlier.
|
||||
|
||||
Signed-off-by: Avnish Chouhan <avnish.chouhan@ibm.com>
|
||||
[rharwood: rewrap comit message]
|
||||
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
|
||||
(cherry picked from commit c2e640266247e3e0d3268f5ef20a734f5800f577)
|
||||
(cherry picked from commit 6cb67ffc4beda2dcbaa93fa1fdd79b108f248a30)
|
||||
---
|
||||
grub-core/kern/ieee1275/init.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/grub-core/kern/ieee1275/init.c b/grub-core/kern/ieee1275/init.c
|
||||
index 37f3098c39..11bd102d02 100644
|
||||
--- a/grub-core/kern/ieee1275/init.c
|
||||
+++ b/grub-core/kern/ieee1275/init.c
|
||||
@@ -372,7 +372,7 @@ grub_ieee1275_ibm_cas (void)
|
||||
.vec4 = 0x0001, // set required minimum capacity % to the lowest value
|
||||
.vec5_size = 1 + sizeof(struct option_vector5) - 2,
|
||||
.vec5 = {
|
||||
- 0, 0, 0, 0, 0, 0, 0, 0, 256
|
||||
+ -1, -1, -1, -1, -1, -1, -1, -1, 256
|
||||
}
|
||||
};
|
||||
|
@ -0,0 +1,28 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Avnish Chouhan <avnish@linux.vnet.ibm.com>
|
||||
Date: Tue, 24 Jan 2023 08:01:47 -0500
|
||||
Subject: [PATCH] Enable shared processor mode in vector 5
|
||||
|
||||
This patch is to update the vector 5 which is troubling some
|
||||
machines to bootup properly in shared processor mode.
|
||||
|
||||
Signed-off-by: Avnish Chouhan <avnish@linux.vnet.ibm.com>
|
||||
(cherry picked from commit 30d2ee836649386a336f9437c8a149c8e642a46b)
|
||||
(cherry picked from commit 7e309d139c5eca1f03659e612a14499213e79c95)
|
||||
---
|
||||
grub-core/kern/ieee1275/init.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/grub-core/kern/ieee1275/init.c b/grub-core/kern/ieee1275/init.c
|
||||
index 37f3098c39..3ea9b73b2a 100644
|
||||
--- a/grub-core/kern/ieee1275/init.c
|
||||
+++ b/grub-core/kern/ieee1275/init.c
|
||||
@@ -372,7 +372,7 @@ grub_ieee1275_ibm_cas (void)
|
||||
.vec4 = 0x0001, // set required minimum capacity % to the lowest value
|
||||
.vec5_size = 1 + sizeof(struct option_vector5) - 2,
|
||||
.vec5 = {
|
||||
- 0, 0, 0, 0, 0, 0, 0, 0, 256
|
||||
+ 0, 192, 0, 128, 0, 0, 0, 0, 256
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue