aboutsummaryrefslogtreecommitdiff
path: root/cmd/sysboot.c
diff options
context:
space:
mode:
authorSean Edmond2023-04-11 10:48:47 -0700
committerTom Rini2023-05-05 17:48:44 -0400
commit7d0188927bcf4f6ce74ccfca43f0f081a39ade00 (patch)
tree6246507177d0aa833472e6c46f61e75178d251f7 /cmd/sysboot.c
parenta0245818f7f8e375abc00f36ff88326331e4e2f9 (diff)
net: dhcp6: pxe: Add DHCP/PXE commands for IPv6
Adds commands to support DHCP and PXE with IPv6. New configs added: - CMD_DHCP6 - DHCP6_PXE_CLIENTARCH - DHCP6_PXE_DHCP_OPTION - DHCP6_ENTERPRISE_ID New commands added (when IPv6 is enabled): - dhcp6 - pxe get -ipv6 - pxe boot -ipv6 Signed-off-by: Sean Edmond <seanedmond@microsoft.com> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
Diffstat (limited to 'cmd/sysboot.c')
-rw-r--r--cmd/sysboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/sysboot.c b/cmd/sysboot.c
index 04c07020269..63a7806debe 100644
--- a/cmd/sysboot.c
+++ b/cmd/sysboot.c
@@ -101,7 +101,7 @@ static int do_sysboot(struct cmd_tbl *cmdtp, int flag, int argc,
}
if (pxe_setup_ctx(&ctx, cmdtp, sysboot_read_file, &info, true,
- filename)) {
+ filename, false)) {
printf("Out of memory\n");
return CMD_RET_FAILURE;
}