Rev 496 | Rev 558 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
309 | giacomo | 1 | # S.Ha.R.K. Setup File |
2 | # |
||
3 | # Oslib Configuration |
||
4 | # |
||
5 | |||
6 | # Enable the system time computation through TSC register |
||
7 | # Only Pentium or higher CPU class |
||
8 | TSC = TRUE |
||
9 | |||
10 | # Enable timer interrupt through P6 APIC instead of PIT |
||
11 | # Only P6 or higher CPU class, TSC support must be enabled |
||
502 | giacomo | 12 | APIC = TRUE |
309 | giacomo | 13 | |
331 | giacomo | 14 | #Enable Read Timer Optimization |
15 | #TIMER_OPT = 1000 (For CPU < 1 GHz - Wraparound 585 years) |
||
16 | #TIMER_OPT = 2000 (For 1 GHz < CPU < 2 GHz - Wraparound 146 years) |
||
17 | #TIMER_OPT = 4000 (For 2 GHz < CPU < 4 GHz - Wraparound 36 years) |
||
336 | giacomo | 18 | #TIMER_OPT = 8000 (For CPU < 8 GHz - Wraparound 292 years) |
19 | TIMER_OPT = 8000 |
||
355 | giacomo | 20 | |
21 | #Select the events tracer |
||
22 | # TRACER = "NO","OLD","NEW" |
||
502 | giacomo | 23 | TRACER = "NEW" |
355 | giacomo | 24 | |
449 | giacomo | 25 | #Select the BIOS INTERRUPT access mode |
26 | #BIOS = "X","VM86" |
||
27 | # X means that you must use x.exe as shark loader |
||
28 | # if shark needs to call BIOS interrupt (Ex. to enable |
||
29 | # graphics) |
||
30 | # VM86 means that shark call the BIOS interrupts as |
||
31 | # Virtual Machine 86, and you can load a graphical |
||
32 | # demo also through GRUB. VM86 MODE IS NOT COMPATIBLE |
||
33 | # WITH SOME VGA CARDS |
||
450 | giacomo | 34 | BIOS = "X" |
449 | giacomo | 35 | |
489 | giacomo | 36 | #Select the FrameBuffer Configuration |
37 | #FB = "VESA","FINDPCI","VGA16" |
||
38 | # VESA it uses the VBE interrupts to enable the |
||
39 | # selected video mode |
||
40 | # FINDPCI the FrameBuffer driver will try to find a |
||
41 | # PCI/AGP graphical card. If a card is found, FB will |
||
42 | # use a specific driver to enable it |
||
43 | # VGA16 enable the VGA16 (4 bpp) video mode |
||
44 | FB = "VESA" |
||
45 |