search for: menusystem

Displaying 6 results from an estimated 6 matches for "menusystem".

2008 Mar 03
3
finding mac address while in menusystem (com32)
Hi I have made myself a derivated menusystem based on the complex.c menu that cames with syslinux. And now I need to read a file, search for my pxebooted netcards mac address, and write some changes back to the same file. All the writing and reading I hopes will be of no trouble, but how can i find my own mac address? (and IP adress would be...
2013 Jan 06
1
[PATCH] menugen: Make it compatible with Py3k
...2/cmenu/menugen.py | 56 +++++++++++++++++++++++++------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/com32/cmenu/menugen.py b/com32/cmenu/menugen.py index 70ec1f8..da64d93 100644 --- a/com32/cmenu/menugen.py +++ b/com32/cmenu/menugen.py @@ -72,9 +72,9 @@ class Menusystem: self.init_entry() self.init_menu() self.init_system() - self.vtypes = " OR ".join(self.types.keys()) - self.vattrs = " OR ".join(filter(lambda x: x[0] != "_", self.entry.keys())) - self.mattrs = " OR ".join(filter(la...
2004 Feb 02
10
SYSLINUX 2.09-pre2
This version contains a fix to mbr.asm, plus a version of Murali's menu system, but ported to gcc. Although gcc produces much bigger 16-bit code (since it's really 32-bit code with prefixes) I figured it would be much easier for people to deal with since it requires the configuration to be compiled in. That being said, it's a *very* powerful menu system, partially *because*
2004 Jan 16
6
Comboot Menu
Since lot of people want this thing, I will try to take a stab at it. For now, I will hard code the menu in the code, and then somebody else can remove that restriction. May be we can add some kind of keyword to the config file which syslinux ignores and the comboot menu does something with it. I have one question about comboot: If I write a DOS program using C (compiled using watcom -3 -mt -osx
2005 Nov 06
2
Does advanced menu actually support ontimeout?
I've finally gotten around to playing with the advanced menu, though the complex example is definitely still beyond me. I'm trying to figure out a few basics from it, such as the tab key for line editing (don't know what I've done wrong here since it seems like I copied that part right) and the timeout. It looks to me like the only ontimeout implemented so far is an option to not
2006 Nov 22
2
Problem with "additional" submenus
...ULL #define NULL ((void *) 0) #endif #include "menu.h" #include "com32io.h" #include <string.h> TIMEOUTCODE ontimeout() { return CODE_ENTER; } int main(void) { t_menuitem * curr; // Choose the default title and setup default values for all attributes.... init_menusystem(NULL); set_window_size(1,1,23,78); // Leave one row/col border all around reg_ontimeout(ontimeout, 3000, 0); // Advanced Server 4 Submenu add_named_menu("Advanced Server 4", "Select Update revision", -1); add_item("Release", "Release", OPT_RUN, &...