ia64/xen-unstable
view docs/check_pkgs @ 9027:b567eb77399f
Add 'console=xxx' to the Xen serial console section to make it obvious
that one might need to specify 'console=xxx' and not just 'comX=xxx'
if one isn't using the default com1,vga.
Signed-Off-By: Muli Ben-Yehuda <mulix@mulix.org>
that one might need to specify 'console=xxx' and not just 'comX=xxx'
if one isn't using the default com1,vga.
Signed-Off-By: Muli Ben-Yehuda <mulix@mulix.org>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Sun Feb 26 10:50:15 2006 +0100 (2006-02-26) |
parents | cf0c13832905 |
children | 59d511c4a8d8 |
line source
2 silent_which ()
3 {
4 which $1 1>/dev/null 2>/dev/null || {
5 echo "*************************************************"
6 echo "*************************************************"
7 echo "* WARNING: Package '$1' is required"
8 echo "* to build Xen documentation"
9 echo "*************************************************"
10 echo "*************************************************"
11 }
12 which $1 1>/dev/null 2>/dev/null
13 }
15 silent_which latex || exit 1
16 silent_which dvips || exit 1
17 silent_which ps2pdf || exit 1
18 silent_which fig2dev || exit 1
20 exit 0