diff --git a/live/config-cdroot/fix_bootconfig.aarch64 b/live/config-cdroot/fix_bootconfig.aarch64 index d85e812602..d6415f69f4 100755 --- a/live/config-cdroot/fix_bootconfig.aarch64 +++ b/live/config-cdroot/fix_bootconfig.aarch64 @@ -9,7 +9,7 @@ set -e dst="$1" -if [ ! -d "$dst" ] ; then +if [ ! -d "$dst" ]; then echo "fix_bootconfig.aarch64: image dir \"$dst\" not found" exit 1 fi @@ -19,7 +19,7 @@ fi # but that's not the case. test -f $dst/.profile && . $dst/.profile -arch=`uname -m` +arch=$(uname -m) profile=$(echo "$kiwi_profiles" | tr "_" " ") label="$profile ($arch)" @@ -34,14 +34,12 @@ fi # cat >$dst/boot/grub2/grub.cfg <$dst/boot/grub2/grub.cfg < + +- Fixes and improvements in the boot menu for x86_64 and aarch64: + - Fixed boot from hard disk in the legacy BIOS mode (x86_64 only) + - Added "p" keyboard shortcut to interactively configure the root + password for the installer live system + - Added support for serial console + - Disable plymouth graphical boot when the grub boot menu is + switched to text mode with the "t" keyboard shortcut + +- Fixed failed image build because of missing configuration options + for the "image-janitor" tool + + (gh#agama-project/agama#3192) + ------------------------------------------------------------------- Wed Feb 18 20:32:37 UTC 2026 - Josef Reidinger diff --git a/live/src/config.sh b/live/src/config.sh index 1b539cac75..56e3794120 100644 --- a/live/src/config.sh +++ b/live/src/config.sh @@ -315,8 +315,8 @@ rpm -e --nodeps alsa alsa-utils alsa-ucm-conf || true # make sense on a server. du -h -s /lib/modules /lib/firmware -# remove the multimedia drivers -image-janitor -v driver-cleanup --delete +# remove the multimedia drivers, use the default configuration files +image-janitor -v driver-cleanup --delete --config-files /usr/share/image-janitor/module.list,/usr/share/image-janitor/module.list.extra # remove the unused firmware(not referenced by kernel drivers) image-janitor -v fw-cleanup --delete