Files
mirror_zfs/copy-builtin
T

80 lines
1.6 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2012-07-09 11:23:00 +02:00
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
2020-06-19 22:08:59 -04:00
make gitrev
2012-07-09 11:23:00 +02:00
rm -rf "$KERNEL_DIR/include/zfs" "$KERNEL_DIR/fs/zfs"
cp --recursive include "$KERNEL_DIR/include/zfs"
cp --recursive module "$KERNEL_DIR/fs/zfs"
2018-02-15 17:53:18 -08:00
cp zfs_config.h "$KERNEL_DIR/include/zfs/"
2012-07-09 11:23:00 +02:00
cat > "$KERNEL_DIR/fs/zfs/Kconfig" <<"EOF"
config ZFS
2012-08-25 17:16:23 -04:00
tristate "ZFS filesystem support"
2012-07-29 05:43:57 -04:00
depends on EFI_PARTITION
select ZLIB_INFLATE
select ZLIB_DEFLATE
2012-07-09 11:23:00 +02:00
help
This is the ZFS filesystem from the OpenZFS project.
2012-07-09 11:23:00 +02:00
See https://github.com/openzfs/zfs
2012-07-09 11:23:00 +02:00
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