Changeset d849cd6 in mainline


Ignore:
Timestamp:
2008-08-15T16:36:44Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3d32543
Parents:
3d7e19f
Message:

Boot support for FAT16 on mips32.
Not fully functional, but probably for another reason than on arm32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/mips32/loader/Makefile

    r3d7e19f rd849cd6  
    8585        $(USPACEDIR)/srv/devmap/devmap \
    8686        $(USPACEDIR)/srv/rd/rd \
    87         $(USPACEDIR)/srv/vfs/vfs \
    88         $(USPACEDIR)/srv/fs/tmpfs/tmpfs
     87        $(USPACEDIR)/srv/vfs/vfs
     88ifeq ($(RDFMT),tmpfs)
     89        COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
     90endif
     91ifeq ($(RDFMT),fat)
     92        COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat
     93endif
    8994
    9095RD_TASKS = \
     
    9297        $(USPACEDIR)/srv/kbd/kbd \
    9398        $(USPACEDIR)/srv/console/console \
     99        $(USPACEDIR)/srv/fs/tmpfs/tmpfs \
    94100        $(USPACEDIR)/srv/fs/fat/fat \
    95101        $(USPACEDIR)/app/tetris/tetris \
     
    124130                cp $$task $(USPACEDIR)/dist/sbin/ ; \
    125131        done
     132ifeq ($(RDFMT),tmpfs)
    126133        ../../../../tools/mktmpfs.py $(USPACEDIR)/dist/ initrd.fs
     134endif
     135ifeq ($(RDFMT),fat)
     136        ../../../../tools/mkfat.sh $(USPACEDIR)/dist/ initrd.fs
     137endif
    127138        ../../../../tools/mkhord.py 16384 initrd.fs initrd.img
    128139        rm initrd.fs
Note: See TracChangeset for help on using the changeset viewer.