diff options
author | Marek Vasut <marex@denx.de> | 2012-08-26 15:19:06 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2012-10-22 02:53:35 -0500 |
commit | b660df3c9031ba2efded2d083c34f2ea5ff978ff (patch) | |
tree | 0839439d1b51289dff3b15fc1981246992c220ae /common/Makefile | |
parent | 99070db0dc0b0e881841a0091f06d53351244a34 (diff) | |
download | u-boot-b660df3c9031ba2efded2d083c34f2ea5ff978ff.zip u-boot-b660df3c9031ba2efded2d083c34f2ea5ff978ff.tar.gz u-boot-b660df3c9031ba2efded2d083c34f2ea5ff978ff.tar.bz2 |
COMMON: Implement common bounce buffer
Implement common bounce buffer to be used on a less capable hardware.
That includes hardware that can not do DMA from any address or such.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Andy Fleming <afleming@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index fdfead7..2e3b223 100644 --- a/common/Makefile +++ b/common/Makefile @@ -204,6 +204,7 @@ COBJS-$(CONFIG_SPL_NET_SUPPORT) += env_common.o COBJS-$(CONFIG_SPL_NET_SUPPORT) += env_nowhere.o COBJS-$(CONFIG_SPL_NET_SUPPORT) += miiphyutil.o endif +COBJS-$(CONFIG_BOUNCE_BUFFER) += bouncebuf.o COBJS-y += console.o COBJS-y += dlmalloc.o COBJS-y += image.o |