[U-Boot] [PATCH] ppc/85xx: Added support for P1011RDB and P2010RDB

P2010 and P1011 are single core variants of P2020 and P1010 respectively. The board(RDB) will be same.
Signed-off-by: Poonam Aggrwal poonam.aggrwal@freescale.com Signed-off-by: Kumar Gala galak@kernel.crashing.org --- applies on http://git.denx.de/u-boot-mpc85xx.git branch->next Makefile | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile index 337bf89..4c0e08d 100644 --- a/Makefile +++ b/Makefile @@ -2499,11 +2499,21 @@ P2020RDB_config: unconfig @echo "#define CONFIG_P2020" >>$(obj)include/config.h ; @$(MKCONFIG) -a P1_P2_RDB ppc mpc85xx p1_p2_rdb freescale
+P2010RDB_config: unconfig + @mkdir -p $(obj)include + @echo "#define CONFIG_P2010" >>$(obj)include/config.h ; + @$(MKCONFIG) -a P1_P2_RDB ppc mpc85xx p1_p2_rdb freescale + P1020RDB_config: unconfig @mkdir -p $(obj)include @echo "#define CONFIG_P1020" >>$(obj)include/config.h ; @$(MKCONFIG) -a P1_P2_RDB ppc mpc85xx p1_p2_rdb freescale
+P1011RDB_config: unconfig + @mkdir -p $(obj)include + @echo "#define CONFIG_P1011" >>$(obj)include/config.h ; + @$(MKCONFIG) -a P1_P2_RDB ppc mpc85xx p1_p2_rdb freescale + PM854_config: unconfig @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854

On Aug 20, 2009, at 8:29 AM, Poonam Aggrwal wrote:
P2010 and P1011 are single core variants of P2020 and P1010 respectively. The board(RDB) will be same.
Signed-off-by: Poonam Aggrwal poonam.aggrwal@freescale.com Signed-off-by: Kumar Gala galak@kernel.crashing.org
applies on http://git.denx.de/u-boot-mpc85xx.git branch->next Makefile | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-)
Added to MAKEALL and kept list in Makefile sorted (in the future make sure to do those two things)
applied to 85xx next
- k
participants (2)
-
Kumar Gala
-
Poonam Aggrwal