2009-12-07 05:58:28 +00:00
|
|
|
#!/bin/bash
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-09-21 17:04:32 +00:00
|
|
|
# Print statistics when we exit
|
|
|
|
trap exit 1 2 3 15
|
|
|
|
trap print_stats 0
|
|
|
|
|
2008-12-08 23:39:08 +00:00
|
|
|
# Determine number of CPU cores if no default was set
|
|
|
|
: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
|
|
|
|
|
|
|
|
if [ "$BUILD_NCPUS" -gt 1 ]
|
|
|
|
then
|
2009-09-21 17:04:33 +00:00
|
|
|
JOBS="-j $((BUILD_NCPUS + 1))"
|
2008-12-08 23:39:08 +00:00
|
|
|
else
|
|
|
|
JOBS=""
|
|
|
|
fi
|
|
|
|
|
2003-12-06 19:49:23 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
if [ "${CROSS_COMPILE}" ] ; then
|
|
|
|
MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
|
|
|
|
else
|
|
|
|
MAKE=make
|
|
|
|
fi
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
if [ "${MAKEALL_LOGDIR}" ] ; then
|
|
|
|
LOG_DIR=${MAKEALL_LOGDIR}
|
|
|
|
else
|
|
|
|
LOG_DIR="LOG"
|
|
|
|
fi
|
2006-09-07 09:51:23 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
if [ ! "${BUILD_DIR}" ] ; then
|
|
|
|
BUILD_DIR="."
|
|
|
|
fi
|
|
|
|
|
2006-09-07 10:05:53 +00:00
|
|
|
[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
LIST=""
|
|
|
|
|
2009-09-21 17:04:32 +00:00
|
|
|
# Keep track of the number of builds and errors
|
|
|
|
ERR_CNT=0
|
|
|
|
ERR_LIST=""
|
|
|
|
TOTAL_CNT=0
|
2009-12-07 05:58:28 +00:00
|
|
|
RC=0
|
2009-09-21 17:04:32 +00:00
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
# Helper funcs for parsing boards.cfg
|
|
|
|
boards_by_field()
|
|
|
|
{
|
|
|
|
awk \
|
|
|
|
-v field="$1" \
|
|
|
|
-v select="$2" \
|
|
|
|
'($1 !~ /^#/ && $field == select) { print $1 }' \
|
|
|
|
boards.cfg
|
|
|
|
}
|
|
|
|
boards_by_arch() { boards_by_field 2 "$@" ; }
|
|
|
|
boards_by_cpu() { boards_by_field 3 "$@" ; }
|
|
|
|
|
2003-03-31 17:27:09 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC5xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_5xx="$(boards_by_cpu mpc5xx)"
|
2003-03-31 17:27:09 +00:00
|
|
|
|
2003-07-16 21:53:01 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC5xxx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_5xxx="$(boards_by_cpu mpc5xxx)
|
2009-03-17 09:06:40 +00:00
|
|
|
digsy_mtc \
|
2007-08-10 20:34:48 +00:00
|
|
|
EVAL5200 \
|
|
|
|
fo300 \
|
2009-08-13 15:14:21 +00:00
|
|
|
galaxy5200 \
|
2007-08-10 20:34:48 +00:00
|
|
|
icecube_5200 \
|
|
|
|
lite5200b \
|
|
|
|
mcc200 \
|
2008-07-09 16:30:44 +00:00
|
|
|
MVBC_P \
|
2010-04-01 19:26:55 +00:00
|
|
|
MVSMR \
|
2009-06-14 22:21:28 +00:00
|
|
|
pcm030 \
|
2007-08-10 20:34:48 +00:00
|
|
|
PM520 \
|
|
|
|
TB5200 \
|
|
|
|
Total5200 \
|
|
|
|
Total5200_Rev2 \
|
|
|
|
TQM5200 \
|
|
|
|
TQM5200_B \
|
|
|
|
TQM5200S \
|
2003-07-16 21:53:01 +00:00
|
|
|
"
|
|
|
|
|
2007-07-27 12:43:59 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC512x Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_512x="$(boards_by_cpu mpc512x)
|
2009-05-16 08:47:41 +00:00
|
|
|
mpc5121ads \
|
2003-07-16 21:53:01 +00:00
|
|
|
"
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC8xx Systems
|
|
|
|
#########################################################################
|
2010-08-19 17:05:06 +00:00
|
|
|
|
|
|
|
LIST_8xx="$(boards_by_cpu mpc8xx)
|
2007-08-10 20:34:48 +00:00
|
|
|
Adder87x \
|
|
|
|
AdderII \
|
|
|
|
ADS860 \
|
|
|
|
FADS823 \
|
|
|
|
FADS850SAR \
|
|
|
|
FADS860T \
|
|
|
|
FPS850L \
|
|
|
|
GEN860T \
|
|
|
|
GEN860T_SC \
|
|
|
|
ICU862_100MHz \
|
|
|
|
IVML24 \
|
|
|
|
IVML24_128 \
|
|
|
|
IVML24_256 \
|
|
|
|
IVMS8 \
|
|
|
|
IVMS8_128 \
|
|
|
|
IVMS8_256 \
|
|
|
|
MBX \
|
|
|
|
MBX860T \
|
|
|
|
MPC86xADS \
|
|
|
|
MPC885ADS \
|
|
|
|
NETPHONE \
|
|
|
|
NETTA \
|
|
|
|
NETTA2 \
|
|
|
|
NETTA_ISDN \
|
|
|
|
NETVIA \
|
|
|
|
NETVIA_V2 \
|
|
|
|
RPXlite_DW \
|
|
|
|
SPD823TS \
|
|
|
|
SXNI855T \
|
2008-01-10 16:59:07 +00:00
|
|
|
TK885D \
|
2007-08-10 20:34:48 +00:00
|
|
|
TQM823L \
|
|
|
|
TQM823L_LCD \
|
|
|
|
TQM850L \
|
|
|
|
TQM855L \
|
|
|
|
TQM860L \
|
|
|
|
TQM885D \
|
|
|
|
v37 \
|
2002-11-02 23:17:16 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
## PPC4xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_4xx="$(boards_by_cpu ppc4xx)
|
2007-08-10 20:34:48 +00:00
|
|
|
acadia_nand \
|
2008-10-08 17:12:53 +00:00
|
|
|
arches \
|
2007-08-10 20:34:48 +00:00
|
|
|
bamboo_nand \
|
2008-03-11 15:53:00 +00:00
|
|
|
canyonlands \
|
2008-03-03 16:27:02 +00:00
|
|
|
canyonlands_nand \
|
2007-08-10 20:34:48 +00:00
|
|
|
CPCI405 \
|
|
|
|
CPCI4052 \
|
|
|
|
CPCI405AB \
|
|
|
|
CPCI405DT \
|
2009-07-27 06:49:48 +00:00
|
|
|
devconcenter \
|
2008-10-24 11:51:52 +00:00
|
|
|
fx12mm \
|
2008-03-19 15:20:49 +00:00
|
|
|
glacier \
|
2007-10-23 08:10:08 +00:00
|
|
|
haleakala \
|
2007-11-03 11:08:28 +00:00
|
|
|
haleakala_nand \
|
2007-08-14 14:36:29 +00:00
|
|
|
hcu4 \
|
|
|
|
hcu5 \
|
2009-09-09 10:36:07 +00:00
|
|
|
intip \
|
2007-10-05 15:11:30 +00:00
|
|
|
kilauea \
|
2007-11-03 11:08:28 +00:00
|
|
|
kilauea_nand \
|
2008-02-25 17:46:41 +00:00
|
|
|
mcu25 \
|
2007-08-10 20:34:48 +00:00
|
|
|
MIP405T \
|
2008-07-17 10:47:09 +00:00
|
|
|
ml507 \
|
2008-07-21 18:30:07 +00:00
|
|
|
ml507_flash \
|
2007-08-10 20:34:48 +00:00
|
|
|
OCRTC \
|
|
|
|
ORSG \
|
|
|
|
PPChameleonEVB \
|
2007-08-16 07:54:51 +00:00
|
|
|
rainier \
|
2007-08-10 20:34:48 +00:00
|
|
|
sequoia \
|
|
|
|
sequoia_nand \
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
v5fx30teval \
|
|
|
|
v5fx30teval_flash \
|
2007-08-10 20:34:48 +00:00
|
|
|
W7OLMC \
|
|
|
|
W7OLMG \
|
|
|
|
walnut \
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
xilinx-ppc440-generic \
|
|
|
|
xilinx-ppc440-generic_flash \
|
2007-08-10 20:34:48 +00:00
|
|
|
yellowstone \
|
|
|
|
yosemite \
|
2002-11-02 23:17:16 +00:00
|
|
|
"
|
|
|
|
|
2004-10-28 00:09:35 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC8220 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_8220="$(boards_by_cpu mpc8220)"
|
2004-10-28 00:09:35 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC824x Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_824x="$(boards_by_cpu mpc824x)
|
2007-08-10 20:34:48 +00:00
|
|
|
CPC45 \
|
|
|
|
eXalion \
|
2009-04-28 05:48:39 +00:00
|
|
|
IDS8247 \
|
2008-03-30 23:32:15 +00:00
|
|
|
linkstation_HGLAN \
|
2007-08-10 20:34:48 +00:00
|
|
|
Sandpoint8240 \
|
|
|
|
Sandpoint8245 \
|
2002-11-02 23:17:16 +00:00
|
|
|
"
|
2003-06-21 00:17:24 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
2003-05-03 15:50:43 +00:00
|
|
|
## MPC8260 Systems (includes 8250, 8255 etc.)
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_8260="$(boards_by_cpu mpc8260)
|
2007-08-10 20:34:48 +00:00
|
|
|
cogent_mpc8260 \
|
|
|
|
CPU86 \
|
|
|
|
CPU87 \
|
|
|
|
ep8248 \
|
|
|
|
ISPAN \
|
|
|
|
MPC8260ADS \
|
|
|
|
MPC8272ADS \
|
|
|
|
PM826 \
|
|
|
|
PM828 \
|
|
|
|
Rattler8248 \
|
|
|
|
TQM8260_AC \
|
|
|
|
TQM8260_AD \
|
|
|
|
TQM8260_AE \
|
2002-11-02 23:17:16 +00:00
|
|
|
"
|
|
|
|
|
2005-07-28 15:08:46 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC83xx Systems (includes 8349, etc.)
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_83xx="$(boards_by_cpu mpc83xx)
|
2009-12-08 08:13:08 +00:00
|
|
|
caddy2 \
|
2007-08-10 20:34:48 +00:00
|
|
|
MPC8313ERDB_33 \
|
2008-09-02 20:21:16 +00:00
|
|
|
MPC8313ERDB_NAND_66 \
|
2008-01-11 10:48:24 +00:00
|
|
|
MPC8315ERDB \
|
2009-11-24 17:12:12 +00:00
|
|
|
MPC8315ERDB_NAND \
|
2007-08-10 20:34:48 +00:00
|
|
|
MPC832XEMDS \
|
2007-10-18 09:47:19 +00:00
|
|
|
MPC832XEMDS_ATM \
|
2007-08-10 20:34:48 +00:00
|
|
|
MPC8349ITX \
|
|
|
|
MPC8349ITXGP \
|
|
|
|
MPC8360EMDS \
|
2007-10-18 09:47:19 +00:00
|
|
|
MPC8360EMDS_ATM \
|
2008-01-09 17:57:47 +00:00
|
|
|
MPC8360ERDK_33 \
|
|
|
|
MPC8360ERDK_66 \
|
2007-09-18 04:40:21 +00:00
|
|
|
MPC837XEMDS \
|
2007-08-10 20:34:48 +00:00
|
|
|
sbc8349 \
|
2009-01-22 23:05:24 +00:00
|
|
|
SIMPC8313_LP \
|
2009-07-25 04:19:12 +00:00
|
|
|
vme8349 \
|
2005-07-28 15:08:46 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
|
2003-10-15 23:53:47 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC85xx Systems (includes 8540, 8560 etc.)
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_85xx="$(boards_by_cpu mpc85xx)
|
2008-07-25 18:31:05 +00:00
|
|
|
MPC8536DS \
|
NAND boot: MPC8536DS support
MPC8536E can support booting from NAND flash which uses the
image u-boot-nand.bin. This image contains two parts: a 4K
NAND loader and a main U-Boot image. The former is appended
to the latter to produce u-boot-nand.bin. The 4K NAND loader
includes the corresponding nand_spl directory, along with the
code twisted by CONFIG_NAND_SPL. The main U-Boot image just
like a general U-Boot image except the parts that included by
CONFIG_SYS_RAMBOOT.
When power on, eLBC will automatically load from bank 0 the
4K NAND loader into the FCM buffer RAM where CPU can execute
the boot code directly. In the first stage, the NAND loader
copies itself to RAM or L2SRAM to free up the FCM buffer RAM,
then loads the main image from NAND flash to RAM or L2SRAM
and boot from it.
This patch implements the NAND loader to load the main image
into L2SRAM, so the main image can configure the RAM by using
SPD EEPROM. In the first stage, the NAND loader copies itself
to the second to last 4K address space, and uses the last 4K
address space as the initial RAM for stack.
Obviously, the size of L2SRAM shouldn't be less than the size
of the image used. If so, the workaround is to generate another
image that includes the code to configure the RAM by SPD and
load it to L2SRAM first, then relocate the main image to RAM
to boot up.
Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2009-09-23 07:20:37 +00:00
|
|
|
MPC8536DS_NAND \
|
On-chip ROM boot: MPC8536DS support
The MPC8536E is capable of booting from the on-chip ROM - boot from
eSDHC and boot from eSPI. When power on, the porcessor excutes the
ROM code to initialize the eSPI/eSDHC controller, and loads the mian
U-Boot image from the memory device that interfaced to the controller,
such as the SDCard or SPI EEPROM, to the target memory, e.g. SDRAM or
L2SRAM, then boot from it.
The memory device should contain a specific data structure with control
word and config word at the fixed address. The config word direct the
process how to config the memory device, and the control word direct
the processor where to find the image on the memory device, or where
copy the main image to. The user can use any method to store the data
structure to the memory device, only if store it on the assigned address.
The on-chip ROM code will map the whole 4GB address space by setting
entry0 in the TLB1, so the main image need to switch to Address space 1
to disable this mapping and map the address space again.
This patch implements loading the mian U-Boot image into L2SRAM, so
the image can configure the system memory by using SPD EEPROM.
Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2009-09-23 07:20:38 +00:00
|
|
|
MPC8536DS_SDCARD \
|
|
|
|
MPC8536DS_SPIFLASH \
|
2010-06-17 16:37:27 +00:00
|
|
|
MPC8536DS_36BIT \
|
2007-08-10 20:34:48 +00:00
|
|
|
MPC8540EVAL \
|
|
|
|
MPC8541CDS \
|
|
|
|
MPC8548CDS \
|
|
|
|
MPC8555CDS \
|
2009-03-27 21:02:45 +00:00
|
|
|
MPC8569MDS \
|
2009-11-27 07:31:52 +00:00
|
|
|
MPC8569MDS_ATM \
|
2010-01-18 11:03:28 +00:00
|
|
|
MPC8569MDS_NAND \
|
2008-08-12 16:13:08 +00:00
|
|
|
MPC8572DS \
|
2009-01-23 20:22:14 +00:00
|
|
|
MPC8572DS_36BIT \
|
2009-04-03 20:36:13 +00:00
|
|
|
P2020DS \
|
|
|
|
P2020DS_36BIT \
|
2009-08-20 13:29:18 +00:00
|
|
|
P1011RDB \
|
2009-10-08 08:03:18 +00:00
|
|
|
P1011RDB_NAND \
|
2009-10-08 08:03:29 +00:00
|
|
|
P1011RDB_SDCARD \
|
|
|
|
P1011RDB_SPIFLASH \
|
2009-08-20 13:27:02 +00:00
|
|
|
P1020RDB \
|
2009-10-08 08:03:18 +00:00
|
|
|
P1020RDB_NAND \
|
2009-10-08 08:03:29 +00:00
|
|
|
P1020RDB_SDCARD \
|
|
|
|
P1020RDB_SPIFLASH \
|
2009-08-20 13:29:18 +00:00
|
|
|
P2010RDB \
|
2009-10-08 08:03:18 +00:00
|
|
|
P2010RDB_NAND \
|
2009-10-08 08:03:29 +00:00
|
|
|
P2010RDB_SDCARD \
|
|
|
|
P2010RDB_SPIFLASH \
|
2009-08-05 07:59:24 +00:00
|
|
|
P2020RDB \
|
2009-10-08 08:03:18 +00:00
|
|
|
P2020RDB_NAND \
|
2009-10-08 08:03:29 +00:00
|
|
|
P2020RDB_SDCARD \
|
|
|
|
P2020RDB_SPIFLASH \
|
2007-08-10 20:34:48 +00:00
|
|
|
sbc8540 \
|
2007-12-13 12:45:08 +00:00
|
|
|
sbc8548 \
|
2009-09-21 00:36:06 +00:00
|
|
|
sbc8548_PCI_33 \
|
|
|
|
sbc8548_PCI_66 \
|
|
|
|
sbc8548_PCI_33_PCIE \
|
|
|
|
sbc8548_PCI_66_PCIE \
|
2007-08-10 20:34:48 +00:00
|
|
|
sbc8560 \
|
|
|
|
stxssa \
|
|
|
|
TQM8540 \
|
|
|
|
TQM8541 \
|
2008-06-05 11:12:07 +00:00
|
|
|
TQM8548 \
|
2009-02-11 17:38:22 +00:00
|
|
|
TQM8548_AG \
|
2009-02-11 17:38:21 +00:00
|
|
|
TQM8548_BE \
|
2007-08-10 20:34:48 +00:00
|
|
|
TQM8555 \
|
|
|
|
TQM8560 \
|
2003-10-15 23:53:47 +00:00
|
|
|
"
|
|
|
|
|
2007-05-23 19:09:46 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC86xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_86xx="$(boards_by_cpu mpc86xx)
|
2010-06-17 16:37:27 +00:00
|
|
|
MPC8641HPCN_36BIT \
|
2007-08-10 20:34:48 +00:00
|
|
|
MPC8641HPCN \
|
2007-05-23 19:09:46 +00:00
|
|
|
"
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
## 74xx/7xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_74xx=" \
|
|
|
|
DB64360 \
|
|
|
|
DB64460 \
|
|
|
|
EVB64260 \
|
|
|
|
mpc7448hpc2 \
|
|
|
|
P3G4 \
|
|
|
|
p3m7448 \
|
|
|
|
PCIPPC2 \
|
|
|
|
PCIPPC6 \
|
|
|
|
ZUMA \
|
2002-11-02 23:17:16 +00:00
|
|
|
"
|
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_7xx=" \
|
|
|
|
BAB7xx \
|
|
|
|
CPCI750 \
|
|
|
|
ELPPC \
|
|
|
|
p3m750 \
|
|
|
|
ppmc7xx \
|
2002-11-02 23:17:16 +00:00
|
|
|
"
|
|
|
|
|
2008-04-20 22:35:52 +00:00
|
|
|
#########################################################################
|
|
|
|
## PowerPC groups
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
LIST_TSEC=" \
|
|
|
|
${LIST_83xx} \
|
|
|
|
${LIST_85xx} \
|
|
|
|
${LIST_86xx} \
|
|
|
|
"
|
|
|
|
|
2010-04-15 14:07:28 +00:00
|
|
|
LIST_powerpc=" \
|
2007-08-10 20:34:48 +00:00
|
|
|
${LIST_5xx} \
|
2007-11-25 21:39:25 +00:00
|
|
|
${LIST_512x} \
|
2007-08-10 20:34:48 +00:00
|
|
|
${LIST_5xxx} \
|
|
|
|
${LIST_8xx} \
|
|
|
|
${LIST_8220} \
|
|
|
|
${LIST_824x} \
|
|
|
|
${LIST_8260} \
|
|
|
|
${LIST_83xx} \
|
|
|
|
${LIST_85xx} \
|
|
|
|
${LIST_86xx} \
|
|
|
|
${LIST_4xx} \
|
|
|
|
${LIST_74xx} \
|
|
|
|
${LIST_7xx} \
|
|
|
|
"
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2010-04-15 14:07:28 +00:00
|
|
|
# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
|
|
|
|
# still using "ppc" instead of "powerpc"
|
|
|
|
LIST_ppc=" \
|
|
|
|
${LIST_powerpc} \
|
|
|
|
"
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
## StrongARM Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_SA="$(boards_by_cpu sa1100)"
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
## ARM7 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_ARM7=" \
|
|
|
|
ap7 \
|
|
|
|
ap720t \
|
|
|
|
armadillo \
|
|
|
|
B2 \
|
|
|
|
ep7312 \
|
|
|
|
evb4510 \
|
|
|
|
impa7 \
|
|
|
|
integratorap \
|
|
|
|
lpc2292sodimm \
|
|
|
|
modnet50 \
|
|
|
|
SMN42 \
|
2005-09-24 23:48:28 +00:00
|
|
|
"
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
## ARM9 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_ARM9=" \
|
2009-11-11 09:27:30 +00:00
|
|
|
a320evb \
|
2007-08-10 20:34:48 +00:00
|
|
|
ap920t \
|
|
|
|
ap922_XA10 \
|
|
|
|
ap926ejs \
|
|
|
|
ap946es \
|
|
|
|
ap966 \
|
|
|
|
cp920t \
|
|
|
|
cp922_XA10 \
|
|
|
|
cp926ejs \
|
|
|
|
cp946es \
|
|
|
|
cp966 \
|
2009-11-12 16:09:25 +00:00
|
|
|
da830evm \
|
2010-06-10 09:48:15 +00:00
|
|
|
da850evm \
|
2010-02-01 20:29:48 +00:00
|
|
|
edb9301 \
|
|
|
|
edb9302 \
|
|
|
|
edb9302a \
|
|
|
|
edb9307 \
|
|
|
|
edb9307a \
|
|
|
|
edb9312 \
|
|
|
|
edb9315 \
|
|
|
|
edb9315a \
|
2010-06-17 14:08:21 +00:00
|
|
|
edminiv2 \
|
2010-03-18 14:55:40 +00:00
|
|
|
guruplug \
|
2009-08-10 22:32:09 +00:00
|
|
|
imx27lite \
|
2010-08-09 11:31:51 +00:00
|
|
|
jadecpu \
|
2007-08-10 20:34:48 +00:00
|
|
|
lpd7a400 \
|
2010-03-05 06:36:33 +00:00
|
|
|
magnesium \
|
2009-07-16 15:28:01 +00:00
|
|
|
mv88f6281gtw_ge \
|
2007-08-10 20:34:48 +00:00
|
|
|
mx1ads \
|
|
|
|
mx1fs2 \
|
|
|
|
netstar \
|
2009-07-04 23:06:06 +00:00
|
|
|
nhk8815 \
|
|
|
|
nhk8815_onenand \
|
2007-08-10 20:34:48 +00:00
|
|
|
omap1510inn \
|
|
|
|
omap1610h2 \
|
|
|
|
omap1610inn \
|
2008-01-18 20:45:45 +00:00
|
|
|
omap5912osk \
|
2007-08-10 20:34:48 +00:00
|
|
|
omap730p2 \
|
2009-09-21 22:31:01 +00:00
|
|
|
openrd_base \
|
2009-07-16 15:32:24 +00:00
|
|
|
rd6281a \
|
2007-08-10 20:34:48 +00:00
|
|
|
sbc2410x \
|
|
|
|
scb9328 \
|
2009-07-16 15:28:00 +00:00
|
|
|
sheevaplug \
|
2007-08-10 20:34:48 +00:00
|
|
|
smdk2400 \
|
|
|
|
smdk2410 \
|
2010-01-15 13:45:50 +00:00
|
|
|
spear300 \
|
2010-01-15 13:45:52 +00:00
|
|
|
spear310 \
|
2010-01-15 13:45:53 +00:00
|
|
|
spear320 \
|
2010-01-15 13:45:48 +00:00
|
|
|
spear600 \
|
2010-02-22 11:13:02 +00:00
|
|
|
suen3 \
|
2007-08-10 20:34:48 +00:00
|
|
|
trab \
|
|
|
|
VCMA9 \
|
|
|
|
versatile \
|
|
|
|
versatileab \
|
|
|
|
versatilepb \
|
|
|
|
voiceblue \
|
|
|
|
davinci_dvevm \
|
|
|
|
davinci_schmoogie \
|
2008-05-21 17:58:41 +00:00
|
|
|
davinci_sffsdr \
|
2007-08-10 20:34:48 +00:00
|
|
|
davinci_sonata \
|
2009-05-15 21:48:37 +00:00
|
|
|
davinci_dm355evm \
|
2009-10-10 17:37:10 +00:00
|
|
|
davinci_dm355leopard \
|
2010-02-18 02:09:21 +00:00
|
|
|
davinci_dm365evm \
|
2009-10-10 16:00:47 +00:00
|
|
|
davinci_dm6467evm \
|
2003-08-29 22:00:43 +00:00
|
|
|
"
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2005-09-24 23:48:28 +00:00
|
|
|
#########################################################################
|
|
|
|
## ARM10 Systems
|
|
|
|
#########################################################################
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_ARM10=" \
|
|
|
|
integratorcp \
|
|
|
|
cp1026 \
|
2005-09-24 23:48:28 +00:00
|
|
|
"
|
|
|
|
|
2005-01-09 23:16:25 +00:00
|
|
|
#########################################################################
|
|
|
|
## ARM11 Systems
|
|
|
|
#########################################################################
|
2009-03-25 10:36:50 +00:00
|
|
|
LIST_ARM11=" \
|
|
|
|
cp1136 \
|
|
|
|
omap2420h4 \
|
|
|
|
apollon \
|
|
|
|
imx31_litekit \
|
|
|
|
imx31_phycore \
|
|
|
|
imx31_phycore_eet \
|
|
|
|
mx31ads \
|
2009-06-30 23:07:55 +00:00
|
|
|
mx31pdk \
|
2009-07-04 08:31:24 +00:00
|
|
|
mx31pdk_nand \
|
2009-03-25 10:36:50 +00:00
|
|
|
qong \
|
|
|
|
smdk6400 \
|
2010-06-07 18:13:36 +00:00
|
|
|
tnetv107x_evm \
|
2005-09-24 23:48:28 +00:00
|
|
|
"
|
2005-01-09 23:16:25 +00:00
|
|
|
|
2009-01-27 17:19:12 +00:00
|
|
|
#########################################################################
|
2010-06-18 04:50:01 +00:00
|
|
|
## ARMV7 Systems
|
2009-01-27 17:19:12 +00:00
|
|
|
#########################################################################
|
2010-06-18 04:50:01 +00:00
|
|
|
LIST_ARMV7=" \
|
2010-06-07 19:20:43 +00:00
|
|
|
am3517_evm \
|
2010-10-07 21:48:45 +00:00
|
|
|
ca9x4_ct_vxp \
|
2009-08-23 10:56:42 +00:00
|
|
|
devkit8000 \
|
2010-10-14 20:54:59 +00:00
|
|
|
igep0020 \
|
2010-10-14 20:57:39 +00:00
|
|
|
igep0030 \
|
2010-02-05 14:13:58 +00:00
|
|
|
mx51evk \
|
2009-01-27 17:19:12 +00:00
|
|
|
omap3_beagle \
|
2009-01-28 20:39:57 +00:00
|
|
|
omap3_overo \
|
2009-01-28 20:39:58 +00:00
|
|
|
omap3_evm \
|
2009-01-28 20:39:58 +00:00
|
|
|
omap3_pandora \
|
2009-10-17 17:41:06 +00:00
|
|
|
omap3_sdp3430 \
|
2009-01-28 20:40:16 +00:00
|
|
|
omap3_zoom1 \
|
2009-05-15 21:48:36 +00:00
|
|
|
omap3_zoom2 \
|
2010-06-12 03:35:26 +00:00
|
|
|
omap4_panda \
|
2010-06-08 20:07:46 +00:00
|
|
|
omap4_sdp4430 \
|
2010-05-31 13:02:42 +00:00
|
|
|
s5p_goni \
|
2009-10-01 08:20:40 +00:00
|
|
|
smdkc100 \
|
2009-01-27 17:19:12 +00:00
|
|
|
"
|
|
|
|
|
2008-05-24 10:47:46 +00:00
|
|
|
#########################################################################
|
|
|
|
## AT91 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2009-07-09 08:16:29 +00:00
|
|
|
LIST_at91=" \
|
|
|
|
afeb9260 \
|
|
|
|
at91cap9adk \
|
|
|
|
at91rm9200dk \
|
|
|
|
at91rm9200ek \
|
|
|
|
at91sam9260ek \
|
|
|
|
at91sam9261ek \
|
|
|
|
at91sam9263ek \
|
2009-09-27 12:47:24 +00:00
|
|
|
at91sam9g10ek \
|
2009-07-09 08:16:29 +00:00
|
|
|
at91sam9g20ek \
|
2009-06-25 15:04:15 +00:00
|
|
|
at91sam9m10g45ek \
|
2009-07-09 08:16:29 +00:00
|
|
|
at91sam9rlek \
|
|
|
|
cmc_pu2 \
|
2009-09-27 12:47:24 +00:00
|
|
|
CPUAT91 \
|
2009-09-27 16:10:09 +00:00
|
|
|
CPU9260 \
|
|
|
|
CPU9G20 \
|
2009-07-09 08:16:29 +00:00
|
|
|
csb637 \
|
2010-02-03 21:48:09 +00:00
|
|
|
eb_cpux9k2 \
|
2009-07-09 08:16:29 +00:00
|
|
|
kb9202 \
|
|
|
|
meesc \
|
|
|
|
mp2usb \
|
|
|
|
m501sk \
|
2010-01-25 09:50:41 +00:00
|
|
|
otc570 \
|
2009-07-09 08:16:29 +00:00
|
|
|
pm9261 \
|
|
|
|
pm9263 \
|
2010-04-20 19:49:04 +00:00
|
|
|
pm9g45 \
|
2009-08-20 14:04:49 +00:00
|
|
|
SBC35_A9G20 \
|
|
|
|
TNY_A9260 \
|
|
|
|
TNY_A9G20 \
|
2008-05-24 10:47:46 +00:00
|
|
|
"
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
## Xscale Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_pxa="$(boards_by_cpu pxa)
|
2009-07-01 18:40:41 +00:00
|
|
|
polaris \
|
|
|
|
trizepsiv \
|
2010-03-07 22:35:48 +00:00
|
|
|
vpac270_nor \
|
|
|
|
vpac270_onenand \
|
2004-09-28 16:44:41 +00:00
|
|
|
"
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_ixp="$(boards_by_cpu ixp)
|
2007-08-10 20:34:48 +00:00
|
|
|
pdnb3 \
|
|
|
|
scpu \
|
|
|
|
"
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-04-20 22:35:52 +00:00
|
|
|
#########################################################################
|
|
|
|
## ARM groups
|
|
|
|
#########################################################################
|
2003-10-14 19:43:55 +00:00
|
|
|
|
2009-01-27 17:19:12 +00:00
|
|
|
LIST_arm=" \
|
|
|
|
${LIST_SA} \
|
|
|
|
${LIST_ARM7} \
|
|
|
|
${LIST_ARM9} \
|
|
|
|
${LIST_ARM10} \
|
|
|
|
${LIST_ARM11} \
|
2010-06-18 04:50:01 +00:00
|
|
|
${LIST_ARMV7} \
|
2009-01-27 17:19:12 +00:00
|
|
|
${LIST_at91} \
|
|
|
|
${LIST_pxa} \
|
|
|
|
${LIST_ixp} \
|
2005-01-09 23:16:25 +00:00
|
|
|
"
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-03-27 12:09:35 +00:00
|
|
|
#########################################################################
|
2005-08-13 22:27:00 +00:00
|
|
|
## MIPS Systems (default = big endian)
|
2003-03-27 12:09:35 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_mips4kc=" \
|
|
|
|
incaip \
|
2008-01-16 17:27:51 +00:00
|
|
|
qemu_mips \
|
2009-01-21 16:25:01 +00:00
|
|
|
vct_platinum \
|
|
|
|
vct_platinum_small \
|
|
|
|
vct_platinum_onenand \
|
|
|
|
vct_platinum_onenand_small \
|
|
|
|
vct_platinumavc \
|
|
|
|
vct_platinumavc_small \
|
|
|
|
vct_platinumavc_onenand \
|
|
|
|
vct_platinumavc_onenand_small \
|
|
|
|
vct_premium \
|
|
|
|
vct_premium_small \
|
|
|
|
vct_premium_onenand \
|
|
|
|
vct_premium_onenand_small \
|
2007-08-10 20:34:48 +00:00
|
|
|
"
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_mips5kc=" \
|
|
|
|
purple \
|
|
|
|
"
|
2003-04-05 00:53:31 +00:00
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_au1xx0=" \
|
|
|
|
dbau1000 \
|
|
|
|
dbau1100 \
|
|
|
|
dbau1500 \
|
|
|
|
dbau1550 \
|
|
|
|
dbau1550_el \
|
|
|
|
gth2 \
|
|
|
|
"
|
2003-10-09 20:09:04 +00:00
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_mips=" \
|
|
|
|
${LIST_mips4kc} \
|
|
|
|
${LIST_mips5kc} \
|
|
|
|
${LIST_au1xx0} \
|
|
|
|
"
|
2003-03-27 12:09:35 +00:00
|
|
|
|
2005-08-13 22:27:00 +00:00
|
|
|
#########################################################################
|
|
|
|
## MIPS Systems (little endian)
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
LIST_mips4kc_el=""
|
|
|
|
|
|
|
|
LIST_mips5kc_el=""
|
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_au1xx0_el=" \
|
|
|
|
dbau1550_el \
|
2007-10-27 06:00:25 +00:00
|
|
|
pb1000 \
|
2007-08-10 20:34:48 +00:00
|
|
|
"
|
2005-08-13 22:27:00 +00:00
|
|
|
|
2007-08-10 20:34:48 +00:00
|
|
|
LIST_mips_el=" \
|
|
|
|
${LIST_mips4kc_el} \
|
|
|
|
${LIST_mips5kc_el} \
|
|
|
|
${LIST_au1xx0_el} \
|
|
|
|
"
|
2005-08-13 22:27:00 +00:00
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
#########################################################################
|
|
|
|
## i386 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_x86="$(boards_by_arch i386)
|
2008-12-06 23:28:57 +00:00
|
|
|
sc520_eNET \
|
2007-08-10 20:34:48 +00:00
|
|
|
"
|
2003-05-31 18:35:21 +00:00
|
|
|
|
2004-10-10 21:27:30 +00:00
|
|
|
#########################################################################
|
|
|
|
## Nios-II Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_nios2="$(boards_by_arch nios2)
|
2010-04-21 00:40:59 +00:00
|
|
|
nios2-generic \
|
2006-06-10 17:27:47 +00:00
|
|
|
"
|
2004-10-10 21:27:30 +00:00
|
|
|
|
2004-07-10 23:48:41 +00:00
|
|
|
#########################################################################
|
|
|
|
## MicroBlaze Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_microblaze="$(boards_by_arch microblaze)"
|
2004-07-10 23:48:41 +00:00
|
|
|
|
2006-01-26 22:38:46 +00:00
|
|
|
#########################################################################
|
|
|
|
## ColdFire Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_coldfire="$(boards_by_arch m68k)
|
2010-01-25 10:27:44 +00:00
|
|
|
astro_mcf5373l \
|
2007-08-10 20:34:48 +00:00
|
|
|
cobra5272 \
|
|
|
|
EB+MCF-EV123 \
|
|
|
|
EB+MCF-EV123_internal \
|
2008-01-14 23:43:33 +00:00
|
|
|
M52277EVB \
|
2007-08-17 00:23:50 +00:00
|
|
|
M5235EVB \
|
2008-01-14 23:23:08 +00:00
|
|
|
M5329AFEE \
|
|
|
|
M5373EVB \
|
2008-08-11 13:41:49 +00:00
|
|
|
M54451EVB \
|
2007-08-16 20:05:11 +00:00
|
|
|
M54455EVB \
|
2008-01-15 20:15:46 +00:00
|
|
|
M5475AFE \
|
|
|
|
M5485AFE \
|
2006-04-20 06:42:42 +00:00
|
|
|
"
|
2006-01-26 22:38:46 +00:00
|
|
|
|
2006-10-24 12:42:37 +00:00
|
|
|
#########################################################################
|
|
|
|
## AVR32 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_avr32="$(boards_by_arch avr32)"
|
2006-10-24 12:42:37 +00:00
|
|
|
|
2007-03-09 05:40:56 +00:00
|
|
|
#########################################################################
|
|
|
|
## Blackfin Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_blackfin="$(boards_by_arch blackfin)
|
|
|
|
bf527-ezkit-v2
|
2007-03-09 05:40:56 +00:00
|
|
|
"
|
|
|
|
|
2007-11-27 08:44:53 +00:00
|
|
|
#########################################################################
|
|
|
|
## SH Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2008-08-31 14:02:04 +00:00
|
|
|
LIST_sh2=" \
|
|
|
|
rsk7203 \
|
|
|
|
"
|
2008-04-20 22:35:52 +00:00
|
|
|
LIST_sh3=" \
|
|
|
|
mpr2 \
|
|
|
|
ms7720se \
|
|
|
|
"
|
|
|
|
|
2007-11-27 08:44:53 +00:00
|
|
|
LIST_sh4=" \
|
2007-11-28 15:13:04 +00:00
|
|
|
ms7750se \
|
2007-11-27 08:44:53 +00:00
|
|
|
ms7722se \
|
2008-07-08 03:03:24 +00:00
|
|
|
MigoR \
|
2008-03-11 03:55:12 +00:00
|
|
|
r7780mp \
|
2008-03-25 08:11:24 +00:00
|
|
|
r2dplus \
|
2008-06-09 04:39:57 +00:00
|
|
|
sh7763rdp \
|
2008-08-31 13:45:08 +00:00
|
|
|
sh7785lcr \
|
2008-08-22 08:39:09 +00:00
|
|
|
ap325rxa \
|
2009-06-25 07:31:26 +00:00
|
|
|
espt \
|
2007-11-27 08:44:53 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
LIST_sh=" \
|
2008-08-22 08:39:09 +00:00
|
|
|
${LIST_sh2} \
|
2007-11-27 08:44:53 +00:00
|
|
|
${LIST_sh3} \
|
|
|
|
${LIST_sh4} \
|
|
|
|
"
|
|
|
|
|
2008-03-28 08:47:00 +00:00
|
|
|
#########################################################################
|
|
|
|
## SPARC Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2010-08-19 17:05:06 +00:00
|
|
|
LIST_sparc="$(boards_by_arch sparc)"
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
|
|
|
build_target() {
|
|
|
|
target=$1
|
|
|
|
|
|
|
|
${MAKE} distclean >/dev/null
|
2010-09-14 19:48:16 +00:00
|
|
|
${MAKE} -s ${target}_config
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
|
|
|
|
| tee ${LOG_DIR}/$target.ERR
|
2009-12-07 05:58:28 +00:00
|
|
|
|
|
|
|
# Check for 'make' errors
|
|
|
|
if [ ${PIPESTATUS[0]} -ne 0 ] ; then
|
|
|
|
RC=1
|
|
|
|
fi
|
|
|
|
|
2009-09-21 17:04:32 +00:00
|
|
|
if [ -s ${LOG_DIR}/$target.ERR ] ; then
|
|
|
|
ERR_CNT=$((ERR_CNT + 1))
|
|
|
|
ERR_LIST="${ERR_LIST} $target"
|
|
|
|
else
|
|
|
|
rm ${LOG_DIR}/$target.ERR
|
|
|
|
fi
|
|
|
|
|
|
|
|
TOTAL_CNT=$((TOTAL_CNT + 1))
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2008-01-28 10:56:19 +00:00
|
|
|
${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
|
2006-09-01 17:49:50 +00:00
|
|
|
| tee -a ${LOG_DIR}/$target.MAKELOG
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
2010-08-19 17:05:06 +00:00
|
|
|
build_targets() {
|
|
|
|
for t in "$@" ; do
|
|
|
|
# If a LIST_xxx var exists, use it. But avoid variable
|
|
|
|
# expansion in the eval when a board name contains certain
|
|
|
|
# characters that the shell interprets.
|
|
|
|
case ${t} in
|
|
|
|
*[-+=]*) list= ;;
|
|
|
|
*) list=$(eval echo '${LIST_'$t'}') ;;
|
|
|
|
esac
|
|
|
|
if [ -n "${list}" ] ; then
|
|
|
|
build_targets ${list}
|
|
|
|
else
|
|
|
|
build_target ${t}
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
2009-09-21 17:04:32 +00:00
|
|
|
print_stats() {
|
|
|
|
echo ""
|
|
|
|
echo "--------------------- SUMMARY ----------------------------"
|
|
|
|
echo "Boards compiled: ${TOTAL_CNT}"
|
|
|
|
if [ ${ERR_CNT} -gt 0 ] ; then
|
|
|
|
echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
|
|
|
|
fi
|
|
|
|
echo "----------------------------------------------------------"
|
2009-12-07 05:58:28 +00:00
|
|
|
|
|
|
|
exit $RC
|
2009-09-21 17:04:32 +00:00
|
|
|
}
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-09-21 17:04:32 +00:00
|
|
|
#-----------------------------------------------------------------------
|
2010-08-19 17:05:06 +00:00
|
|
|
|
|
|
|
#----- for now, just run PowerPC by default -----
|
|
|
|
[ $# = 0 ] && set -- powerpc
|
|
|
|
|
|
|
|
build_targets "$@"
|