#########################################
 
 - fixed pkg_dir bug in Create-Binary
-- network config via dhcp
+- network config via dhcp / dhclient in /usr/sbin (bad?)
 - linux config changes, no devfs mount at startup
 - small fixes to hdw-get (still no dep checking)
 - not building qt plugin for licq
 
 start_net() {
        if [ ".$DHCP" = ".on" ] ; then
                echo "starting dhclient."
-               /sbin/dhclient -q $IF_0
+               /usr/sbin/dhclient -q $IF_0
        else
                echo "setting up network ..."
                # xx insmod ip_tables
 stop_net() {
        if [ ".$DHCP" = ".on" ] ; then
                echo "stopping dhclient."
-               killall -15 /sbin/dhclient
+               killall -15 /usr/sbin/dhclient
                ifconfig $IF_0 down
        else
                echo "shutting down network ..."