search for: alignb

Displaying 17 results from an estimated 17 matches for "alignb".

Did you mean: align
2010 Jul 15
1
Accessing command_line from core C code
...m/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 should be used by loaders to indicate @@ -470,6 +471,7 @@ IPAppend db 0 ; Default IPAPPEND option section .uibss alignb 4 ; For the good of REP MOVSD +global command_line command...
2009 Jul 27
1
[PATCH] mboot using module path
...--- diff -u -r -X nodiff syslinux-3.82-orig/core/comboot.inc syslinux-3.82/core/comboot.inc --- syslinux-3.82-orig/core/comboot.inc 2009-06-09 10:19:25.000000000 -0700 +++ syslinux-3.82/core/comboot.inc 2009-07-27 11:23:23.000000000 -0700 @@ -1045,5 +1064,6 @@ section .bss1 alignb 4 DOSErrTramp resd 33 ; Error trampolines +CurrentDirName resb DIRNAME_MAX ConfigName resb FILENAME_MAX -CurrentDirName resb FILENAME_MAX + diff -u -r -X nodiff syslinux-3.82-orig/core/extlinux.asm syslinux-3.82/core/extlinux.asm --- syslinux-3.82-orig/core/extlinux...
2009 Jun 30
2
syslinux 3.11 patch for handling both KVM and serial console input
...rom 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_line resb max_cmd_len+2 ; Command line buffer alignb 4 default_cmd resb max_cmd_len+1 ; "default" command line --- s_yslinux-3.11.orig/ui.inc 2005-08-30 15:54:14.00000...
2009 Dec 07
3
[PATCH] memdisk: "safe hook" and mBFT
...drivers. + dd mBFT ; Offset from hook to the mBFT + Int13Start: cmp word [cs:Recursive],0 jne recursive @@ -1038,7 +1058,25 @@ Mover_dst1: db 0, 0, 0 ; Low 24 bits of target addy Mover_dst2: db 0 ; High 8 bits of source addy Mover_dummy2: dd 0, 0, 0, 0 ; More space for the BIOS - alignb 4, db 0 + alignb 16, db 0 +mBFT: +; Fields common to all ACPI tables + dd '' '' ; ACPI signature ("mBFT") + ; This is filled-in by the installer + ; to avoid an accidentally valid mBFT + dd mBFT_Len ; ACPI table length + db 1 ; ACPI revision + db 0 ;...
2008 Jul 16
1
[PATCH] isolinux: rename CurDir to CurrentDir
...tian Index: syslinux-3.71-pre7/core/isolinux.asm =================================================================== --- syslinux-3.71-pre7.orig/core/isolinux.asm 2008-07-13 19:52:27.000000000 +0200 +++ syslinux-3.71-pre7/core/isolinux.asm 2008-07-13 19:53:11.000000000 +0200 @@ -111,7 +111,7 @@ alignb 4 ISOFileName resb 64 ; ISO filename canonicalization buffer ISOFileNameEnd equ $ -CurDir resb dir_t_size ; Current directory +CurrentDir resb dir_t_size ; Current directory RootDir resb dir_t_size ; Root directory FirstSecSum resd 1 ; Checksum of bytes 64-2048 ImageDwords resd 1 ;...
2008 Sep 09
1
[PATCH] parsecmd: show keyword in err_noparm message
...@@ -103,7 +105,7 @@ section .data err_badcfg db 'Unknown keyword in configuration file: ',0 -err_noparm db 'Missing parameter in configuration file.', CR, LF, 0 +err_noparm db 'Missing parameter in configuration file. Keyword: ',0 section .uibss alignb 4
2002 Oct 06
2
Does pxelinux work with >1GB RAM?
On machines with 2GB RAM, pxelinux doesn't seem to work for me. With Intel PXE, I had to limit the memory available to PXE to 768MB RAM. Has anyone tried pxelinux on machines with >= 1GB RAM? How do I limit memory to 768MB for pxelinux? H.J.
2009 Jul 15
0
[PATCH] gfxboot: parse TIMEOUT keyword
...yword_text_default dw do_default + dw keyword_text_timeout + dw do_timeout keyword_cnt dw ($-keywords)/4 ; menu entry descriptor @@ -971,6 +1039,9 @@ dentry_buf_len equ $ - dentry_buf max_cmd_len equ 2047 command_line resb max_cmd_len+2 +NumBuf resb 15 +NumBufEnd resb 1 + alignb 4 derivative_id resb 1 drivenumber resb 1
2008 Nov 03
1
[PATCH 1/1] COMBOOT: add get config file full name
...dw comapi_writeadv ; 001D write ADV to disk + dw comapi_configfilefull ; 001E get full name of config f int22_count equ ($-int22_table)/2 APIKeyWait db 0 @@ -1109,3 +1122,4 @@ err_comlarge db 'COMBOOT image too large.', CR, LF, 0 alignb 4 DOSErrTramp resd 33 ; Error trampolines ConfigName resb FILENAME_MAX +ConfigNameFull resb FILENAME_MAX ; Can't find a better length definition diff --git a/core/ldlinux.asm b/core/ldlinux.asm index c7f6577..859a52e 100644 --- a/core/ldlinux.asm +++ b/core/ldl...
2004 Oct 07
1
x86 vs. x86_64 detection proof of concept patch (try two)
...eout: call getint diff -u syslinux-2.11/pxelinux.asm syslinux-2.11.new/pxelinux.asm --- syslinux-2.11/pxelinux.asm 2004-08-04 00:16:53.000000000 -0600 +++ syslinux-2.11.new/pxelinux.asm 2004-10-04 17:33:56.000000000 -0600 @@ -304,6 +304,7 @@ command_line resb max_cmd_len+2 ; Command line buffer alignb 4 default_cmd resb max_cmd_len+1 ; "default" command line +CpuIs64 resw 1 ; Is this cpu a x86_64 machine? ; ; PXE packets which don't need static initialization @@ -392,6 +393,27 @@ call writestr ; +; ID the CPU: Shamelessly borrowed from the Linux kernel arch/x86_64/kern...
2012 Nov 02
10
[PATCH 0/9] elflink fixes
From: Matt Fleming <matt.fleming at intel.com> Here are the patches that I've got queued up based on the very helpful feedback I received from people testing Syslinux 5.00-pre9. Unless anyone has any concerns these will make it into Syslinux 5.00-pre10. Matt Fleming (9): pxe: Don't call open_config() from the pxe core ldlinux: Print a warning if no config file is found
2007 Jan 04
2
Automatically choose between 32-bit and 64-bit kernel
...no serial port) VKernelBytes dw 0 ; Number of bytes used by vkernels VKernel db 0 ; Have we seen any "label" statements? +Is64Bit db 0 ; Is this CPU 64-bit? +HasDefault64 db 0 ; We've seen a 'default64' statement section .latebss alignb 4 ; For the good of REP MOVSD -- Byron Stanoszek Ph: (330) 644-3059 Systems Programmer Fax: (330) 644-8110 Commercial Timesharing Inc. Email: byron at comtime.com
2008 Nov 10
2
[PATCH 1/1] COMBOOT API: Add get current working directory call to most
...oot to rm dw comapi_getadv ; 001C get pointer to ADV dw comapi_writeadv ; 001D write ADV to disk + dw comapi_getcwd ; 001E get current working directory int22_count equ ($-int22_table)/2 APIKeyWait db 0 @@ -1109,3 +1118,4 @@ err_comlarge db 'COMBOOT image too large.', CR, LF, 0 alignb 4 DOSErrTramp resd 33 ; Error trampolines ConfigName resb FILENAME_MAX +CurrentDirName resb FILENAME_MAX diff --git a/core/extlinux.asm b/core/extlinux.asm index 24d0d92..c9ec166 100644 --- a/core/extlinux.asm +++ b/core/extlinux.asm @@ -42,6 +42,8 @@ MAX_SYMLINKS equ 64 ; Maximum number of sy...
2009 Feb 08
1
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT; Try 2
...et current working directory + dw comapi_opendir ; 0020 open directory + dw comapi_readdir ; 0021 read directory + dw comapi_closedir ; 0022 close directory int22_count equ ($-int22_table)/2 APIKeyWait db 0 @@ -1124,3 +1194,4 @@ err_comlarge db 'COMBOOT image too large.', CR, LF, 0 alignb 4 DOSErrTramp resd 33 ; Error trampolines ConfigName resb FILENAME_MAX +CurrentDirName resb FILENAME_MAX diff --git a/core/extlinux.asm b/core/extlinux.asm index 24d0d92..c7a51e9 100644 --- a/core/extlinux.asm +++ b/core/extlinux.asm @@ -42,6 +42,9 @@ MAX_SYMLINKS equ 64 ; Maximum number of sy...
2008 Dec 04
2
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT
...et current working directory + dw comapi_opendir ; 001F open directory + dw comapi_readdir ; 0020 read directory + dw comapi_closedir ; 0021 close directory int22_count equ ($-int22_table)/2 APIKeyWait db 0 @@ -1109,3 +1179,4 @@ err_comlarge db 'COMBOOT image too large.', CR, LF, 0 alignb 4 DOSErrTramp resd 33 ; Error trampolines ConfigName resb FILENAME_MAX +CurrentDirName resb FILENAME_MAX diff --git a/core/extlinux.asm b/core/extlinux.asm index 24d0d92..c7a51e9 100644 --- a/core/extlinux.asm +++ b/core/extlinux.asm @@ -42,6 +42,9 @@ MAX_SYMLINKS equ 64 ; Maximum number of sy...
2006 Mar 10
2
unload memdisk+FreeDOS => local boot
Sensei H. Peter Anvin, I have successfully modified/enhanced memdisk so that one can chainload a local operating system after running diskless FreeDOS. I would like your advice regarding the appropriate interface for invoking this functionality. In addition, I would like to know what steps to take so that you feel comfortable considering including this in the standard syslinux distribution.
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com> The following patch series is available at, git://git.zytor.com/users/mfleming/syslinux.git elflink All patches are against the 'elflink' branch. This series fixes a few serious bugs and some behavioural incompatibilities with the 4.x series. Matt Fleming (19): ldlinux: Initialise 'p' before using it. ldlinux: Parse