* [PATCH] arm: imx53: qsb: set hostname from board file
@ 2014-03-18 16:29 Lucas Stach
2014-03-23 8:48 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Lucas Stach @ 2014-03-18 16:29 UTC (permalink / raw)
To: barebox
Otherwise it won't get set in a multiimage build.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
arch/arm/boards/freescale-mx53-qsb/board.c | 2 ++
arch/arm/boards/freescale-mx53-qsb/env/config-board | 1 -
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boards/freescale-mx53-qsb/board.c b/arch/arm/boards/freescale-mx53-qsb/board.c
index 74826e4a5e43..0553f1c82895 100644
--- a/arch/arm/boards/freescale-mx53-qsb/board.c
+++ b/arch/arm/boards/freescale-mx53-qsb/board.c
@@ -99,6 +99,7 @@ static int loco_late_init(void)
rev = readl(MX53_IIM_BASE_ADDR + 0x878);
set_board_rev(rev);
printf("MCIMX53-START-R board 1.0 rev %c\n", (rev == 1) ? 'A' : 'B' );
+ barebox_set_hostname("loco-r");
armlinux_set_revision(loco_system_rev);
/* Set VDDGP to 1.25V for 1GHz on SW1 */
mc13xxx_reg_read(mc34708, MC13892_REG_SW_0, &val);
@@ -146,6 +147,7 @@ static int loco_late_init(void)
} else {
/* so we have a DA9053 based board */
printf("MCIMX53-START board 1.0\n");
+ barebox_set_hostname("loco");
armlinux_set_revision(loco_system_rev);
return 0;
}
diff --git a/arch/arm/boards/freescale-mx53-qsb/env/config-board b/arch/arm/boards/freescale-mx53-qsb/env/config-board
index a6cf69ddbc7f..e8e8378f53f5 100644
--- a/arch/arm/boards/freescale-mx53-qsb/env/config-board
+++ b/arch/arm/boards/freescale-mx53-qsb/env/config-board
@@ -3,5 +3,4 @@
# board defaults, do not change in running system. Change /env/config
# instead
-global.hostname=loco
global.linux.bootargs.base="console=ttymxc0,115200"
--
1.9.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] arm: imx53: qsb: set hostname from board file
2014-03-18 16:29 [PATCH] arm: imx53: qsb: set hostname from board file Lucas Stach
@ 2014-03-23 8:48 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2014-03-23 8:48 UTC (permalink / raw)
To: Lucas Stach; +Cc: barebox
On Tue, Mar 18, 2014 at 05:29:45PM +0100, Lucas Stach wrote:
> Otherwise it won't get set in a multiimage build.
>
> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Applied, thanks
Sascha
> ---
> arch/arm/boards/freescale-mx53-qsb/board.c | 2 ++
> arch/arm/boards/freescale-mx53-qsb/env/config-board | 1 -
> 2 files changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/boards/freescale-mx53-qsb/board.c b/arch/arm/boards/freescale-mx53-qsb/board.c
> index 74826e4a5e43..0553f1c82895 100644
> --- a/arch/arm/boards/freescale-mx53-qsb/board.c
> +++ b/arch/arm/boards/freescale-mx53-qsb/board.c
> @@ -99,6 +99,7 @@ static int loco_late_init(void)
> rev = readl(MX53_IIM_BASE_ADDR + 0x878);
> set_board_rev(rev);
> printf("MCIMX53-START-R board 1.0 rev %c\n", (rev == 1) ? 'A' : 'B' );
> + barebox_set_hostname("loco-r");
> armlinux_set_revision(loco_system_rev);
> /* Set VDDGP to 1.25V for 1GHz on SW1 */
> mc13xxx_reg_read(mc34708, MC13892_REG_SW_0, &val);
> @@ -146,6 +147,7 @@ static int loco_late_init(void)
> } else {
> /* so we have a DA9053 based board */
> printf("MCIMX53-START board 1.0\n");
> + barebox_set_hostname("loco");
> armlinux_set_revision(loco_system_rev);
> return 0;
> }
> diff --git a/arch/arm/boards/freescale-mx53-qsb/env/config-board b/arch/arm/boards/freescale-mx53-qsb/env/config-board
> index a6cf69ddbc7f..e8e8378f53f5 100644
> --- a/arch/arm/boards/freescale-mx53-qsb/env/config-board
> +++ b/arch/arm/boards/freescale-mx53-qsb/env/config-board
> @@ -3,5 +3,4 @@
> # board defaults, do not change in running system. Change /env/config
> # instead
>
> -global.hostname=loco
> global.linux.bootargs.base="console=ttymxc0,115200"
> --
> 1.9.0
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-23 8:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-18 16:29 [PATCH] arm: imx53: qsb: set hostname from board file Lucas Stach
2014-03-23 8:48 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox