mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 08:38:45 +02:00 
			
		
		
		
	kbuild: deb-pkg: Don't fail if modules.order is missing
Kernels built without CONFIG_MODULES might still want to create -dbg deb
packages but install_linux_image_dbg() assumes modules.order always
exists. This obviously isn't true if no modules were built, so we should
skip reading modules.order in that case.
Fixes: 16c36f8864 ("kbuild: deb-pkg: use build ID instead of debug link for dbg package")
Signed-off-by: Matt Fleming <mfleming@cloudflare.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
			
			
This commit is contained in:
		
							parent
							
								
									dbefa1f31a
								
							
						
					
					
						commit
						bcbbf493f2
					
				
					 1 changed files with 11 additions and 9 deletions
				
			
		|  | @ -96,6 +96,7 @@ install_linux_image_dbg () { | |||
| 
 | ||||
| 	# Parse modules.order directly because 'make modules_install' may sign, | ||||
| 	# compress modules, and then run unneeded depmod. | ||||
| 	if is_enabled CONFIG_MODULES; then | ||||
| 		while read -r mod; do | ||||
| 			mod="${mod%.o}.ko" | ||||
| 			dbg="${pdir}/usr/lib/debug/lib/modules/${KERNELRELEASE}/kernel/${mod}" | ||||
|  | @ -106,6 +107,7 @@ install_linux_image_dbg () { | |||
| 			"${OBJCOPY}" --only-keep-debug "${mod}" "${dbg}" | ||||
| 			ln -sf --relative "${dbg}" "${link}" | ||||
| 		done < modules.order | ||||
| 	fi | ||||
| 
 | ||||
| 	# Build debug package | ||||
| 	# Different tools want the image in different locations | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Matt Fleming
						Matt Fleming