27 lines
495 B
Bash
27 lines
495 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
plugin_usage() {
|
|
cat <<EOF
|
|
EOF
|
|
}
|
|
|
|
plugin_option() {
|
|
|
|
case "$1" in
|
|
--with-kernel=*)
|
|
echo "WARNING: The --with-kernel option has no effect and will be removed in the future." >&2
|
|
return 0
|
|
;;
|
|
|
|
--with-latest-kernel*)
|
|
echo "WARNING: The --with-latest-kernel option has no effect and will be removed in the future." >&2
|
|
return 0
|
|
;;
|
|
|
|
*)
|
|
return 1;
|
|
;;
|
|
esac
|
|
}
|