You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
if [[ -x @@LIBEXECDIR@@/installkernel ]] ; then |
|
exec @@LIBEXECDIR@@/installkernel "${@}" |
|
elif [[ -x @@LIBEXECDIR@@/installkernel-bls ]] ; then |
|
exec @@LIBEXECDIR@@/installkernel-bls "${@}" |
|
fi |
|
echo "installkernel is not installed correctly." >>/dev/stderr |
|
exit 1
|
|
|