423ba10303
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
10 lines
129 B
Text
10 lines
129 B
Text
kern=$(uname -s)
|
|
|
|
case "${kern}" in
|
|
$known_kern)
|
|
$scriptdir/$kern
|
|
;;
|
|
*)
|
|
echo "Unknown system"
|
|
;;
|
|
esac
|