Changeset e84439a in mainline for src


Ignore:
Timestamp:
2005-09-06T08:51:22Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e949fd6
Parents:
39ae77b
Message:

Fixed mips boot process.
On interrupt saving registers, save $lo, $hi.
Add interrupt naming to asm files (mips).
Save only necessary registers on context switch (see mips ABI).
Fixed copyright info.

Location:
src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.config

    r39ae77b re84439a  
    2121
    2222# Uncomment if you want to run in the test mode
    23 #TEST=__TEST__
     23TEST=__TEST__
    2424
    2525TEST_FILE=test.c
     
    2929#TEST_DIR=synch/rwlock2/
    3030#TEST_DIR=synch/rwlock3/
    31 #TEST_DIR=synch/rwlock4/
     31TEST_DIR=synch/rwlock4/
    3232#TEST_DIR=synch/rwlock5/
    3333#TEST_DIR=synch/semaphore1/
  • src/build.amd64

    r39ae77b re84439a  
    1616done
    1717
    18 for a in atomic.h ega.h fpu_context.h i8042.h i8259.h i8254.h interrupt.h bios mm/memory_init.h boot/memmap.h boot/memmapasm.h smp acpi; do
     18for a in atomic.h ega.h fpu_context.h i8042.h i8259.h i8254.h interrupt.h bios mm/memory_init.h boot/memmap.h boot/memmapasm.h smp acpi barrier.h; do
    1919  if [ \! -e amd64/include/$a ]; then
    2020    echo ln -sf `pwd`/ia32/include/$a amd64/include/$a
  • src/build.mips

    r39ae77b re84439a  
    11#! /bin/sh
    22
     3set -e
     4# Generate context_offset.h
     5(cd ../tools/mips/;make gencontext;./gencontext)
     6
     7
    38make all ARCH=mips
  • src/clean.mips

    r39ae77b re84439a  
    22
    33make dist-clean ARCH=mips
     4
     5rm ../tools/mips/gencontext
Note: See TracChangeset for help on using the changeset viewer.