Qiu Shumin 
							
						 
					 
					
						
						
							
						
						4dc0d578b8 
					 
					
						
						
							
							ShellPkg: Refine code to use Strn**S safe functions instead of Str**S ones in some cases.  
						
						... 
						
						
						
						Safe string functions may ASSERT when the source length is larger than the MaxDest. This patch use Strn**S to indicate the copy length. 
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com >
Reviewed-by: Tapan Shah <<tapandshah@hp.com >>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17894  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-07-09 03:19:06 +00:00 
						 
				 
			
				
					
						
							
							
								Qiu Shumin 
							
						 
					 
					
						
						
							
						
						e75390f029 
					 
					
						
						
							
							ShellPkg: Use safe string functions to refine code.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Star Zeng <star.zeng@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17730  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-06-30 03:18:31 +00:00 
						 
				 
			
				
					
						
							
							
								Liming Gao 
							
						 
					 
					
						
						
							
						
						00ad50fdf3 
					 
					
						
						
							
							ShellPkg: Update CopyRight to 2015  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17266  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-04-29 08:11:45 +00:00 
						 
				 
			
				
					
						
							
							
								Liming Gao 
							
						 
					 
					
						
						
							
						
						6c4542eda2 
					 
					
						
						
							
							ShellPkg: Update Shell MemMap command to show PersistentMemory range  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com >
Reviewed-by: Star Zeng <star.zeng@intel.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17243  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-04-29 01:37:32 +00:00 
						 
				 
			
				
					
						
							
							
								Laszlo Ersek 
							
						 
					 
					
						
						
							
						
						bbf57d4fb9 
					 
					
						
						
							
							ShellPkg: UefiShellDebug1CommandsLib: fix hex string parsing in SETVAR  
						
						... 
						
						
						
						The ShellCommandRunSetVar() function calls the ShellIsHexOrDecimalNumber()
UefiShellLib function to determine if the data string in the SETVAR
command is a string of hexadecimal bytes.
However, ShellIsHexOrDecimalNumber() calls ShellConvertStringToUint64()
for validation. Therefore SETVAR rejects hex strings that cannot be
interpreted as UINT64 values due to range errors, despite the fact that
the hexadecimal data string of the SETVAR command is supposed to describe
an arbitrary array of bytes, rather than UINT64 values.
The internal library function InternalShellIsHexOrDecimalNumber() comes
close, as the first idea for the fix, however it is not quite right
either; it removes a leading minus sign, plus it allows 0x / 0X prefixes.
This would not be correct for the SETVAR command.
Instead, add a trivial utility function that is specific to the SETVAR
implementation. IsStringOfHexNibbles() accepts empty strings for
simplicity, but where we call it we have already ensured that the data
string is not empty (because that is handled earlier by the "delete
variable" branch of SETVAR). An even number of nibbles is also enforced
near the call site.
Cc: Jaben Carsey <jaben.carsey@intel.com >
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com >
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17128  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-04-07 14:18:40 +00:00 
						 
				 
			
				
					
						
							
							
								Laszlo Ersek 
							
						 
					 
					
						
						
							
						
						12e1bb0ee6 
					 
					
						
						
							
							ShellPkg: UefiShellDebug1CommandsLib: fix SETVAR option summary  
						
						... 
						
						
						
						The command line summary for the SETVAR command currently names "-rs"
instead of "-rt":
  SETVAR variable-name [-guid guid][-bs][-rs][-nv] [=data]
Fix it.
Cc: Jaben Carsey <jaben.carsey@intel.com >
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com >
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17127  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-04-07 14:18:35 +00:00 
						 
				 
			
				
					
						
							
							
								Olivier Martin 
							
						 
					 
					
						
						
							
						
						88ff5ba793 
					 
					
						
						
							
							ShellPkg: Added newline at the end of source files  
						
						... 
						
						
						
						Some compilers (such as ARM toolchain) complain if there is
no new line at the end of a source file.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17105  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-04-02 11:32:32 +00:00 
						 
				 
			
				
					
						
							
							
								Elvin Li 
							
						 
					 
					
						
						
							
						
						ec8a502e66 
					 
					
						
						
							
							ShellPkg: update smbiosview for SMBIOS 3.0.  
						
						... 
						
						
						
						smbiosview can dump 64-bit entry point and table 
as long as SMBIOS 3.0 table exists in system configuration table.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Elvin Li <elvin.li@intel.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17060  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-03-17 08:12:59 +00:00 
						 
				 
			
				
					
						
							
							
								Tapan Shah 
							
						 
					 
					
						
						
							
						
						3eb46cfce8 
					 
					
						
						
							
							ShellPkg: Help and Error Messages Update  
						
						... 
						
						
						
						Updates to various profile commands help and error message output with better wordings.
Fix few inconsistency issues found in error messages across various profile commands.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Tapan Shah <tapandshah@hp.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17032  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-03-09 22:18:59 +00:00 
						 
				 
			
				
					
						
							
							
								Elvin Li 
							
						 
					 
					
						
						
							
						
						d63d22102f 
					 
					
						
						
							
							ShellPkg: smbiosview shows wrong information for Type 27.  
						
						... 
						
						
						
						Fixed smbiosview to use correct value to parse Type 27.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Elvin Li <elvin.li@intel.com >
Reviewed-by: Shumin Qiu <shumin.qiu@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17007  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-03-04 07:50:47 +00:00 
						 
				 
			
				
					
						
							
							
								Elvin Li 
							
						 
					 
					
						
						
							
						
						447cb9135c 
					 
					
						
						
							
							ShellPkg: Fixed EBC build error.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Elvin Li <elvin.li@intel.com >
Reviewed-by: Shumin Qiu <shumin.qiu@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16987  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-03-03 02:38:26 +00:00 
						 
				 
			
				
					
						
							
							
								Elvin Li 
							
						 
					 
					
						
						
							
						
						325d3f8db5 
					 
					
						
						
							
							ShellPkg: Update Intel copyright to 2015.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Elvin Li <elvin.li@intel.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16944  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-02-27 03:32:59 +00:00 
						 
				 
			
				
					
						
							
							
								Elvin Li 
							
						 
					 
					
						
						
							
						
						1581c9a2b8 
					 
					
						
						
							
							ShellPkg: Parse new SMBIOS 3.0 fields.  
						
						... 
						
						
						
						Parse new SMBIOS 3.0 fields in Type 4: Core Count 2, Core Enabled 2, Thread Count 2.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Elvin Li <elvin.li@intel.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16943  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-02-27 02:10:57 +00:00 
						 
				 
			
				
					
						
							
							
								Tapan Shah 
							
						 
					 
					
						
						
							
						
						c011b6c9e2 
					 
					
						
						
							
							ShellPkg: Standardized HP Copyright Message String  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Tapan Shah <tapandshah@hp.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16759  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-02-04 22:25:01 +00:00 
						 
				 
			
				
					
						
							
							
								Tapan Shah 
							
						 
					 
					
						
						
							
						
						4092a8f6d0 
					 
					
						
						
							
							ShellPkg: Update Debug1 profile commands response output  
						
						... 
						
						
						
						Updates to Debug1 profile commands response output. 
Updating Debug1 profile commands source code to include command name as a prefix in error message.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Tapan Shah <tapandshah@hp.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16729  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-02-03 21:22:53 +00:00 
						 
				 
			
				
					
						
							
							
								Qiu Shumin 
							
						 
					 
					
						
						
							
						
						3ab016b2a3 
					 
					
						
						
							
							ShellPkg: Fix typos.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16683  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-02-02 01:51:59 +00:00 
						 
				 
			
				
					
						
							
							
								Qiu Shumin 
							
						 
					 
					
						
						
							
						
						ecd07f3737 
					 
					
						
						
							
							ShellPkg: Refine the fomat in INF/DEC files to follow spec.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16634  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2015-01-22 01:44:11 +00:00 
						 
				 
			
				
					
						
							
							
								jcarsey 
							
						 
					 
					
						
						
							
						
						842949fa80 
					 
					
						
						
							
							ShellPkg: hexedit command does not return lasterror equal to 0 when exiting from editor  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by : Tapan Shah <tapandshah@hp.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16197  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-10-07 19:58:43 +00:00 
						 
				 
			
				
					
						
							
							
								jcarsey 
							
						 
					 
					
						
						
							
						
						8896351646 
					 
					
						
						
							
							Dmpstore command does not return lasterror equal to 0 when ‘-s’ flag used to dump variables in file  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by : Tapan Shah <tapandshah@hp.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16196  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-10-07 19:57:23 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						475387e9de 
					 
					
						
						
							
							ShellPkg: Update SetVar to use existing attributes for updating existing variables.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
Reviewed-by: Tapan Shah <tapandshah@hp.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16194  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-10-02 16:41:28 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						fba9b6ba24 
					 
					
						
						
							
							ShellPkg: Use the new library for "bcfg" command  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Chris Phillips <chrisp@hp.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
Reviewed by: Tapan Shah <tapandshah@hp.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16093  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-09-10 20:55:37 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						37a4164af3 
					 
					
						
						
							
							ShellPkg: Update BCFG command for correct use and errors on moving  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Tapan Shah <tapandshah@hp.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16060  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-09-04 20:55:29 +00:00 
						 
				 
			
				
					
						
							
							
								Samer El-Haj-Mahmoud elhaj 
							
						 
					 
					
						
						
							
						
						8ac6e336ff 
					 
					
						
						
							
							Cleanup UefiShellDebug1CommandsLib strings to :  
						
						... 
						
						
						
						* Follow a consistent style
 * Add consistent sections: NOTES, EXAMPLES, RETURN VALUES, etc...)
 * Wrap the text to fit in 80x25 formatted console output
 * Remove excessive and very verbose examples output
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Samer El-Haj-Mahmoud elhaj@hp.com  
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16037  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-09-02 20:16:47 +00:00 
						 
				 
			
				
					
						
							
							
								Samer El-Haj-Mahmoud elhaj 
							
						 
					 
					
						
						
							
						
						073fe5871e 
					 
					
						
						
							
							Update SmbiosView Shell command to display additional CPU Family  
						
						... 
						
						
						
						and Socket designations, and fix a couple of typos
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Samer El-Haj-Mahmoud elhaj@hp.com  
Reviewed-By: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16036  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-09-02 20:03:36 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						99ab5fc36c 
					 
					
						
						
							
							This patch replaces StrCpy with StrnCpy or refactors out the usage of StrCpy through some other means.  
						
						... 
						
						
						
						This patch replaces StrCat with StrnCat or refactors out the usage of StrCat through some other means.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16004  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-08-29 21:57:42 +00:00 
						 
				 
			
				
					
						
							
							
								Qiu Shumin 
							
						 
					 
					
						
						
							
						
						59577231a7 
					 
					
						
						
							
							ShellPkg: Replace non-ASCII character in Pci.c to fix GCC build error  
						
						... 
						
						
						
						For Invalid character ‘-’ in Pci.c line 806 and line 811, using ASCII
encoding byte 0x2d to replace.
Example error from GCC 4.9:
ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c:806:5: error: converting to execution character set: Invalid or incomplete multibyte or wide character
     L"Ethernet (802.11a � 5 GHz)",
     ^
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
Tested-by: Jordan Justen <jordan.l.justen@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15889  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-08-25 17:56:27 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						f056e4c180 
					 
					
						
						
							
							ShellPkg: Update 'pci' command for updated class codes  
						
						... 
						
						
						
						This updated the strings to be compliant with PCI CODE AND ID ASSIGNMENT SPECIFICATION 1.5.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Signed-off-by: Chris Phillips <chrisp@hp.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15885  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-08-22 17:02:11 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Phillips 
							
						 
					 
					
						
						
							
						
						73768087c4 
					 
					
						
						
							
							ShellPkg: Fixes and updates for the 'memmap' command  
						
						... 
						
						
						
						- Update 'memmap -sfo' format to match UEFI Shell 2.1 spec
- Update help output for easier viewing
- Update 'memmap' output format for better alignment
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Chris Phillips <chrisp@hp.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15872  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-08-21 20:26:32 +00:00 
						 
				 
			
				
					
						
							
							
								Qiu Shumin 
							
						 
					 
					
						
						
							
						
						30cad98e5f 
					 
					
						
						
							
							ShellPkg: Fix typo in 'uni' files.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15842  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-08-20 01:20:53 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						e8a57ade2a 
					 
					
						
						
							
							ShellPkg add size cast to bit operations  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Eric Dong <eric.dong@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15804  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-08-14 17:58:16 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						c12383d5ea 
					 
					
						
						
							
							Updates the total size logic and the SFO output per UEFI Shell 2.1 changes  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15758  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-08-05 20:57:08 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						9954df7b63 
					 
					
						
						
							
							Updates the logic to allow DmpStore to specify a name independent of specifying a GUID.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15757  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-08-05 20:56:40 +00:00 
						 
				 
			
				
					
						
							
							
								Eric Dong 
							
						 
					 
					
						
						
							
						
						0d807dae4a 
					 
					
						
						
							
							Update code to support VS2013 tool chain.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Eric Dong <eric.dong@intel.com >
Reviewed-by: Liming Gao <liming.gao@intel.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15704  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-07-29 02:00:55 +00:00 
						 
				 
			
				
					
						
							
							
								Jeff Bobzin (jeff.bobzin 
							
						 
					 
					
						
						
							
						
						2412c2978e 
					 
					
						
						
							
							ShellPkg: fix typo.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jeff Bobzin (jeff.bobzin@insyde.com ) 
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15696  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-07-28 16:58:34 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						17e59b3346 
					 
					
						
						
							
							ShellPkg: Fix calls to SimpleTextOut->SetAttribute to not use reserved bits  
						
						... 
						
						
						
						As the shell inverts foreground and background it needs to be sure that it properly masks off the reserved bits and this is important since the foreground and background are not the same numbers of bits.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <Jaben.carsey@intel.com >
Reviewed-by: Tapan Shah <tapandshah@hp.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15681  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-07-25 18:46:23 +00:00 
						 
				 
			
				
					
						
							
							
								Tapan Shah 
							
						 
					 
					
						
						
							
						
						148af38722 
					 
					
						
						
							
							ShellPkg: Fix Ctrl+C support for dmpstore command.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Tapan Shah <tapandshah@hp.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15604  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-06-30 20:14:24 +00:00 
						 
				 
			
				
					
						
							
							
								Eric Dong 
							
						 
					 
					
						
						
							
						
						81cd2f536e 
					 
					
						
						
							
							Refine code to make it more safely.  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Eric Dong <eric.dong@intel.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15593  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-06-26 01:38:46 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						885f7fd0c7 
					 
					
						
						
							
							ShellPkg: Fix duplicate String IDs  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <Jaben.carsey@intel.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15562  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-06-16 21:58:50 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						33eb033f86 
					 
					
						
						
							
							ShellPkg: fix Comp command output  
						
						... 
						
						
						
						The comp command was potentially displaying the incorrect offset into the file due to comparing 3 extra bytes for difference groups.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <Jaben.carsey@intel.com >
Reviewed-by: Tapan Shah <tapandshah@hp.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15558  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-06-05 22:02:12 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						09a43a5d5c 
					 
					
						
						
							
							ShellPkg: report error when EfiDecompress is run on a non-compressed file  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <Jaben.carsey@intel.com >
Reviewed-by: Tapan Shah <tapandshah@hp.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15529  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-05-14 16:54:09 +00:00 
						 
				 
			
				
					
						
							
							
								Brendan Jackman 
							
						 
					 
					
						
						
							
						
						0698723204 
					 
					
						
						
							
							ShellPkg: ShellCommands/SetVar: Make '-rt' imply '-bs'  
						
						... 
						
						
						
						It's invalid to set a variable that's available from runtime services but not
from boot services.
Currently if you pass '-rt' without '-bs' you get a generic
'Invalid Parameter' message. We should either print a more useful message in
this case, or make '-rt' imply '-bs' (as this patch does). The Shell Spec is
ambiguous on the matter.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Brendan Jackman <Brendan.Jackman@arm.com >
Reviewed-By: Olivier Martin <olivier.martin@arm.com >
Reviewed-By: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15323  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-03-10 18:13:13 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						e8c737ae79 
					 
					
						
						
							
							ShellPkg: Add missing header files  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <Jaben.Carsey@intel.com >
Reviewed-by: Daryl McDaniel daryl.mcdaniel@intel.com 
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15262  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-02-25 23:03:17 +00:00 
						 
				 
			
				
					
						
							
							
								Shumin Qiu 
							
						 
					 
					
						
						
							
						
						14868afbb8 
					 
					
						
						
							
							Update prints of variable attributes from 'RS' to 'RT' for 'Dmpstore' command.  
						
						... 
						
						
						
						Signed-off-by: Shumin Qiu <shumin.qiu@intel.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15164  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-01-23 00:29:53 +00:00 
						 
				 
			
				
					
						
							
							
								Shumin Qiu 
							
						 
					 
					
						
						
							
						
						f614ce7ebb 
					 
					
						
						
							
							Update the comments in function headers to follow Doxygen special documentation blocks in section 2.3.5.  
						
						... 
						
						
						
						Signed-off-by: Shumin Qiu <shumin.qiu@intel.com >
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15163  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-01-23 00:27:52 +00:00 
						 
				 
			
				
					
						
							
							
								Tian, Hot 
							
						 
					 
					
						
						
							
						
						d42aab6e61 
					 
					
						
						
							
							Fix CRLF format  
						
						... 
						
						
						
						Signed-off-by: Tian, Hot <hot.tian@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15160  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-01-22 08:40:29 +00:00 
						 
				 
			
				
					
						
							
							
								Shumin Qiu 
							
						 
					 
					
						
						
							
						
						5511b319f2 
					 
					
						
						
							
							1. Change the implementation of function 'LoadVariableFromFile' to return SHELL_STATUS. 2. Add code to check whether the pointer 'FoundVarName' in 'DmpStore.c' is NULL before used.  
						
						... 
						
						
						
						Signed-off-by: Shumin Qiu <shumin.qiu@intel.com >
Reviewed-by: Ni, Ruiyu <ruiyu.ni@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15112  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-01-14 07:30:50 +00:00 
						 
				 
			
				
					
						
							
							
								Olivier Martin 
							
						 
					 
					
						
						
							
						
						8da53ddd3b 
					 
					
						
						
							
							ShellPkg: remove unreachable break statements  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15108  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-01-13 18:52:12 +00:00 
						 
				 
			
				
					
						
							
							
								Shumin Qiu 
							
						 
					 
					
						
						
							
						
						483b86b918 
					 
					
						
						
							
							Set the type of return value from function 'LoadVariablesFromFile' in 'DmpStore.c' to match the type of 'ShellStatus'.  
						
						... 
						
						
						
						Signed-off-by: Shumin Qiu <shumin.qiu@intel.com >
Reviewed-by: Ni, Ruiyu <ruiyu.ni@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15102  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-01-13 07:28:01 +00:00 
						 
				 
			
				
					
						
							
							
								Jaben Carsey 
							
						 
					 
					
						
						
							
						
						9f7f0697b7 
					 
					
						
						
							
							ShellPkg: add the last PCIe extended capability decodings  
						
						... 
						
						
						
						Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com >
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15097  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-01-10 22:34:13 +00:00 
						 
				 
			
				
					
						
							
							
								Ruiyu Ni 
							
						 
					 
					
						
						
							
						
						7e63fc9de9 
					 
					
						
						
							
							Add the feature "dmpstore -l" and "dmpstore -s".  
						
						... 
						
						
						
						The file format is as below:
<File> := <Variable>+
<Variable> := <Name-Size> <Data-Size> <Name> <GUID> <Attributes> <Data> <Crc32>
Each variable representation in the file has a CRC32 value which can provide a mechanism to detect the file modification.
When any CRC32 is incorrect, dmpstore rejects to load the variables from the file.
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com >
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com >
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15083  6f19259b-4bc3-4df7-8a09-765794883524 
						
						
					 
					
						2014-01-10 01:52:24 +00:00