Subversion Repositories shark

Rev

Rev 599 | Rev 623 | 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
 
558 giacomo 4
# Kernel Image Start Point
5
# MEM_START = 0x220000
6
# The kernel image file will be loaded starting from this
575 giacomo 7
# physical memory address. For DOS users, it is important
558 giacomo 8
# to set an high address (like 0x1720000) if you are using
9
# Smartdrive or other tools which require Extended Memory
10
MEM_START = 0x220000
11
 
309 giacomo 12
# Enable the system time computation through TSC register
13
# Only Pentium or higher CPU class
576 giacomo 14
TSC = TRUE
309 giacomo 15
 
16
# Enable timer interrupt through P6 APIC instead of PIT
17
# Only P6 or higher CPU class, TSC support must be enabled
620 mauro 18
APIC = TRUE
309 giacomo 19
 
558 giacomo 20
# Enable TSC Read Timer Optimization
21
# TIMER_OPT = 1000 (For CPU < 1 GHz          - Wraparound 585 years)
22
# TIMER_OPT = 2000 (For 1 GHz < CPU < 2 GHz  - Wraparound 146 years)
23
# TIMER_OPT = 4000 (For 2 GHz < CPU < 4 GHz  - Wraparound  36 years)
24
# TIMER_OPT = 8000 (For CPU < 8 GHz          - Wraparound 292 years)
336 giacomo 25
TIMER_OPT = 8000
355 giacomo 26
 
558 giacomo 27
# Select the events tracer
573 giacomo 28
# TRACER = NO,OLD,NEW
620 mauro 29
TRACER = NEW
355 giacomo 30
 
558 giacomo 31
# Select the BIOS INTERRUPT access mode
573 giacomo 32
# BIOS = X,VM86
449 giacomo 33
# X    means that you must use x.exe as shark loader
34
#      if shark needs to call BIOS interrupt (Ex. to enable
35
#      graphics)
36
# VM86 means that shark call the BIOS interrupts as
37
#      Virtual Machine 86, and you can load a graphical
38
#      demo also through GRUB. VM86 MODE IS NOT COMPATIBLE
575 giacomo 39
#      WITH SOME VGA CARDS (like MATROX)
573 giacomo 40
BIOS = X
449 giacomo 41
 
558 giacomo 42
# Select the FrameBuffer Configuration
573 giacomo 43
# FB = VESA,FINDPCI,VGA16
489 giacomo 44
# VESA	  it uses the VBE interrupts to enable the
45
#	  selected video mode
46
# FINDPCI the FrameBuffer driver will try to find a
47
#	  PCI/AGP graphical card. If a card is found, FB will
575 giacomo 48
#	  use a specific driver to enable it
489 giacomo 49
# VGA16   enable the VGA16 (4 bpp) video mode
573 giacomo 50
FB = VESA