Unfortunately, don't have this hardware so I cannot test it.
I could add this type to allowed device list, so you can test it. But there is no guarantee...
Search found 1307 matches
- Mon Apr 29, 2024 7:42 pm
- Forum: Network
- Topic: Драйвера для Realtek RTL8125BG
- Replies: 4
- Views: 1582
- Sun Apr 28, 2024 8:33 pm
- Forum: Network
- Topic: Драйвера для Realtek RTL8125BG
- Replies: 4
- Views: 1582
Re: Драйвера для Realtek RTL8125BG
Currently, RTL8125 is not supported.
It seems however possible to add support for it in the existing KolibriOS RTL8169 driver
It seems however possible to add support for it in the existing KolibriOS RTL8169 driver
- Sun Mar 10, 2024 9:41 pm
- Forum: Network
- Topic: SSH client
- Replies: 21
- Views: 23449
Re: SSH client
V0.12 (svn #9991) encryption and authentication algorithms are no longer hard-coded and will now be selected automatically, as it should be.
- Sat Mar 09, 2024 11:12 pm
- Forum: Network
- Topic: SSH client
- Replies: 21
- Views: 23449
Re: SSH client
V0.11 (svn #9990) now adds support for encrypt-then-mac modes. (Only tested hmac-sha2-256-etm so far)
- Wed Mar 06, 2024 11:25 pm
- Forum: Network
- Topic: SSH client
- Replies: 21
- Views: 23449
Re: SSH client
V0.10 (svn #9987) now uses the ChaCha20-Poly1305 algorithm.
- Tue Mar 05, 2024 12:51 pm
- Forum: Network
- Topic: IRC client
- Replies: 26
- Views: 23766
- Mon Mar 04, 2024 7:14 pm
- Forum: Network
- Topic: IRC client
- Replies: 26
- Views: 23766
Re: M68K Port
You cannot 'port' KolibriOS to your M68K computer. KolibriOS kernel, drivers, libraries and applications are mostly written in x86 assembly without portability in mind, tying it very tightly to this specific architecture. In practice it would mean a complete rewrite of everything KolibriOS, leaving ...
- Mon Feb 26, 2024 10:22 pm
- Forum: Miscellaneous
- Topic: Proposing to leave only the Russian and English versions of the distribution
- Replies: 8
- Views: 2652
Re: Proposing to leave only the Russian and English versions of the distribution
French and Belgian keyboard layouts in KolibriOS are inaccurate because they are encoded in CP866 which lacks symbols such as ç, è, é.
- Fri Feb 23, 2024 7:58 pm
- Forum: Coding
- Topic: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
- Replies: 6
- Views: 2299
Re: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
Committed in #9978
- Mon Feb 19, 2024 11:41 pm
- Forum: Coding
- Topic: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
- Replies: 6
- Views: 2299
Re: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
Actually works on my computer this time
- Sun Feb 18, 2024 9:49 pm
- Forum: Coding
- Topic: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
- Replies: 6
- Views: 2299
Re: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
Please try like this instead: (inc edx moved up) ;------------------------------------------- ; Count characters until 0, 10, 13 or 3 byte push edx xor esi, esi dec esi .next_char: inc esi cmp esi, [textbox_width] je .cnt_done mov al, byte[edx] inc edx cmp al, 13 jbe .cnt_done test al, 10000000b jz ...
- Sun Feb 18, 2024 9:45 pm
- Forum: Coding
- Topic: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
- Replies: 6
- Views: 2299
Re: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
Aha, good that you sent a reminder! It seems quite obvious to me today that if there are two non-printable characters in a row, code is stuck in an endless loop here: ;------------------------------------------- ; Count characters until 0, 10, 13 or 3 byte push edx xor esi, esi dec esi .next_char: i...
- Fri Feb 02, 2024 9:18 pm
- Forum: Emulators
- Topic: Эмулятор ядра OS Windows
- Replies: 58
- Views: 64198
Re: Эмулятор ядра OS Windows
... There are some problems in the current design with thread-safety (locking) and possible use-after-free cases.. For causes of the use-after-free. Сan be using fixed or dynamically signature (currentID) in the socket data. When creating a socket, write the signature. Before closing a socket, del ...
- Wed Jan 31, 2024 11:28 pm
- Forum: Emulators
- Topic: Эмулятор ядра OS Windows
- Replies: 58
- Views: 64198
Re: Эмулятор ядра OS Windows
Сейчас делаю интеграцию network функций 75... в ws2_32.dll винды и столкнулся с такой проблемой. Как только запустил работу винды с сокетами у меня через минуту стала падать система Колибри из-за нехватки памяти в ядре. You got the basics right. The reason socket_free is commented out is because st...