public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Correct linux-custom dependencies
@ 2025-09-01 12:28 'Quirin Gylstorff' via isar-users
  2025-09-01 12:28 ` [PATCH v2 1/2] linux-custom/d/control.tmpl: correct typo 'Quirin Gylstorff' via isar-users
  2025-09-01 12:28 ` [PATCH v2 2/2] linux-custom.inc: drop library dependencies from kernel headers 'Quirin Gylstorff' via isar-users
  0 siblings, 2 replies; 3+ messages in thread
From: 'Quirin Gylstorff' via isar-users @ 2025-09-01 12:28 UTC (permalink / raw)
  To: isar-users, srinuvasan.a

From: Quirin Gylstorff <quirin.gylstorff@siemens.com>

This fixes the dependencies of linux-headers-<custom> to avoid a build
error on Debian trixie.

It removes the direct dependency to libssl* and corrects the use of
Debian template variables.

Changes v2:
 - change patch order

Quirin Gylstorff (2):
  linux-custom/d/control.tmpl: correct typo
  linux-custom.inc: drop library dependencies from kernel headers

 meta/recipes-kernel/linux/files/debian/control.tmpl | 6 +++---
 meta/recipes-kernel/linux/linux-custom.inc          | 7 +------
 2 files changed, 4 insertions(+), 9 deletions(-)

-- 
2.50.1

-- 
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 visit https://groups.google.com/d/msgid/isar-users/20250901122917.2500422-1-Quirin.Gylstorff%40siemens.com.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v2 1/2] linux-custom/d/control.tmpl: correct typo
  2025-09-01 12:28 [PATCH v2 0/2] Correct linux-custom dependencies 'Quirin Gylstorff' via isar-users
@ 2025-09-01 12:28 ` 'Quirin Gylstorff' via isar-users
  2025-09-01 12:28 ` [PATCH v2 2/2] linux-custom.inc: drop library dependencies from kernel headers 'Quirin Gylstorff' via isar-users
  1 sibling, 0 replies; 3+ messages in thread
From: 'Quirin Gylstorff' via isar-users @ 2025-09-01 12:28 UTC (permalink / raw)
  To: isar-users, srinuvasan.a

From: Quirin Gylstorff <quirin.gylstorff@siemens.com>

The debian macro is ${shlibs:Depends} to generate the shared library
dependencies

Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
---
 meta/recipes-kernel/linux/files/debian/control.tmpl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-kernel/linux/files/debian/control.tmpl b/meta/recipes-kernel/linux/files/debian/control.tmpl
index a79b86c4..112ff9bf 100644
--- a/meta/recipes-kernel/linux/files/debian/control.tmpl
+++ b/meta/recipes-kernel/linux/files/debian/control.tmpl
@@ -16,7 +16,7 @@ Description: ${KERNEL_NAME_PROVIDED} Linux kernel, version @KR@
 Package: linux-headers-${KERNEL_NAME_PROVIDED}
 Build-Profiles: <kernel>
 Architecture: any
-Depends: ${KERNEL_HEADERS_DEBIAN_DEPENDS}, ${perl:Depends}, ${shlib:Depends}
+Depends: ${KERNEL_HEADERS_DEBIAN_DEPENDS}, ${perl:Depends}, ${shlibs:Depends}
 Description: ${KERNEL_NAME_PROVIDED} Linux kernel headers for @KR@
  This package provides kernel header files for @KR@ on ${DISTRO_ARCH}
  .
@@ -57,7 +57,7 @@ Description: Linux kernel debugging symbols for @KR@
 Package: linux-kbuild-${KERNEL_NAME_PROVIDED}
 Build-Profiles: <kbuild !cross>
 Architecture: any
-Depends: ${perl:Depends}, ${shlib:Depends}
+Depends: ${perl:Depends}, ${shlibs:Depends}
 Description: ${KERNEL_NAME_PROVIDED} Linux kbuild scripts and tools for @KR@
  This package provides kernel kbuild scripts and tools for @KR@
  This is useful for people who need to build external modules
@@ -66,7 +66,7 @@ Package: linux-kbuild-${KERNEL_NAME_PROVIDED}-${DISTRO_ARCH}-cross
 Build-Profiles: <kbuild cross>
 Architecture: any
 Multi-Arch: foreign
-Depends: ${perl:Depends}, ${shlib:Depends}
+Depends: ${perl:Depends}, ${shlibs:Depends}
 Conflicts: linux-kbuild-${KERNEL_NAME_PROVIDED}
 Description: ${KERNEL_NAME_PROVIDED} Linux kbuild scripts and tools for @KR@
  This package provides kernel kbuild scripts and tools for @KR@
-- 
2.50.1

-- 
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 visit https://groups.google.com/d/msgid/isar-users/20250901122917.2500422-2-Quirin.Gylstorff%40siemens.com.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v2 2/2] linux-custom.inc: drop library dependencies from kernel headers
  2025-09-01 12:28 [PATCH v2 0/2] Correct linux-custom dependencies 'Quirin Gylstorff' via isar-users
  2025-09-01 12:28 ` [PATCH v2 1/2] linux-custom/d/control.tmpl: correct typo 'Quirin Gylstorff' via isar-users
@ 2025-09-01 12:28 ` 'Quirin Gylstorff' via isar-users
  1 sibling, 0 replies; 3+ messages in thread
From: 'Quirin Gylstorff' via isar-users @ 2025-09-01 12:28 UTC (permalink / raw)
  To: isar-users, srinuvasan.a

From: Quirin Gylstorff <quirin.gylstorff@siemens.com>

The upstream headers do not have dependencies to the runtime libraries.
The ${shlibs:Depends} macro will correctly generate the necessary
dependencies.

libssl is only used in extract-cert which is necessary during the kerneln build
if CONFIG_SYSTEM_TRUSTED_KEYRING is enabled.
This config element is not necessary for the module build
and is therefore removed from the kbuild packages.

Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
---
 meta/recipes-kernel/linux/linux-custom.inc | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-custom.inc b/meta/recipes-kernel/linux/linux-custom.inc
index 01e9bff7..ca90c4e9 100644
--- a/meta/recipes-kernel/linux/linux-custom.inc
+++ b/meta/recipes-kernel/linux/linux-custom.inc
@@ -35,12 +35,7 @@ KERNEL_DEBIAN_DEPENDS ?= "initramfs-tools | linux-initramfs-tool, \
                           kmod, \
                           linux-base (>= 4.3~),"
 
-LIBSSL_DEP = "libssl3"
-LIBSSL_DEP:buster = "libssl1.1"
-LIBSSL_DEP:bullseye = "libssl1.1"
-
-KERNEL_HEADERS_DEBIAN_DEPENDS ?= "libc6, \
-                                  ${LIBSSL_DEP},"
+KERNEL_HEADERS_DEBIAN_DEPENDS ?= ""
 
 KERNEL_LIBC_DEV_ARCH_ALL = "0"
 KERNEL_LIBC_DEV_ARCH_ALL:trixie = "1"
-- 
2.50.1

-- 
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 visit https://groups.google.com/d/msgid/isar-users/20250901122917.2500422-3-Quirin.Gylstorff%40siemens.com.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-09-01 12:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-09-01 12:28 [PATCH v2 0/2] Correct linux-custom dependencies 'Quirin Gylstorff' via isar-users
2025-09-01 12:28 ` [PATCH v2 1/2] linux-custom/d/control.tmpl: correct typo 'Quirin Gylstorff' via isar-users
2025-09-01 12:28 ` [PATCH v2 2/2] linux-custom.inc: drop library dependencies from kernel headers 'Quirin Gylstorff' via isar-users

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox