Changeset ee7e6ace in mainline


Ignore:
Timestamp:
2005-09-04T17:54:25Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4f1475d4
Parents:
8b786b6
Message:

Create tools/ directory.
Move helper scripts and tools out of src/ and arch/.

Files:
1 added
1 deleted
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/boot/boot.S

    r8b786b6 ree7e6ace  
    11#
    2 # Copyright (C) 2001-2004 Ondrej Palkovsky
     2# Copyright (C) 2005 Ondrej Palkovsky
    33# All rights reserved.
    44#
  • src/Makefile

    r8b786b6 ree7e6ace  
    7777        $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile debug/empty_map.o
    7878        $(LD) $(LFLAGS) $(arch_objects) $(objects) $(test_objects) debug/empty_map.o -o $@ -Map kernel.map.pre
    79         debug/genmap.py kernel.map.pre debug/real_map.bin
     79        ../tools/genmap.py kernel.map.pre debug/real_map.bin
    8080        $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab debug/real_map.bin debug/real_map.o
    8181        $(LD) $(LFLAGS) $(arch_objects) $(objects) $(test_objects) debug/real_map.o -o $@ -Map kernel.map       
  • src/build.amd64

    r8b786b6 ree7e6ace  
    33set -e
    44# Generate context_offset.h
    5 (cd ../arch/amd64/src;make gencontext;./gencontext)
     5(cd ../tools/amd64/;make gencontext;./gencontext)
    66# Create links to ia32 architecture
    77
  • src/clean.amd64

    r8b786b6 ree7e6ace  
    66find ../arch/amd64 -type l | xargs rm
    77rm ../arch/amd64/src/context_offset.h
    8 rm ../arch/amd64/src/gencontext
     8rm ../tools/amd64/gencontext
Note: See TracChangeset for help on using the changeset viewer.