mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-12 13:35:21 -04:00
MAKEALL: display SPL size if present
This makes it easier to detect changes in the SPL portion, as can currently be done for the main U-Boot image. Signed-off-by: Scott Wood <scottwood@freescale.com> Acked-by: Tom Rini <trini@ti.com>
This commit is contained in:
parent
d721a3a771
commit
0c18569606
8
MAKEALL
8
MAKEALL
@ -511,8 +511,12 @@ build_target() {
|
|||||||
|
|
||||||
TOTAL_CNT=$((TOTAL_CNT + 1))
|
TOTAL_CNT=$((TOTAL_CNT + 1))
|
||||||
|
|
||||||
${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
|
OBJS=${BUILD_DIR}/u-boot
|
||||||
| tee -a ${LOG_DIR}/$target.MAKELOG
|
if [ -e ${BUILD_DIR}/spl/u-boot-spl ]; then
|
||||||
|
OBJS="${OBJS} ${BUILD_DIR}/spl/u-boot-spl"
|
||||||
|
fi
|
||||||
|
|
||||||
|
${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
|
||||||
}
|
}
|
||||||
build_targets() {
|
build_targets() {
|
||||||
for t in "$@" ; do
|
for t in "$@" ; do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user