search for: ac2ae6f

Displaying 1 result from an estimated 1 matches for "ac2ae6f".

2008 Nov 10
1
[PATCH 1/1] COMBOOT API: Add get current working directory call to most (revised)
...+++ b/core/isolinux.asm @@ -1170,6 +1170,9 @@ get_fs_structures: mov si,di mov di,CurrentDirName call strcpy + mov byte[di],0 ;done in case it's not word aligned + dec di + mov byte[di],'/' pop di pop si diff --git a/core/ldlinux.asm b/core/ldlinux.asm index 75e8fef..ac2ae6f 100644 --- a/core/ldlinux.asm +++ b/core/ldlinux.asm @@ -929,7 +929,7 @@ getfattype: ; This is inefficient as it will copy more than needed ; but not by too much call strcpy - mov ax,syslinux_cfg3 ;Cut it down + mov ax,config_name ;Cut it down pop si sub ax,si mov di,Current...