You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
6 years ago
|
From 784c92876bb6995f8f66087af0f20de2e2819643 Mon Sep 17 00:00:00 2001
|
||
|
From: Prarit Bhargava <prarit@redhat.com>
|
||
|
Date: Mon, 5 Jun 2017 07:51:36 -0400
|
||
|
Subject: [PATCH] module-setup.sh: Add ARM specific driver to initramfs image
|
||
|
|
||
|
If a hisi_sas storage device is used as / during system install, the
|
||
|
resulting installation will not boot because the hisi_sas driver is not
|
||
|
included in the initramfs.
|
||
|
|
||
|
The Hisilicon storage driver needs to be added to the initramfs image for
|
||
|
aarch64 kernels.
|
||
|
|
||
|
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
|
||
|
Cc: dzickus@redhat.com
|
||
|
Cc: dmarlin@redhat.com
|
||
|
Cc: wefu@redhat.com
|
||
|
Cc: harald@redhat.com
|
||
|
|
||
|
Resolves: #1459277
|
||
|
---
|
||
|
modules.d/90kernel-modules/module-setup.sh | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/modules.d/90kernel-modules/module-setup.sh b/modules.d/90kernel-modules/module-setup.sh
|
||
|
index 7d9d369a..0a414eaf 100755
|
||
|
--- a/modules.d/90kernel-modules/module-setup.sh
|
||
|
+++ b/modules.d/90kernel-modules/module-setup.sh
|
||
|
@@ -64,6 +64,7 @@ installkernel() {
|
||
|
"=drivers/rtc" \
|
||
|
"=drivers/usb/host" \
|
||
|
"=drivers/usb/phy" \
|
||
|
+ "=drivers/scsi/hisi_sas" \
|
||
|
${NULL}
|
||
|
fi
|
||
|
|