mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	This converts the following to Kconfig: CONFIG_STANDALONE_LOAD_ADDR Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			340 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			340 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0+
 | |
| #
 | |
| # (C) Copyright 2000-2002
 | |
| # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 | |
| 
 | |
| ifeq ($(CPU),sh2)
 | |
| LDFLAGS_STANDALONE += -EB
 | |
| endif
 | |
| 
 | |
| PLATFORM_CPPFLAGS += -DCONFIG_SH -D__SH__
 | |
| PLATFORM_RELFLAGS += -fpic -ffunction-sections -fdata-sections
 | |
| LDFLAGS_FINAL = --gc-sections
 | |
| PLATFORM_RELFLAGS += -ffixed-r13
 |