diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-03-28 23:05:50 +0100 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-03-28 23:05:50 +0100 | 
| commit | b0d44c0dbbd52effb731b1c0af9afd56215c48de (patch) | |
| tree | 3237c0087d91a5390aed05689b9f610ba16fa116 /lib/Makefile | |
| parent | 9537a48ed4b9e4b738943d6da0a0fd4278adf905 (diff) | |
| parent | 7c730ccdc1188b97f5c8cb690906242c7ed75c22 (diff) | |
Merge branch 'linus' into core/iommu
Conflicts:
	arch/x86/Kconfig
Diffstat (limited to 'lib/Makefile')
| -rw-r--r-- | lib/Makefile | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/lib/Makefile b/lib/Makefile index 50b48cf63e4a..d6edd6753f40 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -11,7 +11,8 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \  	 rbtree.o radix-tree.o dump_stack.o \  	 idr.o int_sqrt.o extable.o prio_tree.o \  	 sha1.o irq_regs.o reciprocal_div.o argv_split.o \ -	 proportions.o prio_heap.o ratelimit.o show_mem.o is_single_threaded.o +	 proportions.o prio_heap.o ratelimit.o show_mem.o \ +	 is_single_threaded.o plist.o decompress.o  lib-$(CONFIG_MMU) += ioremap.o  lib-$(CONFIG_SMP) += cpumask.o @@ -40,7 +41,6 @@ lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o  lib-$(CONFIG_GENERIC_FIND_LAST_BIT) += find_last_bit.o  obj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o  obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o -obj-$(CONFIG_PLIST) += plist.o  obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o  obj-$(CONFIG_DEBUG_LIST) += list_debug.o  obj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o @@ -65,6 +65,10 @@ obj-$(CONFIG_REED_SOLOMON) += reed_solomon/  obj-$(CONFIG_LZO_COMPRESS) += lzo/  obj-$(CONFIG_LZO_DECOMPRESS) += lzo/ +lib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o +lib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o +lib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o +  obj-$(CONFIG_TEXTSEARCH) += textsearch.o  obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o  obj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o @@ -82,7 +86,9 @@ obj-$(CONFIG_HAVE_LMB) += lmb.o  obj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o -obj-$(CONFIG_DYNAMIC_PRINTK_DEBUG) += dynamic_printk.o +obj-$(CONFIG_DYNAMIC_DEBUG) += dynamic_debug.o + +obj-$(CONFIG_NLATTR) += nlattr.o  obj-$(CONFIG_DMA_API_DEBUG) += dma-debug.o | 
