File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ if [ -n "$BOOTIF" ]; then
39
39
if [ "$mac" = "$(cat $ifacepath/address | tr -d " \n")" ]; then
40
40
printf "Boot interface recognized as %s, trying DHCP\n" "$iface"
41
41
ip l set dev "$iface" up
42
- udhcpc -t 3 -i "$iface" -s ./udhcpc.script
42
+ udhcpc -t 3 -n - i "$iface" -s ./udhcpc.script
43
43
dhcp_done=1
44
44
fi
45
45
fi
@@ -53,7 +53,7 @@ elif [ "$dhcp" != "no" ]; then
53
53
done
54
54
55
55
printf "Trying DHCP on all supported interfaces\n"
56
- udhcpc -t 3 -s ./udhcpc.script
56
+ udhcpc -t 3 -n - s ./udhcpc.script
57
57
fi
58
58
59
59
if [ -x "./main" ]; then
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ want_bin lsblk
3
3
want_bin blkid
4
4
want_bin fdisk
5
5
want_bin vim
6
+ want_bin mkfs.ext4
7
+ want_bin mkfs.vfat
6
8
want_bin e2label
7
9
want_bin wget
8
10
want_bin curl
You can’t perform that action at this time.
0 commit comments