This error indicates that your iPXE [[:scripting|script]] has attempted to ''[[:cmd:goto]]'' a non-existent label.
Things to try:
* Check the script line that defines the label, such as :my_label
* Check the script line that attempts to ''[[:cmd:goto]]'' the label, such as goto my_label
Note that the label name specified in the ''[[:cmd:goto]]'' command must **not** include the colon ('':'') sign: # This is wrong
goto :my_label
* If you are using a dynamically-generated label, such as goto host_${hostname}
then you should consider using a fallback label in case the dynamically-generated label does not exist. For example: goto host_${hostname} || goto unknown