blob: 9ac3b498db7daefc7951864d24dec028b1b8b198 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
if [ "$2" != "INSTALL" ]; then
exit 0
fi
if [ ! -c /dev/bpf1 ]; then
echo "**********************************************************"
echo "* This DHCP program need Berkeley packet filter (bpf)"
echo "* To use DHCP, you need to rebuild your kernel with bpf"
echo "* and make bpf devices in the /dev directory."
echo "**********************************************************"
fi
|