Changeset 81235588 in mainline for boot/arch/mips32/loader


Ignore:
Timestamp:
2009-12-09T14:51:14Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fb623e2
Parents:
63c4e28
Message:

move the definition of common init tasks, RAM disk files and components to a common makefile
(this should make it easier to maintain the list when tasks need to be added, etc.)

Location:
boot/arch/mips32/loader
Files:
2 edited

Legend:

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

    r63c4e28 r81235588  
    4949        boot.S
    5050
    51 COMPONENTS = \
    52         $(KERNELDIR)/kernel.bin \
    53         $(USPACEDIR)/srv/ns/ns \
    54         $(USPACEDIR)/srv/loader/loader \
    55         $(USPACEDIR)/app/init/init \
    56         $(USPACEDIR)/srv/devmap/devmap \
    57         $(USPACEDIR)/srv/bd/rd/rd \
    58         $(USPACEDIR)/srv/vfs/vfs
    59 ifeq ($(RDFMT),tmpfs)
    60         COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
    61 endif
    62 ifeq ($(RDFMT),fat)
    63         COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat
    64 endif
    65 
    6651OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
    6752COMPONENT_OBJECTS := $(addsuffix .co,$(basename $(notdir $(COMPONENTS)))) $(INITRD).co
  • boot/arch/mips32/loader/Makefile.common

    r63c4e28 r81235588  
    3131#
    3232
     33include ../../../Makefile.common
     34
    3335DEPEND = Makefile.depend
    3436DEPEND_PREV = $(DEPEND).prev
     
    3840LINK = _link.ld
    3941COMPS = _components
    40 INITRD = initrd
    4142
    4243KERNELDIR = ../../../../kernel
    4344USPACEDIR = ../../../../uspace
    4445
    45 RD_SRVS = \
    46         $(USPACEDIR)/srv/fb/fb \
    47         $(USPACEDIR)/srv/kbd/kbd \
    48         $(USPACEDIR)/srv/console/console \
    49         $(USPACEDIR)/srv/fs/devfs/devfs \
    50         $(USPACEDIR)/srv/fs/tmpfs/tmpfs \
    51         $(USPACEDIR)/srv/fs/fat/fat \
    52         $(USPACEDIR)/srv/bd/file_bd/file_bd \
    53         $(USPACEDIR)/srv/part/mbr_part/mbr_part \
    54         $(USPACEDIR)/srv/bd/gxe_bd/gxe_bd
    55 
    56 RD_APPS = \
    57         $(USPACEDIR)/app/edit/edit \
    58         $(USPACEDIR)/app/getvc/getvc \
    59         $(USPACEDIR)/app/redir/redir \
    60         $(USPACEDIR)/app/tetris/tetris \
    61         $(USPACEDIR)/app/tester/tester \
    62         $(USPACEDIR)/app/trace/trace \
    63         $(USPACEDIR)/app/klog/klog \
    64         $(USPACEDIR)/app/bdsh/bdsh
     46RD_SRVS += $(USPACEDIR)/srv/bd/gxe_bd/gxe_bd
Note: See TracChangeset for help on using the changeset viewer.