diff mbox

[U-Boot] arm: novena: Fix kernel_addr_r env variable

Message ID 1447185252-5864-1-git-send-email-marex@denx.de
State Awaiting Upstream
Delegated to: Stefano Babic
Headers show

Commit Message

Marek Vasut Nov. 10, 2015, 7:54 p.m. UTC
The kernel_addr_r should be set to the same value as CONFIG_LOADADDR,
get rid of the duplication.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Sean Cross <xobs@kosagi.com>
Cc: Stefano Babic <sbabic@denx.de>
---
 include/configs/novena.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Stefano Babic Nov. 12, 2015, 4:34 p.m. UTC | #1
On 10/11/2015 20:54, Marek Vasut wrote:
> The kernel_addr_r should be set to the same value as CONFIG_LOADADDR,
> get rid of the duplication.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Sean Cross <xobs@kosagi.com>
> Cc: Stefano Babic <sbabic@denx.de>
> ---
>  include/configs/novena.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/configs/novena.h b/include/configs/novena.h
> index c88fb0d..718989f 100644
> --- a/include/configs/novena.h
> +++ b/include/configs/novena.h
> @@ -198,7 +198,7 @@
>  	"bootdev=/dev/mmcblk0p1\0"					\
>  	"rootdev=/dev/mmcblk0p2\0"					\
>  	"netdev=eth0\0"							\
> -	"kernel_addr_r=0x18000000\0"					\
> +	"kernel_addr_r="__stringify(CONFIG_LOADADDR)"\0"		\
>  	"addcons="							\
>  		"setenv bootargs ${bootargs} "				\
>  		"console=${consdev},${baudrate}\0"			\
> 

Applied to u-boot-imx, thanks !

Best regards,
Stefano Babic
diff mbox

Patch

diff --git a/include/configs/novena.h b/include/configs/novena.h
index c88fb0d..718989f 100644
--- a/include/configs/novena.h
+++ b/include/configs/novena.h
@@ -198,7 +198,7 @@ 
 	"bootdev=/dev/mmcblk0p1\0"					\
 	"rootdev=/dev/mmcblk0p2\0"					\
 	"netdev=eth0\0"							\
-	"kernel_addr_r=0x18000000\0"					\
+	"kernel_addr_r="__stringify(CONFIG_LOADADDR)"\0"		\
 	"addcons="							\
 		"setenv bootargs ${bootargs} "				\
 		"console=${consdev},${baudrate}\0"			\