Subversion Repositories HelenOS

Rev

Rev 4348 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4348 Rev 4373
1
#
1
#
2
# Copyright (c) 2006 Martin Decky
2
# Copyright (c) 2006 Martin Decky
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
8
#
8
#
9
# - Redistributions of source code must retain the above copyright
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
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
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.
15
#   derived from this software without specific prior written permission.
16
#
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
TMP = distroot
29
TMP = distroot
30
 
30
 
31
INIT_TASKS = \
31
INIT_TASKS = \
32
	$(USPACEDIR)/srv/ns/ns \
32
	$(USPACEDIR)/srv/ns/ns \
33
	$(USPACEDIR)/srv/loader/loader \
33
	$(USPACEDIR)/srv/loader/loader \
34
	$(USPACEDIR)/app/init/init \
34
	$(USPACEDIR)/app/init/init \
35
	$(USPACEDIR)/srv/devmap/devmap \
35
	$(USPACEDIR)/srv/devmap/devmap \
36
	$(USPACEDIR)/srv/rd/rd \
36
	$(USPACEDIR)/srv/rd/rd \
37
	$(USPACEDIR)/srv/vfs/vfs
37
	$(USPACEDIR)/srv/vfs/vfs
38
ifeq ($(RDFMT),tmpfs)
38
ifeq ($(RDFMT),tmpfs)
39
	INIT_TASKS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
39
	INIT_TASKS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
40
endif
40
endif
41
ifeq ($(RDFMT),fat)
41
ifeq ($(RDFMT),fat)
42
	INIT_TASKS += $(USPACEDIR)/srv/fs/fat/fat
42
	INIT_TASKS += $(USPACEDIR)/srv/fs/fat/fat
43
endif
43
endif
44
 
44
 
45
RD_SRVS = \
45
RD_SRVS = \
46
	$(USPACEDIR)/srv/pci/pci \
46
	$(USPACEDIR)/srv/pci/pci \
47
	$(USPACEDIR)/srv/fb/fb \
47
	$(USPACEDIR)/srv/fb/fb \
48
	$(USPACEDIR)/srv/kbd/kbd \
48
	$(USPACEDIR)/srv/kbd/kbd \
49
	$(USPACEDIR)/srv/console/console \
49
	$(USPACEDIR)/srv/console/console \
50
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs \
50
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs \
51
	$(USPACEDIR)/srv/fs/fat/fat
51
	$(USPACEDIR)/srv/fs/fat/fat
52
 
52
 
53
RD_APPS = \
53
RD_APPS = \
54
	$(USPACEDIR)/app/tetris/tetris \
54
	$(USPACEDIR)/app/tetris/tetris \
55
	$(USPACEDIR)/app/tester/tester \
55
	$(USPACEDIR)/app/tester/tester \
56
	$(USPACEDIR)/app/dltest/dltest \
-
 
57
	$(USPACEDIR)/app/dltest2/dltest2 \
56
	$(USPACEDIR)/app/dltest2/dltest2 \
58
	$(USPACEDIR)/app/dload/dload \
57
	$(USPACEDIR)/app/dload/dload \
59
	$(USPACEDIR)/app/trace/trace \
58
	$(USPACEDIR)/app/trace/trace \
60
	$(USPACEDIR)/app/klog/klog \
59
	$(USPACEDIR)/app/klog/klog \
61
	$(USPACEDIR)/app/bdsh/bdsh
60
	$(USPACEDIR)/app/bdsh/bdsh
62
 
61
 
63
RD_LIBS = \
62
RD_LIBS = \
64
	$(USPACEDIR)/lib/libc/shared/libc.so.0 \
-
 
65
	$(USPACEDIR)/lib/libtest/libtest.so.0
63
	$(USPACEDIR)/lib/libtest/libtest.so.0
66
 
64
 
-
 
65
ifeq ($(CONFIG_BUILD_SHARED_LIBC), y)
-
 
66
	RD_LIBS += $(USPACEDIR)/lib/libc/shared/libc.so.0
-
 
67
	RD_APPS += $(USPACEDIR)/app/dltest/dltest
-
 
68
endif
-
 
69
 
67
build: $(BASE)/image.iso
70
build: $(BASE)/image.iso
68
 
71
 
69
$(BASE)/image.iso: arch/$(BARCH)/grub/stage2_eltorito arch/$(BARCH)/grub/menu.lst $(KERNELDIR)/kernel.bin $(INIT_TASKS) $(RD_SRVS) $(RD_LIBS) $(RD_APPS)
72
$(BASE)/image.iso: arch/$(BARCH)/grub/stage2_eltorito arch/$(BARCH)/grub/menu.lst $(KERNELDIR)/kernel.bin $(INIT_TASKS) $(RD_SRVS) $(RD_LIBS) $(RD_APPS)
70
	mkdir -p $(TMP)/boot/grub
73
	mkdir -p $(TMP)/boot/grub
71
	cp arch/$(BARCH)/grub/stage2_eltorito $(TMP)/boot/grub/
74
	cp arch/$(BARCH)/grub/stage2_eltorito $(TMP)/boot/grub/
72
ifneq ($(RDFMT),tmpfs)
75
ifneq ($(RDFMT),tmpfs)
73
	cat arch/$(BARCH)/grub/menu.lst | grep -v "tmpfs" > $(TMP)/boot/grub/menu.lst
76
	cat arch/$(BARCH)/grub/menu.lst | grep -v "tmpfs" > $(TMP)/boot/grub/menu.lst
74
endif
77
endif
75
ifneq ($(RDFMT),fat)
78
ifneq ($(RDFMT),fat)
76
	cat arch/$(BARCH)/grub/menu.lst | grep -v "fat" > $(TMP)/boot/grub/menu.lst
79
	cat arch/$(BARCH)/grub/menu.lst | grep -v "fat" > $(TMP)/boot/grub/menu.lst
77
endif
80
endif
78
	cp $(KERNELDIR)/kernel.bin $(TMP)/boot/
81
	cp $(KERNELDIR)/kernel.bin $(TMP)/boot/
79
	for task in $(INIT_TASKS) ; do \
82
	for task in $(INIT_TASKS) ; do \
80
		cp $$task $(TMP)/boot/ ; \
83
		cp $$task $(TMP)/boot/ ; \
81
	done
84
	done
82
	for file in $(RD_SRVS) ; do \
85
	for file in $(RD_SRVS) ; do \
83
		cp $$file $(USPACEDIR)/dist/srv/ ; \
86
		cp $$file $(USPACEDIR)/dist/srv/ ; \
84
	done
87
	done
85
	for lib in $(RD_LIBS) ; do \
88
	for lib in $(RD_LIBS) ; do \
86
		cp $$lib $(USPACEDIR)/dist/lib/ ; \
89
		cp $$lib $(USPACEDIR)/dist/lib/ ; \
87
	done
90
	done
88
	for file in $(RD_APPS) ; do \
91
	for file in $(RD_APPS) ; do \
89
		cp $$file $(USPACEDIR)/dist/app/ ; \
92
		cp $$file $(USPACEDIR)/dist/app/ ; \
90
	done
93
	done
91
ifeq ($(RDFMT),tmpfs)
94
ifeq ($(RDFMT),tmpfs)
92
	$(BASE)/tools/mktmpfs.py $(USPACEDIR)/dist/ $(TMP)/boot/initrd.fs
95
	$(BASE)/tools/mktmpfs.py $(USPACEDIR)/dist/ $(TMP)/boot/initrd.fs
93
endif
96
endif
94
ifeq ($(RDFMT),fat)
97
ifeq ($(RDFMT),fat)
95
	$(BASE)/tools/mkfat.py $(USPACEDIR)/dist/ $(TMP)/boot/initrd.fs
98
	$(BASE)/tools/mkfat.py $(USPACEDIR)/dist/ $(TMP)/boot/initrd.fs
96
endif
99
endif
97
	$(BASE)/tools/mkhord.py 4096 $(TMP)/boot/initrd.fs $(TMP)/boot/initrd.img
100
	$(BASE)/tools/mkhord.py 4096 $(TMP)/boot/initrd.fs $(TMP)/boot/initrd.img
98
	rm $(TMP)/boot/initrd.fs
101
	rm $(TMP)/boot/initrd.fs
99
	mkisofs -J -r -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table -o $@ $(TMP)/
102
	mkisofs -J -r -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table -o $@ $(TMP)/
100
 
103
 
101
clean:
104
clean:
102
	-for file in $(RD_SRVS) ; do \
105
	-for file in $(RD_SRVS) ; do \
103
		rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \
106
		rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \
104
	done
107
	done
105
	-for lib in $(RD_LIBS) ; do \
108
	-for lib in $(RD_LIBS) ; do \
106
		rm -f $(USPACEDIR)/dist/lib/`basename $$lib` ; \
109
		rm -f $(USPACEDIR)/dist/lib/`basename $$lib` ; \
107
	done
110
	done
108
	-for file in $(RD_APPS) ; do \
111
	-for file in $(RD_APPS) ; do \
109
		rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \
112
		rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \
110
	done
113
	done
111
	-rm -fr $(TMP)
114
	-rm -fr $(TMP)
112
	-rm -f $(BASE)/image.iso
115
	-rm -f $(BASE)/image.iso
113
 
116