diff options
author | jnqnfe <jnqnfe@gmail.com> | 2015-01-19 02:36:13 +0000 |
---|---|---|
committer | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-16 23:08:26 +0000 |
commit | 38af959aa5a93387085e1fb15fba69c801239aa1 (patch) | |
tree | 745faf130400ffac1c56234f0ed30c7d2c16bf9e /share | |
parent | 31fa6abd3698453a759e56164fb09a53f6870ad1 (diff) | |
download | vyos-live-build-38af959aa5a93387085e1fb15fba69c801239aa1.tar.gz vyos-live-build-38af959aa5a93387085e1fb15fba69c801239aa1.zip |
syslinux: use more dynamic memtest menu config file
Fixes the following
- Correct version (memtest86/memtest86+) shown instead of fixed 'memtest86+' text
- Ensure correct directory path always used by using replaceable placeholder
Gbp-Dch: Short
Diffstat (limited to 'share')
-rw-r--r-- | share/bootloaders/extlinux/memtest.cfg | 6 | ||||
-rw-r--r-- | share/bootloaders/isolinux/memtest.cfg | 6 | ||||
-rw-r--r-- | share/bootloaders/pxelinux/memtest.cfg | 6 | ||||
-rw-r--r-- | share/bootloaders/syslinux/memtest.cfg | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/share/bootloaders/extlinux/memtest.cfg b/share/bootloaders/extlinux/memtest.cfg index e7e86e30b..99f4c33b1 100644 --- a/share/bootloaders/extlinux/memtest.cfg +++ b/share/bootloaders/extlinux/memtest.cfg @@ -1,4 +1,4 @@ label memtest - menu label ^Memory Diagnostic Tool (memtest86+) - menu title Memory Diagnostic Tool (memtest86+) - linux /live/memtest + menu label ^Memory Diagnostic Tool (@MEMTEST_VERSION@) + menu title Memory Diagnostic Tool (@MEMTEST_VERSION@) + linux @MEMTEST@ diff --git a/share/bootloaders/isolinux/memtest.cfg b/share/bootloaders/isolinux/memtest.cfg index e7e86e30b..99f4c33b1 100644 --- a/share/bootloaders/isolinux/memtest.cfg +++ b/share/bootloaders/isolinux/memtest.cfg @@ -1,4 +1,4 @@ label memtest - menu label ^Memory Diagnostic Tool (memtest86+) - menu title Memory Diagnostic Tool (memtest86+) - linux /live/memtest + menu label ^Memory Diagnostic Tool (@MEMTEST_VERSION@) + menu title Memory Diagnostic Tool (@MEMTEST_VERSION@) + linux @MEMTEST@ diff --git a/share/bootloaders/pxelinux/memtest.cfg b/share/bootloaders/pxelinux/memtest.cfg index e7e86e30b..99f4c33b1 100644 --- a/share/bootloaders/pxelinux/memtest.cfg +++ b/share/bootloaders/pxelinux/memtest.cfg @@ -1,4 +1,4 @@ label memtest - menu label ^Memory Diagnostic Tool (memtest86+) - menu title Memory Diagnostic Tool (memtest86+) - linux /live/memtest + menu label ^Memory Diagnostic Tool (@MEMTEST_VERSION@) + menu title Memory Diagnostic Tool (@MEMTEST_VERSION@) + linux @MEMTEST@ diff --git a/share/bootloaders/syslinux/memtest.cfg b/share/bootloaders/syslinux/memtest.cfg index e7e86e30b..99f4c33b1 100644 --- a/share/bootloaders/syslinux/memtest.cfg +++ b/share/bootloaders/syslinux/memtest.cfg @@ -1,4 +1,4 @@ label memtest - menu label ^Memory Diagnostic Tool (memtest86+) - menu title Memory Diagnostic Tool (memtest86+) - linux /live/memtest + menu label ^Memory Diagnostic Tool (@MEMTEST_VERSION@) + menu title Memory Diagnostic Tool (@MEMTEST_VERSION@) + linux @MEMTEST@ |