From 06ea1dd80be5df2af6d6531db42cd4dc65d19876 Mon Sep 17 00:00:00 2001 From: Tobias Waldekranz Date: Thu, 24 Aug 2023 13:16:28 +0200 Subject: [PATCH] uboot: Fix inconsistency in naming of the netboot mode This is referred to "net" in all places except for this script. --- board/common/uboot/scripts/ixbootslot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/common/uboot/scripts/ixbootslot.sh b/board/common/uboot/scripts/ixbootslot.sh index 026ecf40..5fa61502 100644 --- a/board/common/uboot/scripts/ixbootslot.sh +++ b/board/common/uboot/scripts/ixbootslot.sh @@ -5,7 +5,7 @@ if test "${slot}" = "primary"; then run ixprepblk elif test "${slot}" = "secondary"; then run ixprepblk -elif test "${slot}" = "dhcp"; then +elif test "${slot}" = "net"; then run ixprepdhcp fi