* Re: [lttng-dev] [PATCH] Fix: list lttng sub-directory in Kbuild
[not found] <20230810100555.17568-1-Richa_Bharti@mentor.com>
@ 2023-08-10 11:53 ` Mathieu Desnoyers via lttng-dev
0 siblings, 0 replies; only message in thread
From: Mathieu Desnoyers via lttng-dev @ 2023-08-10 11:53 UTC (permalink / raw)
To: Richa Bharti, Michael Jeanson; +Cc: Richa Bharti, lttng-dev
On 8/10/23 06:05, Richa Bharti wrote:
> From: Richa Bharti <Richa.Bharti@siemens.com>
Hi!
Thanks for your patch. I'm adding Michael Jeanson and the lttng-dev
mailing list in CC.
Thanks,
Mathieu
>
> * Linux kernel>=6.1 reads sub-directory from Kbuild
> * Kernel < 6.1 reads sub-directory from Makefile
>
> Signed-off-by: Richa Bharti <Richa.Bharti@siemens.com>
> ---
> scripts/built-in.sh | 12 +++++++++++-
> 1 file changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/built-in.sh b/scripts/built-in.sh
> index f0594ec..2451230 100755
> --- a/scripts/built-in.sh
> +++ b/scripts/built-in.sh
> @@ -14,9 +14,19 @@ KERNEL_DIR="$(readlink --canonicalize-existing "$1")"
> # Symlink the lttng-modules directory in the kernel source
> ln -sf "$(pwd)" "${KERNEL_DIR}/lttng"
>
> +# Get kernel version from Makefile
> +version=$(grep -m 1 VERSION ${KERNEL_DIR}/Makefile | sed 's/^.*= //g')
> +patchlevel=$(grep -m 1 PATCHLEVEL ${KERNEL_DIR}/Makefile | sed 's/^.*= //g')
> +kernel_version=${version}.${patchlevel}
> +
> # Graft ourself to the kernel build system
> echo 'source "lttng/src/Kconfig"' >> "${KERNEL_DIR}/Kconfig"
> -sed -i 's#+= kernel/#+= kernel/ lttng/#' "${KERNEL_DIR}/Makefile"
> +
> +if awk "BEGIN {exit !(${kernel_version} >= 6.1)}"; then
> + echo 'obj-y += lttng/' >> "${KERNEL_DIR}/Kbuild"
> +else
> + sed -i 's#+= kernel/#+= kernel/ lttng/#' "${KERNEL_DIR}/Makefile"
> +fi
>
> echo >&2
> echo " $0: done." >&2
--
Mathieu Desnoyers
EfficiOS Inc.
https://www.efficios.com
_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-08-10 11:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20230810100555.17568-1-Richa_Bharti@mentor.com>
2023-08-10 11:53 ` [lttng-dev] [PATCH] Fix: list lttng sub-directory in Kbuild Mathieu Desnoyers via lttng-dev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox