aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/patch-kernel-builtin.sh
blob: 65cb489177d1533fd825cc9a5670839166ea37e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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"