Message ID | 20241219105146.387696-1-felix.moessbauer@siemens.com |
---|---|
State | Accepted, archived |
Headers | show |
Series | [1/1] KConfig: add support for Ubuntu snapshot on Noble | expand |
On Thu, 2024-12-19 at 11:51 +0100, 'Felix Moessbauer' via isar-users wrote: > The Ubuntu snapshot mirror is supported for all Ubuntu distributions. > By that, we can safely add support for the Noble distribution as > well. > > Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com> > --- > kas/opt/Kconfig | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/kas/opt/Kconfig b/kas/opt/Kconfig > index 1ec4b112..5784a6dd 100644 > --- a/kas/opt/Kconfig > +++ b/kas/opt/Kconfig > @@ -8,7 +8,7 @@ > # SPDX-License-Identifier: MIT > > menu "Mirror selection" > - depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE || > DEBIAN_BOOKWORM || DEBIAN_TRIXIE || DEBIAN_SID || UBUNTU_FOCAL || > UBUNTU_JAMMY > + depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE || > DEBIAN_BOOKWORM || DEBIAN_TRIXIE || DEBIAN_SID || UBUNTU_FOCAL || > UBUNTU_JAMMY || UBUNTU_NOBLE > > config MIRROR_DEBIAN > bool "Use specific Debian mirror" > @@ -45,7 +45,7 @@ config KAS_INCLUDE_MIRROR_UBUNTU > > config USE_APT_SNAPSHOT > bool "Use the distros snapshot mirror" > - depends on !MIRROR_DEBIAN && (DEBIAN_BUSTER || > DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || DEBIAN_SID || > UBUNTU_FOCAL || UBUNTU_JAMMY) > + depends on !MIRROR_DEBIAN && (DEBIAN_BUSTER || > DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || DEBIAN_SID || > UBUNTU_FOCAL || UBUNTU_JAMMY || UBUNTU_NOBLE) > help > Use a snapshot mirror for the selected distribution. > > -- > 2.39.5 > Applied to next, thanks.
diff --git a/kas/opt/Kconfig b/kas/opt/Kconfig index 1ec4b112..5784a6dd 100644 --- a/kas/opt/Kconfig +++ b/kas/opt/Kconfig @@ -8,7 +8,7 @@ # SPDX-License-Identifier: MIT menu "Mirror selection" - depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || DEBIAN_SID || UBUNTU_FOCAL || UBUNTU_JAMMY + depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || DEBIAN_SID || UBUNTU_FOCAL || UBUNTU_JAMMY || UBUNTU_NOBLE config MIRROR_DEBIAN bool "Use specific Debian mirror" @@ -45,7 +45,7 @@ config KAS_INCLUDE_MIRROR_UBUNTU config USE_APT_SNAPSHOT bool "Use the distros snapshot mirror" - depends on !MIRROR_DEBIAN && (DEBIAN_BUSTER || DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || DEBIAN_SID || UBUNTU_FOCAL || UBUNTU_JAMMY) + depends on !MIRROR_DEBIAN && (DEBIAN_BUSTER || DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || DEBIAN_SID || UBUNTU_FOCAL || UBUNTU_JAMMY || UBUNTU_NOBLE) help Use a snapshot mirror for the selected distribution.
The Ubuntu snapshot mirror is supported for all Ubuntu distributions. By that, we can safely add support for the Noble distribution as well. Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com> --- kas/opt/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)