* [U-Boot] [PATCH 1/2] ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE
@ 2011-10-31 11:22 David Müller
2011-10-31 11:22 ` [U-Boot] [PATCH 2/2] ARM: remove superfluous setting of arch_number in board specific code David Müller
2011-11-08 8:20 ` [U-Boot] [PATCH 1/2] ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE Albert ARIBAUD
0 siblings, 2 replies; 4+ messages in thread
From: David Müller @ 2011-10-31 11:22 UTC (permalink / raw)
To: u-boot
Signed-off-by: David Mueller <d.mueller@elsoft.ch>
---
include/configs/VCMA9.h | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/configs/VCMA9.h b/include/configs/VCMA9.h
index 8b8113d..a370c15 100644
--- a/include/configs/VCMA9.h
+++ b/include/configs/VCMA9.h
@@ -29,6 +29,9 @@
#ifndef __CONFIG_H
#define __CONFIG_H
+
+#define MACH_TYPE_MPL_VCMA9 227
+
/*
* High Level Configuration Options
* (easy to change)
@@ -37,6 +40,7 @@
#define CONFIG_S3C24X0 /* in a SAMSUNG S3C24x0-type SoC */
#define CONFIG_S3C2410 /* specifically a SAMSUNG S3C2410 SoC */
#define CONFIG_VCMA9 /* on a MPL VCMA9 Board */
+#define CONFIG_MACH_TYPE MACH_TYPE_MPL_VCMA9 /* Machine type */
#define CONFIG_SYS_TEXT_BASE 0x0
--
1.7.4.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] ARM: remove superfluous setting of arch_number in board specific code.
2011-10-31 11:22 [U-Boot] [PATCH 1/2] ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE David Müller
@ 2011-10-31 11:22 ` David Müller
2011-11-08 21:47 ` Albert ARIBAUD
2011-11-08 8:20 ` [U-Boot] [PATCH 1/2] ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE Albert ARIBAUD
1 sibling, 1 reply; 4+ messages in thread
From: David Müller @ 2011-10-31 11:22 UTC (permalink / raw)
To: u-boot
Signed-off-by: David Mueller <d.mueller@elsoft.ch>
---
board/mpl/vcma9/vcma9.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/board/mpl/vcma9/vcma9.c b/board/mpl/vcma9/vcma9.c
index e63625b..9f259c2 100644
--- a/board/mpl/vcma9/vcma9.c
+++ b/board/mpl/vcma9/vcma9.c
@@ -72,9 +72,6 @@ int board_early_init_f(void)
int board_init(void)
{
- /* arch number of VCMA9-Board */
- gd->bd->bi_arch_number = MACH_TYPE_MPL_VCMA9;
-
/* adress of boot parameters */
gd->bd->bi_boot_params = 0x30000100;
--
1.7.4.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 1/2] ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE
2011-10-31 11:22 [U-Boot] [PATCH 1/2] ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE David Müller
2011-10-31 11:22 ` [U-Boot] [PATCH 2/2] ARM: remove superfluous setting of arch_number in board specific code David Müller
@ 2011-11-08 8:20 ` Albert ARIBAUD
1 sibling, 0 replies; 4+ messages in thread
From: Albert ARIBAUD @ 2011-11-08 8:20 UTC (permalink / raw)
To: u-boot
Hi David,
Le 31/10/2011 12:22, David M?ller a ?crit :
> Signed-off-by: David Mueller<d.mueller@elsoft.ch>
> ---
> include/configs/VCMA9.h | 4 ++++
> 1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/include/configs/VCMA9.h b/include/configs/VCMA9.h
> index 8b8113d..a370c15 100644
> --- a/include/configs/VCMA9.h
> +++ b/include/configs/VCMA9.h
> @@ -29,6 +29,9 @@
> #ifndef __CONFIG_H
> #define __CONFIG_H
>
> +
> +#define MACH_TYPE_MPL_VCMA9 227
> +
> /*
> * High Level Configuration Options
> * (easy to change)
> @@ -37,6 +40,7 @@
> #define CONFIG_S3C24X0 /* in a SAMSUNG S3C24x0-type SoC */
> #define CONFIG_S3C2410 /* specifically a SAMSUNG S3C2410 SoC */
> #define CONFIG_VCMA9 /* on a MPL VCMA9 Board */
> +#define CONFIG_MACH_TYPE MACH_TYPE_MPL_VCMA9 /* Machine type */
>
> #define CONFIG_SYS_TEXT_BASE 0x0
Applied to u-boot-arm/master, thanks!
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] ARM: remove superfluous setting of arch_number in board specific code.
2011-10-31 11:22 ` [U-Boot] [PATCH 2/2] ARM: remove superfluous setting of arch_number in board specific code David Müller
@ 2011-11-08 21:47 ` Albert ARIBAUD
0 siblings, 0 replies; 4+ messages in thread
From: Albert ARIBAUD @ 2011-11-08 21:47 UTC (permalink / raw)
To: u-boot
Hi David,
Le 31/10/2011 12:22, David M?ller a ?crit :
> Signed-off-by: David Mueller<d.mueller@elsoft.ch>
> ---
> board/mpl/vcma9/vcma9.c | 3 ---
> 1 files changed, 0 insertions(+), 3 deletions(-)
>
> diff --git a/board/mpl/vcma9/vcma9.c b/board/mpl/vcma9/vcma9.c
> index e63625b..9f259c2 100644
> --- a/board/mpl/vcma9/vcma9.c
> +++ b/board/mpl/vcma9/vcma9.c
> @@ -72,9 +72,6 @@ int board_early_init_f(void)
>
> int board_init(void)
> {
> - /* arch number of VCMA9-Board */
> - gd->bd->bi_arch_number = MACH_TYPE_MPL_VCMA9;
> -
> /* adress of boot parameters */
> gd->bd->bi_boot_params = 0x30000100;
>
Applied to u-boot-arm/master, thanks!
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-11-08 21:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-31 11:22 [U-Boot] [PATCH 1/2] ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE David Müller
2011-10-31 11:22 ` [U-Boot] [PATCH 2/2] ARM: remove superfluous setting of arch_number in board specific code David Müller
2011-11-08 21:47 ` Albert ARIBAUD
2011-11-08 8:20 ` [U-Boot] [PATCH 1/2] ARM: re-add MACH_TYPE_XXXXXX for VCMA9 board and add CONFIG_MACH_TYPE Albert ARIBAUD
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox