blob: 12450e735ea9682224031e0257335b1d0260cd7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
#
# aboot/Makefile
#
# This file is subject to the terms and conditions of the GNU General Public
# License. See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (c) 1995, 1996 by David Mosberger (davidm@cs.arizona.edu)
#
# location of linux kernel sources (must be absolute path):
KSRC = /usr/src/linux
VMLINUX = $(KSRC)/vmlinux
VMLINUXGZ = $(KSRC)/arch/alpha/boot/vmlinux.gz
# for userspace testing
#TESTING = yes
# for boot testing
#CFGDEFS = -DDEBUG_ISO -DDEBUG_ROCK -DDEBUG_EXT2 -DDEBUG
bindir = $(DESTDIR)/sbin
bootdir = $(DESTDIR)/boot
export
#
# There shouldn't be any need to change anything below this line.
#
TOP = $(shell pwd)
LOADADDR = 20000000
ifndef $($(CC))
CC ?= gcc
endif
ifeq ($(TESTING),)
override CPPFLAGS += $(CFGDEFS) -I$(TOP)/include
override CFLAGS += $(CPPFLAGS) -D__KERNEL__ -mcpu=ev4 -Os -Wall -fno-builtin -Wcast-align -mno-fp-regs -ffixed-8 -fno-builtin-printf
else
override CPPFLAGS += -DTESTING $(CFGDEFS) -I$(TOP)/include
override CFLAGS += $(CPPFLAGS) -O -g3 -Wall -D__KERNEL__ -ffixed-8
endif
ABOOT_LDFLAGS = -static -N -Taboot.lds
override ASFLAGS += $(CPPFLAGS)
.c.s:
$(CC) $(CFLAGS) -S -o $*.s $<
.s.o:
$(AS) -o $*.o $<
.c.o:
$(CC) $(CFLAGS) -c -o $*.o $<
.S.s:
$(CC) $(ASFLAGS) -D__ASSEMBLY__ -traditional -E -o $*.o $<
.S.o:
$(CC) $(ASFLAGS) -D__ASSEMBLY__ -traditional -c -o $*.o $<
NET_OBJS = net.o
DISK_OBJS = disk.o fs/ext2.o fs/ufs.o fs/dummy.o fs/iso.o
ifeq ($(TESTING),)
ABOOT_OBJS = \
head.o aboot.o cons.o utils.o \
zip/misc.o zip/unzip.o zip/inflate.o
else
ABOOT_OBJS = aboot.o zip/misc.o zip/unzip.o zip/inflate.o
endif
LIBS = lib/libaboot.a
all: diskboot net_aboot.nh
diskboot: bootlx sdisklabel/sdisklabel sdisklabel/swriteboot \
tools/e2writeboot tools/abootconf \
tools/elfencap
netboot: vmlinux.bootp
bootloader.h: net_aboot.nh b2c
./b2c net_aboot.nh bootloader.h bootloader
netabootwrap: netabootwrap.c bootloader.h
$(CC) $@.c $(CFLAGS) -o $@
bootlx: aboot tools/objstrip
tools/objstrip -vb aboot bootlx
install-man:
make -C doc/man install
install-man-gz:
make -C doc/man install-gz
install: tools/abootconf tools/e2writeboot \
sdisklabel/swriteboot
install -d $(bindir) $(bootdir)
install -c tools/abootconf $(bindir)
install -c tools/e2writeboot $(bindir)
install -c sdisklabel/swriteboot $(bindir)
install -c bootlx $(bootdir)
installondisk: bootlx sdisklabel/swriteboot
sdisklabel/swriteboot -vf0 /dev/sda bootlx vmlinux.gz
ifeq ($(TESTING),)
aboot: $(ABOOT_OBJS) $(DISK_OBJS) $(LIBS)
$(LD) $(ABOOT_LDFLAGS) $(ABOOT_OBJS) $(DISK_OBJS) -o $@ $(LIBS)
else
aboot: $(ABOOT_OBJS) $(DISK_OBJS) $(LIBS)
$(CC) $(ABOOT_OBJS) $(DISK_OBJS) -o $@ $(LIBS)
endif
vmlinux.bootp: net_aboot.nh $(VMLINUXGZ) net_pad
cat net_aboot.nh $(VMLINUXGZ) net_pad > $@
net_aboot.nh: net_aboot tools/objstrip
$(CROSS)strip net_aboot
tools/objstrip -vb net_aboot $@
net_aboot: $(ABOOT_OBJS) $(ABOOT_OBJS) $(NET_OBJS) $(LIBS)
$(LD) $(ABOOT_LDFLAGS) $(ABOOT_OBJS) $(NET_OBJS) -o $@ $(LIBS)
net_pad:
dd if=/dev/zero of=$@ bs=512 count=1
clean: sdisklabel/clean tools/clean lib/clean
rm -f aboot abootconf net_aboot net_aboot.nh net_pad vmlinux.bootp \
$(ABOOT_OBJS) $(DISK_OBJS) $(NET_OBJS) bootlx \
include/ksize.h vmlinux.nh b2c bootloader.h netabootwrap
distclean: clean
find . -name \*~ | xargs rm -f
lib/%:
make -C lib $* CPPFLAGS="$(CPPFLAGS)" TESTING="$(TESTING)"
tools/%:
make -C tools $* CPPFLAGS="$(CPPFLAGS)"
sdisklabel/%:
make -C sdisklabel $* CPPFLAGS="$(CPPFLAGS)"
vmlinux.nh: $(VMLINUX) tools/objstrip
tools/objstrip -vb $(VMLINUX) vmlinux.nh
include/ksize.h: vmlinux.nh
echo "#define KERNEL_SIZE `ls -l vmlinux.nh | awk '{print $$5}'` > $@
dep:
|