Hi, I recently uncover a bug in elilo-3.0 where the argument string (LoadOptions) is modified by the loader. Usually this is fine, as when elilo is invoked from the EFI shell. But when elilo is invoked directly from the EFI boot manager the command line options are coming from NVRAM and are provided as is (no copy) to the loader. Because elilo split the string apart, the next invocation will see shorten options and could potential cause problems. The fix is to have elilo only work on a copy of the arguments. This patch below fixes this and is relative to elilo-3.0. -- -Stephane