Skip to content
This repository was archived by the owner on Feb 8, 2021. It is now read-only.

Commit 14a6e2f

Browse files
authored
Merge pull request #354 from kincl/fix-rtas_errd
Adding ppc64le binaries to ldd search for initrd create
2 parents 9cba4d0 + 20f8a79 commit 14a6e2f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build/make-initrd.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ do
4949
done
5050

5151
LDD_BINARIES=(/init /sbin/ipvsadm /sbin/iptables)
52+
if [ -e $ARCHPATH/binary/rtas.tar ]; then
53+
LDD_BINARIES=(/usr/sbin/rtas_errd)
54+
fi
55+
5256
for bin in ${LDD_BINARIES[@]}
5357
do
5458
ldd /tmp/hyperstart-rootfs/${bin} | while read line

0 commit comments

Comments
 (0)