8 lines
		
	
	
		
			239 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			239 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| mod=$1
 | |
| mkdir -p usr/lib/debug/${mod%/*}
 | |
| $OBJCOPY --only-keep-debug --compress-debug-sections $mod usr/lib/debug/$mod
 | |
| $OBJCOPY --add-gnu-debuglink=${DESTDIR}/usr/lib/debug/$mod $mod
 | |
| /usr/bin/$STRIP --strip-debug $mod
 | |
| gzip -9 $mod
 |