mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-10 10:51:11 +00:00
Do not offer the hwe kernel for RISC-V server-live images
This commit is contained in:
parent
69b372ced7
commit
87dcf0de62
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -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@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.
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user