rv1126-uboot/tools
Benoît Thébaudeau 2979b26323 autoconfig.mk: Make it possible to define configs from other configs
Give more flexibility to define configs that can be interpreted by make, e.g. to
define fallback values of configs like in the example below.

Before this change, the config lines:
 #define CONFIG_SPL_MAX_SIZE	2048
 #define CONFIG_SPL_PAD_TO	CONFIG_SPL_MAX_SIZE
would have been changed in autoconfig.mk into:
 CONFIG_SPL_MAX_SIZE=2048
 CONFIG_SPL_PAD_TO="CONFIG_SPL_MAX_SIZE"

Hence, a make recipe using as an argument to $(OBJCOPY):
 --pad-to=$(CONFIG_SPL_PAD_TO)
would have issued:
 --pad-to="CONFIG_SPL_MAX_SIZE"
which means nothing for $(OBJCOPY) and makes it fail.

Thanks to this change, the config lines above are changed in autoconfig.mk into:
 CONFIG_SPL_MAX_SIZE=2048
 CONFIG_SPL_PAD_TO=$(CONFIG_SPL_MAX_SIZE)

Hence, the make recipe above now issues:
 --pad-to=2048
as expected from the defined config.

Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Reviewed-by: Tom Rini <trini@ti.com>
2013-04-12 07:55:06 +02:00
..
bddb
easylogo easylogo: add lzma support 2012-06-19 22:33:55 +02:00
env env: Allow accessing non-mtd devices 2013-03-11 17:05:04 -04:00
gdb
imls treewide: include libfdt_env.h before fdt.h 2013-02-07 20:38:55 -05:00
kernel-doc kerneldoc: Implement "Example" section handling 2012-10-15 11:54:15 -07:00
logos logo: update to the new logo for ATMEL 2013-04-05 21:49:37 +02:00
omap
patman patman: Allow use outside of u-boot tree 2013-01-31 15:23:40 -08:00
scripts autoconfig.mk: Make it possible to define configs from other configs 2013-04-12 07:55:06 +02:00
updater
.gitignore kerneldoc: Implant DocBook from Linux kernel 2012-10-15 11:54:14 -07:00
Makefile mx23: config: Enable mxsboot tool for i.MX23 based boards 2013-01-21 12:05:21 +01:00
aisimage.c
aisimage.h
bin2header.c
binutils-version.sh tools, config.mk: add binutils-version 2012-10-04 14:18:54 +02:00
bmp_logo.c
checkpatch.pl checkpatch.pl: Add 'debug' to the list of logFunctions 2013-03-27 15:30:11 -04:00
checkstack.pl
cleanpatch tools: Add cleanpatch 2012-10-15 11:54:04 -07:00
default_image.c
envcrc.c
fdt_host.h treewide: include libfdt_env.h before fdt.h 2013-02-07 20:38:55 -05:00
fit_image.c Correct comment to show the parameters as defined in tools/mkimage.h 2012-12-11 06:46:43 -07:00
gcc-version.sh
gen_eth_addr.c
getline.c
getline.h
img2brec.sh
img2srec.c
imximage.c tools: imximage: Let .name field be more generic 2013-01-28 06:49:51 +01:00
imximage.h imximage: change parameters to set_imx_hdr 2012-10-20 17:13:02 +02:00
jtagconsole
kwbimage.c
kwbimage.h
kwboot.c kwboot: boot kirkwood SoCs over a serial link 2012-07-07 14:07:32 +02:00
mingw_support.c
mingw_support.h tools: clean up mingw ifdefs 2012-07-20 08:53:34 +02:00
mkenvimage.c tools: clean up mingw ifdefs 2012-07-20 08:53:34 +02:00
mkexynosspl.c
mkimage.c powerpc/CoreNet: add tool to support pbl image build. 2012-08-23 10:24:16 -05:00
mkimage.h powerpc/CoreNet: add tool to support pbl image build. 2012-08-23 10:24:16 -05:00
mpc86x_clk.c
mxsboot.c
ncb.c
netconsole net: Make netconsole src and dest ports configurable 2012-09-24 13:17:24 -05:00
omapimage.c omapimage: Add support for byteswapped SPI images 2012-10-25 11:30:50 -07:00
omapimage.h
os_support.c
os_support.h
pblimage.c powerpc/CoreNet: add tool to support pbl image build. 2012-08-23 10:24:16 -05:00
pblimage.h powerpc/CoreNet: add tool to support pbl image build. 2012-08-23 10:24:16 -05:00
setlocalversion
ublimage.c
ublimage.h
ubsha1.c
xway-swap-bytes.c