search for: parseconfig

Displaying 20 results from an estimated 62 matches for "parseconfig".

2008 Dec 14
1
New "UI" directive broken?
The new directive doesn't seem to work here. Looks like DefaultLevel is never changed: core/parseconfig.inc:pc_default: cmp ax,[DefaultLevel] core/parseconfig.inc:DefaultLevel dw 0 ; The current level of default core/ui.inc: cmp word [DefaultLevel],1 ; Active UI statement? - Sebastian diff --git a/core/parseconfig.inc b/core/parseconfig.inc index 2fb...
2005 Mar 26
4
[ISOLINUX] No boot: prompt with ISOLINUX 3.07
I found that the version of isolinux.bin (and the debug version too) doesn't work on my Via C3 system. I get the SAY text, but never the boot: prompt. C-A-Del doesn't reboot either. The debug version does not print anything after announcing it's opening the config file. Only the single SAY text follows. The cursor sits on the next blank line, useless (no responses to key presses).
2010 Jul 27
2
[PATCH] core: remove HAS_LOCALBOOT
...OCALBOOT - ; ; Boot a specified local disk. AX specifies the BIOS disk number; or ; -1 in case we should execute INT 18h ("next device.") @@ -73,4 +71,3 @@ localboot_msg db 'Booting from local disk...', CR, LF, 0 section .text16 -%endif ; HAS_LOCALBOOT diff --git a/core/parseconfig.inc b/core/parseconfig.inc index e7b3108..d2c5715 100644 --- a/core/parseconfig.inc +++ b/core/parseconfig.inc @@ -85,8 +85,6 @@ pc_ipappend: call getint ; ; "localboot" command ; -%if HAS_LOCALBOOT - pc_localboot: call getint cmp byte [VKernel],0 ; ("label" section only...
2009 Jan 31
1
"UI" keyword, pc_default and getline
...call getc + jc .end + jmp short skipline +.end: ret + section .data err_badcfg db 'Unknown keyword in configuration file: ',0 err_noparm db 'Missing parameter in configuration file. Keyword: ',0 diff --git a/core/parseconfig.inc b/core/parseconfig.inc index fcf18d9..57ee5a5 100644 --- a/core/parseconfig.inc +++ b/core/parseconfig.inc @@ -26,7 +26,9 @@ pc_default: cmp ax,[DefaultLevel] mov di,default_cmd call getline mov byte [di-1],0 ; null-terminate -.ski...
2007 Sep 19
2
Error: (22, ''Invalid argument'')
...''dev'', ''sda2''], [''mode'', ''w'']]], [''device'', [''vif'', [''ip'', ''192.168.12.150'']]]]) [2007-09-20 15:43:33 xend.XendDomainInfo 29373] DEBUG (XendDomainInfo:296) parseConfig: config is [''vm'', [''name'', ''xen1.example.com''], [''memory'', ''128''], [''on_poweroff'', ''destroy''], [''on_reboot'', ''restart''], [''on_cr...
2006 May 31
0
Bug#368417: xen-hypervisor-3.0-i386: cannot start NetBSD-HEAD
...mode', 'w']]], ['device', ['vbd', ['uname', 'file:/vserver/images/vm01-swap.img'], ['dev', 'hda2'], ['mode', 'w']]], ['device', ['vif']]]) [2006-05-11 23:39:31 xend.XendDomainInfo] DEBUG (XendDomainInfo:284) parseConfig: config is ['vm', ['name', 'vm01'], ['memory', 128], ['vcpus', 1], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6.16-1-xen-vserver-686'], ['ip', ':1.2.3.4:::10-1-1-138:eth0:on'], ['root', '/dev/hd...
2006 May 31
0
[pakrat@private.neotoma.org: xen-hypervisor-3.0-i386: cannot start NetBSD-HEAD]
...mode', 'w']]], ['device', ['vbd', ['uname', 'file:/vserver/images/vm01-swap.img'], ['dev', 'hda2'], ['mode', 'w']]], ['device', ['vif']]]) [2006-05-11 23:39:31 xend.XendDomainInfo] DEBUG (XendDomainInfo:284) parseConfig: config is ['vm', ['name', 'vm01'], ['memory', 128], ['vcpus', 1], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6.16-1-xen-vserver-686'], ['ip', ':1.2.3.4:::10-1-1-138:eth0:on'], ['root', '/dev/hd...
2003 Jul 05
2
Anyone tried SYSLINUX 2.05-pre2 yet?
-?
2010 Jul 15
1
Accessing command_line from core C code
...*idle_hook_func)(void); extern void __idle(void); extern void reset_idle(void); +/* rllpack.c */ +extern void rllpack(com32sys_t *); +extern void rllunpack(com32sys_t *); + /* mem/malloc.c, mem/free.c, mem/init.c */ extern void *malloc(size_t); extern void *lmalloc(size_t); diff --git a/core/parseconfig.inc b/core/parseconfig.inc index e7b3108..f28a68e 100644 --- a/core/parseconfig.inc +++ b/core/parseconfig.inc @@ -441,6 +441,7 @@ SerialNotice db 1 ; Only print this once section .bss16 alignb 4 +global VKernelEnd VKernelEnd resd 1 ; Lowest high memory address used ; This symbol...
2004 Oct 07
1
x86 vs. x86_64 detection proof of concept patch (try two)
...ord kernel64, pc_kernel64 keyword label, pc_label keyword prompt, pc_setint16, ForcePrompt keyword say, pc_say Common subdirectories: syslinux-2.11/memdisk and syslinux-2.11.new/memdisk Common subdirectories: syslinux-2.11/menu and syslinux-2.11.new/menu diff -u syslinux-2.11/parseconfig.inc syslinux-2.11.new/parseconfig.inc --- syslinux-2.11/parseconfig.inc 2003-11-26 22:36:16.000000000 -0700 +++ syslinux-2.11.new/parseconfig.inc 2004-10-04 17:33:55.000000000 -0600 @@ -100,6 +100,17 @@ .err: ret ; +; "kernel64" command +pc_kernel64: cmp word [VKernelCtr],byte 0 + je...
2007 Jan 04
2
Automatically choose between 32-bit and 64-bit kernel
...equ 0x003719b5 hash_append equ 0xc53999a4 hash_default equ 0xcc5159ed +hash_default64 equ 0x4567b1c5 hash_display equ 0xd509bc40 hash_font equ 0x0032b1b4 hash_implicit equ 0xa6f50207 diff -ur syslinux-3.31.orig/parseconfig.inc syslinux-3.31/parseconfig.inc --- syslinux-3.31.orig/parseconfig.inc 2006-09-26 00:52:22.000000000 -0400 +++ syslinux-3.31/parseconfig.inc 2007-01-03 16:34:19.000000000 -0500 @@ -20,7 +20,20 @@ ; ; "default" command ; -pc_default: mov di,default_cmd +pc_default: cmp byte [HasD...
2008 Aug 31
1
[RFC][PATCH] ui: label completion on tab key
...nerror keyword allowoptions, pc_setint16, AllowOptions keyword noescape, pc_setint16, NoEscape + keyword labelcompl, pc_setint16, LabelCompl keyword f1, pc_filename, FKeyN(1) keyword f2, pc_filename, FKeyN(2) keyword f3, pc_filename, FKeyN(3) Index: syslinux-3.71-27-g3d39943/core/parseconfig.inc =================================================================== --- syslinux-3.71-27-g3d39943.orig/core/parseconfig.inc 2008-08-31 22:45:26.000000000 +0200 +++ syslinux-3.71-27-g3d39943/core/parseconfig.inc 2008-08-31 22:45:28.000000000 +0200 @@ -463,6 +463,7 @@ CmdLinePtr dw cmd_line_here...
2007 Jul 13
1
Error 22 on domU creation after installing 3.1 from source
...mode'', ''w'']]], [''device'', [''vif'', [''bridge'', ''xenbr0''], [''mac'', ''00:16:3e:00:00:13'']]]]) [2007-07-13 17:51:40 xend.XendDomainInfo 5298] DEBUG (XendDomainInfo:296) parseConfig: config is [''vm'', [''name'', ''domU''], [''memory'', 128], [''vcpus'', 1], [''image'', [''linux'', [''kernel'', ''/boot/vmlinuz-2.6-xen''], [''...
2005 Nov 12
0
NFS root on problem on Xen Debian
...9;', 1], [''up_time'', ''2.49012088776''], [''start_time'', ''1131771179.48''], [''store_mfn'', 21923], [''console_mfn'', 21922]]) [2005-11-11 23:53:02 xend.XendDomainInfo] DEBUG (XendDomainInfo:259) parseConfig: config is [''domain'', [''domid'', 1032], [''uuid'', ''784a8298-94bb-ff8a-edb3-6053a67fca75''], [''memory'', 31], [''name'', ''Dom2N7mig''], [''ssidref'', 0], [''...
2009 Mar 19
2
New DomU on older Dom0
...;, ''w'']]], > [''device'', [''vif'', [''bridge'', ''xenbr0''], [''mac'', ''00:16:3e:00:00:fe'']]]]) > [2009-03-19 16:53:48 xend.XendDomainInfo 9949] DEBUG > (XendDomainInfo:296) parseConfig: config is [''vm'', [''name'', ''EBA2''], > [''memory'', 512], [''vcpus'', 1], [''bootloader'', > ''/usr/lib/xen/boot/domUloader.py''], [''bootloader_args'', > ...
2009 Jun 30
2
syslinux 3.11 patch for handling both KVM and serial console input
...t in al,dx + mov byte [FromFlag],45 ; '-' flags input from serial ret -.kbd: mov ah,10h ; Get keyboard input +.kbd: mov byte [FromFlag],43 ; '+' flags input from console + mov ah,10h ; Get keyboard input int 16h cmp al,0E0h jnz .not_ext --- s_yslinux-3.11.orig/parseconfig.inc 2005-08-30 15:36:49.000000000 -0700 +++ s_yslinux-3.11.new/parseconfig.inc 2009-03-20 13:51:17.000000000 -0700 @@ -393,6 +393,7 @@ section .latebss alignb 4 ; For the good of REP MOVSD +FromFlag resb 1 ; ADP: becomes '-' for serial, '+' for kbd command_...
2008 Mar 26
5
[Xen-users] xend (12, ''Cannot allocate memory'')
...vice'', [''vif'', [''bridge'', ''xenbr1''], [''mac'', ''00:16:3e:4c:c0:01''], [''type'', ''ioemu'']]]]) [2008-03-19 14:07:43 xend.XendDomainInfo 3069] DEBUG (XendDomainInfo:306) parseConfig: config is [''vm'', [''name'', ''centos-5.1_core_image''], [''memory'', 4024], [''maxmem'', 4024], [''on_poweroff'', ''destroy''], [''on_reboot'', ''restart'...
2008 Mar 20
1
xend (12, ''Cannot allocate memory'')
...vice'', [''vif'', [''bridge'', ''xenbr1''], [''mac'', ''00:16:3e:4c:c0:01''], [''type'', ''ioemu'']]]]) [2008-03-19 14:07:43 xend.XendDomainInfo 3069] DEBUG (XendDomainInfo:306) parseConfig: config is [''vm'', [''name'', ''centos-5.1_core_image''], [''memory'', 4024], [''maxmem'', 4024], [''on_poweroff'', ''destroy''], [''on_reboot'', ''restart'...
2006 May 18
4
Fail to create hvm domain
...''mode'', ''w'']]], [''device'', [''vif'', [''mac'', ''00:16:3e:00:00:04''], [''type'', ''ioemu'']]]]) [2006-05-18 14:48:06 xend.XendDomainInfo] DEBUG (XendDomainInfo:290) parseConfig: config is [''vm'', [''name'', ''winxp''], [''memory'', 512], [''vcpus'', 1], [''image'', [''hvm'', [''kernel'', ''/usr/lib/xen/boot/hvmloader''], ['...
2006 May 17
0
RE: correction... cannot create 2GB (not 2MB) domU
...#39;'vbd'', [''uname'', ''file:/mnt/xenlsg/xenimages/sles10min.fil.img''], [''dev'', ''sda1''], [''mode'', ''w'']]]]) > [2006-05-17 13:48:14 xend.XendDomainInfo] DEBUG (XendDomainInfo:290) parseConfig: config is [''vm'', [''name'', ''2MBmem''], [''memory'', 2048], [''vcpus'', 1], [''image'', [''linux'', [''kernel'', ''/boot/vmlinuz-xen''], [''ram...