@@ -514,6 +514,7 @@ Currently, the following image types are provided:
- `ubi` - image for use on mtd nand partitions employing UBI
- `ubifs` - raw UBI filesystem image, normally used together with UBI partitions
- `ova` - Open Virtual Appliance: image for use on VirtualBox or VMware
+ - `wsl` - tar file for Windows Subsystem for Linux
- `squashfs` - raw squashfs filesystem image
- `fit` - FIT image as used by U-Boot
- `oci-archive`, `docker-archive`, `docker-daemon`, `containers-storage` - see [generating container images](#generate-container-image-with-root-filesystem)
@@ -253,6 +253,13 @@ config MACHINE_HYPER_V
select CODENAME_TRIXIE
select ARCH_AMD64
+config MACHINE_WSL
+ bool "wsl"
+ select DISTRO_DEBIAN
+ select CODENAME_BOOKWORM
+ select CODENAME_TRIXIE
+ select ARCH_AMD64
+
config MACHINE_X86_PC
bool "x86 PC"
select DISTRO_DEBIAN
@@ -297,6 +304,7 @@ config KAS_INCLUDE_MACHINE
default "kas/machine/virtualbox.yaml" if MACHINE_VIRTUALBOX
default "kas/machine/vmware.yaml" if MACHINE_VMWARE
default "kas/machine/hyper-v-amd64.yaml" if MACHINE_HYPER_V
+ default "kas/machine/wsl.yaml" if MACHINE_WSL
default "kas/machine/x86-pc.yaml" if MACHINE_X86_PC
endmenu
new file mode 100644
@@ -0,0 +1,7 @@
+# This software is a part of Isar.
+# Copyright (c) Siemens AG, 2026
+
+header:
+ version: 14
+
+machine: wsl
@@ -155,8 +155,9 @@ CONF_VERSION = "1"
IMAGE_INSTALL = "hello-isar example-raw example-module-${KERNEL_NAME} enable-fsck isar-exclude-docs samefile hello isar-disable-apt-cache cowsay example-prebuilt"
#
-# Container machines don't need example module and enable-fsck.
+# Container and WSL machines don't need example module and enable-fsck.
IMAGE_INSTALL:remove:container-amd64 = "example-module-${KERNEL_NAME} enable-fsck"
+IMAGE_INSTALL:remove:wsl = "example-module-${KERNEL_NAME} enable-fsck"
#
# Machines with secure boot should use signed modules.
new file mode 100644
@@ -0,0 +1,13 @@
+# This software is a part of Isar.
+# Copyright (C) Siemens AG, 2026
+#
+# SPDX-License-Identifier: MIT
+
+DISTRO_ARCH ?= "amd64"
+
+IMAGE_FSTYPES ?= "wsl"
+
+# Configure rootfs for WSL boot
+IMAGE_INSTALL:append = " wsl-config"
+# Enable systemd-user session model
+IMAGE_PREINSTALL:append = " dbus dbus-user-session"
@@ -89,4 +89,6 @@ BBMULTICONFIG = " \
qemuamd64-sid \
qemuarm64-sid \
qemuriscv64-resolute \
+ wsl-bookworm \
+ wsl-trixie \
"
new file mode 100644
@@ -0,0 +1,7 @@
+# This software is a part of Isar.
+# Copyright (C) Siemens AG, 2026
+#
+# SPDX-License-Identifier: MIT
+
+MACHINE ?= "wsl"
+DISTRO ?= "debian-bookworm"
new file mode 100644
@@ -0,0 +1,7 @@
+# This software is a part of Isar.
+# Copyright (C) Siemens AG, 2026
+#
+# SPDX-License-Identifier: MIT
+
+MACHINE ?= "wsl"
+DISTRO ?= "debian-trixie"
@@ -174,7 +174,7 @@ IMAGE_BASETYPES = "${@get_image_basetypes(d)}"
# image types
IMAGE_CLASSES ??= ""
-IMGCLASSES = "imagetypes imagetypes_wic imagetypes_vm imagetypes_container squashfs \
+IMGCLASSES = "imagetypes imagetypes_wic imagetypes_vm imagetypes_wsl imagetypes_container squashfs \
imagetypes_ddi"
IMGCLASSES += "${IMAGE_CLASSES}"
inherit ${IMGCLASSES}
new file mode 100644
@@ -0,0 +1,13 @@
+# This software is a part of Isar.
+# Copyright (C) Siemens AG, 2026
+#
+# SPDX-License-Identifier: MIT
+
+# This class allows to generate WSL import artifacts.
+#
+
+IMAGE_TYPEDEP:wsl = "tar"
+
+IMAGE_CMD:wsl() {
+ gzip -f -9 -n -c "${DEPLOY_DIR_IMAGE}/${IMAGE_FULLNAME}.tar" > "${IMAGE_FILE_HOST}"
+}
new file mode 100644
@@ -0,0 +1,4 @@
+#! /usr/bin/bash
+
+# Generic OOBE hook for Isar-generated WSL images
+exit 0
new file mode 100644
@@ -0,0 +1,6 @@
+# See https://learn.microsoft.com/en-us/windows/wsl/build-custom-distro#add-the-wsl-distribution-configuration-file
+
+[oobe]
+command = /usr/libexec/wsl/oobe.sh
+defaultUid = ${WSL_DEFAULT_UID}
+defaultName = ${WSL_DEFAULT_NAME}
new file mode 100644
@@ -0,0 +1,5 @@
+[boot]
+systemd=true
+
+[user]
+default=${WSL_DEFAULT_USER}
new file mode 100644
@@ -0,0 +1,45 @@
+# This software is a part of Isar.
+# Copyright (C) Siemens AG, 2026
+#
+# SPDX-License-Identifier: MIT
+
+inherit dpkg-raw
+
+DESCRIPTION = "WSL configuration files"
+MAINTAINER = "isar-users <isar-users@googlegroups.com>"
+
+PROVIDES := "${BPN}"
+DEBIAN_PROVIDES := "${BPN}"
+PN .= "-${MACHINE}"
+
+WSL_DEFAULT_USER ?= "root"
+WSL_DEFAULT_UID ?= "0"
+WSL_DEFAULT_NAME ?= "${DISTRO}-${MACHINE}"
+
+SRC_URI = " \
+ file://oobe.sh \
+ file://wsl.conf.tmpl \
+ file://wsl-distribution.conf.tmpl \
+ "
+
+TEMPLATE_FILES = " \
+ wsl.conf.tmpl \
+ wsl-distribution.conf.tmpl \
+ "
+
+TEMPLATE_VARS += " \
+ WSL_DEFAULT_USER \
+ WSL_DEFAULT_UID \
+ WSL_DEFAULT_NAME \
+ "
+
+do_install[cleandirs] += " \
+ ${D}/etc \
+ ${D}/usr/libexec/wsl \
+ "
+
+do_install() {
+ install -m 0644 "${WORKDIR}/wsl.conf" "${D}/etc"
+ install -m 0644 "${WORKDIR}/wsl-distribution.conf" "${D}/etc"
+ install -m 0755 "${WORKDIR}/oobe.sh" "${D}/usr/libexec/wsl"
+}
@@ -1352,6 +1352,24 @@ class ContainerImageTest(CIBaseTest):
self.perform_build_test(targets, container=True)
+class WSLImageTest(CIBaseTest):
+
+ """
+ Test WSL images creation
+
+ :avocado: tags=wslbuild,full,wsl
+ """
+
+ def test_wsl_image(self):
+ targets = [
+ 'mc:wsl-bookworm:isar-image-base',
+ 'mc:wsl-trixie:isar-image-base',
+ ]
+
+ self.init()
+ self.perform_build_test(targets, image_install='')
+
+
class ContainerSdkTest(CIBaseTest):
"""
@@ -161,6 +161,10 @@ a: !mux
name: qemuarm64-sid
qemuriscv64-resolute:
name: qemuriscv64-resolute
+ wsl-bookworm:
+ name: wsl-bookworm
+ wsl-trixie:
+ name: wsl-trixie
b: !mux
base:
image: isar-image-base
This allows to generate a `.wsl` file for Windows Subsystem for Linux, based on the tar image type. WSL uses the Windows-provided kernel, so make sure that other layers like isar-cip-core do not set the KERNEL_NAME for this machine. The wsl-config recipe ships the configuration files /etc/wsl.conf and /etc/wsl-distribution.conf as templates. See https://learn.microsoft.com/en-us/windows/wsl/build-custom-distro#create-wsl-configuration-files The variables in the configuration files can be overwritten in downstream layers: - WSL_DEFAULT_USER specifies which user runs when the WSL distro is launched. Default: "root" - WSL_DEFAULT_UID specifies the default UID used during first-run/OOBE installation. Default: "0" - WSL_DEFAULT_NAME specifies the name that the distro is registered under. Default: "${DISTRO}-${MACHINE}" Whole configuration files can be replaced or added by bbappending the wsl-config recipe. This was tested with WSL2, in plain Isar and in downstream layer. Signed-off-by: Clara Kowalsky <clara.kowalsky@siemens.com> --- doc/user_manual.md | 1 + kas/machine/Kconfig | 8 ++++ kas/machine/wsl.yaml | 7 +++ meta-isar/conf/local.conf.sample | 3 +- meta-isar/conf/machine/wsl.conf | 13 ++++++ meta-isar/conf/mc.conf | 2 + meta-isar/conf/multiconfig/wsl-bookworm.conf | 7 +++ meta-isar/conf/multiconfig/wsl-trixie.conf | 7 +++ meta/classes-recipe/image.bbclass | 2 +- meta/classes-recipe/imagetypes_wsl.bbclass | 13 ++++++ meta/recipes-support/wsl-config/files/oobe.sh | 4 ++ .../files/wsl-distribution.conf.tmpl | 6 +++ .../wsl-config/files/wsl.conf.tmpl | 5 +++ .../wsl-config/wsl-config_0.1.bb | 45 +++++++++++++++++++ testsuite/citest.py | 18 ++++++++ testsuite/data/targets.yml | 4 ++ 16 files changed, 143 insertions(+), 2 deletions(-) create mode 100644 kas/machine/wsl.yaml create mode 100644 meta-isar/conf/machine/wsl.conf create mode 100644 meta-isar/conf/multiconfig/wsl-bookworm.conf create mode 100644 meta-isar/conf/multiconfig/wsl-trixie.conf create mode 100644 meta/classes-recipe/imagetypes_wsl.bbclass create mode 100644 meta/recipes-support/wsl-config/files/oobe.sh create mode 100644 meta/recipes-support/wsl-config/files/wsl-distribution.conf.tmpl create mode 100644 meta/recipes-support/wsl-config/files/wsl.conf.tmpl create mode 100644 meta/recipes-support/wsl-config/wsl-config_0.1.bb