search for: adv_write

Displaying 4 results from an estimated 4 matches for "adv_write".

2010 May 30
1
MENU SAVE vs RAID-1
Hi, How does MENU SAVE interact with /boot on RAID-1? Doesn't it introduce a hidden inconsistency, which may resolve in unexpected ways? (Like mentioned in extlinux.txt at boot-once support.) -- Thanks, Feri.
2008 Nov 03
1
[PATCH 1/1] COMBOOT: add get config file full name
...9;m not sure what registers are available and utilizing the stack would require changes in all variants. diff --git a/core/comboot.inc b/core/comboot.inc index 810d825..22757e7 100644 --- a/core/comboot.inc +++ b/core/comboot.inc @@ -1033,6 +1033,18 @@ comapi_getadv: ; comapi_writeadv equ adv_write +; +; INT 22h AX=001Eh Get full name of config file +; +%if IS_SYSLINUX +comapi_configfilefull mov P_ES,cs + mov P_BX,ConfigNameFull + clc + ret +%else +comapi_configfilefull equ comapi_err +%endif + section .data %macro int...
2008 Nov 10
2
[PATCH 1/1] COMBOOT API: Add get current working directory call to most
...irName (minus the trailing "/"). Based on current head. Conflicts with a previous patch I e-mailed. diff --git a/core/comboot.inc b/core/comboot.inc index 810d825..bdc43ba 100644 --- a/core/comboot.inc +++ b/core/comboot.inc @@ -1033,6 +1033,14 @@ comapi_getadv: ; comapi_writeadv equ adv_write +; +; INT 22h AX=001Eh Get current working directory +; +comapi_getcwd mov P_ES,cs + mov P_BX,CurrentDirName + clc + ret + section .data %macro int21 2 @@ -1085,6 +1093,7 @@ int22_table: dw comapi_shufflerm ; 001B cleanup, shuffle and boot to rm dw comapi_getadv ; 001C get pointer t...
2008 Dec 04
2
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT
...Is there a better way? linux:Documentation/CodingStyle alludes to GCC's documentation on RTL for styling. diff --git a/core/comboot.inc b/core/comboot.inc index 810d825..24c69e2 100644 --- a/core/comboot.inc +++ b/core/comboot.inc @@ -1033,6 +1033,72 @@ comapi_getadv: ; comapi_writeadv equ adv_write +; +; INT 22h AX=001Eh Get current working directory +; +comapi_getcwd: + mov P_ES,cs + mov P_BX,CurrentDirName + clc + ret + +; +; INT 22h AX=001Fh Open directory +; +%if IS_SYSLINUX +comapi_opendir: + push ds + mov ds,P_ES + mov si,P_SI + mov di,InitRD + call mangle_name + pop ds + ca...