diff options
Diffstat (limited to 'include/configs/km/km-powerpc.h')
| -rw-r--r-- | include/configs/km/km-powerpc.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/include/configs/km/km-powerpc.h b/include/configs/km/km-powerpc.h index 506755ba0..bd5bdbcb4 100644 --- a/include/configs/km/km-powerpc.h +++ b/include/configs/km/km-powerpc.h @@ -80,14 +80,14 @@  	"cramfsloadfdt="						\  		"cramfsload ${fdt_addr_r} "				\  		"fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb\0"		\ -	"fdt_addr_r=" xstr(CONFIG_KM_FDT_ADDR) "\0"			\ -	"u-boot="xstr(CONFIG_HOSTNAME) "/u-boot.bin\0"			\ +	"fdt_addr_r=" __stringify(CONFIG_KM_FDT_ADDR) "\0"		\ +	"u-boot="__stringify(CONFIG_HOSTNAME) "/u-boot.bin\0"		\  	"update="							\ -		"protect off " xstr(BOOTFLASH_START) " +${filesize} && "\ -		"erase " xstr(BOOTFLASH_START) "  +${filesize} && "	\ -		"cp.b ${load_addr_r} " xstr(BOOTFLASH_START)		\ +		"protect off " __stringify(BOOTFLASH_START) " +${filesize} && "\ +		"erase " __stringify(BOOTFLASH_START) "  +${filesize} && "\ +		"cp.b ${load_addr_r} " __stringify(BOOTFLASH_START)	\  		"  ${filesize} && "					\ -		"protect on " xstr(BOOTFLASH_START) "  +${filesize}\0"  \ +		"protect on " __stringify(BOOTFLASH_START) "  +${filesize}\0"\  	""  #endif /* __CONFIG_KEYMILE_POWERPC_H */ |