Changeset 3d32543 in mainline for boot/arch/ppc32/loader/Makefile
- Timestamp:
- 2008-08-15T16:52:16Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7c1d121
- Parents:
- d849cd6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc32/loader/Makefile
rd849cd6 r3d32543 80 80 $(USPACEDIR)/srv/devmap/devmap \ 81 81 $(USPACEDIR)/srv/rd/rd \ 82 $(USPACEDIR)/srv/vfs/vfs \ 83 $(USPACEDIR)/srv/fs/tmpfs/tmpfs 82 $(USPACEDIR)/srv/vfs/vfs 83 ifeq ($(RDFMT),tmpfs) 84 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs 85 endif 86 ifeq ($(RDFMT),fat) 87 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat 88 endif 84 89 85 90 RD_TASKS = \ … … 87 92 $(USPACEDIR)/srv/kbd/kbd \ 88 93 $(USPACEDIR)/srv/console/console \ 94 $(USPACEDIR)/srv/fs/tmpfs/tmpfs \ 89 95 $(USPACEDIR)/srv/fs/fat/fat \ 90 96 $(USPACEDIR)/app/tetris/tetris \ … … 118 124 cp $$task $(USPACEDIR)/dist/sbin/ ; \ 119 125 done 126 ifeq ($(RDFMT),tmpfs) 120 127 ../../../../tools/mktmpfs.py $(USPACEDIR)/dist/ initrd.fs 128 endif 129 ifeq ($(RDFMT),fat) 130 ../../../../tools/mkfat.sh $(USPACEDIR)/dist/ initrd.fs 131 endif 121 132 ../../../../tools/mkhord.py 4096 initrd.fs initrd.img 122 133 rm initrd.fs
Note:
See TracChangeset
for help on using the changeset viewer.