Displaying 5 results from an estimated 5 matches for "abtech".
Did you mean:
a4tech
2002 Jul 24
2
memdisk question
...ot a FREEDOS Boot
Disk Image everything works great.
Any suggestions?
========================================================
Eugene E. Pressley II
Network Administrator, MCSE
Asheville - Buncombe Technical Community College
Office: 828-254-1921, x.477
Fax: 828-281-9690
E-Mail: EPressley at abtech.edu
========================================================
-------------- next part --------------
A non-text attachment was scrubbed...
Name: memdisk.jpg
Type: image/jpeg
Size: 87979 bytes
Desc: not available
URL: <http://www.zytor.com/pipermail/syslinux/attachments/20020723/444a1103/attach...
2005 Mar 30
1
menu.c32, submenus
I am trying to create submenus, or more specifically a single submenu, using PXELINUX and the menu.c32. I have a tftp share with a basic config:
/ (root of tftp)
pxelinux.0
menu.c32
/diskdiag (dir)
/diskdiag/dskdiag.0
/pxelinux.cfg (dir)
/pxelinux.cfg/default
/pxelinux.cfg/dskdiag
one of the menu items in /pxelinux.cfg/default is as follows:
LABEL DISKDIAG
MENU LABEL [^B] Disk Diagnostics
2005 Mar 24
1
Problems with menu.c32, and some feature request for menu.c32
I have found two bugs in the menu.c32 utility, part of the syslinux-3.08-pre5 build, and have a couple of requests.
Problem 1:
If you use the ^ symbol to define a number as a hotkey, ex. MENU LABEL ^1 Option #1 , the menu will not print the number highlighted. It will use it as a hot key, it just will not highlight it. It does highlight the hotkey if specify a letter, A-Z.
Problem 2:
When
2005 Mar 28
0
Problems with menu.c32,and some feature request for menu.c32
Well in those three days I did identify and correct the problem with using a number (0-9) as the hot key. The following is the section of code in menu.c32 responsible for displaying the menu entries:
display_entry(const struct menu_entry *entry, const char *attrib,
const char *hotattrib, int width)
{
const char *p = entry->displayname;
while ( width ) {
if ( *p ) {
if (
2005 Mar 27
3
RESEND: Problems with menu.c32, and some feature request for menu.c32
I am resending this message because I have not recieved any response back.
I have found two bugs in the menu.c32 utility, part of the syslinux-3.08-pre5 build, and have a couple of requests.
Problem 1:
If you use the ^ symbol to define a number as a hotkey, ex. MENU LABEL ^1 Option #1 , the menu will not print the number highlighted. It will use it as a hot key, it just will not highlight it.