Skip to content

Commit

Permalink
Second round of output cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
scaronni committed Sep 8, 2024
1 parent edca2e5 commit 2d14897
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 155 deletions.
46 changes: 22 additions & 24 deletions dkms.in
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ invoke_command()

error() (
exec >&2
echo $""
echo ""
echo -n $"Error! "
for s in "$@"; do echo "$s"; done
)
Expand Down Expand Up @@ -767,7 +767,7 @@ check_version_sanity()
fi

if ((obsolete == 1)); then
echo $"" >&2
echo "" >&2
echo $"Module has been obsoleted due to being included" >&2
echo $"in kernel $3. We will avoid installing" >&2
echo $"for future kernels above $3." >&2
Expand Down Expand Up @@ -840,14 +840,14 @@ run_build_script() {
esac
run="$dkms_tree/$module/$module_version/$script_type/$2"
if [[ -x ${run%% *} ]]; then
echo $""
echo ""
echo $"Running the $1 script:"
(
cd "$dkms_tree/$module/$module_version/$script_type/"
exec $run
)
else
echo $""
echo ""
warn $"The $1 script is not executable."
fi
}
Expand Down Expand Up @@ -1012,6 +1012,7 @@ prepare_signing()
sign_file="$install_tree/$kernelver/build/scripts/sign-file"
fi
fi
echo ""
echo "Sign command: $sign_file"

if [[ ! -f ${sign_file} || ! -x ${sign_file} ]]; then
Expand Down Expand Up @@ -1114,7 +1115,7 @@ actual_build()
local -r build_dir="$dkms_tree/$module/$module_version/build"
local -r build_log="$build_dir/make.log"

echo $""
echo ""

invoke_command "$clean" "Cleaning build area" '' background
echo $"DKMS make.log for $module-$module_version for kernel $kernelver ($arch)" >> "$build_log"
Expand Down Expand Up @@ -1267,7 +1268,7 @@ do_install()
local any_module_installed
local count

echo $""
echo ""
for ((count=0; count < ${#built_module_name[@]}; count++)); do
# Check this version against what is already in the kernel
check_version_sanity "$kernelver" "$arch" "$obsolete_by" "${dest_module_name[$count]}" || continue
Expand Down Expand Up @@ -1326,8 +1327,6 @@ do_install()

done

echo $""

if ((${#built_module_name[@]} > 0)) && [[ ! "${any_module_installed}" ]]; then
die 6 $"Installation aborted."
fi
Expand Down Expand Up @@ -1520,7 +1519,8 @@ do_uninstall()
# $1 = kernel version
# $2 = arch

echo $"Module $module-$module_version for kernel $1 ($2)."
echo ""
echo $"Module $module-$module_version for kernel $1 ($2):"

set_module_suffix "$1"

Expand All @@ -1539,7 +1539,6 @@ do_uninstall()
fi
fi

echo $""
for ((count=0; count < ${#built_module_name[@]}; count++)); do
real_dest_module_location="$(find_actual_dest_module_location $module $count $1 $2)"

Expand All @@ -1562,8 +1561,6 @@ do_uninstall()
fi
done
rm -f "$dkms_tree/$module/kernel-$1-$2"

echo $""
else
echo $"This module version was INACTIVE for this kernel."
fi
Expand All @@ -1576,12 +1573,12 @@ do_uninstall()

# Delete the original_module if nothing for this kernel is installed anymore
if [[ $was_active && -d $dkms_tree/$module/original_module/$1/$2 && ! -d $dkms_tree/$module/original_module/$1/$2/collisions ]]; then
echo $""
echo ""
echo $"Removing original_module from DKMS tree for kernel $1 ($2)"
rm -rf "$dkms_tree/$module/original_module/$1/$2" 2>/dev/null
[[ $(find $dkms_tree/$module/original_module/$1/* -maxdepth 0 -type d 2>/dev/null) ]] || rm -rf "$dkms_tree/$module/original_module/$1"
elif [[ $was_active && -d $dkms_tree/$module/original_module/$1/$2/collisions ]]; then
echo $""
echo ""
echo $"Keeping directory $dkms_tree/$module/original_module/$1/$2/collisions/"
echo $"for your reference purposes. Your kernel originally contained multiple"
echo $"same-named modules and this directory is now where these are located."
Expand Down Expand Up @@ -1674,6 +1671,7 @@ remove_module()

# Delete the $module_version part of the tree if no other $module_version/$kernel_version dirs exist
if ! find $dkms_tree/$module/$module_version/* -maxdepth 0 -type d 2>/dev/null | grep -Eqv "(build|tarball|driver_disk|rpm|deb|source)$"; then
echo ""
echo $"Deleting module $module-$module_version completely from the DKMS tree."
rm -rf "$dkms_tree/$module/$module_version"
fi
Expand Down Expand Up @@ -1892,7 +1890,7 @@ make_tarball()
if [[ $binaries_only ]]; then
local -r binary_only_dir="$temp_dir_name/dkms_binaries_only"

echo $""
echo ""
echo $"Creating tarball structure to specifically accomodate binaries."

mkdir "$binary_only_dir"
Expand All @@ -1901,7 +1899,7 @@ make_tarball()
[[ ! $conf ]] && conf="$source_dir/dkms.conf"
cp -f $conf "$binary_only_dir/" 2>/dev/null
else
echo $""
echo ""
echo $"Marking $source_dir for archiving..."
mkdir -p $temp_dir_name/dkms_source_tree
cp -rf $source_dir/* $temp_dir_name/dkms_source_tree
Expand All @@ -1921,7 +1919,7 @@ make_tarball()
fi
fi

echo $""
echo ""
echo $"Tarball location: $tarball_dest/$tarball_name"

if [[ ! -d $tarball_dest ]]; then
Expand Down Expand Up @@ -2005,7 +2003,7 @@ load_tarball()
done

module="$PACKAGE_NAME"; module_version="$PACKAGE_VERSION"
echo $""
echo ""
echo $"Loading tarball for $module-$module_version"
case $loc in
dkms_source_tree)
Expand Down Expand Up @@ -2076,13 +2074,13 @@ run_match()
template_kernel_status=$(echo "$template_kernel_status" | grep "^$module,")
fi

echo $""
echo ""
echo $"Matching modules in kernel: $kernelver ($arch)"
echo $"to the configuration of kernel: $template_kernel ($arch)"

# Prepare the kernel just once but only if there is actual work to do
if [[ ! $template_kernel_status ]]; then
echo $""
echo ""
echo $"There is nothing to be done for this match."
return 0
fi
Expand Down Expand Up @@ -2321,20 +2319,20 @@ autoinstall() {
done

if (( ${#installed_modules[@]} > 0 )); then
echo "dkms autoinstall on $kernelver/$arch succeeded for ${installed_modules[@]}"
echo "Autoinstall on $kernelver succeeded for module(s) ${installed_modules[@]}."
fi

if (( ${#skipped_modules[@]} > 0 )); then
echo "dkms autoinstall on $kernelver/$arch was skipped for ${skipped_modules[@]}"
echo "Autoinstall on $kernelver was skipped for module(s) ${skipped_modules[@]}."
fi

if (( ${#failed_modules[@]} > 0 )); then
echo "dkms autoinstall on $kernelver/$arch failed for ${failed_modules[@]}"
echo "Autoinstall on $kernelver failed for module(s) ${failed_modules[@]}."
fi

for mv in "${to_install[@]}"; do
IFS=/ read m v <<< "$mv"
echo "$m/$v autoinstall failed due to missing dependencies: ${build_depends[$m]}"
echo "$m/$v Autoinstall failed due to missing dependencies: ${build_depends[$m]}."
done

if (( ${#failed_modules[@]} > 0 || ${#to_install[@]} > 0 )); then
Expand Down
17 changes: 2 additions & 15 deletions dkms_autoinstaller.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,11 @@ elif [ -f /etc/rc.d/init.d/functions ]; then
. /etc/rc.d/init.d/functions
fi

# We only have these functions on Debian/Ubuntu
# so on other distros just stub them out
if [ ! -f /etc/debian_version ]; then
alias log_daemon_msg='/bin/echo -n'
log_end_msg() { if [ "$1" = "0" ]; then echo " Done. "; else echo " Failed. "; fi; }
alias log_action_msg=/bin/echo
fi

exec="@SBINDIR@/dkms"
prog=${exec##*/}

test -f $exec || exit 0

[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog

uname_s=$(uname -s)

_get_kernel_dir() {
Expand Down Expand Up @@ -67,15 +57,12 @@ case "$1" in
kernel=$(uname -r)
fi
if [ -f /etc/dkms/no-autoinstall ]; then
log_action_msg "$prog: autoinstall for dkms modules has been disabled"
log_action_msg "Automatic installation of modules has been disabled."
elif ! _check_kernel_dir $kernel; then
log_action_msg "$prog: autoinstall for kernel $kernel was skipped since the kernel headers for this kernel do not seem to be installed"
log_action_msg "Automatic installation of modules for kernel $kernel was skipped since the kernel headers for this kernel do not seem to be installed"
else
log_action_msg "$prog: running auto installation service for kernel $kernel"
dkms autoinstall --kernelver $kernel
res=$?
log_daemon_msg "$prog: autoinstall for kernel" "$kernel"
log_end_msg $res
fi
;;
stop|restart|force-reload|status|reload)
Expand Down
Loading

0 comments on commit 2d14897

Please sign in to comment.