forked from Mirrors/opensbi
		
	lib: Remove date and time from init message
Building the date and time into the binary means the OpenSBI isn't reproducible. We don't really need the time so let's remove it. Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Anup Patel <anup.patel@wdc.com>
This commit is contained in:
		
				
					committed by
					
						
						Anup Patel
					
				
			
			
				
	
			
			
			
						parent
						
							7a13beb213
						
					
				
				
					commit
					215421ca61
				
			@@ -35,11 +35,10 @@ static void sbi_boot_prints(struct sbi_scratch *scratch, u32 hartid)
 | 
			
		||||
 | 
			
		||||
	misa_string(str, sizeof(str));
 | 
			
		||||
#ifdef OPENSBI_VERSION_GIT
 | 
			
		||||
	sbi_printf("\nOpenSBI %s (%s %s)\n", OPENSBI_VERSION_GIT,
 | 
			
		||||
		   __DATE__, __TIME__);
 | 
			
		||||
	sbi_printf("\nOpenSBI %s\n", OPENSBI_VERSION_GIT);
 | 
			
		||||
#else
 | 
			
		||||
	sbi_printf("\nOpenSBI v%d.%d (%s %s)\n", OPENSBI_VERSION_MAJOR,
 | 
			
		||||
		   OPENSBI_VERSION_MINOR, __DATE__, __TIME__);
 | 
			
		||||
	sbi_printf("\nOpenSBI v%d.%d\n", OPENSBI_VERSION_MAJOR,
 | 
			
		||||
		   OPENSBI_VERSION_MINOR);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
	sbi_printf(BANNER);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user