Release Notes: Image Composer Tool#
Version 2026.1#
June 17, 2026
New
Overlay user provisioning with a baseline-conflict guard: Overlay builds now honor
systemConfig.users, provisioning each account onto the baseline using the same implementation as create mode (useradd, password/hashing, groups, sudo, startup script). A requested user that already exists in the baseline image fails the build up front — before any resize or package install mutates the baseline — because an overlay cannot redefine a baseline account. A user’sstartupScriptmust reference a path present when users are created (shipped by the baseline or installed by an overlaypackagesentry), not one delivered viaadditionalFiles, which are copied later in the overlay pipeline.systemConfig.usersis therefore no longer rejected as an unsupported overlay section.Robotics image composed from Canonical’s cloud image via overlay + extends: two new templates show the composition features used together instead of building an OS from scratch.
image-templates/ubuntu24/ubuntu24-x86_64-robotics-hw-overlay-qcow2.ymlis an overlay base: it layers the Intel hardware-enablement stack (oneAPI runtime, Level Zero, NPU drivers, RealSense DKMS) onto Canonical’s official noble server cloud image and emits a qcow2, leaving the vendor image unmodified.ubuntu24-x86_64-robotics-jazzy-overlay-extends.ymlextends that base to add the ROS 2 Jazzy stack (ros-jazzy-desktop, OpenVINO nodes, Gazebo Harmonic, collaborative SLAM). The child declares nobaseline,overlayPolicy,packageRepositoriesordisk— inheriting them is what keeps its packages additive to the base rather than replacing them, and keeps the base’s seven package repositories (three sharing the codenamenoble) in a single layer.ubuntu24-x86_64-robotics-jazzy-raw.yml, which builds the equivalent image entirely from scratch, is retained for comparison. The overlay base is build- and boot-verified on Ubuntu 24.04: it emits a 1.67 GB qcow2, grows the baseline from 3.5 GB to 24 GiB, and boots under QEMU/OVMF with KVM to a login prompt on the cloud image’s own kernel (6.8.0-136-generic) with 29 targets reached and no failed units; mounting the artifact confirms the overlaid packages, apt pins, udev rule and SBOM. Two caveats: the resize path needs a build host with util-linux >= 2.38 (Ubuntu 24.04+, as the README already recommends), because it reads partition start sectors vialsblk -o PATH,START,TYPE; and the ROS 2 child currently clears preflight but cannot finish installing, because the overlay installer passes all 2004 artifact paths in onedpkg -icommand and the ~141932-byte command string exceeds the 131072-byte per-argument limit — batching that list is a separate fix.Web UI Basic tab shows the full supported matrix with unavailable combinations grayed out: The Basic tab now lists every planned vertical/SKU/platform/OS selection, including combinations whose template is not yet authored. Not-ready options appear disabled (“coming soon”) in the cascading dropdowns and cannot be selected or built. Availability is driven by the manifest — a combination entry with an empty
templateis treated as planned-but-unavailable.Graceful cancellation on Ctrl+C / SIGTERM: interrupting a build (SIGINT or SIGTERM) now triggers cooperative cleanup before the tool exits. Chroot bind mounts (
/proc,/sys,/dev/{pts,shm},/run, and the cache-repo bind) are torn down in reverse order, loop devices attached to files under the work directory are detached, and every spawned child process (bash, sudo, mmdebstrap, apt, mksquashfs, losetup, mkfs.*, xorriso, dracut, ukify, sbsign, qemu-img, …) runs in its own process group so a single kill reaches the whole subtree. In-flight HTTPS downloads of DEB/RPM packages and repository metadata (Go-levelnet/httprequests) also observe the same cancellation context, so a signal during the download stage aborts within one retry-backoff quantum instead of running to completion. The tool exits with the conventional exit code130after user-initiated cancellation. A second signal during cleanup is a hard exit (also130) so a wedged umount cannot pin the process forever. Internal deadlines (such as the 2-minute PostProcess cleanup budget) that exceed their limit surface as exit1— distinguishable from a user-initiated signal — so operators can tell “aborted by me” from “cleanup timed out”. Any residual mount/loop that could not be reaped is logged with detail so the operator knows exactly what to clean up manually. No user-visible flag changes; the behavior is on by default.Overlay
additionalFilessupport: Overlay builds now honorsystemConfig.additionalFiles, copying each host file into the baseline root at itsfinalpath (mirroring create-mode behavior for the Ubuntu and Debian overlay providers). The copy runs as the last build step — after both initramfs and GRUB regeneration — so a prebuilt boot artifact such as a custom/boot/initrd.img-*lands after regeneration instead of being overwritten byupdate-initramfs. Files that must instead be consumed by regeneration (for example initramfs-tools hooks under/etc/initramfs-tools/) still belong in asystemConfig.configurationscommand that runs the generator, which executes earlier in the pipeline. Unlike create mode, overlay does not auto-inject apt source/preferences/GPG files intoadditionalFiles(overlay installs from prepared artifacts, not live apt repositories), so only user-authored entries are copied.Overlay kernel command line & GRUB2 regeneration: Overlay builds on a GRUB2 baseline now apply
overlayPolicy.kernelCmdline(a full-line replacement ofGRUB_CMDLINE_LINUXin/etc/default/grub) and the optionaloverlayPolicy.grubDefault(a full-line replacement ofGRUB_DEFAULT, to pin the default boot menu entry — e.g. an Ubuntu submenu path for an overlay-added flavored kernel), then regenerate the GRUB configuration with the baseline’s native tool (update-grub/grub-mkconfig) after the initramfs is rebuilt. A kernel added by the overlay gets a boot menu entry automatically. The bootloader binary and the read-only ESP are never modified (grub-installis never run); regeneration failures fail the build so no image is emitted; a best-effort warning is logged when a Secure Boot baseline has no signing material. Bootloader- and kernel-image replacement remain blocked by overlay preflight.Overlay package removal & SBOM sidecars: Overlay builds gain two hardening features.
overlayPolicy.allowPackageRemoval(default off, and only valid withpackageOperation: additive-and-upgrade) permits removing a baseline package that an added package conflicts with (for example removinginitramfs-toolssodracutcan install); bootloader and bootable-kernel packages are never removed, removals are shown in the OVERLAY PACKAGE STATISTICS summary, and a removal that leaves an unrelated baseline package with an unmet dependency fails the build. Overlay builds also emit SPDX SBOM sidecars next to the image: a delta SBOM (<image>-<version>.delta.spdx.json, always written) listing the overlay-contributed packages, and — when a base SBOM is available (an inherited/usr/share/sbominventory or an externalbaseline.source.sbomPath) — a complete SBOM (<image>-<version>.complete.spdx.json) with the full baseline+overlay inventory. The initramfs generator is selected by what the baseline actually ships (dracut vs update-initramfs) rather than by package-manager family. UnsupportedsystemConfigsections in an overlay template (hostname,network,initramfs,kernel,immutability,fde,bootloader) now fail the build up front instead of being silently ignored, and overlay builds no longer inherit the create-mode OS default configuration (disk size/partitions, bootloader, kernel, and base packages come from the baseline image).Overlay
additionalFiles.stagemarker & inspection CLI change: A new per-fileadditionalFiles.stagefield controls WHEN an overlay copies a file relative to boot/initramfs regeneration. The default (stage: "", or omitted) keeps the historical behavior — the file is copied at the end of the build, after regeneration. Setstage: pre-initramfsto copy the file BEFORE initramfs/boot regeneration so the generator can consume it (e.g. a dracut module or an initramfs-tools hook that must be baked into the initramfs). The marker is overlay-only; create-mode builds ignore it. Separately, the overlay--inspectflag now defaults off (it previously defaulted on): when set, the post-build inspection report is written to a<image>-<version>.inspect.txtsidecar in the build artifacts directory instead of the console, and when unset nothing is written. The now-redundant--no-inspectflag has been removed — inspection is off by default, so scripts that passed--no-inspectto disable it should simply drop the flag.Build from scratch with
--no-cache: Thebuildcommand now accepts a--no-cacheflag that runs the build in fresh, unique cache and workspace directories (ignoring any existing caches) and removes them once the build finishes. The final image is copied into the configuredwork_dirbeforehand.--no-cachecannot be combined with--cache-diror--work-dir.Template
extendsinheritance: User templates now accept an optionalextends:field pointing at a parent template. The parent is resolved relative to the child’s directory, and the chain (root → intermediate levels → leaf, up to 4 recommended levels) is folded together before OS defaults are applied — using the same per-section merge rules the two-layer user↔default merge already uses (packages additive+deduped, users merged byname,additionalFilesmerged byfinalpath,diskreplaced wholesale,kernel/bootloader/networkper-field, and so on). Cycle detection, target-match enforcement, path-containment guards, and symlink rejection all apply, and the resolved chain is logged at info level during builds. Useimage-composer-tool resolve TEMPLATE.ymlto inspect the chain-merged result before building. See Template Extends (Inheritance) for the full reference.resolvesubcommand for template debugging: A newimage-composer-tool resolve <template.yml>command prints the merged image template as YAML to stdout, so contributors can see exactly what the tool sees before running a build. By default the extends chain is folded without OS defaults; passing--fulladditionally merges the OS defaults, producing the exact template that would be built. Sensitive fields (user passwords, hash algorithms, and secure boot key/cert/cer paths) are always redacted in the output, and the merged view is computed on demand and never cached.ARM64/aarch64 cross-architecture image builds: Ubuntu 24, eLxR 12, and AZL3 images can now be composed on an x86_64 host targeting ARM64. The builder validates host-side prerequisites (arch-test, qemu-user-static), normalizes architectures for
mmdebstrapanddpkg, and forces a host-side ukify execution when the host and target architectures differ.Ubuntu 24 ARM64 bootable server image: Added a user template and supporting configuration to produce a bootable Ubuntu 24
aarch64server image.Ubuntu 26.04 LTS (Resolute Raccoon) support: New OS target and associated configuration for Ubuntu 26.04.
eLxR Edge 26.04 / eLxR 13 support: New OS provider, image configuration, and user templates for eLxR 13 (elxr-edge-26.04) raw image builds.
Debian 13 user templates: New raw image template and Desktop Virtualization (IDV) ISO installer template for Debian 13.
ROS 2 Jazzy robotics templates: New AMR raw image template and a companion ISO installer template for ROS 2 Jazzy edge robotics platforms.
PTL PV attended and unattended ISO templates: New attended and unattended ISO installer templates for PTL (Platform Validation Toolkit) PV (Para-Virtual) configurations including cloud-init example configuration files.
Unattended ISO installer with policy-based target disk selection:
live-installernow supports fully automatic installation using aselectionPolicyblock in the disk template section. Supported strategies: first, largest, fastest (prefers NVMe over SSD over HDD), and largest-free (selects the disk with the most unallocated span). Removable and externally attached disks are excluded by default and can be included explicitly withexcludeRemovable: false.Declarative network configuration in image templates: A new
systemConfig.networksection defines network interfaces at image composition time. It supportssystemd-networkdandnetplanbackends, configures DHCP, static IP/CIDR addresses, default gateways (via routes), and DNS nameservers per interface.Network configuration view in attended ISO installer: The attended (interactive) ISO installer now includes a “Configure Network” step that allows selecting an interface and entering DHCP or static IP/gateway/DNS settings before installation.
Local package repository population via
packageRepositoriessection: ThepackageRepositoriesschema now accepts a package list whose entries are HTTPS URLs (downloaded at build time) or local file/directory paths (copied). Archives (.tar, .tar.gz, .tgz, .zip) are extracted for their .deb/.rpm payloads. Thepathfield is optional whenpackagesis set. A temporary directory is auto-created and cleaned up. An optionalinsecureSkipVerifyflag allows skipping TLS certificate verification for downloads from environments with self-signed certificates.Full offline/cache mode for DEB and RPM repositories: DEB Packages.gz metadata is now cached by SHA-256 checksum (
packages.parsed.json) undercache_dir/and reused on rebuilds with no network access. RPMprimary.xmlmetadata andprimary.location.jsonare cached undercache_dir/rpm-metadata/. Debian repository GPG keys are cached incache_dir/gpg-keys/. Repository file-existence check results and package-list URLs are cached in-process per run to eliminate redundant HEAD requests.DKMS module installation: Package resolution now uses a target-name-aware candidate filter (
filterCandidatesByPriorityWithTarget) that prefers exact-name matches over Provides virtual package matches, preventing kernel packages that provide a DKMS module name from being selected instead of the actual DKMS package.
Improved
RPM package cache:
DownloadPackagesCompletenow checks for a valid local cache before contacting the repository. If all required packages are present, no network request is made. Only the missing packages are re-fetched, preserving existing cached files.DEB package cache:
DownloadPackagesperforms a staleness check against the local.debcache (by name) before downloading. Version-pinned requirements and epoch-prefixed package names are matched correctly.Chroot environment package isolation: The chroot-build tool package cache and the initrd package cache are now stored in dedicated subdirectories (
chrootenv/andinitrd/respectively) to prevent the stale-cache check from evicting image packages when the two sets do not overlap.Chroot cleanup error handling:
CleanupChrootEnvandUmountChrootSysfsnow accumulate all cleanup errors rather than short-circuiting on the first failure. All partial errors are surfaced in the returned error.Mount rollback on failure:
mountDiskToChrootandMountSysfsnow roll back previously mounted paths when a later mount step fails, preventing orphaned bind mounts.Loop device cleanup:
LoopSetupDeletenow detects and disables any SWAP partitions on the loop device before callinglosetup -d, preventing detach failures caused by active swap.Loop device error cleanup on creation failure: If loop device creation fails but a partial loop device path is returned,
BuildRawImagenow detaches it immediately rather than leaking the resource.Disk partition creation reliability:
createPartitionTablenow retries wipe (wipefs) andsfdiskcommands in separate loops with a 30-second timeout each, verifying vialsblk/sfdiskthat the expected state is actually reached before proceeding.Grub command detection in install root:
getGrubVersionandupdateGrubConfignow resolve grub binaries by checking known absolute paths in the install root (/usr/sbin/,/usr/bin/) before falling back to shellcommand -v.update-grubis now also accepted as a valid fallback.apt-getinstall with--no-install-recommends: DEB package installation in the chroot environment now passes--no-install-recommends, reducing unnecessary package pulls.sudo suppressed when already root:
GetFullCmdStrdetects when the process is already running as root (euid == 0) and omits the redundant innersudoprefix from both chroot and host commands. ICT is launched as root (sudo -E image-composer-tool build ..., or the server’ssudo -n ...), so an innersudois a root-to-root no-op that only forks an extra process per command; dropping it also avoids permission-escalation errors in CI environments that run as root. When the process is not root the prefix is kept so the per-command sudo model still elevates.Partition mount-point path resolution:
resolveInstallRootMountPointis now the single canonical function for joining the install root and partition mount points. It handles empty, /-absolute, and relative mount-point strings uniformly.Default installer partitioning mode: The attended ISO installer now starts in manual partitioning mode by default; partition template state is cleared when entering manual mode to avoid stale configuration.
Installer startup scripts hardened:
attendedinstallerandunattendedinstallershell scripts replaced withset -euo pipefail, standardized quote handling, and[[...]]conditionals for more robust error propagation.Dual GPG key per repo for RPM EMT distro: RPM-based EMT repositories now support a second GPG public key (
pkeyslist), enabling repositories that require two signing keys.Boot partition label in EMT-EMF template: Explicit partition labels added to the boot partition.
systemd-resolvedenabled at startup for RCD: RCD image builds now enable and startsystemd-resolvedas part of post-install configuration.intel-dlstreamer / OpenVINOversion alignment for RCD: Fixed version mismatch betweenintel-dlstreamerandopenvinoin RCD templates.intel-dlstreameris pinned to 2025.2.0.ukifylookup paths:shell.gonow searches additional known installation prefixes forukifyso builds on distributions that install it in non-standard locations do not fall back to host-side execution unnecessarily.Progress bar terminal output: A trailing newline is now emitted after progress bars finish (
VerifyDEBs,VerifyAll,FetchPackages) to prevent the next log line from overwriting the progress bar.CopyDirempty-source handling: Fixed glob pattern from/*to/.so that copying an empty source directory does not produce a shell error.RPM dependency graph (
PkgName):GenerateDotnow uses thePkgNamefield for node names in dependency graphs, producing clean package names instead of raw filenames.Network schema validation: IPv4/IPv6 CIDR addresses, gateway addresses, and nameservers in
systemConfig.networkare now validated against typed formats in the JSON schema; DHCP and static addresses cannot be combined on the same interface.Debian 13 Bayonne Bridge graphics template ships a desktop terminal and GUI installer: The
debian13-x86_64-bb-graphics-raw.ymltemplate now addsgnome-terminalandgnome-softwareon top of its GNOME desktop stack (gdm3+gnome-session+gnome-shell). Previously the composed desktop had no terminal application in the Activities overview and no graphical way to browse or install packages, becausegnome-shell/gnome-sessiondo not pull those in (only the largergnome-core/gnomemetapackages do). Both packages merge additively under the template’s inheritedadditive-and-upgradeoverlay policy; the CLIaptis unchanged and already present.Image templates grouped by distribution:
image-templates/is now organized into one subdirectory pertarget.dist(azl3/,debian13/,el10/,elxr12/,elxr13/,emt3/,ubuntu24/,ubuntu26/) instead of a single flat listing of 60 files. Filenames are unchanged, soimage-templates/ubuntu24-x86_64-minimal-raw.ymlbecomesimage-templates/ubuntu24/ubuntu24-x86_64-minimal-raw.yml. If you reference a template by path in a script or automation, add the distribution directory. Templates packaged into the.debunder/usr/share/ict/examples/gain the same subdirectories. Distribution is the grouping used because anextends:chain must be siblings in one directory and must shareos/dist/arch/imageType, so a distribution directory can never split a valid chain. New guides ship alongside the templates:image-templates/README.md(catalog),COMPOSITION.md(extends:and overlay mode) andCONVENTIONS.md(naming), plus aREADME.mdper distribution.Templates composed with
extendsinstead of duplication: Several templates now inherit a base template rather than restating it.emt3-x86_64-emf-raw.ymlandemt3-x86_64-dlstreamer.ymlextendemt3-x86_64-edge-raw.yml, andemt3-x86_64-emf-rt-raw.ymlextendsemt3-x86_64-emf-raw.yml. This removes a 41-package block that had been copied verbatim into four EMT3 templates. Each derived template was verified withresolve --fullto produce the same functional fields as before. Note that because package lists are a union with no removal syntax, a derived template also installs its parent’s packages. And because the three EMT3 templates now inheritemt3-x86_64-edge-raw.yml, they also inherit its three sample repositories (company-internal,dev-tools,intel-openvino), soemf-rawandemf-rt-rawresolve to three repositories where they previously declared none anddlstreamerresolves to six rather than three. Those entries are inert — their URLs are the literal placeholder<URL>, whichrpmutilsskips before fetching, and EMT3 is RPM-based so apt-source generation never runs for it — so the built image is unchanged. Each of the three templates notes this in its header.
Fixed
Templates in subdirectories are now discovered: template scanning walked only the top level of the templates directory and skipped subdirectories, which would have hidden every template from the AI/RAG index and the web UI template list once templates were grouped into per-distribution directories. The scan is now recursive, as are the
image-composer-*Copilot skill scripts.elxr-cloud-amd64.ymladditional files were silently dropped: the template referencedfiles/etc/...while the files ship inelxr-cloud-amd64/files/etc/..., so all fouradditionalFilesentries failed to resolve and were skipped with a warning rather than being copied into the image.Drifted RealSense apt pin in the robotics raw template:
ubuntu24-x86_64-robotics-jazzy-raw.ymlpinnedlibrealsense2where its ISO counterpart pinnedlibrealsense2*, leaving the RealSense sub-packages unpinned in raw images. Both templates now use the glob.fix(config): drop stalekernel.versionpin from the ubuntu24 OS defaults: ubuntu24 builds failed in pre-processing withkernel version mismatch: requires kernel version "6.17", but available versions are: [6.8.0-31.31 7.0.0-28.28~24.04.1]. Four default configs underconfig/osv/ubuntu/ubuntu24/imageconfigs/defaultconfigs/pinnedkernel.version: "6.17"alongside the rolling metapackagelinux-image-generic-hwe-24.04, and Ubuntu noble no longer ships 6.17. Any template without its ownkernel.versioninherited the stale pin, soubuntu24-x86_64-minimal-initrd.ymlandubuntu24-x86_64-dkms-demo.ymlfailed even though the templates themselves were already clean. #765 removed this antipattern from the 12 affected user templates but did not cover the OS defaults, which is why the failure recurred;image-templates/robotics-demo-ubuntu24-x86_64.ymlwas also missed there and is fixed here. Dropping the pin letsaptresolve whatever the metapackage currently points to — no pin, nothing to go stale. Templates that pin a concrete kernel package (for examplelinux-image-6.11.0-17-generic,linux-image-6.12-intel) are unaffected.fix(ubuntu):AllowPackagesnot propagated to debutils.Repository (#480): TheallowPackageslist in user-provided package repository configuration was silently dropped instead of being passed through to the DEB package resolver.fix(inspect): ext4 filesystem misdetection in image inspect (#484): The image inspect command was incorrectly classifying some ext4 partitions as a different filesystem type.Fixes for error logs when building UKI (#485): Spurious or incorrect error log entries emitted during UKI image construction were corrected.
fix(templates): pin intel-dlstreamer to 2025.2.0 (#492):intel-dlstreamerineLxR/RCDtemplates was not version-pinned, causing uncontrolled version updates.fix(templates): kernel version metadata 6.14 → 6.17 (#494): Template metadata version field for Ubuntu 24 kernels corrected to match the actual installed kernel series.fix(templates): pin ubuntu24 edge kernel to noble GA (6.8) (#761): Theubuntu24-x86_64-edge-rawandubuntu24-aarch64-edge-rawtemplates pinnedkernel.version: 6.17withlinux-image-generic-hwe-24.04, a combination Ubuntu noble no longer ships — only6.8.0-31.31(GA) and7.0.0-28.28~24.04.1(HWE-edge) are available. Pin the kernel to the noble GA combination (6.8+linux-image-generic) so thebuild-ubuntu24-immutableCI job can complete.fix(templates): drop stalekernel.versionpin across ubuntu24 metapackage templates (#765): Every ubuntu24 template that combined akernel.versionstring with a rolling metapackage (linux-image-generic-hwe-24.04,linux-image-generic,linux-image-generic*) was one HWE roll away from the same class of CI break that #494, #669, and #761 fixed. Drop thekernel.versionline from those templates soaptresolves whatever the metapackage currently points to — no pin, nothing to go stale. Templates with an intentionally-pinned concrete kernel package (e.g.linux-image-6.11.0-17-genericinubuntu24-server-cloud-amd64.yml) are unaffected.RPM DOT file naming bug (#538):
GenerateDotused the raw filename (e.g.,glibc-2.38-16.azl3.x86_64.rpm) as a node label instead of the canonical package name (glibc), producing incorrect dependency graphs.Swap partition cleanup before loop device detach (#568): Building images that include a swap partition would fail at teardown because the loop device was busy. The swap partition is now detected and disabled with
swapoffbeforelosetup -d.Ubuntu 24 ARM64 minimal raw template boot partition type: The
xbootldrpartition inubuntu24-aarch64-minimal-raw.ymlhad an incorrectfsType: vfat. It is now corrected toext4.Local DEB repo path in chroot:
initDebLocalRepoWithinInstallRootused an incorrect path separator for the/cdrom/cache-repomount point inside the chroot, causing package installation failures.Deferred cleanup of local DEB repo: De-initialization of the local Debian repository inside the install root is now performed via a defer statement, ensuring cleanup happens even when package installation fails midway.
fix(scripts): remove Intel-internal proxy from repository configuration (#561): An Intel-internal proxy URL was hardcoded in repository configuration, causing failures in external environments.
Known Issues
Unattended ISO installer is a first-pass implementation: The unattended installer (
ubuntu24-x86_64-minimal-unattended-iso.yml) does not yet support all advanced partition layouts (e.g.,LVM,LUKS). Complex partition schemes must use the attended installer or a custom startup script.ARM64 cross-architecture builds require host tools: Builds targeting aarch64 from an
x86_64host require arch-test and qemu-user-static installed on the build host. The builder will detect and report missing dependencies but does not install them automatically.Loop devices not destroyed when image building is terminated abruptly: When the image build process is terminated abruptly using
ctrl-C, loop devices created just prior toctrl-Care not removed automatically. The loop devices must be manually removed by the user.
Version 1.0#
December 12, 2025
Features
Support for building OS images with Intel® specific OOT Kernel packages.
Support for building Wind River eLxr 12 images.
Support for adding multiple Debian package repositories, e.g., Intel® and OSV.
Ability to set priority for repositories to manage conflicts.
Ability to prioritize specific packages to manage conflicts.
Caching for consistent and faster composition.
Debian repository GPG keys are now cached in
cache_dir/gpg-keysand reused on rebuilds to avoid re-downloading.RPM repository metadata is now cached in
cache_dir/rpm-metadataand reused on rebuilds to avoid network fetches.Native support for Debian and RPM based distributions.
Support for building immutable OS images with DM-Verity and read-only file system support.
Generation of signed OS images using provided keys for Secure Boot.
Support for Unified Kernel Image (UKI) with systemd over UEFI BIOS or Legacy BIOS.
Verbose and filtered logging based on severity to provide easy troubleshooting.
User-defined OS image configuration.
Seamless support for AI software stacks - Edge AI Libraries in user space of the OS distribution.
Support for composing the OS images to include ECG Sample Apps.
Known Issues/Opens
Installation from ISO images on NVMe SSD and via USB is not functional on RPL platforms.
Face Detection and Recognition application output video is not displayed locally.
Support for building Ubuntu OS images is being considered.