Subversion Repositories HelenOS

Rev

Rev 3666 | Rev 3992 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
708 decky 1
#
2071 jermar 2
# Copyright (c) 2006 Martin Decky
708 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
#
642 jermar 28
 
3052 decky 29
INIT_TASKS = \
2479 jermar 30
	$(USPACEDIR)/srv/ns/ns \
3222 svoboda 31
	$(USPACEDIR)/srv/loader/loader \
3052 decky 32
	$(USPACEDIR)/app/init/init \
33
	$(USPACEDIR)/srv/devmap/devmap \
34
	$(USPACEDIR)/srv/rd/rd \
3320 jermar 35
	$(USPACEDIR)/srv/vfs/vfs 
36
ifeq ($(RDFMT),tmpfs)
37
	INIT_TASKS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
38
endif
39
ifeq ($(RDFMT),fat)
40
	INIT_TASKS += $(USPACEDIR)/srv/fs/fat/fat
41
endif
3052 decky 42
 
43
RD_TASKS = \
2479 jermar 44
	$(USPACEDIR)/srv/pci/pci \
45
	$(USPACEDIR)/srv/fb/fb \
46
	$(USPACEDIR)/srv/kbd/kbd \
47
	$(USPACEDIR)/srv/console/console \
2551 cejka 48
	$(USPACEDIR)/srv/fs/fat/fat \
2479 jermar 49
	$(USPACEDIR)/app/tetris/tetris \
50
	$(USPACEDIR)/app/tester/tester \
3346 post 51
	$(USPACEDIR)/app/klog/klog \
3466 mejdrech 52
	$(USPACEDIR)/app/bdsh/bdsh \
3666 mejdrech 53
	$(USPACEDIR)/srv/net/networking/networking \
3886 mejdrech 54
	$(USPACEDIR)/srv/net/networking/startup/networking_startup \
55
	$(USPACEDIR)/srv/net/netif/lo/lo
3666 mejdrech 56
#	$(USPACEDIR)/srv/net/netif/dp8390_isa
642 jermar 57
 
3466 mejdrech 58
ifeq ($(NETWORKING), modular)
3886 mejdrech 59
	RD_TASKS +=	$(USPACEDIR)/srv/net/il/ip/ip \
60
			$(USPACEDIR)/srv/net/tl/tcp/tcp \
61
			$(USPACEDIR)/srv/net/il/arp/arp
62
#			$(USPACEDIR)/srv/net/il/rarp/rarp \
63
#			$(USPACEDIR)/srv/net/il/icmp/icmp \
64
#			$(USPACEDIR)/srv/net/tl/udp/udp \
3466 mejdrech 65
#			$(USPACEDIR)/srv/net/socket \
3886 mejdrech 66
#			$(USPACEDIR)/srv/net/nil/ethernet/ethernet
3466 mejdrech 67
endif
68
 
1802 decky 69
build: $(BASE)/image.iso
70
 
3052 decky 71
$(BASE)/image.iso: arch/$(ARCH)/grub/stage2_eltorito arch/$(ARCH)/grub/menu.lst $(KERNELDIR)/kernel.bin $(INIT_TASKS) $(RD_TASKS)
1454 decky 72
	mkdir -p arch/$(ARCH)/iso/boot/grub
73
	cp arch/$(ARCH)/grub/stage2_eltorito arch/$(ARCH)/iso/boot/grub/
3320 jermar 74
ifneq ($(RDFMT),tmpfs)
75
	cat arch/$(ARCH)/grub/menu.lst | grep -v "tmpfs" >arch/$(ARCH)/iso/boot/grub/menu.lst
76
endif
77
ifneq ($(RDFMT),fat)
78
	cat arch/$(ARCH)/grub/menu.lst | grep -v "fat" >arch/$(ARCH)/iso/boot/grub/menu.lst
79
endif
1454 decky 80
	cp $(KERNELDIR)/kernel.bin arch/$(ARCH)/iso/boot/
3052 decky 81
	for task in $(INIT_TASKS) ; do \
1802 decky 82
		cp $$task arch/$(ARCH)/iso/boot/ ; \
83
	done
3052 decky 84
	for task in $(RD_TASKS) ; do \
85
		cp $$task $(USPACEDIR)/dist/sbin/ ; \
86
	done
3320 jermar 87
ifeq ($(RDFMT),tmpfs)
3258 decky 88
	$(BASE)/tools/mktmpfs.py $(USPACEDIR)/dist/ arch/$(ARCH)/iso/boot/initrd.fs
3320 jermar 89
endif
90
ifeq ($(RDFMT),fat)
91
	$(BASE)/tools/mkfat.sh $(USPACEDIR)/dist/ arch/$(ARCH)/iso/boot/initrd.fs
92
endif
3258 decky 93
	$(BASE)/tools/mkhord.py 4096 arch/$(ARCH)/iso/boot/initrd.fs arch/$(ARCH)/iso/boot/initrd.img
94
	rm arch/$(ARCH)/iso/boot/initrd.fs
1802 decky 95
	mkisofs -J -r -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table -o $(BASE)/image.iso arch/$(ARCH)/iso/
642 jermar 96
 
1802 decky 97
clean:
3052 decky 98
	-for task in $(RD_TASKS) ; do \
99
		rm -f $(USPACEDIR)/dist/sbin/`basename $$task` ; \
100
	done
1454 decky 101
	-rm -fr arch/$(ARCH)/iso
1802 decky 102
	-rm -f $(BASE)/image.iso