mirror of
https://github.com/amnezia-vpn/amneziawg-linux-kernel-module.git
synced 2026-05-17 08:26:30 +03:00
13 lines
382 B
Bash
Executable File
13 lines
382 B
Bash
Executable File
#!/bin/sh
|
|
|
|
K="$1"
|
|
WG="$(readlink -f "$(dirname "$(readlink -f "$0")")/../src/")"
|
|
|
|
if [[ ! -e $K/net/Kconfig ]]; then
|
|
echo "You must specify the location of kernel sources as the first argument." >&2
|
|
exit 1
|
|
fi
|
|
|
|
sed -i "/^if INET\$/a source \"$WG/Kconfig\"" "$K/net/Kconfig"
|
|
echo "obj-y += ../../../../../../../../../../../../../../../../../../../../../..$WG/" >> "$K/net/Makefile"
|