Commit c667fca5 authored by Dylan Araps's avatar Dylan Araps

Kernel: Hardcode kernel_shorthand=tiny on BSD systems

parent 5959cb1b
...@@ -266,6 +266,11 @@ gettitle() { ...@@ -266,6 +266,11 @@ gettitle() {
# Kernel {{{ # Kernel {{{
getkernel() { getkernel() {
# Hardcode kernel_shorthand=tiny on BSD systems.
case "$os" in
"BSD") kernel_shorthand="tiny" ;;
esac
case "$kernel_shorthand" in case "$kernel_shorthand" in
"on") kernel_flags="-sr" ;; "on") kernel_flags="-sr" ;;
"tiny") kernel_flags="-r" ;; "tiny") kernel_flags="-r" ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment