X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=utils%2Fpb-udhcpc;h=dd291b9a0fa61441f072b2b75251abdf160056b5;hp=252bb11d3ec1cd54ce3572e01e03e7aeb657c1f0;hb=ab7076882bc49d895209bf0ecb84e4003e034dd9;hpb=f41f900809ab0338f5c159b08f07de53dcb46ca3 diff --git a/utils/pb-udhcpc b/utils/pb-udhcpc index 252bb11..dd291b9 100644 --- a/utils/pb-udhcpc +++ b/utils/pb-udhcpc @@ -17,6 +17,7 @@ resolve_url() { if [ "$tmp" != "$file" ] then echo "$file" + return fi # Otherwise, TFTP using an appropriate host. Start with the @@ -35,10 +36,10 @@ resolve_url() { do_pxe() { basedir=$1 - params="conf@/net/${interface} method=dhcp" + params="conf@${interface} method=dhcp" # first, try by MAC - mac=$(tr ':' '-' < /sys/class/net/$interface/address) + mac=$(tr ':' '-' < /sys/class/$interface/address) pb-event $params url=$basedir/01-$mac # try decreasing fragments of IP lease @@ -60,7 +61,7 @@ pb_add () { if [ -n "${conffile}" ] then url=$(resolve_url ${conffile}) - pb-event conf@/net/${interface} url=$url method=dhcp + pb-event conf@${interface} url=$url method=dhcp return fi @@ -95,18 +96,18 @@ pb_add () { args="root=/dev/nfs ip=any nfsroot=${k_server_ip}:${k_root_dir}" fi - pb-event add@/net/${interface} \ + pb-event add@${interface} \ name=netboot \ image=tftp://${siaddr}/${boot_file} \ args="$args" } pb_remove () { - pb-event remove@/net/${interface} name=netboot + pb-event remove@${interface} name=netboot } case "$1" in -bound | renew) +bound) pb_add ;; deconfig)