From 99d303ac2739e65a02fbbc325b74ad6fcac63cc2 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 5 Jun 2015 15:58:00 +0200 Subject: Initial commit --- contrib/patch-kernel-builtin.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 contrib/patch-kernel-builtin.sh (limited to 'contrib/patch-kernel-builtin.sh') diff --git a/contrib/patch-kernel-builtin.sh b/contrib/patch-kernel-builtin.sh new file mode 100755 index 0000000..8229762 --- /dev/null +++ b/contrib/patch-kernel-builtin.sh @@ -0,0 +1,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 NET/a source \"$WG/Kconfig\"" "$K/net/Kconfig" +echo "obj-y += ../../../../../../../../../../../../../../../../../../../../../..$WG/" >> "$K/net/Makefile" -- cgit v1.2.3-59-g8ed1b