Displaying 7 results from an estimated 7 matches for "menudefault".
Did you mean:
menu_default
2007 Feb 23
1
Patch: Readconfig wont parse certain options anymore
...12,7 +412,7 @@
static void parse_config_file(FILE *f)
{
- char line[MAX_LINE], *p, *ep, ch;
+ char line[MAX_LINE], *p, *kp, *ep, ch;
enum kernel_type type;
while ( fgets(line, sizeof line, f) ) {
@@ -532,10 +532,10 @@
ld.menulabel = NULL;
ld.ipappend = ipappend;
ld.menudefault = ld.menuhide = 0;
- } else if ( (p = is_kernel_type(p, &type)) ) {
+ } else if ( (kp = is_kernel_type(p, &type)) ) {
if ( ld.label ) {
free(ld.kernel);
- ld.kernel = strdup(skipspace(p));
+ ld.kernel = strdup(skipspace(kp));
ld.type = type;
}...
2010 May 30
1
[RFC PATCH] menu: support single key booting
...) {
ld.menuhide = 1;
+ } else if (looking_at(p, "commit")) {
+ ld.menucommit = 1;
} else if (looking_at(p, "passwd")) {
if (ld.label) {
refstr_put(ld.passwd);
@@ -931,7 +935,7 @@ do_include:
ld.helptext = NULL;
ld.ipappend = ipappend;
ld.menudefault = ld.menuhide = ld.menuseparator =
- ld.menudisabled = ld.menuindent = 0;
+ ld.menudisabled = ld.menuindent = ld.menucommit = 0;
} else if ((ep = is_kernel_type(p, &type))) {
if (ld.label) {
refstr_put(ld.kernel);
--
1.6.5
2018 Jun 18
3
Memdisk and big floppy images
...XMMs )*
MENU 2 -> COMMAND.COM / 80386+ / HimemX ( XMSv3 )
MENU 3 -> COMMAND.COM / 80386+ / HimemX + Jemm386 ( XMSv3 + EMSv4 )
MENU 4 -> COMMAND.COM / 80386+ / JemmEx (HimemX/Jemm386 combo) ( XMSv3 +
EMSv4 )
MENU 5 -> COMMAND.COM / 80386+ / JemmEx Safe (NOHI NOVME etc.) ( XMSv3 +
EMSv4 )
MENUDEFAULT=*1,0*
On Mon, Jun 18, 2018 at 3:17 PM, Bernd Blaauw via Syslinux <
syslinux at zytor.com> wrote:
> Op 18-6-2018 om 20:19 schreef R S via Syslinux:
>
>> In other words: I'm suggesting to use WinImage as it also allows easy
>> injection of new files *and* updating of a...
2018 Jun 18
2
Memdisk and big floppy images
In other words: I'm suggesting to use WinImage as it also allows easy
injection of new files *and* updating of already existing files.
May I ask which vendor is distributing a DOS FW update that is 20MB? I'd
like to see the files. Sometimes you just need the .bin/.rom and the actual
FW update EXE and it would fit a 5MB FDD image.
On Mon, Jun 18, 2018 at 2:03 PM, R S <rene.shuster at
2008 Aug 15
5
help
Hello Sir,
(1) I have prepared Bootable CD using " bcdw201a"
http://www.bcdwb.de/downloads_e.html
which is working O.K.
I have tried hard to boot the same off "USB" using "Syslinux" but NOT
successful.
Every time I get the following error messages or similar to them. (i)Could
not find kernel image: linux or (ii)missing parameters in "syslinux.cfg".
You
2019 Jul 09
0
[PATCH] core: Add support for BLS Type 1 entries
...>efi);
+ ld.type = KT_KERNEL;
+ }
+ ld.passwd = NULL;
+ ld.append = refstrdup(bdx[i]->options);
+ ld.initrd = refstrdup(bdx[i]->initrd);
+ ld.menulabel = format_bls_data(
+ bdx[i], (bls1_format) ? bls1_format : BLS1_FORMAT
+ );
+ ld.helptext = NULL;
+ ld.ipappend = SysAppends;
+ ld.menudefault = ld.menuhide = ld.menuseparator =
+ ld.menudisabled = ld.menuindent = 0;
+
+ if (bls1_shwlbl) {
+ tmp = refstrdup(ld.menulabel);
+ refstr_put(ld.menulabel);
+ rsprintf(&ld.menulabel, "%s%s", ld.label, tmp);
+ refstr_put(tmp);
+ }
+
+ clear_bls_data(bdx[i]);
+ free...
2019 May 24
3
[PATCH] (vesa)menu.c32: Add support for BLS
...swd = NULL;
+ ld.append = (bdx[i]->options) ? refstrdup(bdx[i]->options) : NULL;
+ ld.initrd = (bdx[i]->initrd) ? refstrdup(bdx[i]->initrd) : NULL;
+ ld.menulabel = (bdx[i]->title) ? refstrdup(bdx[i]->title) : NULL;
+ ld.ipappend = ipappend;
+ ld.menudefault = ld.menuhide = ld.menuseparator =
+ ld.menudisabled = ld.menuindent = 0;
+
+ clear_bls_data(bdx[i]);
+ free(bdx[i]);
+ }
+
+ return rv;
+
+nomem:
+ dprintf("Out of memory error!\n");
+ free(filename);
+ for (i = 0; i < n_bd; i++) {
+ clea...