mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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 <poonam.aggrwal@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
a713ba926b
commit
c17b79fbd0
2 changed files with 12 additions and 0 deletions
2
MAKEALL
2
MAKEALL
|
@ -391,7 +391,9 @@ LIST_85xx=" \
|
|||
MPC8572DS_36BIT \
|
||||
P2020DS \
|
||||
P2020DS_36BIT \
|
||||
P1011RDB \
|
||||
P1020RDB \
|
||||
P2010RDB \
|
||||
P2020RDB \
|
||||
PM854 \
|
||||
PM856 \
|
||||
|
|
10
Makefile
10
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 ;
|
||||
|
|
Loading…
Reference in a new issue