Kernel: Add back OS check but simplify it

This commit is contained in:
Dylan Araps 2016-12-23 21:08:26 +11:00
parent 3c2fc99271
commit 220bd852ba
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ get_kernel() {
esac
# Hide kernel info if it's identical to the distro info.
if [[ "$distro" == *"$kernel_name"* ]]; then
if [[ "$os" =~ (BSD|MINIX) && "$distro" == *"$kernel_name"* ]]; then
case "$distro_shorthand" in
"on" | "tiny") kernel="$kernel_version" ;;
*) unset kernel ;;