Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
uboot-imx
Commits
6c6e042a
Commit
6c6e042a
authored
Feb 01, 2009
by
Wolfgang Denk
Browse files
Merge branch 'master' of
git://git.denx.de/u-boot-arm
parents
ee924e00
4e69087a
Changes
113
Hide whitespace changes
Inline
Side-by-side
MAINTAINERS
View file @
6c6e042a
...
...
@@ -487,6 +487,10 @@ Rowel Atienza <rowel@diwalabs.com>
armadillo ARM720T
Dirk Behme <dirk.behme@gmail.com>
omap3_beagle ARM CORTEX-A8 (OMAP3530 SoC)
Rishi Bhattacharya <rishi@ti.com>
omap5912osk ARM926EJS
...
...
@@ -527,6 +531,10 @@ Sascha Hauer <s.hauer@pengutronix.de>
imx31_litekit i.MX31
imx31_phycore i.MX31
Grazvydas Ignotas <notasas@gmail.com>
omap3_pandora ARM CORTEX-A8 (OMAP3xx SoC)
Gary Jennejohn <gj@denx.de>
smdk2400 ARM920T
...
...
@@ -554,6 +562,10 @@ Guennadi Liakhovetski <g.liakhovetski@gmx.de>
mx31ads i.MX31
SMDK6400 S3C6400
Nishanth Menon <nm@ti.com>
omap3_zoom1 ARM CORTEX-A8 (OMAP3xx SoC)
David Mller <d.mueller@elsoft.ch>
smdk2410 ARM920T
...
...
@@ -577,6 +589,10 @@ Dave Peverley <dpeverley@mpc-data.co.uk>
omap730p2 ARM926EJS
Manikandan Pillai <mani.pillai@ti.com>
omap3_evm ARM CORTEX-A8 (OMAP3xx SoC)
Stelian Pop <stelian.pop@leadtechdesign.com>
at91cap9adk ARM926EJS (AT91CAP9 SoC)
...
...
@@ -591,6 +607,15 @@ Stefan Roese <sr@denx.de>
pdnb3 xscale
scpu xscale
Alessandro Rubini <rubini@unipv.it>
Nomadik Linux Team <STN_WMM_nomadik_linux@list.st.com>
nmdk8815 ARM926EJS (Nomadik 8815 Soc)
Steve Sakoman <sakoman@gmail.com>
omap3_overo ARM CORTEX-A8 (OMAP3xx SoC)
Robert Schwebel <r.schwebel@pengutronix.de>
csb226 xscale
...
...
MAKEALL
View file @
6c6e042a
...
...
@@ -502,6 +502,7 @@ LIST_ARM9=" \
mx1ads
\
mx1fs2
\
netstar
\
nmdk8815
\
omap1510inn
\
omap1610h2
\
omap1610inn
\
...
...
@@ -544,6 +545,17 @@ LIST_ARM11=" \
smdk6400
\
"
#########################################################################
## ARM Cortex-A8 Systems
#########################################################################
LIST_ARM_CORTEX_A8
=
"
\
omap3_beagle
\
omap3_overo
\
omap3_evm
\
omap3_pandora
\
omap3_zoom1
\
"
#########################################################################
## AT91 Systems
#########################################################################
...
...
@@ -598,15 +610,16 @@ LIST_ixp=" \
## ARM groups
#########################################################################
LIST_arm
=
"
\
${
LIST_SA
}
\
${
LIST_ARM7
}
\
${
LIST_ARM9
}
\
${
LIST_ARM10
}
\
${
LIST_ARM11
}
\
${
LIST_at91
}
\
${
LIST_pxa
}
\
${
LIST_ixp
}
\
LIST_arm
=
"
\
${
LIST_SA
}
\
${
LIST_ARM7
}
\
${
LIST_ARM9
}
\
${
LIST_ARM10
}
\
${
LIST_ARM11
}
\
${
LIST_ARM_CORTEX_A8
}
\
${
LIST_at91
}
\
${
LIST_pxa
}
\
${
LIST_ixp
}
\
"
#########################################################################
...
...
@@ -834,7 +847,7 @@ build_target() {
for
arg
in
$@
do
case
"
$arg
"
in
arm|SA|ARM7|ARM9|ARM10|ARM11|at91|ixp|pxa
\
arm|SA|ARM7|ARM9|ARM10|ARM11|
ARM_CORTEX_A8|
at91|ixp|pxa
\
|
avr32
\
|
blackfin
\
|
coldfire
\
...
...
Makefile
View file @
6c6e042a
...
...
@@ -2716,7 +2716,7 @@ ap720t_config \
ap920t_config
\
ap926ejs_config
\
ap946es_config
:
unconfig
@
board/integratorap/split_by_variant.sh
$@
@
board/
armltd/
integratorap/split_by_variant.sh
$@
integratorcp_config
\
cp_config
\
...
...
@@ -2728,7 +2728,7 @@ cp966_config \
cp922_config
\
cp922_XA10_config
\
cp1026_config
:
unconfig
@
board/integratorcp/split_by_variant.sh
$@
@
board/
armltd/
integratorcp/split_by_variant.sh
$@
davinci_dvevm_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm926ejs dvevm davinci davinci
...
...
@@ -2755,6 +2755,18 @@ mx1fs2_config : unconfig
netstar_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm925t netstar
nmdk8815_config
\
nmdk8815_onenand_config
:
unconfig
@
mkdir
-p
$(obj)
include
@
>
$(obj)
include/config.h
@
if
[
"
$(
findstring
_onenand,
$@
)
"
]
;
then
\
echo
"#define CONFIG_BOOT_ONENAND"
>>
$(obj)
include/config.h
;
\
$(XECHO)
"... configured for OneNand Flash"
;
\
else
\
$(XECHO)
"... configured for Nand Flash"
;
\
fi
@
$(MKCONFIG)
-a
nmdk8815 arm arm926ejs nmdk8815 st nomadik
omap1510inn_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm925t omap1510inn
...
...
@@ -2806,13 +2818,22 @@ scb9328_config : unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm920t scb9328 NULL imx
smdk2400_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm920t smdk2400
NULL
s3c24x0
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm920t smdk2400
samsung
s3c24x0
smdk2410_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm920t smdk2410
NULL
s3c24x0
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm920t smdk2410
samsung
s3c24x0
SX1_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm925t sx1
SX1_stdout_serial_config
\
SX1_config
:
unconfig
@
mkdir
-p
$(obj)
include
@
if
[
"
$(
findstring
_stdout_serial_,
$@
)
"
]
;
then
\
echo
"#undef CONFIG_STDOUT_USBTTY"
>>
$(obj)
include/config.h
;
\
$(XECHO)
"... configured for stdout serial"
;
\
else
\
echo
"#define CONFIG_STDOUT_USBTTY"
>>
$(obj)
include/config.h
;
\
$(XECHO)
"... configured for stdout usbtty"
;
\
fi
;
@
$(MKCONFIG)
SX1 arm arm925t sx1
# TRAB default configuration: 8 MB Flash, 32 MB RAM
xtract_trab
=
$(
subst
_bigram,,
$(
subst
_bigflash,,
$(
subst
_old,,
$(
subst
_config,,
$1
))))
...
...
@@ -2858,7 +2879,7 @@ cm41xx_config : unconfig
versatile_config
\
versatileab_config
\
versatilepb_config
:
unconfig
@
board/versatile/split_by_variant.sh
$@
@
board/
armltd/
versatile/split_by_variant.sh
$@
voiceblue_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm925t voiceblue
...
...
@@ -2895,6 +2916,25 @@ lpc2292sodimm_config: unconfig
SMN42_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm720t SMN42 siemens lpc2292
#########################################################################
## ARM CORTEX Systems
#########################################################################
omap3_beagle_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm_cortexa8 beagle omap3 omap3
omap3_overo_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm_cortexa8 overo omap3 omap3
omap3_evm_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm_cortexa8 evm omap3 omap3
omap3_pandora_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm_cortexa8 pandora omap3 omap3
omap3_zoom1_config
:
unconfig
@
$(MKCONFIG)
$
(
@:_config
=)
arm arm_cortexa8 zoom1 omap3 omap3
#########################################################################
## XScale Systems
#########################################################################
...
...
board/armltd/.gitignore
0 → 100644
View file @
6c6e042a
/integratorap/u-boot.lds
/integratorcp/u-boot.lds
board/integratorap/Makefile
→
board/
armltd/
integratorap/Makefile
View file @
6c6e042a
File moved
board/integratorap/config.mk
→
board/
armltd/
integratorap/config.mk
View file @
6c6e042a
File moved
board/integratorap/flash.c
→
board/
armltd/
integratorap/flash.c
View file @
6c6e042a
File moved
board/integratorap/integratorap.c
→
board/
armltd/
integratorap/integratorap.c
View file @
6c6e042a
File moved
board/integratorap/lowlevel_init.S
→
board/
armltd/
integratorap/lowlevel_init.S
View file @
6c6e042a
File moved
board/integratorap/split_by_variant.sh
→
board/
armltd/
integratorap/split_by_variant.sh
View file @
6c6e042a
...
...
@@ -105,15 +105,15 @@ then
fi
mkdir
-p
${
obj
}
include
mkdir
-p
${
obj
}
board/integratorap
mkdir
-p
${
obj
}
board/
armltd/
integratorap
mv
tmp.fil
${
obj
}
include/config.h
# ---------------------------------------------------------
# Ensure correct core object loaded first in U-Boot image
# ---------------------------------------------------------
sed
-r
's/CPU_FILE/cpu\/'
$cpu
'\/start.o/; s/#.*//'
${
src
}
board/integratorap/u-boot.lds.template
>
${
obj
}
board/integratorap/u-boot.lds
sed
-r
's/CPU_FILE/cpu\/'
$cpu
'\/start.o/; s/#.*//'
${
src
}
board/
armltd/
integratorap/u-boot.lds.template
>
${
obj
}
board/
armltd/
integratorap/u-boot.lds
# ---------------------------------------------------------
# Complete the configuration
# ---------------------------------------------------------
$MKCONFIG
-a
integratorap arm
$cpu
integratorap
;
$MKCONFIG
-a
integratorap arm
$cpu
integratorap
armltd
;
echo
"Variant::
$variant
with core
$cpu
"
board/integratorap/u-boot.lds.template
→
board/
armltd/
integratorap/u-boot.lds.template
View file @
6c6e042a
File moved
board/integratorcp/Makefile
→
board/
armltd/
integratorcp/Makefile
View file @
6c6e042a
File moved
board/integratorcp/config.mk
→
board/
armltd/
integratorcp/config.mk
View file @
6c6e042a
File moved
board/integratorcp/flash.c
→
board/
armltd/
integratorcp/flash.c
View file @
6c6e042a
File moved
board/integratorcp/integratorcp.c
→
board/
armltd/
integratorcp/integratorcp.c
View file @
6c6e042a
File moved
board/integratorcp/lowlevel_init.S
→
board/
armltd/
integratorcp/lowlevel_init.S
View file @
6c6e042a
File moved
board/integratorcp/split_by_variant.sh
→
board/
armltd/
integratorcp/split_by_variant.sh
View file @
6c6e042a
...
...
@@ -100,15 +100,15 @@ then
fi
mkdir
-p
${
obj
}
include
mkdir
-p
${
obj
}
board/integratorcp
mkdir
-p
${
obj
}
board/
armltd/
integratorcp
mv
tmp.fil
${
obj
}
include/config.h
# ---------------------------------------------------------
# Ensure correct core object loaded first in U-Boot image
# ---------------------------------------------------------
sed
-r
's/CPU_FILE/cpu\/'
$cpu
'\/start.o/; s/#.*//'
${
src
}
board/integratorcp/u-boot.lds.template
>
${
obj
}
board/integratorcp/u-boot.lds
sed
-r
's/CPU_FILE/cpu\/'
$cpu
'\/start.o/; s/#.*//'
${
src
}
board/
armltd/
integratorcp/u-boot.lds.template
>
${
obj
}
board/
armltd/
integratorcp/u-boot.lds
# ---------------------------------------------------------
# Complete the configuration
# ---------------------------------------------------------
$MKCONFIG
-a
integratorcp arm
$cpu
integratorcp
;
$MKCONFIG
-a
integratorcp arm
$cpu
integratorcp
armltd
;
echo
"Variant::
$variant
with core
$cpu
"
board/integratorcp/u-boot.lds.template
→
board/
armltd/
integratorcp/u-boot.lds.template
View file @
6c6e042a
File moved
board/versatile/Makefile
→
board/
armltd/
versatile/Makefile
View file @
6c6e042a
File moved
board/versatile/config.mk
→
board/
armltd/
versatile/config.mk
View file @
6c6e042a
File moved
Prev
1
2
3
4
5
6
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment