[MENTION=46]haxxxen[/MENTION]
I just figured out that webMAN MOD is not using the sys_map_path as I do (syscall 35). [MENTION=89]aldostools[/MENTION] change it probably to use only the syscall 8 :
That's why it is not working for me but working with webMAN
I just figured out that webMAN MOD is not using the sys_map_path as I do (syscall 35). [MENTION=89]aldostools[/MENTION] change it probably to use only the syscall 8 :
static int sys_map_path(char *oldpath, char *newpath)
{
#if 0
system_call_2(35, (uint64_t)(uint32_t)oldpath, (uint64_t)(uint32_t)newpath);
#else
char *paths[1]={NULL}; char *new_paths[1]={NULL};
paths[0]=oldpath;new_paths[0]=newpath;
system_call_4(8, SYSCALL8_OPCODE_MAP_PATHS, (uint64_t)(uint32_t)paths, (uint64_t)(uint32_t)new_paths, 1);
#endif
return (int)p1;
}
That's why it is not working for me but working with webMAN

