mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	 109d2c9310
			
		
	
	
		109d2c9310
		
	
	
	
	
		
			
			Currently an out-of-tree build does not work with read-only source directory because zfs_gitrev.h can't be created. Move this file to the build directory, which is more appropriate for a generated file, and drop the dist-hook for zfs_gitrev.h. There is no need to distribute this file since it will be regenerated as part of the compilation in any case. scripts/make_gitrev.sh tries to avoid updating zfs_gitrev.h if there has been no change, however this doesn't cover the case when the source directory is not in git: in that case zfs_gitrev.h gets overwritten even though it's always "unknown". Simplify the logic to always write out a new version of zfs_gitrev.h, compare against the old and overwrite only if different. This is now simple enough to just include in the Makefile, so drop the script. Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu> Closes #10493
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| usage()
 | |
| {
 | |
| 	echo "usage: $0 <kernel source tree>" >&2
 | |
| 	exit 1
 | |
| }
 | |
| 
 | |
| [ "$#" -eq 1 ] || usage
 | |
| KERNEL_DIR="$(readlink --canonicalize-existing "$1")"
 | |
| 
 | |
| if ! [ -e 'zfs_config.h' ]
 | |
| then
 | |
| 	echo >&2
 | |
| 	echo "    $0: you did not run configure, or you're not in the ZFS source directory." >&2
 | |
| 	echo "    $0: run configure with --with-linux=$KERNEL_DIR and --enable-linux-builtin." >&2
 | |
| 	echo >&2
 | |
| 	exit 1
 | |
| fi
 | |
| 
 | |
| make clean || true
 | |
| make gitrev
 | |
| 
 | |
| rm -rf "$KERNEL_DIR/include/zfs" "$KERNEL_DIR/fs/zfs"
 | |
| cp --recursive include "$KERNEL_DIR/include/zfs"
 | |
| cp --recursive module "$KERNEL_DIR/fs/zfs"
 | |
| cp zfs_config.h "$KERNEL_DIR/include/zfs/"
 | |
| 
 | |
| cat > "$KERNEL_DIR/fs/zfs/Kconfig" <<"EOF"
 | |
| config ZFS
 | |
| 	tristate "ZFS filesystem support"
 | |
| 	depends on EFI_PARTITION
 | |
| 	select ZLIB_INFLATE
 | |
| 	select ZLIB_DEFLATE
 | |
| 	help
 | |
| 	  This is the ZFS filesystem from the ZFS On Linux project.
 | |
| 
 | |
| 	  See https://zfsonlinux.org/
 | |
| 
 | |
| 	  To compile this file system support as a module, choose M here.
 | |
| 
 | |
| 	  If unsure, say N.
 | |
| EOF
 | |
| 
 | |
| add_after()
 | |
| {
 | |
| 	local FILE="$1"
 | |
| 	local MARKER="$2"
 | |
| 	local NEW="$3"
 | |
| 	local LINE
 | |
| 
 | |
| 	while IFS='' read -r LINE
 | |
| 	do
 | |
| 		echo "$LINE"
 | |
| 
 | |
| 		if [ -n "$MARKER" -a "$LINE" = "$MARKER" ]
 | |
| 		then
 | |
| 			echo "$NEW"
 | |
| 			MARKER=''
 | |
| 			if IFS='' read -r LINE
 | |
| 			then
 | |
| 				[ "$LINE" != "$NEW" ] && echo "$LINE"
 | |
| 			fi
 | |
| 		fi
 | |
| 	done < "$FILE" > "$FILE.new"
 | |
| 
 | |
| 	mv "$FILE.new" "$FILE"
 | |
| }
 | |
| 
 | |
| add_after "$KERNEL_DIR/fs/Kconfig" 'if BLOCK' 'source "fs/zfs/Kconfig"'
 | |
| add_after "$KERNEL_DIR/fs/Makefile" 'endif' 'obj-$(CONFIG_ZFS) += zfs/'
 | |
| 
 | |
| echo >&2
 | |
| echo "    $0: done." >&2
 | |
| echo "    $0: now you can build the kernel with ZFS support." >&2
 | |
| echo "    $0: make sure you enable ZFS support (CONFIG_ZFS) before building." >&2
 | |
| echo >&2
 |