mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 13:09:38 +00:00 
			
		
		
		
	 375f969d43
			
		
	
	375f969d43
	
	
	
		
			
			It is now possible to have any alignment restriction on rodata in the user applicaiton. It will not affect the first section which must be aligned on a 16-byte bound. Closes https://github.com/espressif/esp-idf/issues/6719
Runs a build test to check alignment and position of `.flash.appdesc` and `.flash.rodata` sections. Indeed, `.flash.appdesc` shall ALWAYS be aligned on a 16-byte bounds, whereas `.flash.rodata` can have any alignment. In any case, the end address of first one shall match the start address of the second one. This will let both of them be merged when generating the final bin image. The Python script that performs the checks, `check_alignment.py`, automatically runs after the app is built.