X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=built-in.sh;fp=built-in.sh;h=0000000000000000000000000000000000000000;hb=6c27a5ccba05b088fbfcf8cd982c25649838298d;hp=782985f9d332b2e9435f171ef5e136315ac3c0ad;hpb=1c124020c743254923d8e76ab5dcd1f69709982e;p=lttng-modules.git diff --git a/built-in.sh b/built-in.sh deleted file mode 100755 index 782985f9..00000000 --- a/built-in.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -set -e - -usage() { - echo "usage: $0 " >&2 - exit 1 -} - -[ "$#" -eq 1 ] || usage -KERNEL_DIR="$(readlink --canonicalize-existing "$1")" - -# Symlink the lttng-modules directory in the kernel source -ln -sf "$(pwd)" "${KERNEL_DIR}/lttng" - -# Graft ourself to the kernel build system -echo 'source "lttng/Kconfig"' >> "${KERNEL_DIR}/Kconfig" -sed -i 's#+= kernel/#+= kernel/ lttng/#' "${KERNEL_DIR}/Makefile" - -echo >&2 -echo " $0: done." >&2 -echo " $0: now you can build the kernel with LTTng support." >&2 -echo " $0: make sure you enable it (CONFIG_LTTNG) before building." >&2 -echo >&2