Jump to content

Recommended Posts


Posted

File is not available anymore. You can zip and attach here custom txtsetup.oem and custom .INFs, as well as any other plain text configuration files. As long as no executable files are included, it's OK.

Posted
7 hours ago, dencorso said:

File is not available anymore. You can zip and attach here custom txtsetup.oem and custom .INFs, as well as any other plain text configuration files. As long as no executable files are included, it's OK.

Okay. I have to find those files . propably i have lost as i formated one of my partition in a mistake when installing ubuntu.

Posted
3 minutes ago, Dibya said:

Okay. I have to find those files . propably i have lost as i formated one of my partition in a mistake when installing ubuntu.

Or you can re-create them, it should be easy/quick for you.

Also, you may ask Fernando, he probably has a copy of them.

jaclaz
 

Posted (edited)
2 hours ago, jaclaz said:

Or you can re-create them, it should be easy/quick for you.

Also, you may ask Fernando, he probably has a copy of them.

jaclaz
 

yes ,I can re create them.

Okay i am going to pm fernado.

Sunday i will see OpenFabric NVMe driver if i can make txtsetup.oem for it . I have personal nlite addon to slipstream storport.

Please Test the driver your self . I will try to add missing function into ntoskrnl.exe (first time trying though for ntoskrnl). I have no nvme drive currently with me.

Edited by Dibya
Posted (edited)

@Dibya: thanks thats cool, you meant memcpy_s (for NVMe)?

I could add it to the source code then compile it with wdk7 (targeting xp), this is from mingw-w64 crt:

static errno_t __cdecl
_int_memcpy_s (void *d, size_t dn, const void *s, size_t n)
{
if (!n)
return 0;

if (!d || !s)
{
if (d)
memset (d, 0, dn);
errno = EINVAL;
return EINVAL;
}

if (dn < n)
{
memset (d, 0, dn);
errno = ERANGE;
return ERANGE;
}

memcpy (d, s, n);
return 0;
}

Edited by TuMaGoNx
Posted

BTW, could you please update jumper's batch to work with XomPie 0.4a ? I think it was a great optional, but it wasn't updated from 0.2 up to now...

Posted (edited)

GReat Friends . I am making txtsetup.oem

can you TuMaGoNx compile linux usb 3.0/3.1 driver for xp? Stupid intel not provided any driver.

Edited by Dibya
  • 2 weeks later...
Posted

In My Extended XP system , where palemoon 27.0.02 got updated 27.0.03

After update Palemoon was no more working with no a valid pe image then tried xompie same result. I found palemoon was working by opening taskmanager. I changed the os version of palemoon.exe with FCwin2k oh my god palemoon started working . It seem that moonchild is aware of us . He donot want to support no problem tell me what he would get out of blocking us.

Posted
7 minutes ago, dencorso said:

May Pale Moon rest in peace. Let Moonchild get what he wants: to be forgotten.

Moonchild WHO? :unsure:

;)

jaclaz
 

Posted

Perhaps a great donation was made, at least I would not be surprised. As for me, they should be happy with Palemoon, absolutely simply without a level! :thumbdown

:)

Posted

It sure would. But there's no generic MS USB3 driver, and modding kernel32.dll is not useful, in this case... what ought to be modded for WDM drivers would be the ntdll.dll (or even the appropriate one of the ntoskrnl files), if I'm not mistaken...

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...