I am currently using ipxe to support system installation for virtual machines. Some scripts from github do helped me a lot. But I still don't know the meaning of some code, suck like:
set 210:string ${boot-url}sysrcd-${sysrcd-version}-x86/isolinux/
set 209:string isolinux.cfg
set filename ${210:string}pxelinux.0
what do 209 and 210 mean? The official manual does not provide enough information.
This is how iPXE works.
This is just iPXE script syntax. First line sets a variable XXX, and the third line uses it ${XXX}. However, IMHO, they are bad names. According to "Dynamic Host Configuration Protocol Options Used by PXELINUX" 209 and 210 are DHCP options. 209 means "config file", and 210 means "path prefix".
So they mean certain things, but they are just names and can be named any other way.