Previously PeeCeeI.o was a library but it was always pulled in due to insw and friends being exported (at least for a modular kernel). But this resulted in modpost failures if there where no in-kernel users because then insw & friends were not linked in. Fix this by including PeeCeeI.o in the kernel unconditionally. The only drawback for this solution is that a nonmodular kernel will always include insw & friends no matter if they are in use or not. Reported-by: Meelis Roos <mroos@linux.ee> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.7 KiB
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.7 KiB
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Makefile for Sparc library files..
 | 
						|
#
 | 
						|
 | 
						|
asflags-y := -ansi -DST_DIV0=0x02
 | 
						|
ccflags-y := -Werror
 | 
						|
 | 
						|
lib-$(CONFIG_SPARC32) += mul.o rem.o sdiv.o udiv.o umul.o urem.o ashrdi3.o
 | 
						|
lib-$(CONFIG_SPARC32) += memcpy.o memset.o
 | 
						|
lib-y                 += strlen.o
 | 
						|
lib-y                 += checksum_$(BITS).o
 | 
						|
lib-$(CONFIG_SPARC32) += blockops.o
 | 
						|
lib-y                 += memscan_$(BITS).o memcmp.o strncmp_$(BITS).o
 | 
						|
lib-y                 += strncpy_from_user_$(BITS).o strlen_user_$(BITS).o
 | 
						|
lib-$(CONFIG_SPARC32) += divdi3.o udivdi3.o
 | 
						|
lib-$(CONFIG_SPARC32) += copy_user.o locks.o
 | 
						|
lib-y                 += atomic_$(BITS).o
 | 
						|
lib-$(CONFIG_SPARC32) += lshrdi3.o ashldi3.o
 | 
						|
lib-y                 += rwsem_$(BITS).o
 | 
						|
lib-$(CONFIG_SPARC32) += muldi3.o bitext.o cmpdi2.o
 | 
						|
 | 
						|
lib-$(CONFIG_SPARC64) += copy_page.o clear_page.o bzero.o
 | 
						|
lib-$(CONFIG_SPARC64) += csum_copy.o csum_copy_from_user.o csum_copy_to_user.o
 | 
						|
lib-$(CONFIG_SPARC64) += VISsave.o
 | 
						|
lib-$(CONFIG_SPARC64) += bitops.o
 | 
						|
 | 
						|
lib-$(CONFIG_SPARC64) += U1memcpy.o U1copy_from_user.o U1copy_to_user.o
 | 
						|
 | 
						|
lib-$(CONFIG_SPARC64) += U3memcpy.o U3copy_from_user.o U3copy_to_user.o
 | 
						|
lib-$(CONFIG_SPARC64) += U3patch.o
 | 
						|
 | 
						|
lib-$(CONFIG_SPARC64) += NGmemcpy.o NGcopy_from_user.o NGcopy_to_user.o
 | 
						|
lib-$(CONFIG_SPARC64) += NGpatch.o NGpage.o NGbzero.o
 | 
						|
 | 
						|
lib-$(CONFIG_SPARC64) += NG2memcpy.o NG2copy_from_user.o NG2copy_to_user.o
 | 
						|
lib-$(CONFIG_SPARC64) +=  NG2patch.o NG2page.o
 | 
						|
 | 
						|
lib-$(CONFIG_SPARC64) += GENmemcpy.o GENcopy_from_user.o GENcopy_to_user.o
 | 
						|
lib-$(CONFIG_SPARC64) += GENpatch.o GENpage.o GENbzero.o
 | 
						|
 | 
						|
lib-$(CONFIG_SPARC64) += copy_in_user.o user_fixup.o memmove.o
 | 
						|
lib-$(CONFIG_SPARC64) += mcount.o ipcsum.o xor.o
 | 
						|
 | 
						|
obj-y                 += iomap.o
 | 
						|
obj-$(CONFIG_SPARC32) += atomic32.o
 | 
						|
obj-y                 += ksyms.o
 | 
						|
obj-$(CONFIG_SPARC64) += PeeCeeI.o
 |