forked from KolibriOS/kolibrios
Fixed all misuse of "/rd/1" (changed to "/sys"; all except "/programs/*" and "/kernel/*")
ati2d: fixed log creation git-svn-id: svn://kolibrios.org@9583 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -250,7 +250,7 @@ A7. First, you need to build the corresponding binary as described in Q1/A1 or
|
|||||||
Q2/A2.
|
Q2/A2.
|
||||||
To test a program, it is sufficient to put it to some place accessible
|
To test a program, it is sufficient to put it to some place accessible
|
||||||
to the working KolibriOS and just run it from there. Drivers are loaded
|
to the working KolibriOS and just run it from there. Drivers are loaded
|
||||||
from the folder /rd/1/drivers/, which is initialized from kolibri.img,
|
from the folder /rd/1/drivers, which is initialized from kolibri.img,
|
||||||
so testing a driver requires either copying the compiled binary to
|
so testing a driver requires either copying the compiled binary to
|
||||||
/rd/1/drivers manually between KolibriOS startup and loading driver or
|
/rd/1/drivers manually between KolibriOS startup and loading driver or
|
||||||
inserting the driver to the image kolibri.img outside of KolibriOS.
|
inserting the driver to the image kolibri.img outside of KolibriOS.
|
||||||
|
@@ -90,7 +90,7 @@ int main(int argc, char **argv)
|
|||||||
gui_add_pathview(main_window, kolibri_pathview(&pview, X_Y(10, 50), 330, 1, 0, dlg_opensave->openfile_path, temp_path, 0, 0)); // black font, no background, font 1
|
gui_add_pathview(main_window, kolibri_pathview(&pview, X_Y(10, 50), 330, 1, 0, dlg_opensave->openfile_path, temp_path, 0, 0)); // black font, no background, font 1
|
||||||
|
|
||||||
filebrowser brows;
|
filebrowser brows;
|
||||||
filedata = load_file_inmem("/rd/1/File managers/z_icons.png", &read_bytes);
|
filedata = load_file_inmem("/sys/File managers/z_icons.png", &read_bytes);
|
||||||
image_data_rgb = malloc(icon_rgb_size * 20); // we know size
|
image_data_rgb = malloc(icon_rgb_size * 20); // we know size
|
||||||
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> image_data
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> image_data
|
||||||
image_data = (*img_decode)(filedata, read_bytes, 0);
|
image_data = (*img_decode)(filedata, read_bytes, 0);
|
||||||
@@ -100,13 +100,13 @@ int main(int argc, char **argv)
|
|||||||
(*img_destroy)(image_data);
|
(*img_destroy)(image_data);
|
||||||
free(filedata);
|
free(filedata);
|
||||||
|
|
||||||
filedata = load_file_inmem("/rd/1/File managers/icons.ini", &read_bytes);
|
filedata = load_file_inmem("/sys/File managers/icons.ini", &read_bytes);
|
||||||
gui_add_filebrowser(main_window, kolibri_filebrowser(&brows, X_Y(10, 400), X_Y(80, 300), X_Y(6, 9), X_Y(16, 16), image_data_rgb, NULL, 24,
|
gui_add_filebrowser(main_window, kolibri_filebrowser(&brows, X_Y(10, 400), X_Y(80, 300), X_Y(6, 9), X_Y(16, 16), image_data_rgb, NULL, 24,
|
||||||
filedata, filedata + read_bytes,
|
filedata, filedata + read_bytes,
|
||||||
0x00FF00, 0xbbddff, 0x000000, 0xFFFFFF, 0xFF0000));
|
0x00FF00, 0xbbddff, 0x000000, 0xFFFFFF, 0xFF0000));
|
||||||
|
|
||||||
// try devices "/" - good
|
// try devices "/" - good
|
||||||
brows.folder_data = read_folderdata("/rd/1");
|
brows.folder_data = read_folderdata("/sys");
|
||||||
brows.select_panel_counter = 1; // if want to show selection
|
brows.select_panel_counter = 1; // if want to show selection
|
||||||
|
|
||||||
do /* Start of main activity loop */
|
do /* Start of main activity loop */
|
||||||
|
@@ -80,7 +80,7 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
// load sample file
|
// load sample file
|
||||||
//int res, len;
|
//int res, len;
|
||||||
//res = editor_openfile(ed, "/rd/1/boardlog.txt", &len);
|
//res = editor_openfile(ed, "/sys/boardlog.txt", &len);
|
||||||
//debug_board_printf("loaded sample file err=%d, len=%d\n", res, len);
|
//debug_board_printf("loaded sample file err=%d, len=%d\n", res, len);
|
||||||
|
|
||||||
//adding sample text @cursor
|
//adding sample text @cursor
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
#define KOLIBRI_COLORIALOG_H
|
#define KOLIBRI_COLORIALOG_H
|
||||||
|
|
||||||
char cd_com_area_name[] = "FFFFFFFF_color_dialog";
|
char cd_com_area_name[] = "FFFFFFFF_color_dialog";
|
||||||
char cd_start_path[] = "/rd/1/colrdial";
|
char cd_start_path[] = "/sys/colrdial";
|
||||||
|
|
||||||
typedef struct __attribute__ ((__packed__)) {
|
typedef struct __attribute__ ((__packed__)) {
|
||||||
unsigned int type;
|
unsigned int type;
|
||||||
|
@@ -208,8 +208,8 @@ static inline filebrowser* kolibri_new_filebrowser(uint32_t x_w, uint32_t y_h, u
|
|||||||
inline filebrowser* kolibri_filebrowser_def(filebrowser* fb, uint32_t x_w, uint32_t y_h)
|
inline filebrowser* kolibri_filebrowser_def(filebrowser* fb, uint32_t x_w, uint32_t y_h)
|
||||||
{
|
{
|
||||||
// load default icons and icon association
|
// load default icons and icon association
|
||||||
char icons_ini[] = "/rd/1/File managers/icons.ini";
|
char icons_ini[] = "/sys/File managers/icons.ini";
|
||||||
char icons16img[] = "/rd/1/File managers/z_icons.png";
|
char icons16img[] = "/sys/File managers/z_icons.png";
|
||||||
|
|
||||||
return kolibri_filebrowser(fb, x_w, y_h, X_Y(9, 16), X_Y(16, 16), icon_raw_area, icon_palette_raw, icon_res,
|
return kolibri_filebrowser(fb, x_w, y_h, X_Y(9, 16), X_Y(16, 16), icon_raw_area, icon_palette_raw, icon_res,
|
||||||
ini_file_start, ini_file_end,
|
ini_file_start, ini_file_end,
|
||||||
|
@@ -2,8 +2,8 @@
|
|||||||
#define KOLIBRI_OPENDIALOG_H
|
#define KOLIBRI_OPENDIALOG_H
|
||||||
|
|
||||||
char sz_com_area_name[] = "FFFFFFFF_open_dialog";
|
char sz_com_area_name[] = "FFFFFFFF_open_dialog";
|
||||||
char sz_dir_default_path[] = "/rd/1";
|
char sz_dir_default_path[] = "/sys";
|
||||||
char sz_start_path[] = "/rd/1/File managers/opendial";
|
char sz_start_path[] = "/sys/File managers/opendial";
|
||||||
|
|
||||||
enum open_dialog_mode {
|
enum open_dialog_mode {
|
||||||
OPEN,
|
OPEN,
|
||||||
|
@@ -101,12 +101,12 @@ fake_on_redraw:
|
|||||||
|
|
||||||
section '.rdata' align 16
|
section '.rdata' align 16
|
||||||
|
|
||||||
sz_proc_lib db "/rd/1/lib/proc_lib.obj",0
|
sz_proc_lib db "/sys/lib/proc_lib.obj",0
|
||||||
sz_OpenDialog_init db "OpenDialog_init",0
|
sz_OpenDialog_init db "OpenDialog_init",0
|
||||||
sz_OpenDialog_start db "OpenDialog_start",0
|
sz_OpenDialog_start db "OpenDialog_start",0
|
||||||
sz_com_area_name db "FFFFFFFF_open_dialog",0
|
sz_com_area_name db "FFFFFFFF_open_dialog",0
|
||||||
sz_dir_default_path db "/rd/1",0
|
sz_dir_default_path db "/sys",0
|
||||||
sz_start_path db "/rd/1/File managers/opendial",0
|
sz_start_path db "/sys/File managers/opendial",0
|
||||||
|
|
||||||
|
|
||||||
section '.data' align 16
|
section '.data' align 16
|
||||||
|
@@ -596,12 +596,12 @@ dd filefilter.end - filefilter
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
sz_proc_lib db "/rd/1/lib/proc_lib.obj",0
|
sz_proc_lib db "/sys/lib/proc_lib.obj",0
|
||||||
sz_OpenDialog_init db "OpenDialog_init",0
|
sz_OpenDialog_init db "OpenDialog_init",0
|
||||||
sz_OpenDialog_start db "OpenDialog_start",0
|
sz_OpenDialog_start db "OpenDialog_start",0
|
||||||
sz_com_area_name db "FFFFFFFF_open_dialog",0
|
sz_com_area_name db "FFFFFFFF_open_dialog",0
|
||||||
sz_dir_default_path db "/rd/1",0
|
sz_dir_default_path db "/sys",0
|
||||||
sz_start_path db "/rd/1/File managers/opendial",0
|
sz_start_path db "/sys/File managers/opendial",0
|
||||||
|
|
||||||
msg_print db '%s',0x0D,0x0A,0
|
msg_print db '%s',0x0D,0x0A,0
|
||||||
msg_init_fail db 'Cannot initialize mpg123 library: %s', 0x0D,0x0A,0
|
msg_init_fail db 'Cannot initialize mpg123 library: %s', 0x0D,0x0A,0
|
||||||
|
@@ -59,7 +59,7 @@ int main(int argc, char *argv[])
|
|||||||
::"a"(40), "b"(0xc0000027));
|
::"a"(40), "b"(0xc0000027));
|
||||||
|
|
||||||
if(argc < 2)
|
if(argc < 2)
|
||||||
uf = load_file("/RD/1/EXAMPLE.ASM");
|
uf = load_file("/SYS/EXAMPLE.ASM");
|
||||||
else uf = load_file(argv[1]);
|
else uf = load_file(argv[1]);
|
||||||
|
|
||||||
if(uf.data == NULL ||
|
if(uf.data == NULL ||
|
||||||
|
@@ -31,8 +31,8 @@ int app_main(int argc, char *argv[])
|
|||||||
SDL_printf("Couldn't initialize TTF library\n");
|
SDL_printf("Couldn't initialize TTF library\n");
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
fnt=TTF_OpenFont("/RD/1/INDIGO.TTF",50);
|
fnt=TTF_OpenFont("/SYS/INDIGO.TTF",50);
|
||||||
fnt1=TTF_OpenFont("/RD/1/HYDROGEN.TTF",35);
|
fnt1=TTF_OpenFont("/SYS/HYDROGEN.TTF",35);
|
||||||
TTF_SetFontStyle(fnt,TTF_STYLE_ITALIC|TTF_STYLE_BOLD|TTF_STYLE_UNDERLINE);
|
TTF_SetFontStyle(fnt,TTF_STYLE_ITALIC|TTF_STYLE_BOLD|TTF_STYLE_UNDERLINE);
|
||||||
txt=TTF_RenderText_Solid(fnt,"MenuetOS",kolor);
|
txt=TTF_RenderText_Solid(fnt,"MenuetOS",kolor);
|
||||||
if(!txt)
|
if(!txt)
|
||||||
|
@@ -98,12 +98,12 @@ fake_on_redraw:
|
|||||||
|
|
||||||
section '.rdata' align 16
|
section '.rdata' align 16
|
||||||
|
|
||||||
sz_proc_lib db "/rd/1/lib/proc_lib.obj",0
|
sz_proc_lib db "/sys/lib/proc_lib.obj",0
|
||||||
sz_OpenDialog_init db "OpenDialog_init",0
|
sz_OpenDialog_init db "OpenDialog_init",0
|
||||||
sz_OpenDialog_start db "OpenDialog_start",0
|
sz_OpenDialog_start db "OpenDialog_start",0
|
||||||
sz_com_area_name db "FFFFFFFF_open_dialog",0
|
sz_com_area_name db "FFFFFFFF_open_dialog",0
|
||||||
sz_dir_default_path db "/rd/1",0
|
sz_dir_default_path db "/sys",0
|
||||||
sz_start_path db "/rd/1/File managers/opendial",0
|
sz_start_path db "/sys/File managers/opendial",0
|
||||||
|
|
||||||
|
|
||||||
section '.data' align 16
|
section '.data' align 16
|
||||||
|
@@ -596,12 +596,12 @@ dd filefilter.end - filefilter
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
sz_proc_lib db "/rd/1/lib/proc_lib.obj",0
|
sz_proc_lib db "/sys/lib/proc_lib.obj",0
|
||||||
sz_OpenDialog_init db "OpenDialog_init",0
|
sz_OpenDialog_init db "OpenDialog_init",0
|
||||||
sz_OpenDialog_start db "OpenDialog_start",0
|
sz_OpenDialog_start db "OpenDialog_start",0
|
||||||
sz_com_area_name db "FFFFFFFF_open_dialog",0
|
sz_com_area_name db "FFFFFFFF_open_dialog",0
|
||||||
sz_dir_default_path db "/rd/1",0
|
sz_dir_default_path db "/sys",0
|
||||||
sz_start_path db "/rd/1/File managers/opendial",0
|
sz_start_path db "/sys/File managers/opendial",0
|
||||||
|
|
||||||
msg_print db '%s',0x0D,0x0A,0
|
msg_print db '%s',0x0D,0x0A,0
|
||||||
msg_init_fail db 'Cannot initialize mpg123 library: %s', 0x0D,0x0A,0
|
msg_init_fail db 'Cannot initialize mpg123 library: %s', 0x0D,0x0A,0
|
||||||
|
@@ -11,8 +11,8 @@ a) Replace in the file autorun.dat (it is text file) the parameter for
|
|||||||
the program kiv ("\S__background.jpg") the name of file to the full
|
the program kiv ("\S__background.jpg") the name of file to the full
|
||||||
Kolibri-path to JPEG-, BMP-, GIF- or PNG-image which you like. It will be
|
Kolibri-path to JPEG-, BMP-, GIF- or PNG-image which you like. It will be
|
||||||
new background. background.jpg now can be deleted.
|
new background. background.jpg now can be deleted.
|
||||||
b) Replace in the file autorun.dat "/RD/1/KIV \S__background.jpg" to
|
b) Replace in the file autorun.dat "/SYS/KIV \S__background.jpg" to
|
||||||
"/rd/1/PIC4" (spaces are ignored by the loader program). You can delete
|
"/sys/PIC4" (spaces are ignored by the loader program). You can delete
|
||||||
BACKGROUND.JPG. New background will be nice texture.
|
BACKGROUND.JPG. New background will be nice texture.
|
||||||
For programmers: you can change texture and color, for this in file
|
For programmers: you can change texture and color, for this in file
|
||||||
pic4.asm from distributive sources change:
|
pic4.asm from distributive sources change:
|
||||||
@@ -74,11 +74,11 @@ c) Two previous points sets background for a long time (until next
|
|||||||
bus in order to decrease its temperature, a side effect is noise in AC97
|
bus in order to decrease its temperature, a side effect is noise in AC97
|
||||||
codecs. The application can be loaded automatically at system boot, to do
|
codecs. The application can be loaded automatically at system boot, to do
|
||||||
this add to autorun (file autorun.dat, see 3) a line of the form
|
this add to autorun (file autorun.dat, see 3) a line of the form
|
||||||
"/RD/1/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
"/SYS/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
||||||
|
|
||||||
8. Network settings.
|
8. Network settings.
|
||||||
Initial network configuration is read at boot from the ini file
|
Initial network configuration is read at boot from the ini file
|
||||||
/rd/1/network/zeroconf.ini. You can set automatic detection with DHCP
|
/sys/network/zeroconf.ini. You can set automatic detection with DHCP
|
||||||
("type=zeroconf") or fixed IP addresses ("type=static").
|
("type=zeroconf") or fixed IP addresses ("type=static").
|
||||||
|
|
||||||
9. Configuration of videomode for ATI videocards.
|
9. Configuration of videomode for ATI videocards.
|
||||||
@@ -88,7 +88,7 @@ c) Two previous points sets background for a long time (until next
|
|||||||
To set the mode at startup one must pass to the loader ATIKMS, described
|
To set the mode at startup one must pass to the loader ATIKMS, described
|
||||||
in AUTORUN.DAT, the argument -m<width>x<height>x<refresh>, e.g.
|
in AUTORUN.DAT, the argument -m<width>x<height>x<refresh>, e.g.
|
||||||
|
|
||||||
/RD/1/DRIVERS/ATIKMS -m1024x768x60 -1
|
/SYS/DRIVERS/ATIKMS -m1024x768x60 -1
|
||||||
|
|
||||||
Pay attention that the format of autorun.dat does not allow spaces in
|
Pay attention that the format of autorun.dat does not allow spaces in
|
||||||
command line, so there must be no other arguments.
|
command line, so there must be no other arguments.
|
||||||
|
@@ -26,8 +26,8 @@ and parameters pointed to following (if present).
|
|||||||
If no program is loaded, you can load a program with the command
|
If no program is loaded, you can load a program with the command
|
||||||
load <full name of executable file> [<parameters>]
|
load <full name of executable file> [<parameters>]
|
||||||
Examples:
|
Examples:
|
||||||
load /rd/1/example
|
load /sys/example
|
||||||
LOAD /rd/1/aclock w200 h200
|
LOAD /sys/aclock w200 h200
|
||||||
LoaD /hd0/1/menuetos/dosbox/dosbox
|
LoaD /hd0/1/menuetos/dosbox/dosbox
|
||||||
All that stays after first space after executable file name, is exactly passed
|
All that stays after first space after executable file name, is exactly passed
|
||||||
to program as command string.
|
to program as command string.
|
||||||
@@ -44,7 +44,7 @@ by hand or generated automatically by fasm. Evident load can be done by command
|
|||||||
load-symbols <full name of symbols file>
|
load-symbols <full name of symbols file>
|
||||||
Furthermore, when the debugger executes the command "load", it checks for
|
Furthermore, when the debugger executes the command "load", it checks for
|
||||||
presence of file with name as of loading binary and extension '.dbg'
|
presence of file with name as of loading binary and extension '.dbg'
|
||||||
(/rd/1/example.dbg in the first of examples above), and if such file exists,
|
(/sys/example.dbg in the first of examples above), and if such file exists,
|
||||||
the debugger loads it automatically (with the message "Symbols loaded", if
|
the debugger loads it automatically (with the message "Symbols loaded", if
|
||||||
all is OK).
|
all is OK).
|
||||||
|
|
||||||
|
@@ -5,7 +5,7 @@ To turn on APIC you have to:
|
|||||||
|
|
||||||
1) Run Installer (install.kex)
|
1) Run Installer (install.kex)
|
||||||
2) Wait 3 seconds and get sure that there is a message about succesfull
|
2) Wait 3 seconds and get sure that there is a message about succesfull
|
||||||
file generation /rd/1/drivers/devices.dat
|
file generation /sys/drivers/devices.dat
|
||||||
Note: log can be found in /tmp0/1/acpi.log
|
Note: log can be found in /tmp0/1/acpi.log
|
||||||
3) Make kernel restart (MENU -> END -> HOME key)
|
3) Make kernel restart (MENU -> END -> HOME key)
|
||||||
4) Check that kernel and drivers are working well.
|
4) Check that kernel and drivers are working well.
|
||||||
@@ -18,7 +18,7 @@ To turn on APIC you have to:
|
|||||||
|
|
||||||
1) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (install.kex)
|
1) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (install.kex)
|
||||||
2) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 3 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 3 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
<20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> /rd/1/drivers/devices.dat
|
<20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> /sys/drivers/devices.dat
|
||||||
<20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> /tmp0/1/acpi.log
|
<20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> /tmp0/1/acpi.log
|
||||||
3) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD> -> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> -> <20><><EFBFBD><EFBFBD>)
|
3) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD> -> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> -> <20><><EFBFBD><EFBFBD>)
|
||||||
4) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
4) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
|
@@ -24,7 +24,7 @@ atikms.dll.
|
|||||||
<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> autorun.dat <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> autorun.dat <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
|
|
||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
||||||
/RD/1/DRIVERS/ATIKMS -m1024x768x75-l/hd0/2/atikms.log 1 #
|
/SYS/DRIVERS/ATIKMS -m1024x768x75-l/hd0/2/atikms.log 1 #
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
||||||
-l
|
-l
|
||||||
--log <<3C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD>-<2D><><EFBFBD><EFBFBD><EFBFBD>>
|
--log <<3C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD>-<2D><><EFBFBD><EFBFBD><EFBFBD>>
|
||||||
<09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
<09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
<09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> /rd/1/drivers/i915.log
|
<09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> /rd/1/drivers/i915.log
|
||||||
--fbc <-1,0,1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>
|
--fbc <-1,0,1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>
|
||||||
<09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
<09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> autorun.dat <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> autorun.dat <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
|
|
||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
||||||
/RD/1/DRIVERS/I915 -l/hd0/2/i915.log 1 #
|
/SYS/DRIVERS/I915 -l/hd0/2/i915.log 1 #
|
||||||
|
|
||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> autorun.dat <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> autorun.dat <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
|
|
||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
||||||
/RD/1/DRIVERS/vmwgfx -l/hd0/2/vmwgfx.log 1 #
|
/SYS/DRIVERS/vmwgfx -l/hd0/2/vmwgfx.log 1 #
|
||||||
|
|
||||||
|
|
||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
|
@@ -195,7 +195,7 @@ DOSBox
|
|||||||
<EFBFBD><EFBFBD><EFBFBD>砥<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20>ᯮ<EFBFBD>짮<EFBFBD><ECA7AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><E0AEA5><EFBFBD><EFBFBD> 䠩<> DOSBox.
|
<EFBFBD><EFBFBD><EFBFBD>砥<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20>ᯮ<EFBFBD>짮<EFBFBD><ECA7AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><E0AEA5><EFBFBD><EFBFBD> 䠩<> DOSBox.
|
||||||
<EFBFBD><EFBFBD>. ࠧ<><E0A0A7><EFBFBD> "<22><><EFBFBD><EFBFBD><EFBFBD><E0AEA5><EFBFBD><EFBFBD> 䠩<>"
|
<EFBFBD><EFBFBD>. ࠧ<><E0A0A7><EFBFBD> "<22><><EFBFBD><EFBFBD><EFBFBD><E0AEA5><EFBFBD><EFBFBD> 䠩<>"
|
||||||
|
|
||||||
<EFBFBD>⮡<EFBFBD> <20>ᯮ<EFBFBD>짮<EFBFBD><ECA7AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ப<EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ணࠬ<E0AEA3><E0A0AC> <20><>१ /rd/1/run
|
<EFBFBD>⮡<EFBFBD> <20>ᯮ<EFBFBD>짮<EFBFBD><ECA7AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ப<EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ணࠬ<E0AEA3><E0A0AC> <20><>१ /sys/run
|
||||||
<EFBFBD> <20><>ࠬ<EFBFBD><E0A0AC>ࠬ<EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> ᮧ<><E1AEA7><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> dosbox.
|
<EFBFBD> <20><>ࠬ<EFBFBD><E0A0AC>ࠬ<EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> ᮧ<><E1AEA7><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> dosbox.
|
||||||
|
|
||||||
<EFBFBD><EFBFBD>樨 <20><><EFBFBD><EFBFBD>㯭<EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD> <20><><EFBFBD>⥬, <20> <20> <20><> <20><><EFBFBD>ᠭ<EFBFBD><E1A0AD> <20><> ᪠<><E1AAA0><EFBFBD><EFBFBD>
|
<EFBFBD><EFBFBD>樨 <20><><EFBFBD><EFBFBD>㯭<EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD> <20><><EFBFBD>⥬, <20> <20> <20><> <20><><EFBFBD>ᠭ<EFBFBD><E1A0AD> <20><> ᪠<><E1AAA0><EFBFBD><EFBFBD>
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
<p>
|
<p>
|
||||||
If you can read this with an external html-browser then Kolibri
|
If you can read this with an external html-browser then Kolibri
|
||||||
networking is correctly set up.
|
networking is correctly set up.
|
||||||
<br><br>This file: /rd/1/index.htm
|
<br><br>This file: /sys/index.htm
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/TinyStat">TinyStat</a></li>
|
<li><a href="/TinyStat">TinyStat</a></li>
|
||||||
|
@@ -10,11 +10,11 @@
|
|||||||
[anonymous]
|
[anonymous]
|
||||||
; leavy pass empty to disable it
|
; leavy pass empty to disable it
|
||||||
pass=
|
pass=
|
||||||
home=/rd/1/
|
home=/sys/
|
||||||
mode=3
|
mode=3
|
||||||
|
|
||||||
[test]
|
[test]
|
||||||
pass=1234
|
pass=1234
|
||||||
home=/rd/1/
|
home=/sys/
|
||||||
mode=31
|
mode=31
|
||||||
|
|
||||||
|
@@ -11,8 +11,8 @@ a) Replace in the file autorun.dat (it is text file) the parameter for
|
|||||||
the program kiv ("\S__background.jpg") the name of file to the full
|
the program kiv ("\S__background.jpg") the name of file to the full
|
||||||
Kolibri-path to JPEG-, BMP-, GIF- or PNG-image which you like. It will be
|
Kolibri-path to JPEG-, BMP-, GIF- or PNG-image which you like. It will be
|
||||||
new background. background.jpg now can be deleted.
|
new background. background.jpg now can be deleted.
|
||||||
b) Replace in the file autorun.dat "/RD/1/KIV \S__background.jpg" to
|
b) Replace in the file autorun.dat "/SYS/KIV \S__background.jpg" to
|
||||||
"/rd/1/PIC4" (spaces are ignored by the loader program). You can delete
|
"/sys/PIC4" (spaces are ignored by the loader program). You can delete
|
||||||
BACKGROUND.JPG. New background will be nice texture.
|
BACKGROUND.JPG. New background will be nice texture.
|
||||||
For programmers: you can change texture and color, for this in file
|
For programmers: you can change texture and color, for this in file
|
||||||
pic4.asm from distributive sources change:
|
pic4.asm from distributive sources change:
|
||||||
@@ -74,11 +74,11 @@ c) Two previous points sets background for a long time (until next
|
|||||||
bus in order to decrease its temperature, a side effect is noise in AC97
|
bus in order to decrease its temperature, a side effect is noise in AC97
|
||||||
codecs. The application can be loaded automatically at system boot, to do
|
codecs. The application can be loaded automatically at system boot, to do
|
||||||
this add to autorun (file autorun.dat, see 3) a line of the form
|
this add to autorun (file autorun.dat, see 3) a line of the form
|
||||||
"/RD/1/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
"/SYS/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
||||||
|
|
||||||
8. Network settings.
|
8. Network settings.
|
||||||
Initial network configuration is read at boot from the ini file
|
Initial network configuration is read at boot from the ini file
|
||||||
/rd/1/network/zeroconf.ini. You can set automatic detection with DHCP
|
/sys/network/zeroconf.ini. You can set automatic detection with DHCP
|
||||||
("type=zeroconf") or fixed IP addresses ("type=static").
|
("type=zeroconf") or fixed IP addresses ("type=static").
|
||||||
|
|
||||||
9. Configuration of videomode for ATI videocards.
|
9. Configuration of videomode for ATI videocards.
|
||||||
@@ -88,7 +88,7 @@ c) Two previous points sets background for a long time (until next
|
|||||||
To set the mode at startup one must pass to the loader ATIKMS, described
|
To set the mode at startup one must pass to the loader ATIKMS, described
|
||||||
in AUTORUN.DAT, the argument -m<width>x<height>x<refresh>, e.g.
|
in AUTORUN.DAT, the argument -m<width>x<height>x<refresh>, e.g.
|
||||||
|
|
||||||
/RD/1/DRIVERS/ATIKMS -m1024x768x60 -1
|
/SYS/DRIVERS/ATIKMS -m1024x768x60 -1
|
||||||
|
|
||||||
Pay attention that the format of autorun.dat does not allow spaces in
|
Pay attention that the format of autorun.dat does not allow spaces in
|
||||||
command line, so there must be no other arguments.
|
command line, so there must be no other arguments.
|
||||||
|
@@ -26,8 +26,8 @@ and parameters pointed to following (if present).
|
|||||||
If no program is loaded, you can load a program with the command
|
If no program is loaded, you can load a program with the command
|
||||||
load <full name of executable file> [<parameters>]
|
load <full name of executable file> [<parameters>]
|
||||||
Examples:
|
Examples:
|
||||||
load /rd/1/example
|
load /sys/example
|
||||||
LOAD /rd/1/aclock w200 h200
|
LOAD /sys/aclock w200 h200
|
||||||
LoaD /hd0/1/menuetos/dosbox/dosbox
|
LoaD /hd0/1/menuetos/dosbox/dosbox
|
||||||
All that stays after first space after executable file name, is exactly passed
|
All that stays after first space after executable file name, is exactly passed
|
||||||
to program as command string.
|
to program as command string.
|
||||||
@@ -44,7 +44,7 @@ by hand or generated automatically by fasm. Evident load can be done by command
|
|||||||
load-symbols <full name of symbols file>
|
load-symbols <full name of symbols file>
|
||||||
Furthermore, when the debugger executes the command "load", it checks for
|
Furthermore, when the debugger executes the command "load", it checks for
|
||||||
presence of file with name as of loading binary and extension '.dbg'
|
presence of file with name as of loading binary and extension '.dbg'
|
||||||
(/rd/1/example.dbg in the first of examples above), and if such file exists,
|
(/sys/example.dbg in the first of examples above), and if such file exists,
|
||||||
the debugger loads it automatically (with the message "Symbols loaded", if
|
the debugger loads it automatically (with the message "Symbols loaded", if
|
||||||
all is OK).
|
all is OK).
|
||||||
|
|
||||||
|
@@ -11,8 +11,8 @@ a) Replace in the file autorun.dat (it is text file) the parameter for
|
|||||||
the program kiv ("\S__background.jpg") the name of file to the full
|
the program kiv ("\S__background.jpg") the name of file to the full
|
||||||
Kolibri-path to JPEG-, BMP-, GIF- or PNG-image which you like. It will be
|
Kolibri-path to JPEG-, BMP-, GIF- or PNG-image which you like. It will be
|
||||||
new background. background.jpg now can be deleted.
|
new background. background.jpg now can be deleted.
|
||||||
b) Replace in the file autorun.dat "/RD/1/KIV \S__background.jpg" to
|
b) Replace in the file autorun.dat "/SYS/KIV \S__background.jpg" to
|
||||||
"/rd/1/PIC4" (spaces are ignored by the loader program). You can delete
|
"/sys/PIC4" (spaces are ignored by the loader program). You can delete
|
||||||
BACKGROUND.JPG. New background will be nice texture.
|
BACKGROUND.JPG. New background will be nice texture.
|
||||||
For programmers: you can change texture and color, for this in file
|
For programmers: you can change texture and color, for this in file
|
||||||
pic4.asm from distributive sources change:
|
pic4.asm from distributive sources change:
|
||||||
@@ -74,11 +74,11 @@ c) Two previous points sets background for a long time (until next
|
|||||||
bus in order to decrease its temperature, a side effect is noise in AC97
|
bus in order to decrease its temperature, a side effect is noise in AC97
|
||||||
codecs. The application can be loaded automatically at system boot, to do
|
codecs. The application can be loaded automatically at system boot, to do
|
||||||
this add to autorun (file autorun.dat, see 3) a line of the form
|
this add to autorun (file autorun.dat, see 3) a line of the form
|
||||||
"/RD/1/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
"/SYS/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
||||||
|
|
||||||
8. Network settings.
|
8. Network settings.
|
||||||
Initial network configuration is read at boot from the ini file
|
Initial network configuration is read at boot from the ini file
|
||||||
/rd/1/network/zeroconf.ini. You can set automatic detection with DHCP
|
/sys/network/zeroconf.ini. You can set automatic detection with DHCP
|
||||||
("type=zeroconf") or fixed IP addresses ("type=static").
|
("type=zeroconf") or fixed IP addresses ("type=static").
|
||||||
|
|
||||||
9. Configuration of videomode for ATI videocards.
|
9. Configuration of videomode for ATI videocards.
|
||||||
@@ -88,7 +88,7 @@ c) Two previous points sets background for a long time (until next
|
|||||||
To set the mode at startup one must pass to the loader ATIKMS, described
|
To set the mode at startup one must pass to the loader ATIKMS, described
|
||||||
in AUTORUN.DAT, the argument -m<width>x<height>x<refresh>, e.g.
|
in AUTORUN.DAT, the argument -m<width>x<height>x<refresh>, e.g.
|
||||||
|
|
||||||
/RD/1/DRIVERS/ATIKMS -m1024x768x60 -1
|
/SYS/DRIVERS/ATIKMS -m1024x768x60 -1
|
||||||
|
|
||||||
Pay attention that the format of autorun.dat does not allow spaces in
|
Pay attention that the format of autorun.dat does not allow spaces in
|
||||||
command line, so there must be no other arguments.
|
command line, so there must be no other arguments.
|
||||||
|
@@ -26,8 +26,8 @@ and parameters pointed to following (if present).
|
|||||||
If no program is loaded, you can load a program with the command
|
If no program is loaded, you can load a program with the command
|
||||||
load <full name of executable file> [<parameters>]
|
load <full name of executable file> [<parameters>]
|
||||||
Examples:
|
Examples:
|
||||||
load /rd/1/example
|
load /sys/example
|
||||||
LOAD /rd/1/aclock w200 h200
|
LOAD /sys/aclock w200 h200
|
||||||
LoaD /hd0/1/menuetos/dosbox/dosbox
|
LoaD /hd0/1/menuetos/dosbox/dosbox
|
||||||
All that stays after first space after executable file name, is exactly passed
|
All that stays after first space after executable file name, is exactly passed
|
||||||
to program as command string.
|
to program as command string.
|
||||||
@@ -44,7 +44,7 @@ by hand or generated automatically by fasm. Evident load can be done by command
|
|||||||
load-symbols <full name of symbols file>
|
load-symbols <full name of symbols file>
|
||||||
Furthermore, when the debugger executes the command "load", it checks for
|
Furthermore, when the debugger executes the command "load", it checks for
|
||||||
presence of file with name as of loading binary and extension '.dbg'
|
presence of file with name as of loading binary and extension '.dbg'
|
||||||
(/rd/1/example.dbg in the first of examples above), and if such file exists,
|
(/sys/example.dbg in the first of examples above), and if such file exists,
|
||||||
the debugger loads it automatically (with the message "Symbols loaded", if
|
the debugger loads it automatically (with the message "Symbols loaded", if
|
||||||
all is OK).
|
all is OK).
|
||||||
|
|
||||||
|
@@ -17,7 +17,7 @@ Tra parentesi vengono riportati i nomi degli eseguibili dei singoli programmi.
|
|||||||
come nuovo sfondo è possibile eliminare il file background.jpg
|
come nuovo sfondo è possibile eliminare il file background.jpg
|
||||||
|
|
||||||
b) Modificare all'interno del file autorun.dat la voce
|
b) Modificare all'interno del file autorun.dat la voce
|
||||||
"/RD/1/KIV \S__background.jpg" in "/rd/1/PIC4". È possibile
|
"/SYS/KIV \S__background.jpg" in "/sys/PIC4". È possibile
|
||||||
eliminare il file background.jpg e il nuovo sfondo sara una texture.
|
eliminare il file background.jpg e il nuovo sfondo sara una texture.
|
||||||
|
|
||||||
Per i programmatori:
|
Per i programmatori:
|
||||||
@@ -87,12 +87,12 @@ Tra parentesi vengono riportati i nomi degli eseguibili dei singoli programmi.
|
|||||||
collaterale è del rumore nei codec AC97. L'applicazione può essere
|
collaterale è del rumore nei codec AC97. L'applicazione può essere
|
||||||
caricata automaticamente all'avvio del sistema, in tal caso è necessario
|
caricata automaticamente all'avvio del sistema, in tal caso è necessario
|
||||||
aggiungere la voce
|
aggiungere la voce
|
||||||
"/RD/1/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
"/SYS/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
||||||
al file autorun.dat
|
al file autorun.dat
|
||||||
|
|
||||||
8. Impostazioni Network.
|
8. Impostazioni Network.
|
||||||
le impostazioni iniziali sono lette durante l'avvio del sistema dal file
|
le impostazioni iniziali sono lette durante l'avvio del sistema dal file
|
||||||
/rd/1/network/zeroconf.ini.
|
/sys/network/zeroconf.ini.
|
||||||
È possibile impostare il rivelamento automatico con DHCP ("type=zeroconf")
|
È possibile impostare il rivelamento automatico con DHCP ("type=zeroconf")
|
||||||
oppure impostare un indirizzo IP fissato ("type=static").
|
oppure impostare un indirizzo IP fissato ("type=static").
|
||||||
|
|
||||||
@@ -105,7 +105,7 @@ Tra parentesi vengono riportati i nomi degli eseguibili dei singoli programmi.
|
|||||||
Per impostare i parametri durante l'avvio è necessario passare tramite
|
Per impostare i parametri durante l'avvio è necessario passare tramite
|
||||||
il file AUTORUN.DAT l'argomento -m<larghezza>x<altezza>x<refresh> al
|
il file AUTORUN.DAT l'argomento -m<larghezza>x<altezza>x<refresh> al
|
||||||
driver ATIKMS, ad esempio
|
driver ATIKMS, ad esempio
|
||||||
/RD/1/DRIVERS/ATIKMS -m1024x768x60 -1
|
/SYS/DRIVERS/ATIKMS -m1024x768x60 -1
|
||||||
Attenzione al fatto che il formato autorun.dat non accetta spazi,
|
Attenzione al fatto che il formato autorun.dat non accetta spazi,
|
||||||
quindi non è possibile inserire ulteriori argomenti.
|
quindi non è possibile inserire ulteriori argomenti.
|
||||||
Si può inoltre disabilitare la possibilità di modificare i parametri durante l'avvio passando l'opzione -n. I driver supportano comunque il cursore hardware. Per disabilitare completamente il driver è sufficiente rimuovere la relativa voce dal file autorun.dat.
|
Si può inoltre disabilitare la possibilità di modificare i parametri durante l'avvio passando l'opzione -n. I driver supportano comunque il cursore hardware. Per disabilitare completamente il driver è sufficiente rimuovere la relativa voce dal file autorun.dat.
|
||||||
|
@@ -29,8 +29,8 @@ eventuali parametri per il programma passati come argomenti successivi.
|
|||||||
momento con il comando
|
momento con il comando
|
||||||
load <percorso all'eseguibile> [<parametri>]
|
load <percorso all'eseguibile> [<parametri>]
|
||||||
ad esempio:
|
ad esempio:
|
||||||
load /rd/1/example
|
load /sys/example
|
||||||
LOAD /rd/1/aclock w200 h200
|
LOAD /sys/aclock w200 h200
|
||||||
LoaD /hd0/1/menuetos/dosbox/dosbox
|
LoaD /hd0/1/menuetos/dosbox/dosbox
|
||||||
negli esempi, mtdbg caricherà il programma passato come primo argomenti,
|
negli esempi, mtdbg caricherà il programma passato come primo argomenti,
|
||||||
un eventuale secondo argomento è il parametro da passare al programma
|
un eventuale secondo argomento è il parametro da passare al programma
|
||||||
@@ -53,7 +53,7 @@ load-symbols <percorso al file>
|
|||||||
Inoltre, quando viene eseguito il comando "load", mtdbg controllerà
|
Inoltre, quando viene eseguito il comando "load", mtdbg controllerà
|
||||||
la presenza di un file contenente simboli relativi al programma e di
|
la presenza di un file contenente simboli relativi al programma e di
|
||||||
estensione .dbg (nel primo esempio controlla la presenza del file
|
estensione .dbg (nel primo esempio controlla la presenza del file
|
||||||
/rd/1/example.dbg). Se tale file esiste, questo viene caricato
|
/sys/example.dbg). Se tale file esiste, questo viene caricato
|
||||||
automaticamente and if such file exists, e verrà notificato tramite il
|
automaticamente and if such file exists, e verrà notificato tramite il
|
||||||
messaggio "Symbols loaded", se il caricamento viene eseguito con
|
messaggio "Symbols loaded", se il caricamento viene eseguito con
|
||||||
successo.
|
successo.
|
||||||
|
@@ -12,8 +12,8 @@
|
|||||||
<20><><EFBFBD> JPEG-, BMP-, GIF- <20><><EFBFBD> PNG-<2D><><EFBFBD>⨭<EFBFBD><E2A8AD>. <20><><EFBFBD> <20>⮬ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ᨬ<><E1A8AC><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
<20><><EFBFBD> JPEG-, BMP-, GIF- <20><><EFBFBD> PNG-<2D><><EFBFBD>⨭<EFBFBD><E2A8AD>. <20><><EFBFBD> <20>⮬ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ᨬ<><E1A8AC><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
<20><><EFBFBD>ଫ<EFBFBD><E0ACAB><EFBFBD><EFBFBD>: \S (stretch) = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>⨭<EFBFBD><E2A8AD> <20><> <20><>࠭, \T (tile) =
|
<20><><EFBFBD>ଫ<EFBFBD><E0ACAB><EFBFBD><EFBFBD>: \S (stretch) = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>⨭<EFBFBD><E2A8AD> <20><> <20><>࠭, \T (tile) =
|
||||||
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>⨭<EFBFBD><E2A8AD><EFBFBD> <20><>࠭. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> background.jpg <20><><EFBFBD><EFBFBD><EFBFBD> 㤠<><E3A4A0><EFBFBD><EFBFBD>.
|
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>⨭<EFBFBD><E2A8AD><EFBFBD> <20><>࠭. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> background.jpg <20><><EFBFBD><EFBFBD><EFBFBD> 㤠<><E3A4A0><EFBFBD><EFBFBD>.
|
||||||
<EFBFBD>) <20> 䠩<><E4A0A9> autorun.dat <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "/RD/1/KIV \S__background.jpg" <20><>
|
<EFBFBD>) <20> 䠩<><E4A0A9> autorun.dat <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "/SYS/KIV \S__background.jpg" <20><>
|
||||||
"/rd/1/PIC4" (<28><EFBFBD><E0AEA1><EFBFBD> <20><><EFBFBD><EFBFBD>⠢<EFBFBD><E2A0A2><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>). BACKGROUND.JPG
|
"/sys/PIC4" (<28><EFBFBD><E0AEA1><EFBFBD> <20><><EFBFBD><EFBFBD>⠢<EFBFBD><E2A0A2><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>). BACKGROUND.JPG
|
||||||
<20><><EFBFBD><EFBFBD><EFBFBD> 㤠<><E3A4A0><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 䮭<><E4AEAD> <20>㤥<EFBFBD> ᨬ<><E1A8AC><EFBFBD><EFBFBD>筠<EFBFBD> ⥪<><E2A5AA><EFBFBD><EFBFBD><EFBFBD>.
|
<20><><EFBFBD><EFBFBD><EFBFBD> 㤠<><E3A4A0><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 䮭<><E4AEAD> <20>㤥<EFBFBD> ᨬ<><E1A8AC><EFBFBD><EFBFBD>筠<EFBFBD> ⥪<><E2A5AA><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
<20>ணࠬ<E0AEA3><E0A0AC><EFBFBD>⠬ <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ⥪<><E2A5AA><EFBFBD><EFBFBD><EFBFBD> <20> 梥<>,
|
<20>ணࠬ<E0AEA3><E0A0AC><EFBFBD>⠬ <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ⥪<><E2A5AA><EFBFBD><EFBFBD><EFBFBD> <20> 梥<>,
|
||||||
<20><><EFBFBD> <20>⮣<EFBFBD> <20> 䠩<><E4A0A9> pic4.asm <20><> <20><>室<EFBFBD><E5AEA4><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ਡ<EFBFBD>⨢<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
<20><><EFBFBD> <20>⮣<EFBFBD> <20> 䠩<><E4A0A9> pic4.asm <20><> <20><>室<EFBFBD><E5AEA4><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ਡ<EFBFBD>⨢<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
||||||
@@ -79,11 +79,11 @@
|
|||||||
<20> 楫<><E6A5AB> 㬥<><E3ACA5>襭<EFBFBD><E8A5AD> <20><><EFBFBD> ⥬<><E2A5AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>䥪<EFBFBD> - <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>㬠 <20> AC97
|
<20> 楫<><E6A5AB> 㬥<><E3ACA5>襭<EFBFBD><E8A5AD> <20><><EFBFBD> ⥬<><E2A5AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>䥪<EFBFBD> - <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>㬠 <20> AC97
|
||||||
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20>ணࠬ<E0AEA3><E0A0AC> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>⮬<EFBFBD><E2AEAC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1AAAE> <20>맮<EFBFBD><EBA7AE> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>㧪<EFBFBD>
|
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20>ணࠬ<E0AEA3><E0A0AC> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>⮬<EFBFBD><E2AEAC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1AAAE> <20>맮<EFBFBD><EBA7AE> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>㧪<EFBFBD>
|
||||||
<20><><EFBFBD>⥬<EFBFBD>, <20><><EFBFBD> <20>⮣<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><>⮧<EFBFBD><E2AEA7><EFBFBD><EFBFBD><EFBFBD> (autorun.dat, <20><>. <20>.3) <20><>ப<EFBFBD> <20><><EFBFBD><EFBFBD>
|
<20><><EFBFBD>⥬<EFBFBD>, <20><><EFBFBD> <20>⮣<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><>⮧<EFBFBD><E2AEA7><EFBFBD><EFBFBD><EFBFBD> (autorun.dat, <20><>. <20>.3) <20><>ப<EFBFBD> <20><><EFBFBD><EFBFBD>
|
||||||
"/RD/1/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
"/SYS/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
||||||
|
|
||||||
8. <20><>ࠬ<EFBFBD><E0A0AC><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>.
|
8. <20><>ࠬ<EFBFBD><E0A0AC><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>.
|
||||||
<20><><EFBFBD> <20><><EFBFBD><EFBFBD>㧪<EFBFBD> <20><>ࠬ<EFBFBD><E0A0AC><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>뢠<EFBFBD><EBA2A0><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>䨣<EFBFBD><E4A8A3><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD><EFBFBD> 䠩<><E4A0A9>
|
<20><><EFBFBD> <20><><EFBFBD><EFBFBD>㧪<EFBFBD> <20><>ࠬ<EFBFBD><E0A0AC><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>뢠<EFBFBD><EBA2A0><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>䨣<EFBFBD><E4A8A3><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD><EFBFBD> 䠩<><E4A0A9>
|
||||||
/rd/1/network/zeroconf.ini. <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>⮮<EFBFBD>।<EFBFBD><E0A5A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ࠬ<EFBFBD><E0A0AC>
|
/sys/network/zeroconf.ini. <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>⮮<EFBFBD>।<EFBFBD><E0A5A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ࠬ<EFBFBD><E0A0AC>
|
||||||
<20><><EFBFBD><EFBFBD> <20><> DHCP ("type=zeroconf"), <20><><EFBFBD><EFBFBD> 䨪<><E4A8AA><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ("type=static").
|
<20><><EFBFBD><EFBFBD> <20><> DHCP ("type=zeroconf"), <20><><EFBFBD><EFBFBD> 䨪<><E4A8AA><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ("type=static").
|
||||||
|
|
||||||
9. <20><><EFBFBD><EFBFBD>ன<EFBFBD><E0AEA9> <20><><EFBFBD><EFBFBD><EFBFBD>०<EFBFBD><E0A5A6><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> ATI.
|
9. <20><><EFBFBD><EFBFBD>ன<EFBFBD><E0AEA9> <20><><EFBFBD><EFBFBD><EFBFBD>०<EFBFBD><E0A5A6><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> ATI.
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>稪<EFBFBD> ATIKMS, <20><><EFBFBD>ᠭ<EFBFBD><E1A0AD><EFBFBD><EFBFBD> <20> AUTORUN.DAT, <20>㦭<EFBFBD> <20><>।<EFBFBD><E0A5A4><EFBFBD> <20><>ࠬ<EFBFBD><E0A0AC><EFBFBD>
|
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>稪<EFBFBD> ATIKMS, <20><><EFBFBD>ᠭ<EFBFBD><E1A0AD><EFBFBD><EFBFBD> <20> AUTORUN.DAT, <20>㦭<EFBFBD> <20><>।<EFBFBD><E0A5A4><EFBFBD> <20><>ࠬ<EFBFBD><E0A0AC><EFBFBD>
|
||||||
-m<width>x<height>x<refresh>, <20><><EFBFBD>ਬ<EFBFBD><E0A8AC>,
|
-m<width>x<height>x<refresh>, <20><><EFBFBD>ਬ<EFBFBD><E0A8AC>,
|
||||||
|
|
||||||
/RD/1/DRIVERS/ATIKMS -m1024x768x60 -1
|
/SYS/DRIVERS/ATIKMS -m1024x768x60 -1
|
||||||
|
|
||||||
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><>ଠ<EFBFBD> 䠩<><E4A0A9> autorun.dat <20><> <20>।<EFBFBD>ᬠ<EFBFBD>ਢ<EFBFBD><E0A8A2><EFBFBD> <20><EFBFBD><E0AEA1><EFBFBD><EFBFBD>
|
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><>ଠ<EFBFBD> 䠩<><E4A0A9> autorun.dat <20><> <20>।<EFBFBD>ᬠ<EFBFBD>ਢ<EFBFBD><E0A8A2><EFBFBD> <20><EFBFBD><E0AEA1><EFBFBD><EFBFBD>
|
||||||
<20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ப<EFBFBD>, ⠪ <20><><EFBFBD> <20><>㣨<EFBFBD> <20><><EFBFBD>㬥<EFBFBD>⮢ <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
<20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ப<EFBFBD>, ⠪ <20><><EFBFBD> <20><>㣨<EFBFBD> <20><><EFBFBD>㬥<EFBFBD>⮢ <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
||||||
|
@@ -28,8 +28,8 @@ mtdbg
|
|||||||
<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ணࠬ<E0AEA3><E0A0AC> <20><> <20><><EFBFBD><EFBFBD>㦥<EFBFBD><E3A6A5>, <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>㧨<EFBFBD><E3A7A8> <20>ணࠬ<E0AEA3><E0A0AC> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ணࠬ<E0AEA3><E0A0AC> <20><> <20><><EFBFBD><EFBFBD>㦥<EFBFBD><E3A6A5>, <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>㧨<EFBFBD><E3A7A8> <20>ணࠬ<E0AEA3><E0A0AC> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
load <<3C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20>ᯮ<EFBFBD><E1AFAE>塞<EFBFBD><EFA5AC><EFBFBD> 䠩<><E4A0A9>> [<<3C><><EFBFBD>㬥<EFBFBD><E3ACA5><EFBFBD>>]
|
load <<3C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20>ᯮ<EFBFBD><E1AFAE>塞<EFBFBD><EFA5AC><EFBFBD> 䠩<><E4A0A9>> [<<3C><><EFBFBD>㬥<EFBFBD><E3ACA5><EFBFBD>>]
|
||||||
<EFBFBD><EFBFBD><EFBFBD>ਬ<EFBFBD><EFBFBD>:
|
<EFBFBD><EFBFBD><EFBFBD>ਬ<EFBFBD><EFBFBD>:
|
||||||
load /rd/1/example
|
load /sys/example
|
||||||
LOAD /rd/1/aclock w200 h200
|
LOAD /sys/aclock w200 h200
|
||||||
LoaD /hd0/1/menuetos/dosbox/dosbox
|
LoaD /hd0/1/menuetos/dosbox/dosbox
|
||||||
<EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20>⮨<EFBFBD> <20><> <20><>ࢮ<EFBFBD><E0A2AE> <20><EFBFBD><E0AEA1><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20>ᯮ<EFBFBD><E1AFAE>塞<EFBFBD><EFA5AC><EFBFBD> 䠩<><E4A0A9>, <20><><EFBFBD><E1ABAE><EFBFBD>
|
<EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20>⮨<EFBFBD> <20><> <20><>ࢮ<EFBFBD><E0A2AE> <20><EFBFBD><E0AEA1><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20>ᯮ<EFBFBD><E1AFAE>塞<EFBFBD><EFA5AC><EFBFBD> 䠩<><E4A0A9>, <20><><EFBFBD><E1ABAE><EFBFBD>
|
||||||
<EFBFBD><EFBFBD>।<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ணࠬ<E0AEA3><E0A0AC> <20> <20><><EFBFBD><EFBFBD><EFBFBD>⢥ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ப<EFBFBD>.
|
<EFBFBD><EFBFBD>।<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ணࠬ<E0AEA3><E0A0AC> <20> <20><><EFBFBD><EFBFBD><EFBFBD>⢥ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ப<EFBFBD>.
|
||||||
@@ -48,7 +48,7 @@ LOAD /rd/1/aclock w200 h200
|
|||||||
load-symbols <<3C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> 䠩<><E4A0A9> ᨬ<><E1A8AC><EFBFBD><EFBFBD><EFBFBD>>
|
load-symbols <<3C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> 䠩<><E4A0A9> ᨬ<><E1A8AC><EFBFBD><EFBFBD><EFBFBD>>
|
||||||
<EFBFBD><EFBFBD> ⮣<>, <20><><EFBFBD> <20>믮<EFBFBD><EBAFAE><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> load <20>⫠<EFBFBD>稪 <20><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>稥 䠩<><E4A0A9>
|
<EFBFBD><EFBFBD> ⮣<>, <20><><EFBFBD> <20>믮<EFBFBD><EBAFAE><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> load <20>⫠<EFBFBD>稪 <20><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>稥 䠩<><E4A0A9>
|
||||||
<EFBFBD> ⠪<><E2A0AA> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD>㦠<EFBFBD><E3A6A0><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>୨<EFBFBD>, <20> <20><><EFBFBD><EFBFBD><EFBFBD>७<EFBFBD><E0A5AD><EFBFBD> .dbg
|
<EFBFBD> ⠪<><E2A0AA> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD>㦠<EFBFBD><E3A6A0><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>୨<EFBFBD>, <20> <20><><EFBFBD><EFBFBD><EFBFBD>७<EFBFBD><E0A5AD><EFBFBD> .dbg
|
||||||
(/rd/1/example.dbg <20><><EFBFBD> <20><>ࢮ<EFBFBD> <20><> <20>ਬ<EFBFBD> <20><><EFBFBD><EFBFBD>), <20> <20> ⠪<><E2A0AA> <20><><EFBFBD><EFBFBD>,
|
(/sys/example.dbg <20><><EFBFBD> <20><>ࢮ<EFBFBD> <20><> <20>ਬ<EFBFBD> <20><><EFBFBD><EFBFBD>), <20> <20> ⠪<><E2A0AA> <20><><EFBFBD><EFBFBD>,
|
||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>㦠<EFBFBD><EFBFBD> <20><><EFBFBD> <20><>⮬<EFBFBD><E2AEAC><EFBFBD><EFBFBD><EFBFBD>᪨ (<28>뤠<EFBFBD><EBA4A0><EFBFBD> ᮮ<>饭<EFBFBD><E9A5AD> "Symbols loaded", <20> <20><><EFBFBD> <20>
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>㦠<EFBFBD><EFBFBD> <20><><EFBFBD> <20><>⮬<EFBFBD><E2AEAC><EFBFBD><EFBFBD><EFBFBD>᪨ (<28>뤠<EFBFBD><EBA4A0><EFBFBD> ᮮ<>饭<EFBFBD><E9A5AD> "Symbols loaded", <20> <20><><EFBFBD> <20>
|
||||||
<EFBFBD><EFBFBD><EFBFBD>浪<EFBFBD>).
|
<EFBFBD><EFBFBD><EFBFBD>浪<EFBFBD>).
|
||||||
|
|
||||||
|
@@ -11,8 +11,8 @@ a) Replace in the file autorun.dat (it is text file) the parameter for
|
|||||||
the program kiv ("\S__background.jpg") the name of file to the full
|
the program kiv ("\S__background.jpg") the name of file to the full
|
||||||
Kolibri-path to JPEG-, BMP-, GIF- or PNG-image which you like. It will be
|
Kolibri-path to JPEG-, BMP-, GIF- or PNG-image which you like. It will be
|
||||||
new background. background.jpg now can be deleted.
|
new background. background.jpg now can be deleted.
|
||||||
b) Replace in the file autorun.dat "/RD/1/KIV \S__background.jpg" to
|
b) Replace in the file autorun.dat "/SYS/KIV \S__background.jpg" to
|
||||||
"/rd/1/PIC4" (spaces are ignored by the loader program). You can delete
|
"/sys/PIC4" (spaces are ignored by the loader program). You can delete
|
||||||
BACKGROUND.JPG. New background will be nice texture.
|
BACKGROUND.JPG. New background will be nice texture.
|
||||||
For programmers: you can change texture and color, for this in file
|
For programmers: you can change texture and color, for this in file
|
||||||
pic4.asm from distributive sources change:
|
pic4.asm from distributive sources change:
|
||||||
@@ -74,11 +74,11 @@ c) Two previous points sets background for a long time (until next
|
|||||||
bus in order to decrease its temperature, a side effect is noise in AC97
|
bus in order to decrease its temperature, a side effect is noise in AC97
|
||||||
codecs. The application can be loaded automatically at system boot, to do
|
codecs. The application can be loaded automatically at system boot, to do
|
||||||
this add to autorun (file autorun.dat, see 3) a line of the form
|
this add to autorun (file autorun.dat, see 3) a line of the form
|
||||||
"/RD/1/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
"/SYS/KBD BOOT 20 # Enable Bus Disconnect for AMD K7 processors".
|
||||||
|
|
||||||
8. Network settings.
|
8. Network settings.
|
||||||
Initial network configuration is read at boot from the ini file
|
Initial network configuration is read at boot from the ini file
|
||||||
/rd/1/network/zeroconf.ini. You can set automatic detection with DHCP
|
/sys/network/zeroconf.ini. You can set automatic detection with DHCP
|
||||||
("type=zeroconf") or fixed IP addresses ("type=static").
|
("type=zeroconf") or fixed IP addresses ("type=static").
|
||||||
|
|
||||||
9. Configuration of videomode for ATI videocards.
|
9. Configuration of videomode for ATI videocards.
|
||||||
@@ -88,7 +88,7 @@ c) Two previous points sets background for a long time (until next
|
|||||||
To set the mode at startup one must pass to the loader ATIKMS, described
|
To set the mode at startup one must pass to the loader ATIKMS, described
|
||||||
in AUTORUN.DAT, the argument -m<width>x<height>x<refresh>, e.g.
|
in AUTORUN.DAT, the argument -m<width>x<height>x<refresh>, e.g.
|
||||||
|
|
||||||
/RD/1/DRIVERS/ATIKMS -m1024x768x60 -1
|
/SYS/DRIVERS/ATIKMS -m1024x768x60 -1
|
||||||
|
|
||||||
Pay attention that the format of autorun.dat does not allow spaces in
|
Pay attention that the format of autorun.dat does not allow spaces in
|
||||||
command line, so there must be no other arguments.
|
command line, so there must be no other arguments.
|
||||||
|
@@ -26,8 +26,8 @@ and parameters pointed to following (if present).
|
|||||||
If no program is loaded, you can load a program with the command
|
If no program is loaded, you can load a program with the command
|
||||||
load <full name of executable file> [<parameters>]
|
load <full name of executable file> [<parameters>]
|
||||||
Examples:
|
Examples:
|
||||||
load /rd/1/example
|
load /sys/example
|
||||||
LOAD /rd/1/aclock w200 h200
|
LOAD /sys/aclock w200 h200
|
||||||
LoaD /hd0/1/menuetos/dosbox/dosbox
|
LoaD /hd0/1/menuetos/dosbox/dosbox
|
||||||
All that stays after first space after executable file name, is exactly passed
|
All that stays after first space after executable file name, is exactly passed
|
||||||
to program as command string.
|
to program as command string.
|
||||||
@@ -44,7 +44,7 @@ by hand or generated automatically by fasm. Evident load can be done by command
|
|||||||
load-symbols <full name of symbols file>
|
load-symbols <full name of symbols file>
|
||||||
Furthermore, when the debugger executes the command "load", it checks for
|
Furthermore, when the debugger executes the command "load", it checks for
|
||||||
presence of file with name as of loading binary and extension '.dbg'
|
presence of file with name as of loading binary and extension '.dbg'
|
||||||
(/rd/1/example.dbg in the first of examples above), and if such file exists,
|
(/sys/example.dbg in the first of examples above), and if such file exists,
|
||||||
the debugger loads it automatically (with the message "Symbols loaded", if
|
the debugger loads it automatically (with the message "Symbols loaded", if
|
||||||
all is OK).
|
all is OK).
|
||||||
|
|
||||||
|
@@ -625,7 +625,7 @@ uint32_t drvEntry(int action, char *cmdline)
|
|||||||
create_dm_list();
|
create_dm_list();
|
||||||
print_dm_list();
|
print_dm_list();
|
||||||
|
|
||||||
write_device_dat("/RD/1/DRIVERS/DEVICES.DAT");
|
write_device_dat("/SYS/DRIVERS/DEVICES.DAT");
|
||||||
|
|
||||||
err:
|
err:
|
||||||
return 0;
|
return 0;
|
||||||
|
@@ -23,9 +23,9 @@ u32_t drvEntry(int action, char *cmdline)
|
|||||||
if(action != 1)
|
if(action != 1)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if( !dbg_open("/rd/1/drivers/acpi.log") )
|
if( !dbg_open("/sys/drivers/acpi.log") )
|
||||||
{
|
{
|
||||||
printf("Can't open /rd/1/drivers/acpi.log\nExit\n");
|
printf("Can't open /sys/drivers/acpi.log\nExit\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -24,7 +24,7 @@ int main(int argc, char** argv){
|
|||||||
drv = _ksys_load_driver(drv_name);
|
drv = _ksys_load_driver(drv_name);
|
||||||
break;
|
break;
|
||||||
case 2 :
|
case 2 :
|
||||||
drv_name = "/rd/1/drivers/c_drv.dll";
|
drv_name = "/sys/drivers/c_drv.dll";
|
||||||
drv = _ksys_load_pe_driver(drv_name, NULL);
|
drv = _ksys_load_pe_driver(drv_name, NULL);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@@ -27,9 +27,9 @@ u32_t __stdcall drvEntry(int action)
|
|||||||
if(action != 1)
|
if(action != 1)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if(!dbg_open("/rd/1/drivers/agp.log"))
|
if(!dbg_open("/sys/drivers/agp.log"))
|
||||||
{
|
{
|
||||||
printf("Can't open /rd/1/drivers/agp.log\nExit\n");
|
printf("Can't open /sys/drivers/agp.log\nExit\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -43,9 +43,9 @@ u32_t __stdcall drvEntry(int action)
|
|||||||
if(action != 1)
|
if(action != 1)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if(!dbg_open("/bd0/2/ati2d.log"))
|
if(!dbg_open("/sys/drivers/ati2d.log"))
|
||||||
{
|
{
|
||||||
printf("Can't open /rd/1/drivers/ati2d.log\nExit\n");
|
printf("Can't open /sys/drivers/ati2d.log\nExit\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if( GetScreenBpp() != 32)
|
if( GetScreenBpp() != 32)
|
||||||
|
@@ -767,9 +767,9 @@ int __stdcall drvEntry(int action)
|
|||||||
if(action != 1)
|
if(action != 1)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if(!dbg_open("/rd/1/drivers/ati.txt"))
|
if(!dbg_open("/sys/drivers/ati.txt"))
|
||||||
{
|
{
|
||||||
printf("Can't open /rd/1/drivers/ati.txt\nExit\n");
|
printf("Can't open /sys/drivers/ati.txt\nExit\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if(!FindPciDevice())
|
if(!FindPciDevice())
|
||||||
|
Reference in New Issue
Block a user