/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
11 lines
225 B
Bash
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)
|
|
|