Changeset 3d7e19f in mainline
- Timestamp:
- 2008-08-15T16:06:03Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d849cd6
- Parents:
- cebab351
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/loader/Makefile
rcebab351 r3d7e19f 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 \ … … 123 129 cp $$task $(USPACEDIR)/dist/sbin/ ; \ 124 130 done 131 ifeq ($(RDFMT),tmpfs) 125 132 ../../../../tools/mktmpfs.py $(USPACEDIR)/dist/ initrd.fs 133 endif 134 ifeq ($(RDFMT),fat) 135 ../../../../tools/mkfat.sh $(USPACEDIR)/dist/ initrd.fs 136 endif 126 137 ../../../../tools/mkhord.py 4096 initrd.fs initrd.img 127 138 rm initrd.fs
Note:
See TracChangeset
for help on using the changeset viewer.