321704296f
case instead of test where appropriate, since case allows case is a sh builtin and (as a side-effect) allows case-insensitivity. Changes discussed on freebsd-hackers. Submitted by: Doug Barton <Doug@gorean.org>
24 lines
410 B
Bash
24 lines
410 B
Bash
#!/bin/sh -
|
|
# PC-card startup script
|
|
# $FreeBSD$
|
|
|
|
case ${pccard_enable} in
|
|
[Yy][Ee][Ss])
|
|
case ${pccard_mem} in
|
|
[Dd][Ee][Ff][Aa][Uu][Ll][Tt])
|
|
pccardc pccardmem 0xd0000
|
|
;;
|
|
*)
|
|
pccardc pccardmem ${pccard_mem}
|
|
;;
|
|
esac
|
|
|
|
if [ -n "${pccard_conf}" ]; then
|
|
pccardd_flags="${pccardd_flags} -f ${pccard_conf}"
|
|
fi
|
|
|
|
echo -n "Enable PC-card."
|
|
pccardd ${pccardd_flags} 2>&1 > /var/log/pccardd.debug
|
|
;;
|
|
esac
|