Changeset d849cd6 in mainline for boot/arch/mips32/loader/Makefile
- Timestamp:
- 2008-08-15T16:36:44Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3d32543
- Parents:
- 3d7e19f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/mips32/loader/Makefile
r3d7e19f rd849cd6 85 85 $(USPACEDIR)/srv/devmap/devmap \ 86 86 $(USPACEDIR)/srv/rd/rd \ 87 $(USPACEDIR)/srv/vfs/vfs \ 88 $(USPACEDIR)/srv/fs/tmpfs/tmpfs 87 $(USPACEDIR)/srv/vfs/vfs 88 ifeq ($(RDFMT),tmpfs) 89 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs 90 endif 91 ifeq ($(RDFMT),fat) 92 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat 93 endif 89 94 90 95 RD_TASKS = \ … … 92 97 $(USPACEDIR)/srv/kbd/kbd \ 93 98 $(USPACEDIR)/srv/console/console \ 99 $(USPACEDIR)/srv/fs/tmpfs/tmpfs \ 94 100 $(USPACEDIR)/srv/fs/fat/fat \ 95 101 $(USPACEDIR)/app/tetris/tetris \ … … 124 130 cp $$task $(USPACEDIR)/dist/sbin/ ; \ 125 131 done 132 ifeq ($(RDFMT),tmpfs) 126 133 ../../../../tools/mktmpfs.py $(USPACEDIR)/dist/ initrd.fs 134 endif 135 ifeq ($(RDFMT),fat) 136 ../../../../tools/mkfat.sh $(USPACEDIR)/dist/ initrd.fs 137 endif 127 138 ../../../../tools/mkhord.py 16384 initrd.fs initrd.img 128 139 rm initrd.fs
Note:
See TracChangeset
for help on using the changeset viewer.