diff options
-rwxr-xr-x | scripts/build/binary_syslinux | 8 | ||||
-rw-r--r-- | share/bootloaders/grub-pc/grub.cfg | 2 | ||||
-rw-r--r-- | share/bootloaders/syslinux_common/menu.cfg | 7 | ||||
-rw-r--r-- | share/bootloaders/syslinux_common/utilities.cfg (renamed from share/bootloaders/syslinux_common/advanced.cfg) | 0 |
4 files changed, 11 insertions, 6 deletions
diff --git a/scripts/build/binary_syslinux b/scripts/build/binary_syslinux index c3968712c..34ce02b86 100755 --- a/scripts/build/binary_syslinux +++ b/scripts/build/binary_syslinux @@ -147,6 +147,10 @@ else rm "${_TARGET}"/install_gui.cfg mv "${_TARGET}"/install_text.cfg "${_TARGET}"/install.cfg fi +# Move user advanced.cfg to utilities.cfg for backwards compatibility +if [ -e "${_TARGET}"/advanced.cfg ]; then + mv -f "${_TARGET}"/advanced.cfg "${_TARGET}"/utilities.cfg +fi # Configuring files if [ -e "${_TARGET}/live.cfg.in" ] @@ -281,9 +285,9 @@ fi # Replace placeholder for optional memtest menu entry include if [ ! -f "binary/${MEMTEST_PATH}" ]; then rm -f "${_TARGET}"/memtest.cfg - sed -i -e "#@OPTIONAL_MEMTEST_INCLUDE@#d" "${_TARGET}"/advanced.cfg + sed -i -e "#@OPTIONAL_MEMTEST_INCLUDE@#d" "${_TARGET}"/utilities.cfg else - sed -i -e "s#@OPTIONAL_MEMTEST_INCLUDE@#include memtest.cfg#g" "${_TARGET}"/advanced.cfg + sed -i -e "s#@OPTIONAL_MEMTEST_INCLUDE@#include memtest.cfg#g" "${_TARGET}"/utilities.cfg fi if [ -e "${_TARGET}/splash.svg" ] && [ ! -e "${_TARGET}/splash.png" ] diff --git a/share/bootloaders/grub-pc/grub.cfg b/share/bootloaders/grub-pc/grub.cfg index e3e9fbd49..36b6f61fb 100644 --- a/share/bootloaders/grub-pc/grub.cfg +++ b/share/bootloaders/grub-pc/grub.cfg @@ -32,7 +32,7 @@ submenu 'Advanced install options ...' --hotkey=a { fi if @ENABLE_MEMTEST@; then -submenu 'Advanced options ...' { +submenu 'Utilities...' --hotkey=u { source /boot/grub/theme.cfg diff --git a/share/bootloaders/syslinux_common/menu.cfg b/share/bootloaders/syslinux_common/menu.cfg index 5f77377e2..9579323f3 100644 --- a/share/bootloaders/syslinux_common/menu.cfg +++ b/share/bootloaders/syslinux_common/menu.cfg @@ -5,13 +5,14 @@ menu title Boot menu include stdmenu.cfg include live.cfg @OPTIONAL_INSTALLER_INCLUDE@ -menu begin advanced - menu label Advanced options +menu begin utilities + menu label ^Utilities + menu title Utilities include stdmenu.cfg label mainmenu menu label ^Back.. menu exit - include advanced.cfg + include utilities.cfg menu end menu clear diff --git a/share/bootloaders/syslinux_common/advanced.cfg b/share/bootloaders/syslinux_common/utilities.cfg index dca5f1ca4..dca5f1ca4 100644 --- a/share/bootloaders/syslinux_common/advanced.cfg +++ b/share/bootloaders/syslinux_common/utilities.cfg |