smlinux/base/busybox/dhclient
PktSurf 3963a67474 Upgraded base/acl to 2.3.2
/usr is now no longer a symlink to /. Future commits will have /usr as a proper directory to house stuff.
Reset build id to 1sml for some packagees
2024-10-11 14:48:18 +05:30

11 lines
225 B
Bash

#!/bin/sh
if [ -z "$1" ] ; then
echo usage: $0 [interface]
echo i.e. $0 eth0
echo i.e. $0 wlan0
exit 1
fi
interface="$1"
retries=3
/bin/udhcpc -t $retries -n -i "$interface" -s /etc/udhcpc-script -x hostname=$(hostname)