Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1036 → Rev 1037

/shark/trunk/config/config.mk
33,6 → 33,10
CFG_OPT += -D__FORCE_PXC__
endif
 
ifeq ($(findstring SHARK_FS,$(YES)) , SHARK_FS)
CFG_OPT += -D__SHARK_FS_SUPPORT__
endif
 
ifeq ($(findstring NEW,$(TRACER)) , NEW)
ifeq ($(TSC),TRUE)
CFG_OPT += -D__NEW_TRACER__
/shark/trunk/shark.cfg
7,7 → 7,7
# physical memory address. For DOS users, it is important
# to set an high address (like 0x1720000) if you are using
# Smartdrive or other tools which require Extended Memory
MEM_START = 0x220000
MEM_START = 0x220000
 
# Enable the system time computation through TSC register
# Only Pentium or higher CPU class
55,3 → 55,7
# FORCE_PXC it forces the frame grabber to init a PXC200 card
FG = NORMAL
 
# Select the S.Ha.R.K. file system support
# YES = build the FS library
# NO = do not build the FS library
SHARK_FS = NO
/shark/trunk/makefile
17,9 → 17,11
make -C kernel $@
make -C modules $@
make -C drivers $@
make -C fs $@
make -C lib $@
make -C libc $@
make -C ports $@
make -C tracer $@
ifeq ($(findstring YES,$(SHARK_FS)) , YES)
make -C fs $@
endif