mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-31 10:58:21 -07:00
Fixes globbing bug, adds musl patches, and fixes lvm2 build for non-systemd users. Bug: https://bugs.gentoo.org/944499 Bug: https://bugs.gentoo.org/932907 Bug: https://bugs.gentoo.org/934773 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
20 lines
606 B
Diff
20 lines
606 B
Diff
diff '--color=auto' -urN genkernel-4.3.16.orig/gen_initramfs.sh genkernel-4.3.16/gen_initramfs.sh
|
|
--- genkernel-4.3.16.orig/gen_initramfs.sh 2024-06-11 20:35:25.000000000 +0200
|
|
+++ genkernel-4.3.16/gen_initramfs.sh 2024-11-23 19:44:41.674658947 +0100
|
|
@@ -1783,10 +1783,11 @@
|
|
|
|
myfw_f=( $(compgen -G "${FIRMWARE_DIR}/${myfw}*") )
|
|
|
|
- if [ ${#myfw_f[@]} -gt 1 ]
|
|
- then
|
|
- gen_die "excessive number of firmwares!"
|
|
- fi
|
|
+## see https://bugs.gentoo.org/932907
|
|
+# if [ ${#myfw_f[@]} -gt 1 ]
|
|
+# then
|
|
+# gen_die "excessive number of firmwares!"
|
|
+# fi
|
|
|
|
if [ ${#myfw_f[@]} -lt 1 ]
|
|
then
|