several small fixes

git-svn-id: svn://kolibrios.org@8917 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2021-06-21 23:50:32 +00:00
parent 55f9b7ebf1
commit f76e4ee396
4 changed files with 6 additions and 4 deletions

Binary file not shown.

View File

@ -6,6 +6,7 @@ To turn on APIC you have to:
1) Run Installer (install.kex)
2) Wait 3 seconds and get sure that there is a message about succesfull
file generation /rd/1/drivers/devices.dat
Note: log can be found in /tmp0/1/acpi.log
3) Make kernel restart (MENU -> END -> HOME key)
4) Check that kernel and drivers are working well.
5) Save kolibri.img. Now each time you boot APIC would be turned on automatically.
@ -18,6 +19,7 @@ To turn on APIC you have to:
1) Çàïóñòèòü óñòàíîâùèê (install.kex)
2) Ïîäîæäàòü 3 ñåêóíäû è óáåäèòüñÿ, ÷òî ïîêàçàëîñü ñîîáùåíèå
îá óñïåøíîé ãåíåðàöèè /rd/1/drivers/devices.dat
Ëîã äðàéâåðà íàõîäèòñÿ â /tmp0/1/acpi.log
3) Ñäåëàòü ðåñòàðò ÿäðà (Ìåíþ -> Çàâåðøåíèå ðàáîòû -> ßäðî)
4) Ïðîâåðèòü ðàáîòó ÿäðà è äðàéâåðîâ
5) Ñîõðàíèòü îáðàç. Òåïåðü APIC áóäåò âêëþ÷àòüñÿ ïðè êàæäîé çàãðóçêå ÿäðà.

View File

@ -3,9 +3,9 @@
// 70.5 - get volume info and label
#define ABOUT_TITLE "EOLITE 5 Beta8"
#define TITLE_EOLITE "Eolite File Manager 5 Beta8"
#define TITLE_KFM "Kolibri File Manager 2 Beta8";
#define ABOUT_TITLE "EOLITE 5 RC2"
#define TITLE_EOLITE "Eolite File Manager 5 RC2"
#define TITLE_KFM "Kolibri File Manager 2 RC2";
#define MEMSIZE 1024 * 250
#include "../lib/clipboard.h"

View File

@ -150,7 +150,7 @@ void _SystemDiscs::Draw()
for (i=0;i<list.count;i++) {
strcpy(#dev_name, list.get(i));
GetDiskIconAndName(dev_name[1], #dev_icon, #disc_name);
if (strstr(#path, #dev_name)!=0) is_active=true; else is_active=false;
if (strstr(#path, #dev_name)==#path) is_active=true; else is_active=false;
DrawBar(draw_x,draw_y,6,DEV_H+1,0xFFFFFF);
DrawBar(draw_x+6+18,draw_y,160-6-18,DEV_H+1,0xFFFFFF);