bb8126e887
Instead of hard-coding a list of binaries to include in the dracut ramdisk, use the existing binary-deps.d functionality to provide a list. This will allow other ramdisks (such as discovery) to add the binaries they need. Change-Id: Ib7ffa15e08db1cc45e93a8f2a5c01369772c93ff
46 lines
1.0 KiB
Bash
Executable File
46 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# Ensure that all binaries listed in ramdisk elements, exist
|
|
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
export TARGET_DIR="/tmp/in_target.d/"
|
|
|
|
if [ -z $TARGET_DIR ] ; then
|
|
echo "Target dir not specified"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d $TARGET_DIR ] ; then
|
|
echo "Unable to find specified directory in target: $TARGET_DIR"
|
|
bash
|
|
exit 1
|
|
fi
|
|
|
|
BINARY_DEPS=
|
|
|
|
for _FILE in $(ls ${TARGET_DIR}/binary-deps.d/) ; do
|
|
_FILE="${TARGET_DIR}/binary-deps.d/${_FILE}"
|
|
if [ -a $_FILE ]; then
|
|
for _LINE in $(cat $_FILE) ; do
|
|
BINARY_DEPS="${BINARY_DEPS} $_LINE"
|
|
done
|
|
fi
|
|
done
|
|
|
|
for _BIN in $BINARY_DEPS ; do
|
|
_LOCATION=$(which "$_BIN" || echo "")
|
|
if [ -z "$_LOCATION" ]; then
|
|
echo "$_BIN is not found in PATH. Please ensure your elements install it"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
if [ "$BINARY_DEPS" == "" ]; then
|
|
echo "No binary-deps found"
|
|
else
|
|
DEPS_OUTPUT="/etc/dib_binary_deps"
|
|
echo "Creating binary_deps record at: ${DEPS_OUTPUT}"
|
|
echo "$BINARY_DEPS" >${DEPS_OUTPUT}
|
|
fi
|