mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 20:28:59 +00:00
ppc4xx: Rename compactcenter to intip
Signed-off-by: Dirk Eibach <eibach@gdsys.de> Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
297a65873d
commit
ecdd98799f
10 changed files with 16 additions and 16 deletions
|
@ -141,10 +141,10 @@ Jon Diekema <jon.diekema@smiths-aerospace.com>
|
||||||
|
|
||||||
Dirk Eibach <eibach@gdsys.de>
|
Dirk Eibach <eibach@gdsys.de>
|
||||||
|
|
||||||
compactcenter PPC460EX
|
|
||||||
devconcenter PPC460EX
|
devconcenter PPC460EX
|
||||||
dlvision PPC405EP
|
dlvision PPC405EP
|
||||||
gdppc440etx PPC440EP/GR
|
gdppc440etx PPC440EP/GR
|
||||||
|
intip PPC460EX
|
||||||
neo PPC405EP
|
neo PPC405EP
|
||||||
|
|
||||||
Dave Ellis <DGE@sixnetio.com>
|
Dave Ellis <DGE@sixnetio.com>
|
||||||
|
|
2
MAKEALL
2
MAKEALL
|
@ -185,7 +185,6 @@ LIST_4xx=" \
|
||||||
canyonlands \
|
canyonlands \
|
||||||
canyonlands_nand \
|
canyonlands_nand \
|
||||||
CMS700 \
|
CMS700 \
|
||||||
compactcenter \
|
|
||||||
CPCI2DP \
|
CPCI2DP \
|
||||||
CPCI405 \
|
CPCI405 \
|
||||||
CPCI4052 \
|
CPCI4052 \
|
||||||
|
@ -214,6 +213,7 @@ LIST_4xx=" \
|
||||||
hcu5 \
|
hcu5 \
|
||||||
HH405 \
|
HH405 \
|
||||||
HUB405 \
|
HUB405 \
|
||||||
|
intip \
|
||||||
JSE \
|
JSE \
|
||||||
KAREF \
|
KAREF \
|
||||||
katmai \
|
katmai \
|
||||||
|
|
16
Makefile
16
Makefile
|
@ -1308,14 +1308,6 @@ CATcenter_33_config: unconfig
|
||||||
CMS700_config: unconfig
|
CMS700_config: unconfig
|
||||||
@$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
|
@$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
|
||||||
|
|
||||||
# Compact-Center & DevCon-Center use different U-Boot images
|
|
||||||
compactcenter_config \
|
|
||||||
devconcenter_config: unconfig
|
|
||||||
@mkdir -p $(obj)include
|
|
||||||
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
|
|
||||||
tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
|
|
||||||
@$(MKCONFIG) -n $@ -a compactcenter ppc ppc4xx compactcenter gdsys
|
|
||||||
|
|
||||||
CPCI2DP_config: unconfig
|
CPCI2DP_config: unconfig
|
||||||
@$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
|
@$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
|
||||||
|
|
||||||
|
@ -1400,6 +1392,14 @@ HH405_config: unconfig
|
||||||
HUB405_config: unconfig
|
HUB405_config: unconfig
|
||||||
@$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
|
@$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
|
||||||
|
|
||||||
|
# Compact-Center(codename intip) & DevCon-Center use different U-Boot images
|
||||||
|
intip_config \
|
||||||
|
devconcenter_config: unconfig
|
||||||
|
@mkdir -p $(obj)include
|
||||||
|
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
|
||||||
|
tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
|
||||||
|
@$(MKCONFIG) -n $@ -a intip ppc ppc4xx intip gdsys
|
||||||
|
|
||||||
JSE_config: unconfig
|
JSE_config: unconfig
|
||||||
@$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
|
@$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ int checkboard(void)
|
||||||
#ifdef CONFIG_DEVCONCENTER
|
#ifdef CONFIG_DEVCONCENTER
|
||||||
printf("Board: DevCon-Center");
|
printf("Board: DevCon-Center");
|
||||||
#else
|
#else
|
||||||
printf("Board: CompactCenter");
|
printf("Board: Intip");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (s != NULL) {
|
if (s != NULL) {
|
|
@ -66,7 +66,7 @@ SECTIONS
|
||||||
/* the sector layout of our flash chips! XXX FIXME XXX */
|
/* the sector layout of our flash chips! XXX FIXME XXX */
|
||||||
|
|
||||||
cpu/ppc4xx/start.o (.text)
|
cpu/ppc4xx/start.o (.text)
|
||||||
board/gdsys/compactcenter/init.o (.text)
|
board/gdsys/intip/init.o (.text)
|
||||||
|
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.fixup)
|
*(.fixup)
|
|
@ -23,7 +23,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* compactcenter.h - configuration for CompactCenter (460EX)
|
* intip.h - configuration for CompactCenter aka intip (460EX) and DevCon-Center
|
||||||
*/
|
*/
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
#define __CONFIG_H
|
#define __CONFIG_H
|
||||||
|
@ -32,15 +32,15 @@
|
||||||
* High Level Configuration Options
|
* High Level Configuration Options
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* This config file is used for CompactCenter and DevCon-Center
|
* This config file is used for CompactCenter(codename intip) and DevCon-Center
|
||||||
*/
|
*/
|
||||||
#define CONFIG_460EX 1 /* Specific PPC460EX */
|
#define CONFIG_460EX 1 /* Specific PPC460EX */
|
||||||
#ifdef CONFIG_DEVCONCENTER
|
#ifdef CONFIG_DEVCONCENTER
|
||||||
#define CONFIG_HOSTNAME devconcenter
|
#define CONFIG_HOSTNAME devconcenter
|
||||||
#define CONFIG_IDENT_STRING " devconcenter 0.02"
|
#define CONFIG_IDENT_STRING " devconcenter 0.02"
|
||||||
#else
|
#else
|
||||||
#define CONFIG_HOSTNAME compactcenter
|
#define CONFIG_HOSTNAME intip
|
||||||
#define CONFIG_IDENT_STRING " compactcenter 0.02"
|
#define CONFIG_IDENT_STRING " intip 0.02"
|
||||||
#endif
|
#endif
|
||||||
#define CONFIG_440 1
|
#define CONFIG_440 1
|
||||||
#define CONFIG_4xx 1 /* ... PPC4xx family */
|
#define CONFIG_4xx 1 /* ... PPC4xx family */
|
Loading…
Reference in a new issue