Subversion Repositories HelenOS

Rev

Go to most recent revision | Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
580 6739 d 9 h palkovsky /kernel/trunk/ Fixed incorrect dependencies on architecture change.  
577 6739 d 19 h palkovsky /kernel/trunk/ Some small fixes, basic changes to ia64 & ppc32 without testing.  
576 6739 d 20 h palkovsky /kernel/trunk/ Changed ia32 & amd64 to use exc_register instead of trap_register.

Fixed dependency list building. I hope you all have 'makedepend' installed,
if you don't it's time to install it, as CC -M builds the dependency
list without directory names..and it just does not work.
 
575 6739 d 20 h palkovsky /kernel/trunk/ Added generic exc_register/exc_dispatch functions,
copied from ia32 architecture. Currently only mips32 uses them.

The chardev_t can now be both input & output device (was
needed for serial driver).

Broken other architectures - ia64, sparc, powerpc will not compile.

Mips32 supports input on all msim, gxemul, indy(tested emulation
in gxemul, loses characters), simics. Simics serial line
is done using polling, I was unable to make it produce
an interrupt when the key was pressed.
 
568 6741 d 4 h palkovsky /kernel/trunk/ Configuration tweaks, now supports both CNF and DNF in config.file.  
561 6742 d 3 h decky /kernel/trunk/ better way of placing revision, timestamp and arch in banner  
558 6742 d 6 h palkovsky /kernel/trunk/ Clean up of build system. Use:
make config
make
make clean
 
550 6743 d 0 h palkovsky /kernel/trunk/ Completely reworked configuration system.  
534 6745 d 1 h jermar / Rename HelenOS/SPARTAN to HelenOS/kernel again.  
532 6745 d 1 h jermar / Revert renaming of HelenOS/SPARTAN to HelenOS/kernel because of important pending patch.  
518 6752 d 22 h jermar /kernel/trunk/ Improve kconsole's support for recognition of commands with arguments.
Implement ARG_TYPE_STRING.
Add 'describe' command.
Move kconsole.c to generic/src/console.
Move kconsole.h to generic/include/console.
 
510 6756 d 21 h jermar /kernel/trunk/ Add chardev_t.
This type is meant to abstract any input character device such as keyboard, serial port etc.
Add stdin.
Add dummy kconsole.
 
501 6757 d 5 h jermar / Rename HelenOS/SPARTAN to HelenOS/kernel.  
486 6764 d 22 h jermar /SPARTAN/trunk/ Revert to -O3 for all architectures as the mips32 bug got fixed.  
485 6764 d 22 h decky /SPARTAN/trunk/ fix small clean bug  
483 6765 d 1 h jermar /SPARTAN/trunk/ For now, each architecture must use its own -O switch (-O2 doesn't work for ia64, -O3 doesn't work for mips32).

New mips32 atomic_add() function.

Cleanup.
 
474 6769 d 7 h decky /SPARTAN/trunk/ clean test directory  
472 6770 d 6 h jermar /SPARTAN/trunk/ Changes in build system.
For .S targets, always do -D__ASM__.
Remove unnecessary #define __ASM__ from various *.S files.
At the end of build, generate disassembler dump for kernel.raw.

ia64 work.
Better General Exception handler.
 
471 6770 d 6 h decky /SPARTAN/trunk/ remove NDEBUG, replace it by ~CONFIG_DEBUG
set CONFIG_DEBUG = y
 
462 6771 d 6 h decky /SPARTAN/trunk/ include svn revision and build time in the kernel  
461 6771 d 8 h decky /SPARTAN/trunk/ link kernel in ARCH's native format first, then use objcopy to create output format  
460 6771 d 8 h decky /SPARTAN/trunk/ some fancy stuff  
459 6771 d 8 h decky /SPARTAN/trunk/ build system: CONFIG_TEST, CONFIG_USERSPACE  
458 6771 d 8 h decky /SPARTAN/trunk/ make configuration variables usage consistent  
457 6771 d 9 h decky /SPARTAN/trunk/ new build system almost finished  
455 6771 d 21 h decky /SPARTAN/trunk/ new build system upgrade
finished work for IA-32, IA-64, PPC-32, SPARC-64
 
454 6772 d 0 h decky /SPARTAN/trunk/ build system: boot target  
452 6772 d 1 h decky /SPARTAN/trunk/ major build system revision (unfinished)
this patchset most definitively breaks a lot of things, be patient
 
430 6777 d 22 h jermar /SPARTAN/trunk/ Move src/ and include/ to generic.  
421 6784 d 21 h jermar /SPARTAN/trunk/ Create genarch directory.
Move ppc32 ofw.[ch] to genarch.
Fix prototype for ofw_call() to return __address instead of int (please review).
Fix copyright notice in sparc64/boot/boot.S.
 
377 6815 d 0 h jermar /SPARTAN/trunk/ Generic buddy allocator.
Please review the code before it is deployed.
 
376 6815 d 4 h jermar /SPARTAN/trunk/ Move kernel build files one level up the directory tree.
Fix paths in your testing environment!
 
350 6824 d 23 h jermar /SPARTAN/trunk/src/ Remove _qsort() as its concept is fundamentally broken.

Move lib/the.c to proc/the.c.
 
331 6829 d 8 h bondari /SPARTAN/trunk/ Generic quicksort and bubble sort implementation.
ACPI MADT parser now uses qsort() for index sorting
 
326 6830 d 20 h palkovsky /SPARTAN/trunk/ Cleanup of makefiles to have common options in one main makefile.

Add simple build process for different simulators for MIPS.
Added FPU context & lazy FPU context switching to MIPS.
Cleanup of MIPS linker script.
Moved MIPS kernel above 1MB. Not tested on real machine yet, but it might help.

There is something broken with gcc inlined memcpy (either simulator or gcc), it is disabled on BigEndian mips now.
 
314 6833 d 21 h palkovsky /SPARTAN/trunk/ Small cleanups  
293 6835 d 21 h palkovsky /SPARTAN/trunk/ Symbol table now contains static functions too.
NOTE: gcc heavily inlines, be aware of optimizations.

Removed excesive item from boot page tables.
 
289 6836 d 1 h palkovsky /SPARTAN/trunk/ Added preprocessed linker script to AMD architecture, so that
the constants are all only in the header files.
 
288 6836 d 3 h jermar /SPARTAN/trunk/ Create tools/ directory.
Move helper scripts and tools out of src/ and arch/.
 
268 6837 d 4 h palkovsky /SPARTAN/trunk/ Added symbol table lookup in exceptions.
This breaks ia64 & ppc architecture compiles.