Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ RUN tdnf update -y && \
tdnf install -y azurelinux-repos-cloud-native && \
tdnf update -y && \
tdnf install -y oras && \
if [ "$TARGETARCH" = "amd64" ]; then \
echo "Installing AMD64-specific packages..."; \
tdnf install -y grub2-pc systemd-ukify; \
else \
echo "Skipping AMD64-specific packages for $TARGETARCH"; \
fi && \
tdnf clean all

# Create virtual environment and install Python dependencies for telemetry
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Signatures": {
"azurelinux-image-tools-1.5.0-vendor.tar.gz": "e7ee04afa1d716b20f34ac6062e7196d27dca6173f2e06bffba2cc125553cb59",
"azurelinux-image-tools-1.5.0.tar.gz": "982bbb18735d8cd39055b497da7826ab1d048a2708131ab9d02cc1099d58a6de"
"azurelinux-image-tools-1.5.1-vendor.tar.gz": "e7ee04afa1d716b20f34ac6062e7196d27dca6173f2e06bffba2cc125553cb59",
"azurelinux-image-tools-1.5.1.tar.gz": "bd060041dd8073bd6a1cbc8b87cadfc8f0115f163210bc9eb2857724afca7cf0"
}
}
8 changes: 6 additions & 2 deletions SPECS/azurelinux-image-tools/azurelinux-image-tools.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Summary: Azure Linux Image Tools
Name: azurelinux-image-tools
Version: 1.5.0
Version: 1.5.1
Release: 1%{?dist}
License: MIT
URL: https://github.com/microsoft/azure-linux-image-tools/
Expand Down Expand Up @@ -48,9 +48,9 @@ Requires: lsof
Requires: python3
Requires: python3-pip
Requires: jq
Requires: systemd-ukify
%ifarch x86_64
Requires: grub2-pc
Requires: systemd-ukify
%endif

%description imagecustomizer
Expand Down Expand Up @@ -110,6 +110,10 @@ go test -C toolkit/tools ./...
%{_bindir}/osmodifier

%changelog
* Tue Jul 7 2026 Chris Gunn <chrisgunn>@microsoft.com> - 1.5.1-1
- Upgrade to version 1.5.1
- Enable systemd-ukify for arm64

* Fri May 29 2026 Chris Gunn <chrisgunn>@microsoft.com> - 1.5.0-1
- Upgrade to version 1.5.0

Expand Down
4 changes: 2 additions & 2 deletions cgmanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -925,8 +925,8 @@
"type": "other",
"other": {
"name": "azurelinux-image-tools",
"version": "1.5.0",
"downloadUrl": "https://github.com/microsoft/azure-linux-image-tools/archive/refs/tags/v1.5.0.tar.gz"
"version": "1.5.1",
"downloadUrl": "https://github.com/microsoft/azure-linux-image-tools/archive/refs/tags/v1.5.1.tar.gz"
}
}
},
Expand Down
Loading