* util/grub.d/00_header.in: Remove compatibility with terminal.mod
prior to terminal_input/terminal_output separation. It's been over 1.5 years and those versions weren't widely deployed.
This commit is contained in:
parent
697e053c44
commit
0ac33bf5eb
2 changed files with 8 additions and 10 deletions
|
@ -29,6 +29,12 @@
|
||||||
(grub_efi_console_fini): New function.
|
(grub_efi_console_fini): New function.
|
||||||
(grub_console_term_output): Register init and fini methods.
|
(grub_console_term_output): Register init and fini methods.
|
||||||
|
|
||||||
|
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub.d/00_header.in: Remove compatibility with terminal.mod
|
||||||
|
prior to terminal_input/terminal_output separation. It's been over 1.5
|
||||||
|
years and those versions weren't widely deployed.
|
||||||
|
|
||||||
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* tests/util/grub-shell-tester.in: Remove bashism and declare as
|
* tests/util/grub-shell-tester.in: Remove bashism and declare as
|
||||||
|
|
|
@ -137,11 +137,7 @@ case x${GRUB_TERMINAL_INPUT} in
|
||||||
;;
|
;;
|
||||||
x*)
|
x*)
|
||||||
cat << EOF
|
cat << EOF
|
||||||
if terminal_input ${GRUB_TERMINAL_INPUT} ; then true ; else
|
terminal_input ${GRUB_TERMINAL_INPUT}
|
||||||
# For backward compatibility with versions of terminal.mod that don't
|
|
||||||
# understand terminal_input
|
|
||||||
terminal ${GRUB_TERMINAL_INPUT}
|
|
||||||
fi
|
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -152,11 +148,7 @@ case x${GRUB_TERMINAL_OUTPUT} in
|
||||||
;;
|
;;
|
||||||
x*)
|
x*)
|
||||||
cat << EOF
|
cat << EOF
|
||||||
if terminal_output ${GRUB_TERMINAL_OUTPUT} ; then true ; else
|
terminal_output ${GRUB_TERMINAL_OUTPUT}
|
||||||
# For backward compatibility with versions of terminal.mod that don't
|
|
||||||
# understand terminal_output
|
|
||||||
terminal ${GRUB_TERMINAL_OUTPUT}
|
|
||||||
fi
|
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue