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.
 
 
 
 
 
 

25 lines
795 B

From 13b5c1d09e0e242f1817057501292fe9d7e9ad92 Mon Sep 17 00:00:00 2001
From: Harald Hoyer <harald@redhat.com>
Date: Tue, 15 Sep 2015 16:08:25 +0200
Subject: [PATCH] dracut.sh: do not create microcode, if no firmware is
available
---
dracut.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dracut.sh b/dracut.sh
index d5f864f9..980c7ff9 100755
--- a/dracut.sh
+++ b/dracut.sh
@@ -1493,6 +1493,10 @@ if [[ $early_microcode = yes ]]; then
break;
fi
fi
+ for i in $_fwdir/$_fw/$_src; do
+ [ -e $i ] && break
+ break 2
+ done
cat $_fwdir/$_fw/$_src > $_dest_dir/${ucode_dest[$idx]}
create_early_cpio="yes"
fi