diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-11-26 21:07:37 +0100 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-12-04 10:11:13 +0100 |
commit | 7c4aff64cefd1f35ae4aa67315fbb5a1229e5fb3 (patch) | |
tree | d075213bf159cdb36adb15ada2f6fa61ab46b327 /com32/hdt/floppy/hdt.cfg | |
parent | 9b74afd77bc99b65021c7b10d6298bbeff888b09 (diff) | |
download | syslinux-7c4aff64cefd1f35ae4aa67315fbb5a1229e5fb3.tar.gz |
hdt: Adding a menu for floppy & iso images
Impact: none
Floppy & ISO images are now featuring a menu mode.
Thx gert for this idea.
Diffstat (limited to 'com32/hdt/floppy/hdt.cfg')
-rw-r--r-- | com32/hdt/floppy/hdt.cfg | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/com32/hdt/floppy/hdt.cfg b/com32/hdt/floppy/hdt.cfg index 7db52a9a..8a6f58c7 100644 --- a/com32/hdt/floppy/hdt.cfg +++ b/com32/hdt/floppy/hdt.cfg @@ -1,6 +1,49 @@ -DEFAULT hdt +DEFAULT menu.c32 PROMPT 0 +TIMEOUT 50 +MENU TITLE Hardware Detection Tool (HDT) LABEL hdt +MENU LABEL Menu mode +MENU DEFAULT +TEXT HELP +Starts HDT using the MENU mode +ENDTEXT COM32 hdt.c32 APPEND modules_pcimap=modules.pcimap modules_alias=modules.alias pciids=pci.ids quiet + +LABEL cli +MENU LABEL CLI (VESA mode) +TEXT HELP +Starts HDT using the Command Line Interface (CLI) +VESA mode is enabled +ENDTEXT +COM32 hdt.c32 +APPEND modules_pcimap=modules.pcimap modules_alias=modules.alias pciids=pci.ids quiet nomenu vesa + +LABEL vesa +MENU LABEL CLI (Text mode) +TEXT HELP +Starts HDT using the Command Line Interface (CLI) +VESA mode is disabled +ENDTEXT +COM32 hdt.c32 +APPEND modules_pcimap=modules.pcimap modules_alias=modules.alias pciids=pci.ids quiet nomenu + +LABEL summary +MENU LABEL CLI (Auto summary) +TEXT HELP +Starts HDT using the Command Line Interface (CLI) and run 'show summary' +VESA mode is enabled +ENDTEXT +COM32 hdt.c32 +APPEND modules_pcimap=modules.pcimap modules_alias=modules.alias pciids=pci.ids quiet vesa nomenu auto='show summary' + +LABEL verbose +MENU LABEL CLI (Verbose) +TEXT HELP +Starts HDT using the Command Line Interface (CLI) using the verbose mode +VESA mode is enabled +ENDTEXT +COM32 hdt.c32 +APPEND modules_pcimap=modules.pcimap modules_alias=modules.alias pciids=pci.ids vesa nomenu |