* [PATCH v1 1/2] meta/recipes-kernel/linux: correct the kernel header dir name
@ 2024-10-14 15:24 srinuvasan.a via isar-users
2024-10-14 15:24 ` [PATCH v1 2/2] meta/recipes-kernel/linux: add additional directory for cleanup srinuvasan.a via isar-users
2024-10-21 10:51 ` [PATCH v1 1/2] meta/recipes-kernel/linux: correct the kernel header dir name Uladzimir Bely
0 siblings, 2 replies; 3+ messages in thread
From: srinuvasan.a via isar-users @ 2024-10-14 15:24 UTC (permalink / raw)
To: isar-users; +Cc: cedric.hombourger, srinuvasan
From: srinuvasan <srinuvasan.a@siemens.com>
Presently kernel headers packages not cleaned in the do_clean stage
of kernel build process, this is due to we are referring wrong directory name
during clean stage.
Updated the correct dir name as "deb_kern_hdr_dir".
Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
---
meta/recipes-kernel/linux/files/debian/isar/clean.tmpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl b/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
index bc67595b..8cceb6e2 100644
--- a/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
+++ b/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
@@ -11,7 +11,7 @@ do_clean() {
set -x
rm -rf ${deb_img_dir} ${deb_dbg_dir}
- rm -rf ${deb_kern_hdrdir}
+ rm -rf ${deb_kern_hdr_dir}
rm -rf ${deb_libc_hdr_dir}
# Stop tracing
--
2.39.5
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/isar-users/20241014152440.1310394-1-srinuvasan.a%40siemens.com.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v1 2/2] meta/recipes-kernel/linux: add additional directory for cleanup
2024-10-14 15:24 [PATCH v1 1/2] meta/recipes-kernel/linux: correct the kernel header dir name srinuvasan.a via isar-users
@ 2024-10-14 15:24 ` srinuvasan.a via isar-users
2024-10-21 10:51 ` [PATCH v1 1/2] meta/recipes-kernel/linux: correct the kernel header dir name Uladzimir Bely
1 sibling, 0 replies; 3+ messages in thread
From: srinuvasan.a via isar-users @ 2024-10-14 15:24 UTC (permalink / raw)
To: isar-users; +Cc: cedric.hombourger, srinuvasan
From: srinuvasan <srinuvasan.a@siemens.com>
Add "deb_libc_hdr_cross_dir" to the do_clean target for cleanup
the libc header cross packages.
Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
---
meta/recipes-kernel/linux/files/debian/isar/clean.tmpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl b/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
index 8cceb6e2..a0222f52 100644
--- a/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
+++ b/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
@@ -12,7 +12,7 @@ do_clean() {
rm -rf ${deb_img_dir} ${deb_dbg_dir}
rm -rf ${deb_kern_hdr_dir}
- rm -rf ${deb_libc_hdr_dir}
+ rm -rf ${deb_libc_hdr_dir} ${deb_libc_hdr_cross_dir}
# Stop tracing
set +x
--
2.39.5
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/isar-users/20241014152440.1310394-2-srinuvasan.a%40siemens.com.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1 1/2] meta/recipes-kernel/linux: correct the kernel header dir name
2024-10-14 15:24 [PATCH v1 1/2] meta/recipes-kernel/linux: correct the kernel header dir name srinuvasan.a via isar-users
2024-10-14 15:24 ` [PATCH v1 2/2] meta/recipes-kernel/linux: add additional directory for cleanup srinuvasan.a via isar-users
@ 2024-10-21 10:51 ` Uladzimir Bely
1 sibling, 0 replies; 3+ messages in thread
From: Uladzimir Bely @ 2024-10-21 10:51 UTC (permalink / raw)
To: srinuvasan.a, isar-users
On Mon, 2024-10-14 at 20:54 +0530, srinuvasan.a via isar-users wrote:
> From: srinuvasan <srinuvasan.a@siemens.com>
>
> Presently kernel headers packages not cleaned in the do_clean stage
> of kernel build process, this is due to we are referring wrong
> directory name
> during clean stage.
>
> Updated the correct dir name as "deb_kern_hdr_dir".
>
> Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
> ---
> meta/recipes-kernel/linux/files/debian/isar/clean.tmpl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
> b/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
> index bc67595b..8cceb6e2 100644
> --- a/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
> +++ b/meta/recipes-kernel/linux/files/debian/isar/clean.tmpl
> @@ -11,7 +11,7 @@ do_clean() {
> set -x
>
> rm -rf ${deb_img_dir} ${deb_dbg_dir}
> - rm -rf ${deb_kern_hdrdir}
> + rm -rf ${deb_kern_hdr_dir}
> rm -rf ${deb_libc_hdr_dir}
>
> # Stop tracing
> --
> 2.39.5
>
Applied to next, thanks.
--
Best regards,
Uladzimir.
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/isar-users/a5603a5465297230b2a9abf6b2e6ebc5af22091c.camel%40ilbers.de.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-21 10:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-14 15:24 [PATCH v1 1/2] meta/recipes-kernel/linux: correct the kernel header dir name srinuvasan.a via isar-users
2024-10-14 15:24 ` [PATCH v1 2/2] meta/recipes-kernel/linux: add additional directory for cleanup srinuvasan.a via isar-users
2024-10-21 10:51 ` [PATCH v1 1/2] meta/recipes-kernel/linux: correct the kernel header dir name Uladzimir Bely
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox