summaryrefslogtreecommitdiff
path: root/lib_generic/Makefile
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2008-12-13 17:20:28 -0600
committerWolfgang Denk <wd@denx.de>2008-12-15 22:05:36 +0100
commit63240ba88cd6a220057a0f28e5bf97f5b17ac84b (patch)
tree1d4751b84ae82fe4c5dfea92765c8f4c855231e8 /lib_generic/Makefile
parent65e43a10631537dcb92c302d36301a12308216c3 (diff)
Introduce addr_map library
Add a library that helps in translating between virtual and physical addresses. This library can be useful as a simple means to implement map_physmem() and virt_to_phys() for platforms that need functionality beyond the simple 1:1 mapping. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'lib_generic/Makefile')
-rw-r--r--lib_generic/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib_generic/Makefile b/lib_generic/Makefile
index d62c39bef..3f040226e 100644
--- a/lib_generic/Makefile
+++ b/lib_generic/Makefile
@@ -25,6 +25,7 @@ include $(TOPDIR)/config.mk
LIB = $(obj)libgeneric.a
+COBJS-$(CONFIG_ADDR_MAP) += addr_map.o
COBJS-y += bzlib.o
COBJS-y += bzlib_crctable.o
COBJS-y += bzlib_decompress.o