Bump coreboot revision for Tyan s2895.
[buildrom.git] / buildrom-devel / bin / show-instructions.sh
blob1c670934a76c14c66e138be894b603c8e3312365
1 #!/bin/sh
3 tmp=`tempfile`
4 cat $1 | sed -e "s:%DESTFILE%:$2:" > $tmp
6 if [ -x `dirname $0`/../scripts/kconfig/lxdialog/lxdialog ]; then
7 `dirname $0`/../scripts/kconfig/lxdialog/lxdialog --textbox $tmp 20 75
8 else
9 cat $tmp
11 rm -rf $tmp