Hi,

ShellPkg's UefiShellDebug1CommandsLib.uni's STR_GET_HELP_BCFG string
has 2 truncated strings, see excerpt:

1: "To add a driver option #5\r\n"
2: "  %EShell>%N bcfg driver add 5 mydriver.efi "My Driver
3: "To add a boot option #3\r\n"
4: "  %EShell>%N bcfg boot add 3 osloader.efi "My OS

Lines 2 and 4 need "\r\n" (including the quotes) appended to each line.
Here's an example of what it should look like, from the Install1's
version of the BCFG strings in UefiShellInstall1CommandsLib.uni. The
above and below excerpts should be identical.

1: "To add a driver option #5\r\n"
2: "  %EShell>%N bcfg driver add 5 mydriver.efi "My Driver"\r\n"
3: "To add a boot option #3\r\n"
4: "  %EShell>%N bcfg boot add 3 osloader.efi "My OS"\r\n"

Manpage text aside, why are there 2 copies of the BCFG command?  If you
diff bcfg.c there are code differences, beyond all the "Debug1" -vs-
"Install1" naming noise.  So why keep two versions in the EDK2, why not
just keep one, the latest one? BCFG is strangely the only command that
is in multiple profiles, Install1 and Debug1.  If it were only in a
single profile, I suspect we'd only be seeing the freshest code, not
the fresh one and an older one. :-)

Thanks,
Lee

------------------------------------------------------------------------------
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
_______________________________________________
edk2-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to