[neon/neon/livecd-rootfs/Neon/release] /: Do not offer the hwe kernel for RISC-V server-live images

Łukasz 'sil2100' Zemczak null at kde.org
Wed Feb 22 11:38:32 GMT 2023


Git commit 87dcf0de62c05e73438fe6e711a28797e7139dd8 by Łukasz 'sil2100' Zemczak.
Committed on 20/02/2023 at 16:30.
Pushed by jriddell into branch 'Neon/release'.

Do not offer the hwe kernel for RISC-V server-live images

M  +6    -0    debian/changelog
M  +6    -1    live-build/auto/config

https://invent.kde.org/neon/neon/livecd-rootfs/commit/87dcf0de62c05e73438fe6e711a28797e7139dd8

diff --git a/debian/changelog b/debian/changelog
index 5c1e5e1c..7bf20e70 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+livecd-rootfs (2.765.17) UNRELEASED; urgency=medium
+
+  * Do not offer the hwe kernel for RISC-V server-live images (LP: #2007863).
+
+ -- Łukasz 'sil2100' Zemczak <lukasz.zemczak at ubuntu.com>  Mon, 20 Feb 2023 17:18:37 +0100
+
 livecd-rootfs (2.765.16) jammy; urgency=medium
 
   * Properly handle the lowlatency hwe kernel flavour.
diff --git a/live-build/auto/config b/live-build/auto/config
index 903171ca..3fefd19e 100755
--- a/live-build/auto/config
+++ b/live-build/auto/config
@@ -853,7 +853,12 @@ case $PROJECT in
 				# written generically to support both even though a lot of the
 				# time only one kernel is offered.
 
-				variants='ga hwe'
+				if [ $ARCH = riscv64 ]; then
+					# However, for RISC-V we only offer one kernel
+					variants='ga'
+				else
+					variants='ga hwe'
+				fi
 
 				for variant in $variants; do
 					if [ "$variant" = "ga" ]; then



More information about the Neon-commits mailing list