mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	This reverts commit 819f1e081c527d2d02cdaeec0027384688cf5de0. This check was introduced in order to cope with the size limitation we had when we were still using the raw environment in MMC. However, this introduces padding as well, which can result in an overly huge binary if one wants to flash the environment to some other location. Since we now have a FAT-based environment, this check is not so useful anymore, so we can just drop it. Cc: Andre Przywara <andre.przywara@arm.com> Cc: Måns Rullgård <mans@mansr.com> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by: Jagan Teki <jagan@openedev.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			204 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			204 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#include <config.h>
 | 
						|
 | 
						|
/ {
 | 
						|
	binman {
 | 
						|
		filename = "u-boot-sunxi-with-spl.bin";
 | 
						|
		pad-byte = <0xff>;
 | 
						|
		blob {
 | 
						|
			filename = "spl/sunxi-spl.bin";
 | 
						|
		};
 | 
						|
		u-boot-img {
 | 
						|
			pos = <CONFIG_SPL_PAD_TO>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 |