From: Poonam Aggrwal Date: Thu, 20 Aug 2009 13:29:18 +0000 (+0530) Subject: 85xx: Added support for P1011RDB and P2010RDB X-Git-Tag: v2009.11-rc1~225^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c17b79fbd0c7923948331d65cb588734a9c681ff;p=kernel%2Fu-boot.git 85xx: Added support for P1011RDB and P2010RDB P1011 and P2010 are single core variants of P1010 and P2020 respectively. The board(RDB) will be same. Signed-off-by: Poonam Aggrwal Signed-off-by: Kumar Gala --- diff --git a/MAKEALL b/MAKEALL index 754ae5a..c8a1f37 100755 --- a/MAKEALL +++ b/MAKEALL @@ -391,7 +391,9 @@ LIST_85xx=" \ MPC8572DS_36BIT \ P2020DS \ P2020DS_36BIT \ + P1011RDB \ P1020RDB \ + P2010RDB \ P2020RDB \ PM854 \ PM856 \ diff --git a/Makefile b/Makefile index 9c86959..faf5579 100644 --- a/Makefile +++ b/Makefile @@ -2528,11 +2528,21 @@ P2020DS_config: unconfig fi @$(MKCONFIG) -a P2020DS ppc mpc85xx p2020ds 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 + 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 +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 + P2020RDB_config: unconfig @mkdir -p $(obj)include @echo "#define CONFIG_P2020" >>$(obj)include/config.h ;