Displaying 1 result from an estimated 1 matches for "dirname_max".
2009 Jul 27
1
[PATCH] mboot using module path
...jnz .noprefix ; No prefix, and we have the server
push si ; Add common prefix
- mov si,PathPrefix
+; mov si,PathPrefix
+ mov si,CurrentDirName
call strcpy
dec di
pop si
---end
---
from: Damien Nozay
[PATCH 02/04] add DIRNAME_MAX definition
add DIRNAME_MAX definition which can be different from FILENAME_MAX.
FILENAME_MAX is used in many places and also for directories. Thus when
changing FILENAME_MAX / FILENAME_MAX_LG2 definitions, everything can
explode and the linker script may not be happy.
signed-off-by: Damien Nozay...