* [PATCH v2 1/4] kernel: drop implicit build dependency to build-essential
2026-08-03 8:34 [PATCH v2 0/4] Fix kernel build and propagation of linux-libc-dev 'Felix Moessbauer' via isar-users
@ 2026-08-03 8:34 ` 'Felix Moessbauer' via isar-users
2026-08-03 8:34 ` [PATCH v2 2/4] fix(kernel): restore building of linux-libc-dev 'Felix Moessbauer' via isar-users
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: 'Felix Moessbauer' via isar-users @ 2026-08-03 8:34 UTC (permalink / raw)
To: isar-users; +Cc: jan.kiszka, stefan-koch, Felix Moessbauer
This dependency in general should not be explicitly added, as stated in
Debian policy §7.7. By not adding it, we avoid unnecessary dependencies
across cross and native builds by just letting the chroot provide the
right one.
Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
meta/classes-recipe/linux-kernel.bbclass | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/meta/classes-recipe/linux-kernel.bbclass b/meta/classes-recipe/linux-kernel.bbclass
index 09323e57..ff8b1e61 100644
--- a/meta/classes-recipe/linux-kernel.bbclass
+++ b/meta/classes-recipe/linux-kernel.bbclass
@@ -17,8 +17,7 @@ DISTRIBUTOR ?= "Isar"
# pinned due to known or possible issues with compat 12
DEBIAN_COMPAT:buster = "10"
-KBUILD_DEPENDS ?= "build-essential:native, \
- libelf-dev:native, \
+KBUILD_DEPENDS ?= "libelf-dev:native, \
libncurses-dev:native, \
libssl-dev:native, \
bc, \
--
2.53.0
--
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/20260803083450.2048909-2-felix.moessbauer%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH v2 2/4] fix(kernel): restore building of linux-libc-dev
2026-08-03 8:34 [PATCH v2 0/4] Fix kernel build and propagation of linux-libc-dev 'Felix Moessbauer' via isar-users
2026-08-03 8:34 ` [PATCH v2 1/4] kernel: drop implicit build dependency to build-essential 'Felix Moessbauer' via isar-users
@ 2026-08-03 8:34 ` 'Felix Moessbauer' via isar-users
2026-08-03 8:34 ` [PATCH v2 3/4] testsuite: emit output filenames in generate_dependency_graph 'Felix Moessbauer' via isar-users
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: 'Felix Moessbauer' via isar-users @ 2026-08-03 8:34 UTC (permalink / raw)
To: isar-users; +Cc: jan.kiszka, stefan-koch, Felix Moessbauer
In 327fb313, the building of arch=all packages was disabled when cross
compiling. This was needed because Debian in general does not allow to
cross compile arch=all packages. Further, this solved the issue that
these packages were build twice.
However, this change also resulted in not building the linux-libc-dev at
all, as it previously was built from the cross target. We fix this by
properly modelling the dependency chain - depending on if the
linux-libc-dev package is arch=all or not: If it is not arch=all, it is
just built in the kernel cross compile. If it is arch=all, it is
dispatched to the new -libctarget variant that just builds this library
in native mode (without building the kernel).
Fixes: 327fb313 ("sbuild: do not build arch all packages on cross")
Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
meta/classes-recipe/libctarget.bbclass | 13 ++++++
meta/classes-recipe/linux-kernel.bbclass | 44 +++++++++++++++++--
.../linux/files/debian/control.tmpl | 4 +-
.../linux/files/debian/isar/common.tmpl | 6 ++-
.../linux/files/debian/isar/install.tmpl | 9 ++++
5 files changed, 69 insertions(+), 7 deletions(-)
create mode 100644 meta/classes-recipe/libctarget.bbclass
diff --git a/meta/classes-recipe/libctarget.bbclass b/meta/classes-recipe/libctarget.bbclass
new file mode 100644
index 00000000..b60face8
--- /dev/null
+++ b/meta/classes-recipe/libctarget.bbclass
@@ -0,0 +1,13 @@
+# This software is a part of Isar.
+# Copyright (C) 2026 Siemens AG
+#
+# SPDX-License-Identifier: MIT
+
+python libctarget_virtclass_handler() {
+ pn = e.data.getVar('PN')
+ if pn.endswith('-libctarget'):
+ e.data.setVar('BPN', pn[:-len('-libctarget')])
+ e.data.appendVar('OVERRIDES', ':class-libctarget')
+}
+addhandler libctarget_virtclass_handler
+libctarget_virtclass_handler[eventmask] = "bb.event.RecipePreFinalise"
diff --git a/meta/classes-recipe/linux-kernel.bbclass b/meta/classes-recipe/linux-kernel.bbclass
index ff8b1e61..ac587b17 100644
--- a/meta/classes-recipe/linux-kernel.bbclass
+++ b/meta/classes-recipe/linux-kernel.bbclass
@@ -100,6 +100,7 @@ TEMPLATE_VARS += " \
inherit dpkg
inherit kbuildtarget
+inherit libctarget
# Add custom cflags to the kernel build
KCFLAGS ?= "-fdebug-prefix-map=${CURDIR}=."
@@ -127,6 +128,14 @@ BUILD_PROFILES = "pkg.${BPN}.kernel pkg.${BPN}.kbuild"
# We only offer the -kbuildtarget variant when actually cross compiling
BBCLASSEXTEND:append:cross-profile = " kbuildtarget"
+# The arch=all linux-libc-dev packages cannot be built in the cross variant of
+# the base recipe: sbuild is invoked with --no-arch-all there, so no arch=all
+# binary packages are produced. In that situation, build them via a dedicated,
+# native -libctarget variant. This condition is true only when libc-dev deployment
+# is requested and the resulting package is arch=all.
+KERNEL_LIBC_DEV_NEEDS_LIBC_VARIANT = "${@ '1' if bb.utils.to_boolean(d.getVar('KERNEL_LIBC_DEV_DEPLOY')) and bb.utils.to_boolean(d.getVar('KERNEL_LIBC_DEV_ARCH_ALL')) else '0'}"
+BBCLASSEXTEND:append:cross-profile = "${@ ' libctarget' if bb.utils.to_boolean(d.getVar('KERNEL_LIBC_DEV_NEEDS_LIBC_VARIANT')) else ''}"
+
# When cross-profile is active:
# Build kernel (including config) cross packages (linux-libc-dev-*-cross)
# with the default variant of the recipe
@@ -155,8 +164,29 @@ RECIPE_PROVIDES:remove:class-kbuildtarget = " \
# Using DEPENDS instead of RDEPENDS to ensure creation of kernel including
# pregenerated kernel config before target specific linux-kbuild package build
DEPENDS:class-kbuildtarget = "${BPN}"
+# PACKAGE_ARCH stays at DISTRO_ARCH here, so this flag lets crossvars.bbclass
+# pick the target chroot: the kbuild scripts/tools shipped by this variant
+# must be target binaries. (The host binaries go into the separate
+# linux-kbuild-*-<arch>-cross package built under pkg.${BPN}.cross.)
ISAR_CROSS_COMPILE:class-kbuildtarget = "0"
+# The -libctarget variant builds only the (arch=all) linux-libc-dev packages.
+# As these are arch=all packages, they are built natively for the host architecture
+# (like -native). Setting PACKAGE_ARCH to HOST_ARCH makes crossvars.bbclass select
+# the host chroot and a native (non-cross) build, so sbuild is invoked with
+# --arch-all and produces the arch=all packages. The base cross recipe depends on it
+# (see below) to get the packages built.
+BUILD_PROFILES:class-libctarget = "pkg.${BPN}.libc"
+RECIPE_PROVIDES:class-libctarget = " \
+ linux-libc-dev \
+ linux-libc-dev-${DISTRO_ARCH}-cross"
+PACKAGE_ARCH:class-libctarget = "${HOST_ARCH}"
+# Unlike -kbuildtarget above, this flag does not select the chroot here:
+# It is only needed to keep the cross-profile override off this variant, which
+# would otherwise clobber BUILD_PROFILES and apply the base recipe's
+# "DEPENDS += ${BPN}-libctarget" to -libctarget itself, creating a dependency loop.
+ISAR_CROSS_COMPILE:class-libctarget = "0"
+
# Make bitbake know we will be producing linux-image and linux-headers packages
# Also make it know about other packages from control
RECIPE_PROVIDES = " \
@@ -170,10 +200,12 @@ RECIPE_PROVIDES = " \
# Provide linux-libc-dev packages unless nolibcdev profile used
OVERRIDES:append = ":${@ bb.utils.contains('DEB_BUILD_PROFILES', 'pkg.{}.nolibcdev'.format(d.getVar('BPN')), '', 'libcdev', d)}"
-RECIPE_PROVIDES:append:libcdev = " \
- linux-libc-dev"
-RECIPE_PROVIDES:append:libcdev:cross-profile = " \
- linux-libc-dev-${DISTRO_ARCH}-cross"
+# The base recipe provides the linux-libc-dev packages, except when they are
+# arch=all and we are cross building: in that case they are built and provided
+# by the dedicated -libctarget variant instead (see class-libctarget above), so
+# the base recipe must not advertise them (it cannot build them here).
+RECIPE_PROVIDES:append:libcdev = "${@ '' if bb.utils.to_boolean(d.getVar('KERNEL_LIBC_DEV_NEEDS_LIBC_VARIANT')) else ' linux-libc-dev'}"
+RECIPE_PROVIDES:append:libcdev:cross-profile = "${@ '' if bb.utils.to_boolean(d.getVar('KERNEL_LIBC_DEV_NEEDS_LIBC_VARIANT')) else ' linux-libc-dev-${DISTRO_ARCH}-cross'}"
# When cross-profile is active:
# kbuild package is provided by -native or -kbuildtarget variant. Also headers
@@ -183,6 +215,10 @@ RECIPE_PROVIDES:remove:cross-profile = " \
linux-headers-${KERNEL_NAME_PROVIDED} \
linux-kbuild-${KERNEL_NAME_PROVIDED}"
+# The arch=all linux-libc-dev packages are built by the -libctarget variant.
+# Depend on it from the base cross recipe (linux-image-<arch>) so it is built.
+DEPENDS:append:cross-profile = "${@ ' ${BPN}-libctarget' if bb.utils.to_boolean(d.getVar('KERNEL_LIBC_DEV_NEEDS_LIBC_VARIANT')) else ''}"
+
# As the multiarch class will not append -compat to -pseudo-native, we end up
# with two providers of it. Remove the wrong one.
RECIPE_PROVIDES:remove:class-compat = "${BPN}-pseudo-native"
diff --git a/meta/recipes-kernel/linux/files/debian/control.tmpl b/meta/recipes-kernel/linux/files/debian/control.tmpl
index ee87cf92..77c4048b 100644
--- a/meta/recipes-kernel/linux/files/debian/control.tmpl
+++ b/meta/recipes-kernel/linux/files/debian/control.tmpl
@@ -24,7 +24,7 @@ Description: ${KERNEL_NAME_PROVIDED} Linux kernel headers for @KR@
This is useful for people who need to build external modules
Package: linux-libc-dev
-Build-Profiles: <!pkg.${BPN}.nolibcdev pkg.${BPN}.kernel>
+Build-Profiles: <!pkg.${BPN}.nolibcdev pkg.${BPN}.kernel> <!pkg.${BPN}.nolibcdev pkg.${BPN}.libc>
Section: devel
Provides: linux-kernel-headers
Architecture: ${KERNEL_LIBC_DEV_ARCH}
@@ -33,7 +33,7 @@ Description: Linux support headers for userspace development
are used by the installed headers for GNU glibc and other system libraries.
Package: linux-libc-dev-${DISTRO_ARCH}-cross
-Build-Profiles: <!pkg.${BPN}.nolibcdev pkg.${BPN}.cross !pkg.${BPN}.kbuild>
+Build-Profiles: <!pkg.${BPN}.nolibcdev pkg.${BPN}.cross !pkg.${BPN}.kbuild> <!pkg.${BPN}.nolibcdev pkg.${BPN}.libc>
Section: devel
Provides: linux-kernel-headers-${DISTRO_ARCH}-cross
Architecture: all
diff --git a/meta/recipes-kernel/linux/files/debian/isar/common.tmpl b/meta/recipes-kernel/linux/files/debian/isar/common.tmpl
index f9cc2f02..72d3e428 100644
--- a/meta/recipes-kernel/linux/files/debian/isar/common.tmpl
+++ b/meta/recipes-kernel/linux/files/debian/isar/common.tmpl
@@ -16,7 +16,11 @@ KERNEL_PKG_KERN_KBUILD_CROSS=${KERNEL_PKG_KERN_KBUILD}-${DISTRO_ARCH}-cross
# Force creating debian package with valid host arch for -native build
# Use a cross build to comply with arch specific kernel defconfigs
# The scripts and tools are always created for host arch
-if echo "${DEB_BUILD_PROFILES}" | grep -q -e "cross" -e "kbuild"
+# The -libctarget variant builds the arch=all linux-libc-dev natively on the
+# host, but still needs the target cross-compiler to configure/prepare the
+# target kernel tree for the header generation.
+if echo "${DEB_BUILD_PROFILES}" | grep -q -e "cross" -e "kbuild" || \
+ echo "${DEB_BUILD_PROFILES}" | grep -qw "pkg.${BPN}.libc"
then
CROSS_COMPILE=$(dpkg-architecture -f -A ${DISTRO_ARCH} -q DEB_TARGET_GNU_TYPE)-
fi
diff --git a/meta/recipes-kernel/linux/files/debian/isar/install.tmpl b/meta/recipes-kernel/linux/files/debian/isar/install.tmpl
index 6fa94508..4c28ecc6 100644
--- a/meta/recipes-kernel/linux/files/debian/isar/install.tmpl
+++ b/meta/recipes-kernel/linux/files/debian/isar/install.tmpl
@@ -52,6 +52,15 @@ do_install() {
fi
fi
+ # The dedicated -libctarget variant builds only the linux-libc-dev packages
+ # (pkg.${BPN}.libc profile), without the kernel or kbuild profiles. Handle it
+ # here, as the "kernel" branch below is not taken in that case. Match the
+ # exact profile token so that "libcdev-arch-all" and "nolibcdev" do not
+ # trigger this.
+ if echo "${DEB_BUILD_PROFILES}" | grep -qw "pkg.${BPN}.libc"; then
+ libc_headers
+ fi
+
if echo "${DEB_BUILD_PROFILES}" | grep -q "kernel"; then
if echo "${DEB_BUILD_PROFILES}" | grep -q "cross"; then
# Install cross kernel scripts and tools
--
2.53.0
--
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/20260803083450.2048909-3-felix.moessbauer%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH v2 3/4] testsuite: emit output filenames in generate_dependency_graph
2026-08-03 8:34 [PATCH v2 0/4] Fix kernel build and propagation of linux-libc-dev 'Felix Moessbauer' via isar-users
2026-08-03 8:34 ` [PATCH v2 1/4] kernel: drop implicit build dependency to build-essential 'Felix Moessbauer' via isar-users
2026-08-03 8:34 ` [PATCH v2 2/4] fix(kernel): restore building of linux-libc-dev 'Felix Moessbauer' via isar-users
@ 2026-08-03 8:34 ` 'Felix Moessbauer' via isar-users
2026-08-03 8:34 ` [PATCH v2 4/4] testsuite: add test for KERNEL_LIBC_DEV_DEPLOY 'Felix Moessbauer' via isar-users
2026-08-05 8:42 ` [PATCH v2 0/4] Fix kernel build and propagation of linux-libc-dev Zhihang Wei
4 siblings, 0 replies; 6+ messages in thread
From: 'Felix Moessbauer' via isar-users @ 2026-08-03 8:34 UTC (permalink / raw)
To: isar-users; +Cc: jan.kiszka, stefan-koch, Felix Moessbauer
Emit the filenames of the buildlist and dot output, so consumers can
directly use that for further analysis (instead of guessing the path).
For that, we also need to sanitize the filename to ensure it does not
contain a path seperator.
Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
testsuite/cibase.py | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/testsuite/cibase.py b/testsuite/cibase.py
index 52748004..033b3b19 100755
--- a/testsuite/cibase.py
+++ b/testsuite/cibase.py
@@ -29,7 +29,10 @@ class CIBaseTest(CIBuilder):
should_fail=False,
reconfigure=True,
**kwargs):
- """Debug helper to better understand test task graphs."""
+ """
+ Debug helper to better understand test task graphs.
+ Returns a path pair (buildlist, task-depends.dot)
+ """
if reconfigure:
self.configure(targets=targets, **kwargs)
@@ -37,8 +40,14 @@ class CIBaseTest(CIBuilder):
self.bitbake(targets, should_fail=should_fail,
bitbake_extra_args=["-g"], **kwargs)
- self.move_in_build_dir('task-depends.dot', f"task-depends-{self.name}.dot")
- self.move_in_build_dir('pn-buildlist', f"pn-buildlist-{self.name}")
+ # self.name may contain path separators and colons
+ name = re.sub(r'[^\w.-]', '_', str(self.name))
+ self.move_in_build_dir('task-depends.dot', f"task-depends-{name}.dot")
+ self.move_in_build_dir('pn-buildlist', f"pn-buildlist-{name}")
+ return (
+ f"{self.build_dir}/pn-buildlist-{name}",
+ f"{self.build_dir}/task-depends-{name}.dot"
+ )
def perform_wic_partition_test(self, targets, wic_deploy_parts, **kwargs):
self.configure(targets=targets, wic_deploy_parts=wic_deploy_parts, **kwargs)
--
2.53.0
--
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/20260803083450.2048909-4-felix.moessbauer%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH v2 4/4] testsuite: add test for KERNEL_LIBC_DEV_DEPLOY
2026-08-03 8:34 [PATCH v2 0/4] Fix kernel build and propagation of linux-libc-dev 'Felix Moessbauer' via isar-users
` (2 preceding siblings ...)
2026-08-03 8:34 ` [PATCH v2 3/4] testsuite: emit output filenames in generate_dependency_graph 'Felix Moessbauer' via isar-users
@ 2026-08-03 8:34 ` 'Felix Moessbauer' via isar-users
2026-08-05 8:42 ` [PATCH v2 0/4] Fix kernel build and propagation of linux-libc-dev Zhihang Wei
4 siblings, 0 replies; 6+ messages in thread
From: 'Felix Moessbauer' via isar-users @ 2026-08-03 8:34 UTC (permalink / raw)
To: isar-users; +Cc: jan.kiszka, stefan-koch, Felix Moessbauer
Enabling KERNEL_LIBC_DEV_DEPLOY=1 results in a complex dependency chain
that is built, also depending on the distro version. We add a fast
parser check to ensure the expected targets are attracted / built.
Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
testsuite/citest.py | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/testsuite/citest.py b/testsuite/citest.py
index 019bfb2c..2ba7962b 100644
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -633,6 +633,42 @@ class KernelTests(CIBaseTest):
self.init()
self.perform_build_test(targets, image_install=' '.join(modules), lines=lines)
+ def test_libc_dev_deploy(self):
+ """Test that the linux-libc-dev packages are deployed (parse only)."""
+ targets = [
+ 'mc:hikey-bookworm:isar-image-ci',
+ 'mc:hikey-trixie:isar-image-ci'
+ ]
+ lines = [
+ "KERNEL_LIBC_DEV_DEPLOY = '1'",
+ ]
+ self.init()
+ buildlist, _ = self.generate_dependency_graph(targets, lines=lines)
+
+ with open(buildlist, 'r') as f:
+ built = set(line.strip() for line in f if line.strip())
+
+ # trixie produces arch=all linux-libc-dev packages, which are built by
+ # the dedicated -libctarget variant.
+ self.assertIn(
+ 'mc:hikey-trixie:linux-mainline-libctarget', built,
+ "trixie: linux-mainline-libctarget (linux-libc-dev is not built)")
+
+ # bookworm produces an arch-specific linux-libc-dev, built by the base
+ # recipe itself; no -libctarget variant is needed.
+ self.assertIn(
+ 'mc:hikey-bookworm:linux-mainline', built,
+ "bookworm: linux-mainline (linux-libc-dev is not built)")
+ self.assertNotIn(
+ 'mc:hikey-bookworm:linux-mainline-libctarget', built,
+ "bookworm: unexpected -libctarget variant is built")
+
+ # The unrelated cip kernel must not be pulled in as libc-dev provider.
+ for target in built:
+ self.assertNotIn(
+ 'linux-cip', target,
+ f"unexpected linux-cip provider pulled in: {target}")
+
class InitRdBaseTest(CIBaseTest):
"""
--
2.53.0
--
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/20260803083450.2048909-5-felix.moessbauer%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH v2 0/4] Fix kernel build and propagation of linux-libc-dev
2026-08-03 8:34 [PATCH v2 0/4] Fix kernel build and propagation of linux-libc-dev 'Felix Moessbauer' via isar-users
` (3 preceding siblings ...)
2026-08-03 8:34 ` [PATCH v2 4/4] testsuite: add test for KERNEL_LIBC_DEV_DEPLOY 'Felix Moessbauer' via isar-users
@ 2026-08-05 8:42 ` Zhihang Wei
4 siblings, 0 replies; 6+ messages in thread
From: Zhihang Wei @ 2026-08-05 8:42 UTC (permalink / raw)
To: Felix Moessbauer, isar-users; +Cc: jan.kiszka, stefan-koch
Applied to next, thanks.
Zhihang
On 8/3/26 10:34, 'Felix Moessbauer' via isar-users wrote:
> This series fixes the kernel build and the propagation of linux-libc-dev,
> which is enabled by setting KERNEL_LIBC_DEV_DEPLOY = "1".
>
> To ensure this does not silently break in the future, we add a test.
> As testing the actual build of the kernel is too expensive, we only test
> the propagation of the dependency via a parser test.
>
> Changes since v1:
>
> - p2: rework comments to better explain why some targets disable cross compile
> - p4: rework testcase by moving logic from cibase.py to citest.py
> - No functional changes compared to v1
>
> Best regards,
> Felix Moessbauer
> Siemens AG
>
> Felix Moessbauer (4):
> kernel: drop implicit build dependency to build-essential
> fix(kernel): restore building of linux-libc-dev
> testsuite: emit output filenames in generate_dependency_graph
> testsuite: add test for KERNEL_LIBC_DEV_DEPLOY
>
> meta/classes-recipe/libctarget.bbclass | 13 +++++
> meta/classes-recipe/linux-kernel.bbclass | 47 ++++++++++++++++---
> .../linux/files/debian/control.tmpl | 4 +-
> .../linux/files/debian/isar/common.tmpl | 6 ++-
> .../linux/files/debian/isar/install.tmpl | 9 ++++
> testsuite/cibase.py | 15 ++++--
> testsuite/citest.py | 36 ++++++++++++++
> 7 files changed, 118 insertions(+), 12 deletions(-)
> create mode 100644 meta/classes-recipe/libctarget.bbclass
>
--
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/53ac0299-ea0a-4260-b6bf-276ba3ff8991%40ilbers.de.
^ permalink raw reply [flat|nested] 6+ messages in thread