source: mainline/boot/Makefile.common@ 0cb2d72

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 0cb2d72 was 975e7e9, checked in by Jiri Svoboda <jiri@…>, 16 years ago

Implement a basic GUID partition table driver.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1#
2# Copyright (c) 2009 Martin Decky
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
29-include ../Makefile.config
30
31TMP = distroot
32INITRD = initrd
33
34INIT_TASKS = \
35 $(USPACEDIR)/srv/ns/ns \
36 $(USPACEDIR)/srv/loader/loader \
37 $(USPACEDIR)/app/init/init \
38 $(USPACEDIR)/srv/devmap/devmap \
39 $(USPACEDIR)/srv/bd/rd/rd \
40 $(USPACEDIR)/srv/vfs/vfs
41ifeq ($(RDFMT),tmpfs)
42 INIT_TASKS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
43endif
44ifeq ($(RDFMT),fat)
45 INIT_TASKS += $(USPACEDIR)/srv/fs/fat/fat
46endif
47
48RD_SRVS = \
49 $(USPACEDIR)/srv/bd/file_bd/file_bd \
50 $(USPACEDIR)/srv/bd/part/guid_part/g_part \
51 $(USPACEDIR)/srv/bd/part/mbr_part/mbr_part \
52 $(USPACEDIR)/srv/clip/clip \
53 $(USPACEDIR)/srv/hid/fb/fb \
54 $(USPACEDIR)/srv/hid/kbd/kbd \
55 $(USPACEDIR)/srv/hid/console/console \
56 $(USPACEDIR)/srv/fs/devfs/devfs \
57 $(USPACEDIR)/srv/fs/tmpfs/tmpfs \
58 $(USPACEDIR)/srv/fs/fat/fat
59
60RD_APPS = \
61 $(USPACEDIR)/app/bdsh/bdsh \
62 $(USPACEDIR)/app/edit/edit \
63 $(USPACEDIR)/app/getterm/getterm \
64 $(USPACEDIR)/app/klog/klog \
65 $(USPACEDIR)/app/mkfat/mkfat \
66 $(USPACEDIR)/app/redir/redir \
67 $(USPACEDIR)/app/tester/tester \
68 $(USPACEDIR)/app/tetris/tetris \
69 $(USPACEDIR)/app/trace/trace
70
71COMPONENTS = \
72 $(KERNELDIR)/kernel.bin \
73 $(USPACEDIR)/srv/ns/ns \
74 $(USPACEDIR)/srv/loader/loader \
75 $(USPACEDIR)/app/init/init \
76 $(USPACEDIR)/srv/devmap/devmap \
77 $(USPACEDIR)/srv/bd/rd/rd \
78 $(USPACEDIR)/srv/vfs/vfs
79ifeq ($(RDFMT),tmpfs)
80 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
81endif
82ifeq ($(RDFMT),fat)
83 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat
84endif
Note: See TracBrowser for help on using the repository browser.