Changeset ee7e6ace in mainline
- Timestamp:
- 2005-09-04T17:54:25Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4f1475d4
- Parents:
- 8b786b6
- Files:
-
- 1 added
- 1 deleted
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/boot/boot.S
r8b786b6 ree7e6ace 1 1 # 2 # Copyright (C) 200 1-2004Ondrej Palkovsky2 # Copyright (C) 2005 Ondrej Palkovsky 3 3 # All rights reserved. 4 4 # -
src/Makefile
r8b786b6 ree7e6ace 77 77 $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile debug/empty_map.o 78 78 $(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.bin79 ../tools/genmap.py kernel.map.pre debug/real_map.bin 80 80 $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab debug/real_map.bin debug/real_map.o 81 81 $(LD) $(LFLAGS) $(arch_objects) $(objects) $(test_objects) debug/real_map.o -o $@ -Map kernel.map -
src/build.amd64
r8b786b6 ree7e6ace 3 3 set -e 4 4 # Generate context_offset.h 5 (cd ../ arch/amd64/src;make gencontext;./gencontext)5 (cd ../tools/amd64/;make gencontext;./gencontext) 6 6 # Create links to ia32 architecture 7 7 -
src/clean.amd64
r8b786b6 ree7e6ace 6 6 find ../arch/amd64 -type l | xargs rm 7 7 rm ../arch/amd64/src/context_offset.h 8 rm ../ arch/amd64/src/gencontext8 rm ../tools/amd64/gencontext
Note:
See TracChangeset
for help on using the changeset viewer.