summaryrefslogtreecommitdiff
path: root/src/boot/efi/no-undefined-symbols.sh
blob: 08b266c455a6134a6df4efa81adaa68442997e45 (plain)
1
2
3
4
5
6
#!/bin/sh -eu

if nm -D -u "$1" | grep ' U '; then
        echo "Undefined symbols detected!"
        exit 1
fi