Changeset c0cf640 in mainline
- Timestamp:
- 2007-04-06T12:21:50Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c9d20755
- Parents:
- 547fa39
- Files:
-
- 14 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/amd64/Makefile.inc
r547fa39 rc0cf640 35 35 $(USPACEDIR)/console/console \ 36 36 $(USPACEDIR)/tetris/tetris \ 37 $(USPACEDIR)/ ipcc/ipcc\37 $(USPACEDIR)/tester/tester \ 38 38 $(USPACEDIR)/klog/klog 39 39 -
boot/arch/amd64/grub/menu.lst
r547fa39 rc0cf640 12 12 module /boot/console 13 13 module /boot/tetris 14 module /boot/ ipcc14 module /boot/tester 15 15 module /boot/klog -
boot/arch/ia32/Makefile.inc
r547fa39 rc0cf640 35 35 $(USPACEDIR)/console/console \ 36 36 $(USPACEDIR)/tetris/tetris \ 37 $(USPACEDIR)/ ipcc/ipcc\37 $(USPACEDIR)/tester/tester \ 38 38 $(USPACEDIR)/klog/klog 39 39 -
boot/arch/ia32/grub/menu.lst
r547fa39 rc0cf640 12 12 module /boot/console 13 13 module /boot/tetris 14 module /boot/ ipcc14 module /boot/tester 15 15 module /boot/klog -
boot/arch/ia32xen/Makefile.inc
r547fa39 rc0cf640 35 35 $(USPACEDIR)/console/console \ 36 36 $(USPACEDIR)/tetris/tetris \ 37 $(USPACEDIR)/ ipcc/ipcc\37 $(USPACEDIR)/tester/tester \ 38 38 $(USPACEDIR)/klog/klog 39 39 -
boot/arch/ia32xen/grub/menu.debug.lst
r547fa39 rc0cf640 13 13 module /boot/console 14 14 module /boot/tetris 15 module /boot/ ipcc15 module /boot/tester 16 16 module /boot/klog -
boot/arch/ia32xen/grub/menu.lst
r547fa39 rc0cf640 13 13 module /boot/console 14 14 module /boot/tetris 15 module /boot/ ipcc15 module /boot/tester 16 16 module /boot/klog -
boot/arch/mips32/loader/Makefile
r547fa39 rc0cf640 75 75 $(USPACEDIR)/console/console \ 76 76 $(USPACEDIR)/tetris/tetris \ 77 $(USPACEDIR)/ ipcc/ipcc\77 $(USPACEDIR)/tester/tester \ 78 78 $(USPACEDIR)/klog/klog 79 79 -
boot/arch/ppc32/loader/Makefile
r547fa39 rc0cf640 76 76 $(USPACEDIR)/console/console \ 77 77 $(USPACEDIR)/tetris/tetris \ 78 $(USPACEDIR)/ ipcc/ipcc\78 $(USPACEDIR)/tester/tester \ 79 79 $(USPACEDIR)/klog/klog 80 80 -
boot/arch/ppc64/loader/Makefile
r547fa39 rc0cf640 76 76 $(USPACEDIR)/console/console \ 77 77 $(USPACEDIR)/tetris/tetris \ 78 $(USPACEDIR)/ ipcc/ipcc\78 $(USPACEDIR)/tester/tester \ 79 79 $(USPACEDIR)/klog/klog 80 80 -
boot/arch/sparc64/loader/Makefile
r547fa39 rc0cf640 79 79 $(USPACEDIR)/console/console \ 80 80 $(USPACEDIR)/tetris/tetris \ 81 $(USPACEDIR)/ ipcc/ipcc\81 $(USPACEDIR)/tester/tester \ 82 82 $(USPACEDIR)/klog/klog 83 83 -
contrib/conf/ski.conf
r547fa39 rc0cf640 7 7 romload HelenOS/uspace/tetris/tetris 0x1800000 8 8 romload HelenOS/uspace/klog/klog 0x1c00000 9 romload HelenOS/uspace/ ipcc/ipcc0x20000009 romload HelenOS/uspace/tester/tester 0x2000000 10 10 11 11 -
kernel/generic/src/lib/objc.c
r547fa39 rc0cf640 50 50 } 51 51 52 - (id) free52 - (id) dispose 53 53 { 54 54 return object_dispose(self); -
uspace/Makefile
r547fa39 rc0cf640 42 42 console \ 43 43 tetris \ 44 ipcc\44 tester \ 45 45 klog \ 46 46 rd \ -
uspace/tester/Makefile
r547fa39 rc0cf640 41 41 # 42 42 43 OUTPUT = ipcc44 SOURCES = ipcc.c43 OUTPUT = tester 44 SOURCES = tester.c 45 45 46 46 OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
Note:
See TracChangeset
for help on using the changeset viewer.