* [PATCH v3] kbuild: add debug package to pacman PKGBUILD
@ 2024-08-24 22:07 Jose Fernandez
2024-08-29 11:03 ` Thomas Weißschuh
2024-09-01 11:37 ` Masahiro Yamada
0 siblings, 2 replies; 3+ messages in thread
From: Jose Fernandez @ 2024-08-24 22:07 UTC (permalink / raw)
To: Thomas Weißschuh, Christian Heusel, Nathan Chancellor,
Masahiro Yamada, Nicolas Schier
Cc: Jose Fernandez, Peter Jung, linux-kbuild, linux-kernel
Add a new debug package to the PKGBUILD for the pacman-pkg target. The
debug package includes the non-stripped vmlinux file with debug symbols
for kernel debugging and profiling. The file is installed at
/usr/src/debug/${pkgbase}, with a symbolic link at
/usr/lib/modules/$(uname -r)/build/vmlinux. The debug package is built
by default.
Signed-off-by: Jose Fernandez <jose.fernandez@linux.dev>
Reviewed-by: Peter Jung <ptr1337@cachyos.org>
---
v2->v3:
- Remove unnecessary mkdir -p "$pkgdir/usr/src/debug/${pkgbase}"
- Use the new _prologue() function [1]
- Add symbolic link to /usr/lib/modules/$(uname -r)/build/vmlinux
- Remove the dependency on the headers package
v1->v2:
- Use the new PACMAN_EXTRAPACKAGES [2] variable to allow users to disable the
debug package if desired, instead of always including it.
[1] https://lore.kernel.org/lkml/20240816141844.1217356-1-masahiroy@kernel.org/
[2] https://lore.kernel.org/lkml/20240813185900.GA140556@thelio-3990X/T/
scripts/package/PKGBUILD | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/scripts/package/PKGBUILD b/scripts/package/PKGBUILD
index 839cd5e634d2..f83493838cf9 100644
--- a/scripts/package/PKGBUILD
+++ b/scripts/package/PKGBUILD
@@ -5,7 +5,7 @@
pkgbase=${PACMAN_PKGBASE:-linux-upstream}
pkgname=("${pkgbase}")
-_extrapackages=${PACMAN_EXTRAPACKAGES-headers api-headers}
+_extrapackages=${PACMAN_EXTRAPACKAGES-headers api-headers debug}
for pkg in $_extrapackages; do
pkgname+=("${pkgbase}-${pkg}")
done
@@ -111,6 +111,19 @@ _package-api-headers() {
${MAKE} headers_install INSTALL_HDR_PATH="${pkgdir}/usr"
}
+_package-debug(){
+ pkgdesc="Non-stripped vmlinux file for the ${pkgdesc} kernel"
+
+ local debugdir="${pkgdir}/usr/src/debug/${pkgbase}"
+ local builddir="${pkgdir}/usr/${MODLIB}/build"
+
+ _prologue
+
+ install -Dt "${debugdir}" -m644 vmlinux
+ mkdir -p "${builddir}"
+ ln -sr "${debugdir}/vmlinux" "${builddir}/vmlinux"
+}
+
for _p in "${pkgname[@]}"; do
eval "package_$_p() {
$(declare -f "_package${_p#$pkgbase}")
base-commit: df829331cf5cccb2a1fdd7560eabfcec49f9b990
--
2.46.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v3] kbuild: add debug package to pacman PKGBUILD
2024-08-24 22:07 [PATCH v3] kbuild: add debug package to pacman PKGBUILD Jose Fernandez
@ 2024-08-29 11:03 ` Thomas Weißschuh
2024-09-01 11:37 ` Masahiro Yamada
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Weißschuh @ 2024-08-29 11:03 UTC (permalink / raw)
To: Jose Fernandez
Cc: Christian Heusel, Nathan Chancellor, Masahiro Yamada,
Nicolas Schier, Peter Jung, linux-kbuild, linux-kernel
On 2024-08-24 16:07:56+0000, Jose Fernandez wrote:
> Add a new debug package to the PKGBUILD for the pacman-pkg target. The
> debug package includes the non-stripped vmlinux file with debug symbols
> for kernel debugging and profiling. The file is installed at
> /usr/src/debug/${pkgbase}, with a symbolic link at
> /usr/lib/modules/$(uname -r)/build/vmlinux. The debug package is built
> by default.
>
> Signed-off-by: Jose Fernandez <jose.fernandez@linux.dev>
> Reviewed-by: Peter Jung <ptr1337@cachyos.org>
Acked-by: Thomas Weißschuh <linux@weissschuh.net>
Thanks!
> ---
> v2->v3:
> - Remove unnecessary mkdir -p "$pkgdir/usr/src/debug/${pkgbase}"
> - Use the new _prologue() function [1]
> - Add symbolic link to /usr/lib/modules/$(uname -r)/build/vmlinux
> - Remove the dependency on the headers package
> v1->v2:
> - Use the new PACMAN_EXTRAPACKAGES [2] variable to allow users to disable the
> debug package if desired, instead of always including it.
>
> [1] https://lore.kernel.org/lkml/20240816141844.1217356-1-masahiroy@kernel.org/
> [2] https://lore.kernel.org/lkml/20240813185900.GA140556@thelio-3990X/T/
>
> scripts/package/PKGBUILD | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/package/PKGBUILD b/scripts/package/PKGBUILD
> index 839cd5e634d2..f83493838cf9 100644
> --- a/scripts/package/PKGBUILD
> +++ b/scripts/package/PKGBUILD
> @@ -5,7 +5,7 @@
> pkgbase=${PACMAN_PKGBASE:-linux-upstream}
> pkgname=("${pkgbase}")
>
> -_extrapackages=${PACMAN_EXTRAPACKAGES-headers api-headers}
> +_extrapackages=${PACMAN_EXTRAPACKAGES-headers api-headers debug}
> for pkg in $_extrapackages; do
> pkgname+=("${pkgbase}-${pkg}")
> done
> @@ -111,6 +111,19 @@ _package-api-headers() {
> ${MAKE} headers_install INSTALL_HDR_PATH="${pkgdir}/usr"
> }
>
> +_package-debug(){
> + pkgdesc="Non-stripped vmlinux file for the ${pkgdesc} kernel"
> +
> + local debugdir="${pkgdir}/usr/src/debug/${pkgbase}"
> + local builddir="${pkgdir}/usr/${MODLIB}/build"
> +
> + _prologue
> +
> + install -Dt "${debugdir}" -m644 vmlinux
> + mkdir -p "${builddir}"
> + ln -sr "${debugdir}/vmlinux" "${builddir}/vmlinux"
> +}
> +
> for _p in "${pkgname[@]}"; do
> eval "package_$_p() {
> $(declare -f "_package${_p#$pkgbase}")
>
> base-commit: df829331cf5cccb2a1fdd7560eabfcec49f9b990
> --
> 2.46.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v3] kbuild: add debug package to pacman PKGBUILD
2024-08-24 22:07 [PATCH v3] kbuild: add debug package to pacman PKGBUILD Jose Fernandez
2024-08-29 11:03 ` Thomas Weißschuh
@ 2024-09-01 11:37 ` Masahiro Yamada
1 sibling, 0 replies; 3+ messages in thread
From: Masahiro Yamada @ 2024-09-01 11:37 UTC (permalink / raw)
To: Jose Fernandez
Cc: Thomas Weißschuh, Christian Heusel, Nathan Chancellor,
Nicolas Schier, Peter Jung, linux-kbuild, linux-kernel
On Sun, Aug 25, 2024 at 7:09 AM Jose Fernandez <jose.fernandez@linux.dev> wrote:
>
> Add a new debug package to the PKGBUILD for the pacman-pkg target. The
> debug package includes the non-stripped vmlinux file with debug symbols
> for kernel debugging and profiling. The file is installed at
> /usr/src/debug/${pkgbase}, with a symbolic link at
> /usr/lib/modules/$(uname -r)/build/vmlinux. The debug package is built
> by default.
>
> Signed-off-by: Jose Fernandez <jose.fernandez@linux.dev>
> Reviewed-by: Peter Jung <ptr1337@cachyos.org>
Applied to linux-kbuild.
Thanks!
--
Best Regards
Masahiro Yamada
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-09-01 11:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-24 22:07 [PATCH v3] kbuild: add debug package to pacman PKGBUILD Jose Fernandez
2024-08-29 11:03 ` Thomas Weißschuh
2024-09-01 11:37 ` Masahiro Yamada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox