search for: c9ec166

Displaying 2 results from an estimated 2 matches for "c9ec166".

Did you mean: c9e4146
2008 Nov 10
1
[PATCH 1/1] COMBOOT API: Add get current working directory call to most (revised)
...Include trailing "/" on SYSLINUX and ISOLINUX. Copy TFTP Prefix as-is in PXELINUX. Initialize CurrentDirName to "./" in EXTLINUX (until a better solution is created). Based on current head plus the patch from yesterday. diff --git a/core/extlinux.asm b/core/extlinux.asm index c9ec166..972a2f6 100644 --- a/core/extlinux.asm +++ b/core/extlinux.asm @@ -43,6 +43,7 @@ SYMLINK_SECTORS equ 2 ; Max number of sectors in a symlink ; (should be >= FILENAME_MAX) ROOT_DIR_WORD equ 0x002F +CUR_DIR_DWORD equ 0x00002F2E ; ; This is what we need to do when idle @@ -845,7 +846,7...
2008 Nov 10
2
[PATCH 1/1] COMBOOT API: Add get current working directory call to most
...nt22_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 symlinks per lookup SYMLINK_SECTORS equ 2 ; Max number of sectors in a symlink ; (should be >= FILENAME_MAX) +ROOT_DIR_WORD equ 0x002F + ; ; This is what we need to do w...