Skip to content
Merged
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
4 changes: 2 additions & 2 deletions live/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- [Image definition](#image-definition)
- [KIWI files](#kiwi-files)
- [Image configuration](#image-configuration)
- [GRUB2 menu](#grub2-menu)
- [GRUB2 menu](#grub2-menu)
- [SSH server](#ssh-server)
- [Autologin](#autologin)
- [Firefox profile](#firefox-profile)
Expand Down Expand Up @@ -155,7 +155,7 @@ The main Kiwi source files are located in the [src](src) subdirectory:

The Live ISO is configured to allow using some features and allow running Agama there.

## GRUB2 menu
### GRUB2 menu

grub.cfg, defining boot menu items of the Agama image, is generated by scripts stored in
[config-cdroot](https://github.com/openSUSE/agama/tree/master/live/config-cdroot).
Expand Down
6 changes: 6 additions & 0 deletions products.d/agama-products.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Feb 2 15:48:07 UTC 2026 - Ladislav Slezák <lslezak@suse.com>

- Prepare the spec file for the %suse_version 1610 in Leap 16.1
(gh#agama-project/agama#3120)

-------------------------------------------------------------------
Fri Jan 30 12:44:21 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

Expand Down
10 changes: 5 additions & 5 deletions products.d/agama-products.spec
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ env \
# for now remove kalpa from all builds until it is fixed
rm -f %{buildroot}%{_datadir}/agama/products.d/kalpa.yaml

# Keep only Leap based distros on Leap
%if 0%{?is_opensuse} && 0%{?suse_version} == 1600
# Keep only Leap based distros on Leap, Tumbleweed uses version 1699
%if 0%{?is_opensuse} && 0%{?suse_version} <= 1610
rm -f %{buildroot}%{_datadir}/agama/products.d/microos.yaml
rm -f %{buildroot}%{_datadir}/agama/products.d/tumbleweed.yaml
rm -f %{buildroot}%{_datadir}/agama/products.d/slowroll.yaml
%endif

# Keep TW-based distros on TW (drop Kalpa + Leap + Leap Micro)
%if 0%{?is_opensuse} && 0%{?suse_version} > 1600
%if 0%{?is_opensuse} && 0%{?suse_version} > 1610
rm -f %{buildroot}%{_datadir}/agama/products.d/leap*.yaml
%endif

Expand All @@ -72,12 +72,12 @@ Definition of openSUSE products (Tumbleweed, Leap, MicroOS and Slowroll) for the
%dir %{_datadir}/agama
%dir %{_datadir}/agama/products.d
# if building on SLES add all opensuse products
%if !0%{?is_opensuse} || 0%{?suse_version} > 1600
%if !0%{?is_opensuse} || 0%{?suse_version} > 1610
%{_datadir}/agama/products.d/microos.yaml
%{_datadir}/agama/products.d/tumbleweed.yaml
%{_datadir}/agama/products.d/slowroll.yaml
%endif
%if !0%{?is_opensuse} || 0%{?suse_version} == 1600
%if !0%{?is_opensuse} || 0%{?suse_version} <= 1610
%{_datadir}/agama/products.d/leap_161.yaml
%{_datadir}/agama/products.d/leap_micro_62.yaml
%endif
Expand Down